expr.c (build_java_arrayaccess): Use convert to change len's type.
[gcc.git] / gcc / java / ChangeLog
1 2004-08-20 Nathan Sidwell <nathan@codesourcery.com>
2
3 * expr.c (build_java_arrayaccess): Use convert to change
4 len's type.
5
6 2004-08-19 Bryce McKinlay <mckinlay@redhat.com>
7
8 * class.c (make_local_function_alias): Allocate extra space for 'L'
9 in name buffer. Reported by Thomas Neumann.
10
11 2004-08-19 Nathan Sidwell <nathan@codesourcery.com>
12
13 * parse.h (JAVA_RADIX10_FLAG): Rename to ...
14 (JAVA_NOT_RADIX10_FLAG): ... here. Invert meaning.
15 * lex.c (do_java_lex): Adjust.
16 (error_if_numeric_overflow): Likewise.
17
18 2004-08-18 Andrew Pinski <apinski@apple.com>
19
20 * class.c (make_local_function_alias): Only make a new decl if we
21 support alias attribute on all decls.
22
23 2004-08-18 Bryce McKinlay <mckinlay@redhat.com>
24
25 * class.c (make_local_function_alias): New function. Create local
26 alias for public method DECL.
27 (make_method_value): Use make_local_function_alias.
28 * parse.y (craft_constructor): Don't special-case anonymous classes.
29 Always set ctor_name to init_identifier_node.
30 (lookup_method_invoke): Call layout_class_method when creating
31 anonymous class constructor.
32
33 2004-08-18 Richard Henderson <rth@redhat.com>
34
35 * java-gimplify.c (java_gimplify_expr): Move '2' handling into
36 default case. Treat '<' similarly. Update for
37 is_gimple_formal_tmp_var name change.
38
39 2004-08-17 Andrew Haley <aph@redhat.com>
40
41 * lang.c (lang_printable_name): Obey verbose flag.
42 * parse.y (constructor_circularity_msg): Set VERBOSE arg for
43 lang_printable_name().
44 (verify_constructor_circularity, get_printable_method_name,
45 check_abstract_method_definitions, java_check_regular_methods,
46 java_check_abstract_methods, check_inner_class_access,
47 fix_constructors, patch_method_invocation, patch_return):
48 Likewise.
49 * expr.c (pop_type_0): Likewise.
50
51 * java-tree.h (lang_printable_name_wls): Delete.
52
53 2004-08-16 Tom Tromey <tromey@redhat.com>
54
55 PR java/8473:
56 * parse.y (primary): Changed for initialized and uninitialized
57 array creations.
58 (array_access): Handle array_creation_initialized.
59 (array_creation_expression): Split into
60 array_creation_initialized and array_creation_uninitialized.
61
62 2004-08-16 Andrew Haley <aph@redhat.com>
63
64 * jcf-write.c (find_constant_index): Canonicalize NaNs when
65 generating bytecode.
66
67 2004-08-16 Elliot Lee <sopwith@redhat.com>
68
69 PR java/9677
70 * jcf-parse.c (java_parse_file): Handle filenames with embedded
71 spaces, and quoted filelists.
72
73 2004-08-15 Nathan Sidwell <nathan@codesourcery.com>
74
75 * boehm.c (get_boehm_type_descriptor): Use build_int_cst.
76 * class.c (build_utf8_ref, build_static_field_ref,
77 make_field_value, make_method_value, get_dispatch_table,
78 make_class_data, emit_symbol_table, emit_catch_table): Likewise.
79 * constants.c (get_tag_node, build_ref_from_constant_pool,
80 build_constants_constructor): Likewise.
81 * decl.c (java_init_decl_processing): Likewise.
82 * expr.c (build_java_array_length_access, build_newarray,
83 expand_java_multianewarray, expand_java_pushc, expand_iinc,
84 build_java_binop, build_field_ref, expand_java_add_case,
85 expand_java_call, build_known_method_ref, build_invokevirtual,
86 build_invokeinterface, build_jni_stub): Likewise.
87 * java-gimplify.c (java_gimplify_new_array_init): Likewise.
88 * jcf-parse.c (get_constant): Likewise.
89 * lex.c (do_java_lex): Likewise.
90 * parse.y (patch_binop, patch_unaryop, patch_cast,
91 build_null_of_type, patch_newarray): Likewise.
92 * resource.c (compile_resource_data): Likewise.
93 * typeck.c (build_prim_array_type): Likewise.
94
95 2004-08-10 Bryce McKinlay <mckinlay@redhat.com>
96
97 * java-gimplify.c (java_gimplify_new_array_init): Use create_tmp_var.
98 Don't create BLOCK here or call java_gimplify_block.
99
100 2004-08-09 H.J. Lu <hongjiu.lu@intel.com>
101
102 * java-tree.h (flag_deprecated): Removed.
103 * lang.opt (Wdeprecated): Use existing Var(warn_deprecated).
104 * parse.y (check_deprecation): Check warn_deprecated instead of
105 flag_deprecated.
106
107 2004-08-06 Kelley Cook <kcook@gcc.gnu.org>
108
109 * lang.c (flag_emit_class_files, flag_filelist_file, flag_redundant,
110 flag_use_divide_subroutine, flag_use_boehm_gc, flag_store_check,
111 flag_hash_synchronization, flag_assert, flag_jni, flag_newer,
112 flag_check_references, flag_extraneous_semicolon, flag_deprecated,
113 flag_force_classes_archive_check, flag_optimize_sci,
114 flag_indirect_dispatch): Remove explicit declarations.
115 * lang.opt: Add implicit declare/define/assign. Remove obsolete
116 final comment.
117
118 2004-08-05 Michael Chastain <mec.gnu@mindspring.com>
119
120 PR bootstrap/14893
121 * Make-lang.in (java.install-man): Install from either build
122 tree or source tree, whichever has the file first.
123
124 2004-08-05 Nathan Sidwell <nathan@codesourcery.com>
125
126 * jcf-parse.c (get_constant): Adjust force_fit_type call.
127 * lex.h (SET_LVAL_NODE_TYPE): Remove.
128 * lex.c (java_perform_atof): Use SET_LVAL_NODE directly.
129 (do_java_lex): Likewise. Adjust force_fit_type call.
130
131 2004-08-04 Roger Sayle <roger@eyesopen.com>
132 Andrew Haley <aph@redhat.com>
133
134 * typeck.c (convert_ieee_real_to_integer): Call fold on the range
135 checking trees as they're being built.
136 (convert): Call convert_ieee_real_to_integer if we're
137 converting a constant, even if we're writing a class file.
138
139 2004-08-02 Bryce McKinlay <mckinlay@redhat.com>
140
141 PR java/16701
142 * parse.y (fold_constant_for_init): Call resolve_field_access with
143 correct current_class context.
144
145 2004-08-01 Roger Sayle <roger@eyesopen.com>
146
147 * decl.c (update_aliases, initialize_local_variable): Replace calls
148 to build with calls to buildN.
149 * java-gimplify.c (java_gimplify_modify_expr): Likewise.
150 * java-tree.h (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Likewise.
151 * parse.h (BUILD_THROW): Likewise.
152 * parse.y (switch_expression, synchronized_statement,
153 catch_clause_parameter, array_creation_expression,
154 conditional_expression, make_qualified_name,
155 resolve_qualified_expression_name, patch_method_invocation,
156 patch_invoke, build_method_invocation, build_new_invocation,
157 build_assignment, patch_assignment, build_binop, patch_binop,
158 build_string_concatenation, build_incdec, patch_unaryop,
159 patch_cast, build_array_ref, build_newarray_node, patch_newarray,
160 patch_return, build_if_else_statement, build_labeled_block,
161 build_new_loop, build_loop_body, build_bc_statement,
162 build_assertion, encapsulate_with_try_catch, build_try_statement,
163 build_try_finally_statement, patch_synchronized_statement,
164 emit_test_initialization): Likewise, replace build with buildN.
165
166 2004-07-28 Eric Christopher <echristo@redhat.com>
167
168 * lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete.
169 (java_unsafe_for_reeval): Ditto.
170
171 2004-07-26 <hp@bitrange.com>
172
173 * parse.y (build_super_invocation): Adjust declaration order to
174 avoid declaration after statement.
175
176 2004-07-25 Bernardo Innocenti <bernie@develer.com>
177
178 * decl.c: Rename all identifiers named `class' to `cl'.
179
180 2004-07-25 Richard Henderson <rth@redhat.com>
181
182 * decl.c (build_result_decl): Set DECL_ARTIFICIAL and DECL_IGNORED_P.
183
184 2004-07-23 Mike Stump <mrs@apple.com>
185
186 * boehm.c (set_bit): Improve type safety wrt unsignedness.
187 * gjavah.c (throwable_p, decode_signature_piece,
188 print_full_cxx_name, print_include, add_namelet, add_class_decl,
189 process_file): Likewise.
190 * jcf-dump.c (main): Likewise.
191 * jcf-io.c (read_zip_member): Likewise.
192 * jcf-parse.c (HANDLE_CONSTANT_Utf8, get_constant,
193 give_name_to_class, get_class_constant): Likewise.
194 * jcf-write.c (find_constant_wide, push_long_const,
195 generate_classfile): Likewise.
196 * lex.c (java_new_lexer, java_read_char, cxx_keyword_p): Likewise.
197 * parse.y (read_import_dir): Likewise.
198 * typeck.c (parse_signature_type): Likewise.
199 * verify.c (verify_jvm_instructions): Likewise.
200 * zextract.c (find_zip_file_start, read_zip_archive): Likewise.
201
202 2004-07-23 Thomas Fitzsimmons <fitzsim@redhat.com>
203
204 * Make-lang.in: Replace rmic and rmiregistry references with
205 grmic and grmiregistry.
206 * gcj.texi: Likewise.
207
208 2004-07-20 Andrew Haley <aph@redhat.com>
209
210 PR java/16431.
211 * verify.c (verify_jvm_instructions): Comment change only.
212
213 * typeck.c (build_java_array_type): Add size field to array name.
214
215 * java-tree.h (LOCAL_SLOT_P): New.
216 (update_aliases): Add PC argument.
217 (pushdecl_function_level): New function.
218
219 * java-gimplify.c (java_gimplify_expr): Handle VAR_DECL,
220 MODIFY_EXPR, and SAVE_EXPR.
221 (java_gimplify_modify_expr): New function.
222
223 * expr.c (push_type_0): Call find_stack_slot() to create temporary.
224 (expand_iinc): Pass PC to update_aliases().
225 (STORE_INTERNAL): Likewise.
226 (process_jvm_instruction): Likewise.
227
228 * decl.c (base_decl_map): New variable.
229 (uniq): New variable.
230 (update_aliases): Rewrite with more thorough checking.
231 (debug_variable_p): New function.
232 (push_jvm_slot): Don't initialize local variable. Don't pushdecl.
233 (check_local_named_variable): Delete whole function.
234 (initialize_local_variable): New function.
235 (check_local_unnamed_variable): Add checks and comments.
236 (find_local_variable): Rewrite.
237 (java_replace_reference): New function.
238 (function_binding_level): New variable.
239 (pushdecl_function_level): New function.
240 (maybe_pushlevels): Set DECL_LOCAL_END_PC.
241 (maybe_pushlevels): Call pushdecl() on each of the new decls.
242 (start_java_method): Reset uniq. Create base_decl_map. Set
243 function_binding_level.
244 (end_java_method): Null unused fields to save memory.
245
246 2004-07-20 Nathan Sidwell <nathan@codesourcery.com>
247
248 * class.c (add_interface_do): Remove.
249 (set_super_info, interface_of_p, maybe_add_interface,
250 add_interface, make_class_data, layout_class,
251 add_miranda_methods): Adjust BINFO accessors and addition.
252 * expr.c (can_widen_reference_to, lookup_field): Adjust BINFO
253 accessors.
254 * jcf-write.c (generate_classfile): Likewise.
255 * parse.y (patch_anonymous_class, check_inner_circular_reference,
256 check_circular_reference, java_complete_class,
257 check_abstract_method_definitions,
258 java_check_abstract_method_definitions,
259 check_interface_throws_clauses, java_check_abstract_methods,
260 lookup_java_interface_method2,
261 find_applicable_accessible_methods_list): Adjust BINFO accessors
262 and addition.
263 * typeck.c (find_method_in_interfaces): Adjust BINFO accessors.
264
265 2004-07-18 Roger Sayle <roger@eyesopen.com>
266
267 * builtins.c (max_builtin, min_builtin,
268 java_build_function_call_expr): Replace calls to build with buildN.
269 * class.c (build_class_ref, build_static_field_ref,
270 get_dispatch_table, make_class_data, layout_class_method): Likewise.
271 * constants.c (build_ref_from_constant_pool): Likewise.
272 * decl.c (update_aliases, push_jvm_slot, poplevel, finish_method,
273 add_stmt_to_compound): Likewise.
274 * except.c (build_exception_object_ref, expand_end_java_handler):
275 Likewise.
276 * java-gimplify.c (java_gimplify_case_expr,
277 java_gimplify_default_expr, java_gimplify_block,
278 java_gimplify_new_array_init, java_gimplify_try_expr): Likewise.
279 * jcf-write.c (generate_bytecode_insns): Likewise.
280 * typeck.c (convert_ieee_real_to_integer): Likewise.
281
282 2004-07-17 Joseph S. Myers <jsm@polyomino.org.uk>
283
284 * java-tree.h (builtin_function): Declare.
285
286 2004-07-16 Steven Bosscher <stevenb@suse.de>
287
288 * parse.y (java_complete_expand_methods, java_expand_classes): Don't
289 abuse restore_line_number_status.
290
291 2004-07-15 Frank Ch. Eigler <fche@redhat.com>
292
293 g++/15861
294 * jcf-parse.c (java_emit_static_constructor): Specify default
295 priority.
296
297 2004-07-13 Per Bothner <per@bothner.com>
298
299 * java-tree.h (all_class_filename): Remove useless macro.
300 (enum java_tree_index): Remove JTI_ALL_CLASS_FILENAME constant.
301 (BUILD_FILENAME_IDENTIFIER_NODE): Remove useless macro.
302 * parse.y (java_parser_context_restore_global): Replace
303 BUILD_FILENAME_IDENTIFIER_NODE by plain get_identifier.
304 * jcf-parse.c (read_class, java_parse_file): Likewise.
305
306 2004-07-12 Bryce McKinlay <mckinlay@redhat.com>
307
308 PR java/16474
309 gjavah.c (print_field_info): Emit constant only if field is static.
310
311 2004-07-11 Roger Sayle <roger@eyesopen.com>
312
313 * expr.c (java_truthvalue_conversion, flush_quick_stack,
314 java_stack_swap, java_stack_dup, build_java_athrow, build_java_jsr,
315 build_java_ret, build_java_throw_out_of_bounds_exception,
316 build_java_array_length_access, java_check_reference,
317 build_java_arrayaccess, build_java_arraystore_check, build_newarray,
318 build_anewarray, expand_java_multianewarray, expand_java_arraystore,
319 expand_java_arrayload, build_java_monitor, expand_java_return,
320 expand_load_internal, expand_java_NEW, build_get_class,
321 build_instanceof, expand_java_CHECKCAST, expand_iinc,
322 build_java_soft_divmod, build_java_binop, build_field_ref,
323 expand_compare, expand_java_goto, expand_java_switch,
324 expand_java_add_case, build_class_init, build_known_method_ref,
325 invoke_build_dtable, build_invokevirtual, build_invokeinterface,
326 expand_invoke, build_jni_stub, expand_java_field_op,
327 java_expand_expr, expand_byte_code, STORE_INTERNAL,
328 force_evaluation_order, emit_init_test_initialization): Convert
329 calls to "build" into calls to the prefered "buildN" functions.
330
331 2004-07-11 Joseph S. Myers <jsm@polyomino.org.uk>
332
333 * java-tree.h (set_block): Remove.
334 * lang.c (java_clear_binding_stack): New.
335 (LANG_HOOKS_CLEAR_BINDING_STACK): Define.
336 * decl.c (struct binding_level): Remove this_block.
337 (clear_binding_level): Likewise.
338 (poplevel): Don't handle this_block.
339 (set_block): Remove.
340
341 2004-07-10 Bryce McKinlay <mckinlay@redhat.com>
342
343 * class.c (common_enclosing_context_p): Remove statement with no
344 side-effects.
345
346 2004-07-09 Bryce McKinlay <mckinlay@redhat.com>
347
348 PR java/8618
349 * parse.y (create_anonymous_class): Remove 'location' argument. Use
350 the WFL from TYPE_NAME to get line number for the decl. Fix comment.
351 (craft_constructor): Inherit access flags for implicit constructor
352 from the enclosing class.
353 (create_class): Fix comment typo.
354 (resolve_qualified_expression_name): Pass type of qualifier to
355 not_accessible_p, not the type in which target field was found.
356 (not_accessible_p): Handle inner classes. Expand protected
357 qualifier-subtype check to enclosing instances, but don't apply this
358 check to static members. Allow protected access to inner classes
359 of a subtype. Allow private access within common enclosing context.
360 (build_super_invocation): Get WFL line number info from current
361 class decl.
362 (build_incomplete_class_ref): Update for new create_anonymous_class
363 signature.
364 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Use
365 common_enclosing_instance_p.
366 * class.c (common_enclosing_context_p): New. Determine if types
367 share a common enclosing context, even across static contexts.
368 (common_enclosing_instance_p): Renamed from
369 common_enclosing_context_p. Determines if types share a common
370 non-static enclosing instance.
371 * java-tree.h (common_enclosing_instance_p): Declare.
372 * jcf-write.c (get_method_access_flags): New. Surpress private flag
373 for inner class constructors.
374 (generate_classfile): Use get_method_access_flags.
375
376 2004-07-09 Bryce McKinlay <mckinlay@redhat.com>
377
378 * class.c (interface_of_p): Check for null TYPE_BINFO.
379
380 2004-07-09 Nathan Sidwell <nathan@codesourcery.com>
381
382 * class.c (make_class): Do not create binfo here.
383 (set_super_info): Create it here.
384 * java-tree.h (CLASS_HAS_SUPER): Cope with lack of a binfo.
385
386 2004-07-08 Richard Henderson <rth@redhat.com>
387
388 * expr.c (case_identity, get_primitive_array_vtable,
389 java_expand_expr, emit_init_test_initialization): Remove.
390 * java-tree.h (java_expand_expr): Remove.
391 * lang.c (LANG_HOOKS_EXPAND_EXPR): Remove.
392
393 2004-07-07 Per Bothner <per@bothner.com>
394
395 * class.c (build_static_field_ref): Add a NOP_EXPR; otherwise we
396 get internal error due to mismatched types.
397
398 * gcj.texi (Invoking gij): Document new -verbose:class flag.
399
400 * gcj.texi (Linking): New node. Document -lgij usage.
401
402 2004-07-07 Nathan Sidwell <nathan@codesourcery.com>
403
404 * java-tree.h (CLASSTYPE_SPUER): Adjust BINFO macros.
405 (TYPE_NVIRTUALS, TYPE_VTABLE): Likewise.
406 * java/class.c (set_super_info, class_depth, interface_of_p,
407 maybe_add_interface, add_interface, make_class_data,
408 layout_class, add_miranda_methods): Adjust BINFO macros.
409 * expr.c (can_widen_reference_to, lookup_field): Likewise.
410 * jcf-write.c (generate_classfile): Likewise.
411 * parse.y (patch_anonymous_class,
412 check_inner_circular_reference, check_circular_reference,
413 java_complete_class, check_abstract_method_definitions,
414 java_check_abstract_method_definitions,
415 check_interface_throws_clauses, java_check_abstract_methods,
416 lookup_java_interface_method2,
417 find_applicable_accessible_methods_list): Likewise.
418 * typeck.c (find_method_in_interface): Likewise.
419 * verify.c (merge_types): Likewise.
420
421 2004-07-06 Nathan Sidwell <nathan@codesourcery.com>
422
423 * java-tree.h (CLASS_HAS_SUPER_FLAG): Use BINFO_FLAG_1.
424 * class.c (add_interface_do): Use BINFO_VIRTUAL_P.
425
426 2004-07-05 Nathan Sidwell <nathan@codesourcery.com>
427
428 * class.c (make_class): Use make_tree_binfo.
429 (set_super_info, add_interface_do): Likewise.
430 * java-tree.h (CLASS_HAS_SUPER_FLAG): Expect a BINFO.
431
432 2004-07-04 Ranjit Mathew <rmathew@hotmail.com>
433
434 * verify.c: Correct array element access formatting thinko.
435
436 2004-07-04 Ranjit Mathew <rmathew@hotmail.com>
437
438 * verify.c: Insert a short blurb at the start referring to the JVMS.
439 (merge_type_state): Remove redundant nested if statement.
440 (verify_jvm_instructions): Ensure current_subr is initialised to
441 NULL_TREE.
442 Minor formatting fixes all over the place.
443
444 2004-07-02 Richard Henderson <rth@redhat.com>
445
446 * jcf-write.c (generate_bytecode_insns <case SAVE_EXPR>): Rewrite.
447
448 2004-07-01 Richard Henderson <rth@redhat.com>
449
450 * class.c (registerClass_libfunc): Remove.
451 (init_class_processing): Don't set it.
452 (emit_register_classes): Take list_p parameter. Fill it in
453 with _Jv_RegisterClass calls.
454 * decl.c (java_init_decl_processing): Don't call
455 init_resource_processing.
456 * jcf-parse.c (java_emit_static_constructor): New.
457 (java_parse_file): Call it.
458 * resource.c (registerResource_libfunc): Remove.
459 (init_resource_processing): Remove.
460 (write_resource_constructor): Take list_p parameter. Fill it in
461 with _Jv_RegisterResource calls.
462 * java-tree.h: Update prototypes.
463
464 2004-06-29 Bryce McKinlay <mckinlay@redhat.com>
465
466 PR java/1262
467 * class.c (layout_class_method): Do not override package-private
468 method if its in a different package.
469 (split_qualified_name): Move here from parse.y. Rename from
470 breakdown_qualified. Add comment.
471 (in_same_package): Move here from parse.y. Add comment.
472 * java-tree.h (break_down_qualified, in_same_package): Declare.
473 (in_same_package): Likewise.
474 * parse.y (breakdown_qualified, in_same_package): Moved to class.c.
475 Callers updated.
476
477 2004-06-29 Andrew Haley <aph@redhat.com>
478
479 * except.c (expand_start_java_handler): Push a new binding level.
480 Don't build a TRY_CATCH_EXPR now, we'll do it later. Call
481 register_exception_range() to register where we'll do it.
482 (expand_end_java_handler): Remove old bogus code. Replace with
483 new logic that simply builds TRY_CATCH_EXPRs and inserts them at
484 the top of the expression we're curently building.
485 (maybe_end_try): Delete.
486 * decl.c (binding_level.exception_range): New field.
487 (clear_binding_level): Add field exception_range. Reformat.
488 (poplevel): Call expand_end_java_handler().
489 (poplevel): Call java_add_stmt only if functionbody is false.
490 (maybe_poplevels): Don't call maybe_end_try() from here.
491 (end_java_method): Clear no longer used trees in function decl.
492 (register_exception_range): New function.
493 * java-tree.h (register_exception_range, struct eh_range): Declare.
494
495 2004-06-28 Bryce McKinlay <mckinlay@redhat.com>
496
497 * jcf-write.c (get_classfile_modifiers): Formatting fixes.
498
499 2004-06-27 Ranjit Mathew <rmathew@hotmail.com>
500
501 Formatting fixes.
502 * expr.c (class_has_finalize_method): Fix method name indentation.
503 (expand_java_call): Remove K&R style parameter declaration.
504 (expand_invoke): Fix statement indentation.
505 (expand_java_field_op): Likewise.
506 * parse-scan.y: Fix typo.
507 (reset_report): Fix method name indentation.
508 * parse.y (unresolved_type_p, build_expr_block): Remove extra blank
509 line. Fix typos.
510 * verify.c (verify_jvm_instructions): Document parameters, insert
511 page break.
512 * lang.c (lang_init_source): Fix method name indentation.
513 * class.c (common_enclosing_context_p): Likewise.
514 (emit_symbol_table): Fix parameter list indentation.
515 * decl.c (add_stmt_to_compound, java_add_stmt): Remove K&R style
516 parameter declaration.
517 * constants.c: Fix copyright notice indentation.
518 * typeck.c (find_method_in_superclasses): Fix parameter list
519 indentation.
520 (find_method_in_interfaces): Likewise.
521 * zextract.c (makelong): Fix method name indentation.
522
523 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
524
525 PR java/15715.
526 * parse.y (create_interface): Set correct access modifiers for
527 interfaces.
528 * jcf-write.c (get_classfile_modifiers): New function.
529 (generate_classfile): Use get_classfile_modifiers, not
530 get_access_flags.
531
532 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
533
534 * parse.y (register_incomplete_type): Set JDEP_ENCLOSING for "super"
535 dependency to current parser context, not NULL_TREE, for top-level
536 classes.
537 (jdep_resolve_class): Enable member access check for all inner
538 class dependencies.
539
540 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
541
542 * parse.y (qualify_and_find): Pass type decl, not identifier, to
543 load_class.
544
545 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
546
547 PR java/15734
548 * expr.c (expand_java_field_op): Ensure that target class for static
549 field access has been loaded.
550
551 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
552 Ranjit Mathew <rmathew@hotmail.com>
553
554 PR java/1207, java/16178
555 * jcf-parse.c (load_class): Return immediately if passed a type decl
556 where CLASS_FROM_SOURCE_P is set. Remove FIXME.
557 * parse.y (do_resolve_class): Remove checks for CLASS_FROM_SOURCE_P
558 before calling load_class.
559 (qualify_and_find): Likewise.
560 (find_in_imports_on_demand): Likewise.
561 (find_applicable_accessible_methods_list): Likewise.
562
563 2004-06-24 Bryce McKinlay <mckinlay@redhat.com>
564
565 * parse.y (java_layout_seen_class_methods): Don't call load_class
566 on class defined by source parser.
567
568 2004-06-23 Bryce McKinlay <mckinlay@redhat.com>
569
570 * parse.y (set_nested_class_simple_name_value): Removed.
571 (java_complete_expand_class): Remove calls to
572 set_nested_class_simple_name_value.
573
574 2004-06-22 Andrew Haley <aph@redhat.com>
575 Ranjit Mathew <rmathew@hotmail.com>
576
577 Fixes PR java/16113.
578 * decl.c (force_poplevels): Remove call to expand_end_bindings.
579
580 2004-06-22 Ranjit Mathew <rmathew@hotmail.com>
581
582 * parse.y (create_class): Correct diagnostic message about
583 java.lang.Object extending anything else.
584
585 2004-06-21 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
586
587 * class.c (build_class_ref): Add new operand for COMPONENT_REF.
588 (build_static_field_ref): Likewise and add new operands for ARRAY_REF.
589 * constants.c (build_ref_from_constant_pool): Likewise.
590 * expr.c (build_java_array_length_access): Likewise.
591 (build_get_class, build_field_ref, build_known_method_ref): Likewise.
592 (invoke_build_dtable, build_invokevirtual): Likewise.
593 (build_invokeinterface, java_expand_expr): Likewise.
594 (emit_init_test_initialization): Likewise.
595 * java-gimplify.c (java_gimplify_new_array_init): Likewise.
596 * parse.y (make_qualifed_name, build_array_ref): Likewise.
597
598 2004-06-21 Andrew Haley <aph@redhat.com>
599
600 * java-gimplify.c (java_gimplify_block): set TREE_USED on the new
601 block.
602
603 2004-06-21 Joseph S. Myers <jsm@polyomino.org.uk>
604
605 * jcf.h (struct JCF): Change java_source, right_zip and finished
606 to unsigned int.
607 * lex.h (struct java_lexer): Change hit_eof, read_anything,
608 byte_swap and use_fallback to unsigned int.
609 * parse.h (struct _jdep): Change flag0 to unsigned int.
610
611 2004-06-17 Ranjit Mathew <rmathew@hotmail.com>
612
613 Fixes PR java/13948
614 * parse.y (java_layout_seen_class_methods): Ensure class is loaded
615 before trying to lay out its methods.
616 * jcf-parse.c (read_class): Track parsed files using canonical paths
617 obtained via lrealpath from libiberty.
618 (java_parse_file): Likewise.
619 (parse_source_file_1): Rename formal parameter to reflect its
620 modified purpose. Minor formatting fix.
621
622 2004-06-15 Paolo Bonzini <bonzini@gnu.org>
623
624 * class.c (emit_register_classes): Make the function uninlinable,
625 do not set current_function_cannot_inline.
626 * resource.c (write_resource_constructor): Do not reset
627 flag_inline_functions around rest_of_compilation.
628
629 2004-06-08 Andrew Pinski <pinskia@physics.uc.edu>
630
631 PR java/15769
632 * expr.c (java_truthvalue_conversion): Handle
633 UNEQ_EXPR, UNLE_EXPR, UNGE_EXPR, UNLT_EXPR, UNGT_EXPR,
634 ORDERED_EXPR, and UNORDERED_EXPR as comparison operators,
635 i.e. return the expression.
636
637 2004-06-03 Mark G. Adams <mark.g.adams@sympatico.ca>
638
639 * gjavah.c: Include version.h
640
641 2004-05-31 Bryce McKinlay <mckinlay@redhat.com>
642
643 * jcf-write.c (generate_bytecode_conditional): Correct handling
644 of unordered conditionals. Add comment.
645
646 2004-05-29 Ranjit Mathew <rmathew@hotmail.com>
647 Per Bothner <per@bothner.com>
648
649 * java-tree.h (DECL_LOCAL_FINAL_IUD): New macro to test if a
650 local variable was initialised upon declaration.
651 * parse.y (declare_local_variables): Set DECL_LOCAL_FINAL_IUD if
652 variable was final and initialised upon declaration.
653 * check-init.c (check_final_reassigned): Give error only if a blank
654 final is not definitely unassigned or if an initialised final is
655 reassigned.
656 (check_bool_init): Respect JLS2 16.1.7 requirements for boolean
657 assignment expressions. Remove case MODIFY_EXPR, label do_default.
658 (check_init): Perform initialised-variable-removing-optimisation
659 only on non-final local variables.
660
661 2004-05-28 Bryce McKinlay <mckinlay@redhat.com>
662
663 * jcf-write.c (generate_bytecode_conditional): Handle binops
664 UNLT_EXPR, UNLE_EXPR, UNGT_EXPR, UNGE_EXPR, UNEQ_EXPR,
665 and LTGT_EXPR.
666 (generate_bytecode_insns): Likewise.
667
668 2004-05-28 Bryce McKinlay <mckinlay@redhat.com>
669
670 * check-init.c (check_init): Handle binops UNLT_EXPR, UNLE_EXPR,
671 UNGT_EXPR, UNGE_EXPR, UNEQ_EXPR, and LTGT_EXPR.
672
673 2004-05-28 Bryce McKinlay <mckinlay@redhat.com>
674
675 * gcj.texi (Object allocation): Remove _Jv_AllocBytes.
676 (Mixing with C++): Document JvAllocBytes and RawDataManaged.
677
678 2004-05-26 Bryce McKinlay <mckinlay@redhat.com>
679
680 * decl.c (struct binding_level): Add GTY marker. Compile
681 binding_depth unconditionally.
682 (current_binding_level, free_binding_level, global_binding_level):
683 Likewise.
684 (clear_binding_level): Unconditionally set binding_depth.
685 (make_binding_level): Use ggc_alloc_cleared, not xmalloc.
686
687 2004-05-26 Bryce McKinlay <mckinlay@redhat.com>
688
689 * lex.c (java_new_lexer): Set 'encoding'.
690 (java_read_char): Improve error message for unrecognized characters.
691 * lex.h (struct java_lexer): New field 'encoding'.
692
693 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
694
695 * Make-lang.in: Link in $(LIBCPP) instead of mkdeps.o.
696
697 2004-05-21 Mark Wielaard <mark@klomp.org>
698
699 * gjavah.c (print_stub_or_jni): Mark functions only JNIEXPORT, not
700 extern.
701
702 2004-05-19 Paolo Bonzini <bonzini@gnu.org>
703
704 * typeck.c: Remove non-printable character 160.
705
706 2004-05-17 Ranjit Mathew <rmathew@hotmail.com>
707
708 * check-init.c: Correct minor typos.
709
710 2004-05-13 Diego Novillo <dnovillo@redhat.com>
711
712 * Make-lang.in, expr.c, java-gimplify.c: Rename
713 tree-simple.[ch] to tree-gimple.[ch].
714
715 2004-05-14 Ranjit Mathew <rmathew@hotmail.com>
716
717 * java-gimplify.c (java_gimplify_expr): Correct minor typos.
718
719 2004-05-13 Diego Novillo <dnovillo@redhat.com>
720
721 Merge from tree-ssa-20020619-branch. See
722 ChangeLog.tree-ssa for details.
723
724 * Make-lang.in, builtins.c, check-init.c, class.c,
725 constants.c, decl.c, except.c, expr.c, java-except.h,
726 java-tree.def, java-tree.h, jcf-parse.c, jcf-write.c,
727 lang.c, lang.opt, parse.y, resource.c: Merged.
728 * java-gimplify.c: New file.
729
730 2004-05-10 Andrew Haley <aph@redhat.com>
731
732 * parse.y (create_class): Set TYPE_VFIELD.
733 * decl.c (java_init_decl_processing): Likewise.
734
735 * expr.c (build_invokevirtual): Remove DECL_VINDEX offset adjustment.
736 * class.c (make_method_value): Replace DECL_VINDEX with call to
737 get_method_index().
738 (get_dispatch_vector): Likewise.
739 (layout_class_method): Likewise.
740 Replace set of DECL_VINDEX with call to set_method_index().
741 (set_method_index): New function.
742 (get_method_index): New function.
743 * java-tree.h (set_method_index): New function decl.
744 (get_method_index): New function decl.
745
746 2004-05-10 Andrew Pinski <pinskia@physics.uc.edu>
747
748 * parse.y (check_pkg_class_access): Add new argument
749 and use it when cl is NULL to call lookup_cl on it.
750 (parser_check_super_interface): Do not call lookup_cl.
751 Pass this_decl to check_pkg_class_access and NULL
752 instead of lookup_cl.
753 (parser_check_super): Update for change in
754 check_pkg_class_access.
755 (do_resolve_class): Likewise.
756 (process_imports): Likewise.
757 (find_in_imports_on_demand): Likewise.
758 (resolve_qualified_expression_name): Likewise.
759
760 2004-05-06 Ranjit Mathew <rmathew@hotmail.com>
761
762 Fixes PR java/9685, PR java/15073
763 * parse.y (accessibility_string): New method.
764 (not_accessible_field_error): Use accessibility_string()
765 instead of java_accstring_lookup().
766 (resolve_qualified_expression_name): Check with
767 check_pkg_class_access() before allowing access using
768 qualified names.
769 Fix comment typo.
770 Use check_pkg_class_access() instead of not_accessible_p()
771 for unqualified types.
772 (not_accessible_p): Use DECL_CONTEXT (member) instead of
773 REFERENCE for package-private access checking.
774 (patch_method_invocation): Use accessibility_string() instead
775 of java_accstring_lookup().
776
777 2004-04-30 Ranjit Mathew <rmathew@hotmail.com>
778
779 Fixes PR java/15133
780 * gjavah.c (struct method_name): Add member is_native.
781 (overloaded_jni_method_exists_p): Match candidate method only if
782 it is native.
783 (print_method_info): Initialise is_native flag from the method's
784 access flags.
785
786 2004-04-30 Roger Sayle <roger@eyesopen.com>
787
788 * builtins.c (java_builtins): Add acos, asin, ceil and floor.
789 (initialize_builtins): Likewise, define acos, asin, ceil and floor.
790
791 2004-04-22 Roger Sayle <roger@eyesopen.com>
792
793 * resource.c (write_resource_constructor): Guard call to possibly
794 NULL targetm.asm_out.constructor with targetm.have_ctors_dtors.
795
796 2004-04-19 Bryce McKinlay <mckinlay@redhat.com>
797
798 * class.c (make_class_data): Add new field aux_info.
799 * decl.c (java_init_decl_processing): Push type and decl for
800 `aux_info'.
801
802 2004-04-15 Bryce McKinlay <mckinlay@redhat.com>
803
804 * expr.c (expand_java_NEW): Don't use size argument for
805 _Jv_AllocObject calls.
806 * parse.y (patch_invoke): Likewise.
807
808 2004-04-12 Bryce McKinlay <mckinlay@redhat.com>
809
810 * expr.c (build_invokeinterface): Remove unused variables to
811 fix warnings.
812
813 2004-04-12 Bryce McKinlay <mckinlay@redhat.com>
814
815 * class.c (get_interface_method_index): New function. Return dispatch
816 index for interface method.
817 (make_method_value): For interface methods, set index field to
818 iface dispatch index, not DECL_VINDEX.
819 * expr.c (build_invokeinterface): Use get_interface_method_index.
820
821 2004-03-31 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
822
823 * jcf-write.c (generate_bytecode_insns): Use TYPE_UNSIGNED.
824
825 2004-03-31 Andrew Haley <aph@redhat.com>
826
827 PR java/14104
828 * jcf-io.c (opendir_in_zip): Tidy up error handling.
829
830 2004-03-30 Zack Weinberg <zack@codesourcery.com>
831
832 * builtins.c, expr.c, jcf.h, parse.h: Use new shorter
833 form of GTY markers.
834
835 2004-03-25 Marcus Meissner <meissner@suse.de>
836
837 PR java/14689:
838 * jcf-path.c (jcf_path_extdirs_arg): Add missing closedir.
839
840 2004-03-23 Tom Tromey <tromey@redhat.com>
841
842 PR java/14315:
843 * jcf-write.c (make_class_file_name): Don't report if mkdir
844 failed with EEXIST.
845
846 2004-03-23 Tom Tromey <tromey@redhat.com>
847
848 * gcj.texi (Extensions): Document GCJ_PROPERTIES.
849
850 2004-03-20 Kazu Hirata <kazu@cs.umass.edu>
851
852 * class.c, gjavah.c, lang.c: Fix comment typos.
853 * gcj.texi: Fix typos.
854
855 2004-03-19 Per Bothner <per@bothner.com>
856
857 * gcj.texi (Code Generation): Document new flags and assert defaults.
858
859 * class.c (assume_compiled_node_struct): Rename type to
860 class_flag_node_struct, as it is now also used for enable_assertions.
861 Rename assume_compiled_node typedef. Rename excludep field to value.
862 (find_assume_compiled_node): Rename function to find_class_flag_node.
863 Minor optimization - avoid needless strlen.
864 (add_assume_compiled): Some tweaking and optimization.
865 Rename and generalize to add_class_flag takem an extra parameter.
866 (add_assume_compled): New just calls add_class_flag.
867 (add_enable_assert, enable_assertions): New functions.
868 (enable_assert_tree): New static.
869 * java-tree.h (add_enable_assert, enable_assertions): New declarations.
870 * lang.opt (fenable-assertions, fenable-assertions=,
871 fdisable-assertions, fdisable-assertions=): New options.
872 * lang.c (java_handle_option): Handle new options.
873 * parse.y (build_incomplete_class_ref): Handle class$ in an inner
874 class in an interface - create helper class nested in outer interface.
875 (build_assertion): Short-circuit if enable_assertions is false.
876
877 2004-03-18 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
878
879 * java-tree.h: Changes throughout to add checking to macros
880 and numerous whitespace changes.
881 (VAR_OR_FIELD_CHECK): New macro.
882 * jcf-write.c (get_access_flags): Use FIELD_PUBLIC, METHOD_PUBLIC,
883 FIELD_FINAL, and METHOD_FINAL instead of CLASS_PUBLIC and CLASS_FINAL.
884
885 2004-03-16 Per Bothner <per@bothner.com>
886
887 * jcf-jump.c (options): New --print-constants option.
888 * gcj.texi (Invoking jcf-dump): Document --print-constants.
889
890 * jcf-dump.c (flag_print_constant_pool): Default to off.
891 (print_constant_terse_with_index): New helper function.
892 (various places): Check flag_print_constant_pool where missing.
893 (main): If verbose set flag_print_constant_pool.
894 (HANDLE_INNERCLASSES_ATTRIBUTE): Null inner class name is anonymous.
895
896 2004-03-15 Andrew Haley <aph@redhat.com>
897
898 PR java/14581
899 * parse.y (java_complete_lhs): Check that final variable has an
900 initializer.
901
902 2004-03-12 Andrew Haley <aph@redhat.com>
903
904 PR java/14551
905 * typeck.c (convert): Clear TREE_OVERFLOW after an integer
906 conversion.
907
908 2004-02-29 Roger Sayle <roger@eyesopen.com>
909
910 * jcf-parse.c (java_parse_file): Handle the case that input_filename
911 is NULL.
912
913 2004-02-27 Per Bothner <per@bothner.com>
914
915 * parse.y (build_assertion): Re-do 02-25 change following Jeff Sturm
916 suggestion: Use build_incomplete_class_ref.
917 This fixes PR java/13508, java/11714.
918
919 2004-02-27 Kazu Hirata <kazu@cs.umass.edu>
920
921 * java/parse.h: Update copyright.
922
923 2004-02-26 Andrew Haley <aph@redhat.com>
924
925 PR java/14231:
926 * parse.y (check_interface_throws_clauses): Check for
927 !METHOD_INVISIBLE (iface_method).
928 * class.c (layout_class_methods): Check for CLASS_INTERFACE as
929 well as CLASS_ABSTRACT.
930
931 2004-02-25 Per Bothner <per@bothner.com>
932
933 * parse.y (build_assertion): If we're in an inner class, create the
934 class$ helper routine in the outer class.
935
936 2004-02-19 Richard Henderson <rth@redhat.com>
937
938 * parse.y (switch_label): Use make_node for DEFAULT_EXPR.
939
940 2004-02-16 Geoffrey Keating <geoffk@apple.com>
941
942 * Make-lang.in (java.install-man): Add extra dependencies.
943
944 2004-02-13 Geoffrey Keating <geoffk@apple.com>
945
946 * Make-lang.in: Install man pages under the same names
947 (possibly transformed) as the program they document.
948
949 2004-02-10 Joseph S. Myers <jsm@polyomino.org.uk>
950
951 * gjavah.c: Include "intl.h".
952 (error): New function.
953 (main): Call gcc_init_libintl.
954 (get_field_name, throwable_p, print_c_decl, print_full_cxx_name,
955 print_stub_or_jni, process_file, main): Use error rather than
956 fprintf.
957 (print_method_info, usage, help, version, main): Mark strings for
958 translation with _. Avoid splitting up sentences. Send
959 information messages to stdout.
960 * jcf-dump.c: Include "intl.h".
961 (main): Call gcc_init_libintl.
962 (process_class, usage, help, version, main, CHECK_PC_IN_RANGE):
963 Mark error, usage and version messages for translation with _.
964 Avoid splitting up sentences.
965 * jv-scan.c: Include "intl.h".
966 (fatal_error, warning): Change parameter s to msgid. Translate
967 messages.
968 (main): Call gcc_init_libintl.
969 (usage, help, version): Mark error, usage and version messages for
970 translation with _. Avoid splitting up sentences.
971 * jvgenmain.c: Include "intl.h".
972 (main): Call gcc_init_libintl.
973 (usage, main): Mark error messages for translation with _.
974 * Make-lang.in (GCJH_OBJS, JVSCAN_OBJS, JCFDUMP_OBJS,
975 JVGENMAIN_OBJS): Add intl.o.
976 (java/jcf-dump.o, java/gjavah.o, java/jv-scan.o,
977 java/jvgenmain.o): Update dependencies.
978
979 2004-02-08 Per Bothner <per@bothner.com>
980
981 * parse.y (resolve_qualified_expression_name): In case of inaccessible
982 class don't use not_accessible_field_error, which can get confused.
983
984 2004-02-05 Kelley Cook <kcook@gcc.gnu.org>
985
986 Make-lang.in (po-generated): Delete.
987
988 2004-02-05 Kazu Hirata <kazu@cs.umass.edu>
989
990 * Make-lang.in (java/decl.o, java/expr.o, java/parse.o):
991 Depend on target.h.
992 * decl.c: Include target.h.
993 (start_java_method): Replace PROMOTE_PROTOTYPES with
994 targetm.calls.promote_prototypes.
995 * expr.c: Include target.h.
996 (pop_arguments): Replace PROMOTE_PROTOTYPES with
997 targetm.calls.promote_prototypes.
998 * parse.y: Include target.h.
999 (start_complete_expand_method): Replace PROMOTE_PROTOTYPES
1000 with targetm.calls.promote_prototypes.
1001
1002 2004-02-04 Kazu Hirata <kazu@cs.umass.edu>
1003
1004 * typeck.c: Update copyright.
1005
1006 2004-02-02 Tom Tromey <tromey@redhat.com>
1007
1008 * decl.c (java_init_decl_processing): Remove duplicate
1009 gnu/gcj/RawData.
1010
1011 2004-01-30 Kelley Cook <kcook@gcc.gnu.org>
1012
1013 * Make-lang.in (doc/gcj.dvi): Use $(abs_docdir).
1014
1015 2004-01-28 Andrew Pinski <pinskia@physics.uc.edu>
1016
1017 * expr.c (build_field_ref): Move variable
1018 definition up.
1019
1020 2004-01-28 Andrew Haley <aph@redhat.com>
1021
1022 * expr.c (build_field_ref): Widen field offset.
1023
1024 2004-01-27 Andrew Haley <aph@redhat.com>
1025
1026 java/13273
1027 * parse.y (check_interface_throws_clauses): Make sure class_decl
1028 has been loaded.
1029
1030 2004-01-22 Jeff Sturm <jsturm@one-point.com>
1031
1032 PR java/13733
1033 * parse.y (patch_assignment): Don't modify lhs_type for
1034 reference assignments.
1035
1036 2004-01-20 Kelley Cook <kcook@gcc.gnu.org>
1037
1038 * Make-lang.in: Replace $(docdir) with doc.
1039 (java.info, java.srcinfo, java.man, java.srcman): New rules.
1040 (java.install-man): Revamp rule.
1041
1042 2004-01-20 Kelley Cook <kcook@gcc.gnu.org>
1043
1044 * Make-lang.in (JAVA_INSTALL_NAME, JAVA_TARGET_INSTALL_NAME,
1045 GCJH_TARGET_INSTALL_NAME): Define via a immediate $(shell)
1046 instead of deferred backquote.
1047
1048 2004-01-16 Andrew Pinski <pinskia@physics.uc.edu>
1049
1050 * typeck.c (find_method_in_interfaces): Move variable
1051 definition up.
1052
1053 2004-01-16 Andrew Haley <aph@redhat.com>
1054
1055 PR java/13273:
1056 * typeck.c (shallow_find_method): New.
1057 (find_method_in_superclasses): New.
1058 (find_method_in_interfaces): New.
1059 (lookup_do): Rewrite.
1060 * java-tree.h (SEARCH_ONLY_INTERFACE): Delete.
1061
1062 * jcf-parse.c (read_class): Save and restore output_class.
1063 * decl.c (java_expand_body): Set output_class from fndecl.
1064
1065 2004-01-15 Michael Chastain <mec.gnu@mindspring.com>
1066
1067 * class.c (gen_indirect_dispatch_tables): Fix string length
1068 calculations.
1069
1070 2004-01-15 Kelley Cook <kcook@gcc.gnu.org>
1071
1072 * Make-lang.in (parse.c, parse-scan.c): Always build in doc directory.
1073 (java.srcextra): Copy above back to source directory if requested.
1074 (po-generated): Delete reference to $(parsedir).
1075 (java/parse.o, java/parse-scan.o): Delete reference to $(parsedir).
1076 Use implicit rule.
1077
1078 2004-01-14 Jan Hubicka <jh@suse.cz>
1079
1080 * lang.c (java_estimate_num_insns_1): Fix bug in MODIFY_EXPR cost
1081 estimation.
1082
1083 2004-01-09 Mark Mitchell <mark@codesourcery.com>
1084
1085 * java-tree.h (java_expand_expr): Change prototype.
1086 * expr.c (java_expand_expr): Add alt_rtl parameter.
1087
1088 2004-01-09 Andrew Haley <aph@redhat.com>
1089
1090 PR java/12755:
1091 * parse.y (java_fix_constructors): Set output_class.
1092 (java_reorder_fields): Likewise.
1093 (java_layout_classes): Likewise.
1094 (java_expand_classes): Generate indirect dispatch tables.
1095 (java_expand_classes): Set output_class.
1096 (java_finish_classes): Likewise.
1097 * lang.c (java_init): Turn on always_initialize_class_p if we're
1098 using indirect dis[atch.
1099 (java_decl_ok_for_sibcall): Use output_class, not current_class.
1100 (java_get_callee_fndecl): Use class local atable.
1101 * jcf-parse.c
1102 (always_initialize_class_p): Decl moved to java-tree.h.
1103 (HANDLE_CLASS_INFO): Set output_class.
1104 (read_class): Likewise.
1105 (parse_class_file): Call gen_indirect_dispatch_tables.
1106 (parse_zip_file_entries): Set output_class.
1107 (java_parse_file): Set output_class. Don't emit symbol tables.
1108 * java-tree.h (output_class): New.
1109 Remove global declarations for otable, atable, and ctable.
1110 (always_initialize_class_p): moved here from decl.c.
1111 (DECL_OWNER): New.
1112 (TYPE_ATABLE_METHODS, TYPE_ATABLE_SYMS_DECL, TYPE_ATABLE_DECL,
1113 TYPE_OTABLE_METHODS, TYPE_OTABLE_SYMS_DECL, TYPE_OTABLE_DECL,
1114 TYPE_CTABLE_DECL, TYPE_CATCH_CLASSES): New.
1115 (struct lang_type): Add otable_methods, otable_decl,
1116 otable_syms_decl, atable_methods, atable_decl, atable_syms_decl,
1117 ctable_decl, catch_classes, type_to_runtime_map.
1118 * expr.c (build_field_ref): Make otable, atable, and ctable class
1119 local rather than global.
1120 (build_known_method_ref): Likewise.
1121 (build_invokeinterface): Likewise.
1122 (java_expand_expr): Pass runtime type (rather than actual type) to
1123 expand_start_catch.
1124 * except.c (prepare_eh_table_type): Create TYPE_TO_RUNTIME_MAP for
1125 this class. Look up each class in that map to delete duplicates.
1126 (expand_end_java_handler): Pass runtime type (rather than actual
1127 type) to expand_start_catch.
1128 * decl.c: (always_initialize_class_p): Decl moved to java-tree.h.
1129 (do_nothing): New.
1130 (java_init_decl_processing): Rearrange things. Remove global
1131 declarations of otable, atable, and ctable.
1132 (java_init_decl_processing): Make lang_eh_runtime_type do_nothing.
1133 (java_expand_body): Set output_class.
1134 * constants.c (build_constant_data_ref): Use output_class, not
1135 current_class.
1136 (alloc_name_constant): Likewise.
1137 * class.c (gen_indirect_dispatch_tables): New.
1138 (build_class_ref): Generate hard reference to superclass, even if
1139 using indirect dispatch.
1140 (build_static_field_ref): Use class local atable.
1141 (make_class_data): Generate hard reference to superclass, even if
1142 using indirect dispatch.
1143 Generate symbolic references to interfaces when using indirect
1144 dispatch.
1145 (make_class_data): Emit otable, atable, and ctable.
1146 Make otable, atable, and ctable class local rather than global.
1147 (emit_catch_table): Make otable, atable, and ctable class local
1148 rather than global.
1149
1150 2003-12-25 Andrew Pinski <pinskia@physics.uc.edu>
1151
1152 * parse.y (catch_clause_parameter): Fix typo.
1153
1154 PR java/13404
1155 * parse.y: (catch_clause_parameter): Return early if $3, aka
1156 formal_parameter, is null.
1157
1158 2003-12-20 Kazu Hirata <kazu@cs.umass.edu>
1159
1160 * class.c: Remove uses of "register" specifier in
1161 declarations of arguments and local variables.
1162 * decl.c: Likewise.
1163 * expr.c: Likewise.
1164 * gjavah.c: Likewise.
1165 * jcf-dump.c: Likewise.
1166 * jcf-io.c: Likewise.
1167 * jcf-parse.c: Likewise.
1168 * jcf-write.c: Likewise.
1169 * keyword.h: Likewise.
1170 * parse.y: Likewise.
1171 * typeck.c: Likewise.
1172 * verify.c: Likewise.
1173
1174 2003-12-06 Kelley Cook <kcook@gcc.gnu.org>
1175
1176 * Make-lang.in (GCJ_CROSS_NAME): Delete.
1177 (java.install_common, java.install-man): Adjust for above.
1178 (java.uninstall): Likewise.
1179
1180 2003-12-03 Michael Koch <konqueror@gmx.de>
1181
1182 * class.c (make_class_data):
1183 Push field value to 'hack_signers' instead of 'signers'.
1184 * decl.c (java_init_decl_processing):
1185 Push field 'hack_signers' instead of 'signers'.
1186
1187 2003-12-03 Zack Weinberg <zack@codesourcery.com>
1188
1189 * lex.h: Check both HAVE_ICONV and HAVE_ICONV_H before
1190 including iconv.h.
1191
1192 2003-12-03 Ralph Loader <rcl@ihug.co.nz>
1193
1194 PR java/12374:
1195 * parse.y (qualify_ambiguous_name): Remove lots of broken
1196 field access processing - there's no need to do that here,
1197 because we have resolve_field_access. Remove
1198 RESOLVE_EXPRESSION_NAME_P as it isn't used anywhere else.
1199 * java-tree.h: Remove RESOLVE_EXPRESSION_NAME_P as it isn't
1200 used.
1201
1202 2003-12-01 Jeff Sturm <jsturm@one-point.com>
1203
1204 Fix PR java/13237
1205 * parse.y (java_complete_lhs): Save location prior to patching
1206 CALL_EXPR.
1207
1208 2003-11-25 Mohan Embar <gnustuff@thisiscool.com>
1209
1210 PR java/12548
1211 * resource.c (write_resource_constructor): Append
1212 "_resource" to constructor identifier name.
1213
1214 2003-11-25 Jeff Sturm <jsturm@one-point.com>
1215
1216 Fix PR java/13183.
1217 * constants.c (cpool_for_class): New function.
1218 (outgoing_cpool): Remove global variable.
1219 (alloc_name_constant): Use cpool_for_class.
1220 (build_constants_constructor): Likewise.
1221 * decl.c (java_expand_body): Set current_class.
1222 * java-tree.h (outgoing_cpool) Remove declaration.
1223 (init_outgoing_cpool): Likewise.
1224 * jcf-parse.c (init_outgoing_cpool): Remove function.
1225 (parse_class_file): Don't call init_outgoing_cpool.
1226 * parse.y (java_complete_expand_methods): Don't call
1227 init_outgoing_cpool. Don't save outgoing_cpool.
1228 (java_expand_classes): Don't restore outgoing_cpool.
1229 (java_finish_classes): Likewise.
1230
1231 2003-11-24 Mohan Embar <gnustuff@thisiscool.com>
1232
1233 * Make-lang.in: (java.install-common) Add
1234 symlink for $(target_noncanonical)-gcjh for
1235 native builds.
1236
1237 2003-11-20 Joseph S. Myers <jsm@polyomino.org.uk>
1238
1239 * Make-lang.in (java.extraclean): Delete.
1240
1241 2003-11-20 Joseph S. Myers <jsm@polyomino.org.uk>
1242
1243 * Make-lang.in (check-java): Add.
1244
1245 2003-11-19 Jeff Sturm <jsturm@one-point.com>
1246
1247 Fix PR java/13024.
1248 * except.c (prepare_eh_table_type): Allocate variable-sized
1249 buffer `buf' with alloca.
1250
1251 2003-11-17 Jeff Sturm <jsturm@one-point.com>
1252
1253 Fix PR java/12857.
1254
1255 decl.c (java_init_decl_processing): Don't initialize
1256 class_not_found_type_node, no_class_def_found_type_node.
1257
1258 java-tree.h (JTI_CLASS_NOT_FOUND_TYPE_NODE,
1259 JTI_NO_CLASS_DEF_FOUND_TYPE_NODE): Remove from java_tree_index.
1260 (class_not_found_type_node, no_class_def_found_type_node):
1261 Don't define.
1262
1263 parse.y (build_dot_class_method_invocation): Add this_class
1264 argument. Qualify method invocations to a different class.
1265 (create_new_parser_context): Initialize saved_data_ctx to 0.
1266 (java_parser_context_save_global): Initialize saved_data_ctx to 1.
1267 (build_dot_class_method): Don't load classes. Register
1268 incomplete types.
1269 (build_incomplete_class_ref): Special cases for interfaces
1270 and inner classes. Move build_dot_class_method call to here...
1271 (patch_incomplete_class_ref): ...from here. Pass current_class
1272 to build_dot_class_method_invocation.
1273 (build_assertion): Pass class_type to
1274 build_dot_class_method_invocation.
1275 (encapsulate_with_try_catch): Handle EXPR_WITH_FILE_LOCATION node.
1276
1277 2003-11-17 Jeff Sturm <jsturm@one-point.com>
1278
1279 Fix PR java/12739.
1280 * java-tree.h (BLOCK_EMPTY_P): Define.
1281 * parse.y (java_complete_lhs): Check for empty blocks
1282 in TRY_FINALLY_EXPR case.
1283
1284 2003-11-17 Andrew Haley <aph@redhat.com>
1285
1286 * java-tree.h (LOCAL_VAR_OUT_OF_SCOPE_P): New.
1287 (struct lang_decl_var:freed): New variable.
1288 * decl.c (poplevel): Mark local vars that have gone out of scope.
1289 (push_jvm_slot): Don't use the RTL of a var that has gone out of
1290 scope.
1291
1292 2003-11-16 Jason Merrill <jason@redhat.com>
1293
1294 * Make-lang.in (java.tags): Create TAGS.sub files in each directory
1295 and TAGS files that include them for each front end.
1296
1297 2003-11-15 Tom Tromey <tromey@redhat.com>
1298
1299 * gjavah.c (print_stub_or_jni): Pass `env' to FatalError.
1300
1301 2003-11-12 Jason Merrill <jason@redhat.com>
1302
1303 PR optimization/12547
1304 * lang.c (java_tree_inlining_walk_subtrees): Just walk
1305 BLOCK_EXPR_BODY directly.
1306
1307 2003-11-12 Andrew Haley <aph@redhat.com>
1308
1309 PR java/11045
1310 * parse.y (fold_constant_for_init): Check that we really do have a
1311 constant.
1312
1313 PR java/11533
1314 * lang.c (merge_init_test_initialization): Clear DECL_INITIAL for
1315 init_test_decls being inlined.
1316
1317 PR java/12890:
1318 * parse.y (do_resolve_class): Check return value from
1319 breakdown_qualified().
1320
1321 2003-11-11 Tom Tromey <tromey@redhat.com>
1322
1323 PR java/12915:
1324 * parse.y (merge_string_cste): Handle case where we have a
1325 pointer that happens to be zero, not null_pointer_node.
1326
1327 2003-11-10 Tom Tromey <tromey@redhat.com>
1328
1329 * jcf-parse.c (classify_zip_file): Correctly compare
1330 filename_length against length of manifest file's name.
1331
1332 2003-11-08 Tom Tromey <tromey@redhat.com>
1333
1334 PR java/12894:
1335 * jcf-parse.c (classify_zip_file): Only skip MANIFEST.MF file.
1336
1337 2003-11-06 Andrew Haley <aph@redhat.com>
1338
1339 * expr.c (java_stack_swap): Make sure destination stack slots are
1340 of the correct type.
1341
1342 2003-11-03 Kelley Cook <kcook@gcc.gnu.org>
1343
1344 * Make-lang.in (dvi): Move targets to $(docobjdir).
1345 (gcj.dvi): Simplify rule and adjust target.
1346 (gcj.info): Simplify rule.
1347 (gcj.pod): New intermediate rule.
1348 (gcjh.pod): Likewise.
1349 (jv-scan.pod): Likewise.
1350 (jcf-dump.pod): Likewise.
1351 (gij.pod): Likewise.
1352 (jv-convert.pod): Likewise.
1353 (rmic.pod): Likewise.
1354 (rmiregistry.pod): Likewise.
1355 (gcj.1): Delete.
1356 (gcjh.1): Delete.
1357 (jv-scan.1): Delete.
1358 (jcf-dump.1): Delete.
1359 (gij.1): Delete.
1360 (jv-convert.1): Delete.
1361 (rmic.1): Delete.
1362 (rmiregistry.1): Delete.
1363
1364 2003-11-02 Jeff Sturm <jsturm@one-point.com>
1365
1366 Fixes PR java/12866.
1367 * parse.y (resolve_qualified_expression_name): Move test
1368 for outer field access methods from here...
1369 (check_thrown_exceptions) ...to here.
1370
1371 2003-11-01 Kelley Cook <kcook@gcc.gnu.org>
1372
1373 * .cvsignore: Delete.
1374
1375 2003-10-28 Frank Ch. Eigler <fche@redhat.com>
1376
1377 * verify.c (verify_jvm_instructions): Don't warn about legal
1378 eh binding regions generated for example by jdk 1.4.1.
1379
1380 2003-10-24 David S. Miller <davem@redhat.com>
1381
1382 * jcf-parse.c (jcf_parse): Fix args to fatal_error().
1383
1384 2003-10-22 Andrew Haley <aph@redhat.com>
1385
1386 * lang.c (LANG_HOOKS_GET_CALLEE_FNDECL): New.
1387 (java_get_callee_fndecl): New.
1388
1389 * jcf-parse.c (java_parse_file): Call emit_catch_table().
1390
1391 * java-tree.h (ctable_decl): New.
1392 (catch_classes): New.
1393 (java_tree_index): Add JTI_CTABLE_DECL, JTI_CATCH_CLASSES.
1394
1395 * decl.c (java_init_decl_processing): Add catch_class_type.
1396 Add ctable_decl.
1397 Add catch_classes field.
1398
1399 * class.c (build_indirect_class_ref): Break out from
1400 build_class_ref.
1401 (make_field_value): Check flag_indirect_dispatch.
1402 (make_class_data): Ditto.
1403 Tidy uses of PUSH_FIELD_VALUE.
1404 Add field catch_classes.
1405 (make_catch_class_record): New.
1406
1407 * java-tree.h (PUSH_FIELD_VALUE): Tidy.
1408
1409 2003-10-22 Kazu Hirata <kazu@cs.umass.edu>
1410
1411 * jcf-write.c: Follow spelling conventions.
1412 * parse.y: Likewise.
1413
1414 2003-10-22 Kazu Hirata <kazu@cs.umass.edu>
1415
1416 * ChangeLog: Fix typos.
1417 * expr.c: Fix comment typos.
1418 * jcf-write.c: Likewise.
1419 * lang.c: Likewise.
1420 * lex.c: Likewise.
1421 * mangle.c: Likewise.
1422 * parse-scan.y: Likewise.
1423 * parse.y: Likewise.
1424
1425 2003-10-22 Tom Tromey <tromey@redhat.com>
1426
1427 * expr.c (expand_byte_code): Only warn about dead bytecode when
1428 extra_warnings is set.
1429
1430 2003-10-22 Bryce McKinlay <bryce@mckinlay.net.nz>
1431
1432 Fix for PR java/12586.
1433 * mangle.c (find_compression_record_match): Don't iterate through
1434 package namespace elements unless they all match compression_table
1435 entries.
1436
1437 2003-10-20 Kelley Cook <kcook@gcc.gnu.org>
1438
1439 * Make-lang.in (info): Honor $(parsedir) and $(docobjdir).
1440 (generate-manpages): Likewise.
1441 (java.maintainer-clean): Likewise.
1442 (gcj.info): Likewise.
1443 (gcj.1): Likewise.
1444 (gcjh.1): Likewise.
1445 (jv-scan.1): Likewise.
1446 (jcf-dump.1): Likewise.
1447 (gij.1): Likewise.
1448 (jv-convert.1): Likewise.
1449 (rmic.1): Likewise.
1450 (rmiregistry.1): Likewise.
1451 (java.install-man): Likewise.
1452 (parse-scan.o): Move and define complete compile line.
1453 (parse.o): Likewise.
1454 (jcf-tree-inline.o): Move.
1455
1456 2003-10-20 Mark Mitchell <mark@codesourcery.com>
1457
1458 * Make-lang.in (info): Update dependencies.
1459 (java.install-info): Remove.
1460 ($(srcdir)/java/gcj.info): Replace with ...
1461 ($(docobjdir)/gcj.info): ... this.
1462
1463 2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
1464
1465 * Make-lang.in: Replace uses of $(target_alias) with
1466 $(target_noncanonical).
1467
1468 2003-10-09 Tom Tromey <tromey@redhat.com>
1469
1470 * decl.c (java_init_decl_processing): Declare signers field.
1471 * class.c (make_class_data): Set signers field.
1472
1473 2003-10-09 Jason Merrill <jason@redhat.com>
1474
1475 * parse.y (patch_assignment): Use make_node to create a BLOCK.
1476 * parse.h (BUILD_PTR_FROM_NAME): Use make_node to create a
1477 POINTER_TYPE.
1478
1479 2003-10-06 Mark Mitchell <mark@codesourcery.com>
1480
1481 * Make-lang.in (java.info): Replace with ...
1482 (info): ... this.
1483 (java.dvi): Replace with ...
1484 (dvi): ... this.
1485 (java.generated-manpages): Replace with ...
1486
1487 2003-10-03 Kelley Cook <kelleycook@wideopenwest.com>
1488
1489 * builtins.c, jcf.h, jvspec.c: Remove PARAMS macros.
1490
1491 2003-10-01 Andrew Haley <aph@redhat.com>
1492
1493 * jcf-parse.c (java_parse_file): Write otable and atable.
1494 * java-tree.h (atable_methods): New.
1495 (atable_decl): New.
1496 (atable_syms_decl): New.
1497 (enum java_tree_index): Add JTI_ATABLE_METHODS, JTI_ATABLE_DECL,
1498 JTI_ATABLE_SYMS_DECL. Rename JTI_METHOD_SYMBOL* to JTI_SYMBOL*.
1499 (symbol_*type): Rename method_symbol* to symbol*type.
1500 (emit_offset_symbol_table): Delete.
1501 (emit_symbol_table): New.
1502 (get_symbol_table_index): New.
1503 (atable_type): New.
1504 * expr.c (build_field_ref): Handle flag_indirect_dispatch.
1505 (build_known_method_ref): Likewise.
1506 (get_symbol_table_index): Rename from get_offset_table_index.
1507 Parameterize to allow re-use by differing types of symbol table.
1508 (build_invokevirtual): Pass table to get_offset_table_index.
1509 * decl.c (java_init_decl_processing): Push types and decls for
1510 atable and atable_syyms.
1511 * class.c (build_static_field_ref): Handle flag_indirect_dispatch.
1512 (make_class_data): Add new fields atable and atable_syms.
1513 (emit_symbol_table): Rename from emit_offset_symbol_table.
1514 Parameterize to allow re-use by different types of symbol table.
1515 (build_symbol_entry): Renamed from build_method_symbols_entry.
1516
1517 2003-09-30 Roger Sayle <roger@eyesopen.com>
1518
1519 * jcf-write.c (generate_bytecode_insns): Implement evaluate-once
1520 semantics for SAVE_EXPR, by caching the result in a temporary.
1521
1522 2003-09-28 Richard Henderson <rth@redhat.com>
1523
1524 * check-init.c (check_init): Save and restore input_location
1525 instead of file and line separately.
1526 * decl.c (java_expand_body): Likewise.
1527 * jcf-write.c (generate_bytecode_insns): Likewise.
1528 * parse.y (safe_layout_class): Likewise.
1529 * jcf-parse.c (read_class, parse_class_file): Likewise.
1530 (java_parse_file): Use %H for warning locator.
1531
1532 2003-09-28 Roger Sayle <roger@eyesopen.com>
1533
1534 * expr.c (java_check_reference): Use the semantics of COND_EXPRs
1535 with void-type branches instead of using a COMPOUND_EXPR.
1536
1537 2003-09-28 Jeff Sturm <jsturm@one-point.com>
1538
1539 * decl.c (java_optimize_inline, dump_function): Remove.
1540 * java-tree.h (java_optimize_inline): Remove declaration.
1541 * jcf-parse.c (java_parse_file): Assume flag_unit_at_a_time is set.
1542 * parse.y (source_end_java_method, java_expand_classes):
1543 Likewise. Remove dead code.
1544
1545 2003-09-27 Roger Sayle <roger@eyesopen.com>
1546
1547 * lang.c (java_init_options): Set flag_evaluation_order.
1548 * expr.c (force_evaluation_order): Don't attempt to force
1549 evaluation order of binary operations using save_expr.
1550 * parse.y (java_complete_lhs): No longer need to call
1551 force_evaluation_order when constructing binary operators.
1552
1553 2003-09-27 Alexandre Petit-Bianco <apbianco@redhat.com>
1554 Bryce McKinlay <bryce@mckinlay.net.nz>
1555
1556 PR java/1333:
1557 * parse.y (not_accessible_field_error): New function.
1558 (resolve_expression_name): Check field access permissions.
1559 (resolve_qualified_expression_name): Use
1560 not_accessible_field_error.
1561 (resolve_qualified_expression_name): Likewise.
1562
1563 2003-09-24 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1564
1565 * class.c (build_utf8_ref): Test for HAVE_GAS_SHF_MERGE value.
1566
1567 2003-09-23 Roger Sayle <roger@eyesopen.com>
1568
1569 * jcf-write.c (generate_bytecode_insns): Optimize binary operations
1570 with equal operands without side-effects.
1571
1572 2003-09-22 Jeff Sturm <jsturm@one-point.com>
1573
1574 * decl.c (java_init_decl_processing): Don't emit otable decls
1575 if flag_indirect_dispatch is not set.
1576
1577 2003-09-21 Richard Henderson <rth@redhat.com>
1578
1579 * class.c, decl.c, jcf-parse.c, jcf-write.c, parse.y,
1580 resource.c: Revert.
1581
1582 2003-09-21 Richard Henderson <rth@redhat.com>
1583
1584 * class.c, decl.c, jcf-parse.c, jcf-write.c, parse.y,
1585 resource.c: Update for DECL_SOURCE_LOCATION rename and change to const.
1586
1587 2003-09-20 Richard Henderson <rth@redhat.com>
1588
1589 * check-init.c, class.c, decl.c, expr.c: Use %J in diagnostics.
1590
1591 2003-09-18 Roger Sayle <roger@eyesopen.com>
1592
1593 * expr.c (java_truthvalue_conversion): Remove FFS_EXPR case.
1594 * check-init.c (check_init): Likewise.
1595
1596 2003-09-18 Roger Sayle <roger@eyesopen.com>
1597
1598 * jcf-write.c (generate_bytecode_insns): Add support for fconst_2.
1599
1600 2003-09-16 Andrew Haley <aph@redhat.com>
1601
1602 * jcf-write.c (generate_bytecode_insns): Add MIN_EXPR and MAX_EXPR.
1603
1604 2003-09-17 Ranjit Mathew <rmathew@hotmail.com>
1605
1606 Fixes PR java/9577
1607 * mangle.c (find_compression_record_match): Skip
1608 over a "6JArray" (the array template mangled string)
1609 IDENTIFIER_NODE.
1610 (mangle_array_type): Correct minor typo.
1611 (atms): Move definition to the beginning.
1612
1613 2003-09-16 Bryce McKinlay <bryce@mckinlay.net.nz>
1614
1615 * class.c (add_miranda_methods): Ensure super-interfaces are laid
1616 out. Fix for PR java/12254.
1617
1618 2003-09-11 Richard Henderson <rth@redhat.com>
1619
1620 * parse.y (source_end_java_method): Update for new
1621 cgraph_finalize_function argument.
1622
1623 2003-09-09 Richard Henderson <rth@redhat.com>
1624
1625 * parse.y (source_end_java_method): Update call to
1626 cgraph_finalize_function.
1627
1628 2003-09-03 Jeff Sturm <jsturm@one-point.com>
1629
1630 * decl.c (java_expand_body): New function.
1631 * expr.c (build_class_init): Set DECL_IGNORED_P.
1632 * java-tree.h (start_complete_expand_method,
1633 java_expand_body): Declare.
1634 * jcf-parse.c (cgraph.h): Include.
1635 (java_parse_file): Handle flag_unit_at_a_time.
1636 * lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING,
1637 LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Define.
1638 (java_estimate_num_insns): Use walk_tree_without_duplicates.
1639 (java_start_inlining): New function.
1640 * parse.h (java_finish_classes): Declare.
1641 * parse.y: Include cgraph.h.
1642 (block): Don't special-case empty block production.
1643 (craft_constructor): Set DECL_INLINE.
1644 (source_end_java_method): Handle flag_unit_at_a_time.
1645 Replace inline code with call to java_expand_body.
1646 (start_complete_expand_method): Remove static modifier.
1647 (java_expand_method_bodies): Patch function tree for
1648 class initialization and/or synchronization as needed.
1649 Don't begin RTL expansion yet.
1650 (java_expand_classes): Check flag_unit_at_a_time before
1651 calling finish_class.
1652 (java_finish_classes): New function.
1653 (java_complete_lhs): Ensure COMPOUND_EXPR has non-NULL type.
1654 (patch_assignment): Set DECL_CONTEXT on temporary variable.
1655 (emit_test_initialization): Set DECL_IGNORED_P.
1656
1657 2003-09-03 Roger Sayle <roger@eyesopen.com>
1658
1659 * builtins.c (enum builtin_type): Delete unused enumeration.
1660 * Make-lang.in (java/builtins.o): Remove built-types.def dependency.
1661
1662 2003-08-28 Tom Tromey <tromey@redhat.com>
1663
1664 * gcj.texi (Extensions): Document gcjlib URLs.
1665
1666 2003-08-20 Tom Tromey <tromey@redhat.com>
1667
1668 * gcj.texi (Extensions): Added xref.
1669 (libgcj Runtime Properties): Document
1670 gnu.gcj.runtime.VMClassLoader.library_control.
1671
1672 2003-08-20 Andrew Haley <aph@redhat.com>
1673
1674 * except.c (prepare_eh_table_type): Use new encoding for exception
1675 handlers when using -fno-assume-compiled.
1676
1677 2003-08-13 Tom Tromey <tromey@redhat.com>
1678
1679 * gcj.texi (Invoking gij): Document -X and -?.
1680
1681 2003-08-13 Mohan Embar <gnustuff@thisiscool.com>
1682
1683 * Make-lang.in: Added missing win32-host.o to JAVA_OBJS,
1684 GCJH_OBJS, JCFDUMP_OBJS
1685 * win32-host.c: Removed the unnecessary and broken dependency
1686 on jcf.h
1687
1688 2003-08-11 Tom Tromey <tromey@redhat.com>
1689
1690 * parse.y (java_check_regular_methods): Typo fixes. Call
1691 check_interface_throws_clauses. Use
1692 check_concrete_throws_clauses.
1693 (check_interface_throws_clauses): New function.
1694 (check_concrete_throws_clauses): New function.
1695 (hack_is_accessible_p): New function.
1696 (find_most_specific_methods_list): Added FIXME.
1697 * typeck.c (lookup_do): Use `flags' argument to decide what to
1698 do. Reimplemented.
1699 (lookup_argument_method_generic): New function.
1700 (lookup_argument_method2): Removed.
1701 * jcf.h (ACC_INVISIBLE): New define.
1702 * jcf-write.c (generate_classfile): Skip invisible methods.
1703 * class.c (add_miranda_methods): New function.
1704 (layout_class_methods): Use it.
1705 (get_access_flags_from_decl): Use ACC_INVISIBLE.
1706 * java-tree.h (METHOD_INVISIBLE): New define.
1707 (lang_decl_func) [invisible]: New field.
1708 (lookup_argument_method_generic): Declare.
1709 (SEARCH_INTERFACE): New define.
1710 (SEARCH_SUPER): Likewise.
1711 (SEARCH_ONLY_INTERFACE): Likewise.
1712 (SEARCH_VISIBLE): Likewise.
1713 (lookup_argument_method2): Removed declaration.
1714
1715 2003-08-05 Tom Tromey <tromey@redhat.com>
1716
1717 Fix for PR java/11600:
1718 * parse.y (java_complete_lhs): See whether we're calling a method
1719 on an array.
1720 (check_thrown_exceptions): Added `is_array_call' argument;
1721 fixed `clone' checking; updated all callers.
1722
1723 2003-08-05 Steven Bosscher <steven@gcc.gnu.org>
1724
1725 * java-tree.h (DECL_ESTIMATED_INSNS): Remove (moved to tree.h).
1726
1727 2003-08-03 Tom Tromey <tromey@redhat.com>
1728
1729 * java-tree.h (METHOD_TRANSIENT): Removed.
1730 * decl.c (pushdecl): Removed some dead code.
1731 * class.c (get_access_flags_from_decl): Can't have transient
1732 method.
1733 (add_method_1): Can't have a transient method.
1734
1735 2003-07-28 Andreas Jaeger <aj@suse.de>
1736
1737 * jvspec.c: Convert to ISO C90 prototypes.
1738
1739 2003-07-25 Nathan Sidwell <nathan@codesourcery.com>
1740
1741 * decl.c (force_poplevels): Fix warning call.
1742
1743 2003-07-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
1744
1745 * expr.c (expand_java_field_op): Don't use xxx_with_decl
1746 (expand_java_field_op): Likewise.
1747 * class.c (layout_class_method): Likewise
1748 (emit_register_classes): Likewise.
1749 * decl.c (pushdecl): Likewise.
1750 (poplevel): Likewise.
1751 (force_poplevels): Likewise.
1752 (give_name_to_locals): Likewise.
1753 * check-init.c (check_for_initialization): Likewise.
1754
1755 2003-07-24 Jason Merrill <jason@redhat.com>
1756
1757 * java-tree.h: Move boolean_type_node et al to the back end.
1758
1759 2003-07-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1760
1761 * class.c java-tree.h jcf-write.c jvspec.c: Remove unnecessary
1762 casts.
1763
1764 2003-07-19 Neil Booth <neil@daikokuya.co.uk>
1765
1766 * lang.opt: Don't show -MD_ and -MDD_.
1767
1768 2003-07-18 Neil Booth <neil@daikokuya.co.uk>
1769
1770 * lang-options.h: Remove.
1771 * lang.opt: Add help text.
1772
1773 2003-07-15 Kazu Hirata <kazu@cs.umass.edu>
1774
1775 * expr.c: Remove the last argument to expand_assignment().
1776
1777 2003-07-09 Jan Hubicka <jh@suse.cz>
1778
1779 * java-tree.h (DECL_NUM_STMTS): Rename to...
1780 (DECL_ESTIMATED_INSNS): ... this.
1781 * lang.c (java_estimate_num_insns, java_estimate_num_insns_1):
1782 New static functions.
1783 (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS): Define.
1784 * parser.y (add_stmt_to_compound): Do not account statements.
1785
1786 2003-07-08 Mark Wielaard <mark@klomp.org>
1787
1788 * gcj.texi: CNI now expands to Compiled Native Interface.
1789
1790 2003-07-08 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1791
1792 * Make-lang.in (java/gcj.dvi): Use PWD_COMMAND.
1793
1794 2003-07-07 Nathan Sidwell <nathan@codesourcery.com>
1795
1796 * expr.c (expand_byte_code): Adjist emit_line_note call.
1797
1798 2003-07-06 Neil Booth <neil@daikokuya.co.uk>
1799
1800 * lang.c (java_handle_option): Don't handle filenames.
1801
1802 2003-07-02 Zack Weinberg <zack@codesourcery.com>
1803
1804 * jcf-path.c: Don't default-define PATH_SEPARATOR nor
1805 DIR_SEPARATOR.
1806 Use FILENAME_CMP.
1807 * jcf-write.c: Don't default-define DIR_SEPARATOR.
1808 * jcf.h: Delete COMPARE_FILENAMES definition.
1809
1810 2003-07-02 Neil Booth <neil@daikokuya.co.uk>
1811
1812 * lang.c (java_init_options): Update prototype.
1813
1814 2003-07-01 Nathan Sidwell <nathan@codesourcery.com>
1815
1816 * decl.c (poplevel): Adjust define_label call.
1817
1818 2003-06-27 Zack Weinberg <zack@codesourcery.com>
1819
1820 * gjavah.c (flag_jni): Make non-static.
1821 * parse-scan.y (ctxp): Make non-static.
1822
1823 * class.c (build_method_symbols_entry)
1824 * expr.c (get_offset_table_index)
1825 * jcf-parse.c (jcf_parse):
1826 Mark the definition static, matching the forward declaration.
1827
1828 2003-06-26 Neil Booth <neil@daikokuya.co.uk>
1829
1830 * lang.c (java_handle_option): Don't check for missing arguments.
1831
1832 2003-06-20 Nathan Sidwell <nathan@codesourcery.com>
1833
1834 * class.c (push_class): Use a location_t to save place.
1835 (emit_register_classes): Set input_location. Adjust
1836 expand_function_end call.
1837 * resource.c (write_resource_constructor): Likewise.
1838 * decl.c (end_java_method): Adjust expand_function_end call.
1839 * parse.y (source_end_java_method): Likewise.
1840
1841 2003-06-17 Robert Abeles <rabeles@archaelogic.com>
1842
1843 * lang.c (java_handle_option): Likewise.
1844
1845 2003-06-16 Neil Booth <neil@daikokuya.co.uk>
1846
1847 * lang.c (java_handle_option): Special-casing of optional
1848 joined arguments no longer needed.
1849 * lang.opt: Update switches that take optional argument.
1850
1851 2003-06-15 Neil Booth <neil@daikokuya.co.uk>
1852
1853 * lang.opt: Declare Java.
1854 * lang.c (java_init_options): Update.
1855
1856 2003-06-15 Neil Booth <neil@daikokuya.co.uk>
1857
1858 * lang.c (version_flag): Rename to v_flag to avoid clash w/ toplev.h.
1859
1860 2003-06-14 Neil Booth <neil@daikokuya.co.uk>
1861
1862 * lang-specs.h: Rewrite -MD and -MMD to append an underscore.
1863 * lang.c (java_handle_option): -MD and -MMD have an underscore.
1864 * lang.opt: -MD and -MMD have an underscore.
1865
1866 2003-06-14 Nathan Sidwell <nathan@codesourcery.com>
1867
1868 * class.c (emit_register_classes): Adjust init_function_start
1869 call.
1870 * decl.c (complete_start_java_method): Likewise.
1871 * resource.c (write_resource_constructor): Likewise.
1872
1873 2003-06-14 Neil Booth <neil@daikokuya.co.uk>
1874
1875 * Make-lang.in: Update to use options.c and options.h.
1876 * lang.c: Include options.h not j-options.h.
1877 (java_handle_option): Abort on unrecognized option.
1878 (java_init_options): Request Java switches.
1879
1880 2003-06-11 Neil Booth <neil@daikokuya.co.uk>
1881
1882 * Make-lang.in: Handle mostlyclean.
1883
1884 2003-06-11 Tom Tromey <tromey@redhat.com>
1885
1886 * lang.c (java_handle_option): Update dependency_tracking for
1887 OPT_MF case.
1888
1889 * lang.c (java_handle_option): OPT_fbootclasspath_ can take an
1890 empty argument.
1891
1892 2003-06-10 Andrew Haley <aph@redhat.com>
1893
1894 * resource.c (write_resource_constructor): Use expand_expr to
1895 generate the address of the label attached to a resource.
1896 * Make-lang.in (java/resource.o): Add expr.h
1897
1898 2003-06-10 Andrew Haley <aph@redhat.com>
1899
1900 * lang.c (LANG_HOOKS_DECL_OK_FOR_SIBCALL): New.
1901 (java_decl_ok_for_sibcall): New.
1902
1903 2003-06-09 Neil Booth <neil@daikokuya.co.uk>
1904
1905 * Make-lang.in (JAVA_OBJS, java/lang.o): Update.
1906 (java/j-options.c, java/j-options.h): New.
1907 * java-tree.h (resource_name, compile_resource_file,
1908 compile_resource_data): Constify.
1909 * jcf-write.c (jcf_write_base_directory): Similarly.
1910 * jcf.h (jcf_write_base_directory): Similarly.
1911 * lang.c: Include j-options.h.
1912 (cl_options_count, cl_options, string_option, java_decode_option,
1913 lang_f_options, lang_W_options, LANG_HOOKS_DECODE_OPTION,
1914 process_option_with_no): Remove.
1915 (resource_name): Constify.
1916 (LANG_HOOKS_HANDLE_OPTION): Override.
1917 (java_handle_option): New.
1918 (java_init): Don't call jcf_path_init.
1919 (java_init_options): Call jcf_path_init.
1920 * lang.opt: New.
1921 * resource.c (compile_resource_data, compile_resource_file): Constify.
1922
1923 2003-06-09 Nathan Sidwell <nathan@codesourcery.com>
1924
1925 * java-tree.h (DECL_FUNCTION_LAST_LINE): New.
1926 (struct lang_decl_func): Add last_line field.
1927 * parse.h (DECL_SOURCE_LINE_MERGE, DECL_SOURCE_LINE_FIRST,
1928 DECL_SOURCE_LINE_LAST): Remove.
1929 * parse.y (missing_return_error, finish_method_declaration,
1930 lookup_cl, start_artificial_method_body, source_end_java_method,
1931 start_complete_expand_method): Adjust.
1932
1933 2003-06-08 Tom Tromey <tromey@redhat.com>
1934
1935 * jvspec.c (jvgenmain_spec): Added `*' after fassume-compiled and
1936 fno-assume-compiled.
1937
1938 2003-06-08 Roger Sayle <roger@eyesopen.com>
1939
1940 * builtins.c (define_builtin_type, builtin_types): Delete.
1941 (define_builtin): Rewritten to take just the built-in code,
1942 the function's name, type and fallback library function name.
1943 All built-ins used by Java are implicit and BUILT_IN_NORMAL.
1944 (initialize_builtins): Overhaul to define the GCC builtins
1945 used by gcj manually, providing the Java run-time's
1946 implementations as the fallback library function.
1947
1948 2003-06-08 Anthony Green <green@redhat.com>
1949
1950 * parse.y (patch_cast): Fix conversions from floating-point to
1951 integral types.
1952
1953 2003-06-08 Neil Booth <neil@daikokuya.co.uk>
1954
1955 * Make-lang.in: Update.
1956 * lang.c: Include opts.h. Define cl_options_count and cl_options.
1957
1958 2003-06-07 Neil Booth <neil@daikokuya.co.uk>
1959
1960 * lang.c (java_init_options): Update.
1961
1962 2003-06-05 Jan Hubicka <jh@suse.cz>
1963
1964 * Make-lang.in: Add support for stageprofile and stagefeedback
1965
1966 2003-05-31 Roger Sayle <roger@eyesopen.com>
1967
1968 * lang.c (java_init_options): Prescribe wrap-around two's
1969 complement arithmetic overflow by setting flag_wrapv.
1970
1971 2003-05-29 Roger Sayle <roger@eyesopen.com>
1972
1973 * builtins.c (cos_builtin, sin_builtin, sqrt_builtin): Delete.
1974 (builtin_record): Add an additional builtin_code field to
1975 record which GCC built-in corresponds to the Java function.
1976 (java_builtins): Add new entries for atan, atan2, exp, log,
1977 pow and tan.
1978 (max_builtin, min_builtin, abs_builtin): Perform constant
1979 folding on the resulting tree.
1980 (java_build_function_call_expr): Likewise, perform constant
1981 folding on the resulting tree.
1982 (initialize_builtins): The NULL creators are now allowed in
1983 the java_builtins table, which is now terminated by an entry
1984 with builtin_code == END_BUILTINS.
1985 (check_for_builtin): Likewise. If the matching creator is
1986 NULL, construct the call using java_build_function_call_expr
1987 directly with the decl for the corresponding builtin_code.
1988
1989 2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
1990
1991 * win32-host.c: Normalize copyright boilerplate.
1992
1993 2003-05-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1994
1995 * parse.y (print_int_node): Use string concatentation on
1996 HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
1997 function calls into one.
1998
1999 2003-05-13 Zack Weinberg <zack@codesourcery.com>
2000
2001 * jcf-parse.c, jcf-write.c, lex.c: Replace all calls to
2002 fatal_io_error with calls to fatal_error; add ": %m" to the end of
2003 all the affected error messages.
2004
2005 2003-05-13 Richard Henderson <rth@redhat.com>
2006
2007 * class.c (layout_class_method): Set DECL_EXTERNAL.
2008 * decl.c (java_mark_decl_local, java_mark_class_local): New.
2009 * java-tree.h (java_mark_class_local): Declare.
2010 * jcf-parse.c (parse_class_file): Use it.
2011 * parse.y (java_expand_classes): Likewise.
2012
2013 2003-05-04 Nathan Sidwell <nathan@codesourcery.com>
2014
2015 * Make-lang.in (java/parse.o, java/parse-scan.o): Depend on input.h.
2016 * lex.h: #include input.h.
2017 * jv-scan.c (input_filename): Remove.
2018
2019 2003-05-02 Tom Tromey <tromey@redhat.com>
2020
2021 PR java/10491:
2022 * gjavah.c (HANDLE_INNERCLASSES_ATTRIBUTE): New macro.
2023 (handle_inner_classes): New function.
2024
2025 2003-05-01 Tom Tromey <tromey@redhat.com>
2026
2027 PR java/10459:
2028 * parse.y (finish_for_loop): Do nothing if update expression is a
2029 EXPR_WFL_NODE wrapping nothing.
2030 (java_complete_lhs) <COMPOUND_EXPR>: Likewise.
2031
2032 2003-05-02 Nathan Sidwell <nathan@codesourcery.com>
2033
2034 * lex.h (input_lineno): Remove declaration.
2035 * parse-scan.y: #include input.h.
2036 (input_filename): Remove declaration.
2037 (input_location): Add definition.
2038 (input_line): Remove definition.
2039
2040 2003-05-01 Nathan Sidwell <nathan@codesourcery.com>
2041
2042 * lex.h (lineno): Rename to ...
2043 (input_line): ... here
2044 * parse-scan.y (lineno): Rename to ...
2045 (input_line): ... here.
2046 (reset_report): Rename lineno to input_line.
2047 * check-init.c (check_init): Likewise.
2048 * class.c (push_class): Likewise.
2049 * decl.c (complete_start_java_method, end_java_method): Likewise.
2050 * expr.c (expand_byte_code): Likewise.
2051 * jcf-parse.c (give_name_to_class, parse_class_file): Likewise.
2052 * jcf-write.c (generate_bytecode_insns): Likewise.
2053 * lex.c (java_init_lex, java_allocate_new_line,
2054 do_java_lex): Likewise.
2055 * parse.h (YYNOT_TWICE): Likewise.
2056 * parse.y (empty_statement, expression_statement,
2057 java_pop_parser_context, java_parser_context_save_global,
2058 yyerror, register_fields, method_header, safe_layout_class,
2059 find_in_imports_on_demand, create_artificial_method,
2060 source_end_java_method, start_complete_expand_method,
2061 build_thisn_assign, java_complete_lhs,
2062 maybe_absorb_scoping_block): Likewise.
2063
2064 2003-04-20 Mohan Embar <gnustuff@thisiscool.com>
2065
2066 * jcf-io.c (find_class): use DIR_SEPARATOR instead of
2067 '/' when computing java source filename
2068
2069 2003-04-13 Tom Tromey <tromey@redhat.com>
2070
2071 * gjavah.c (print_c_decl): Indentation fix.
2072
2073 2003-04-12 Zack Weinberg <zack@codesourcery.com>
2074
2075 * class.c (make_field_value, make_method_value, get_dispatch_table)
2076 (make_class_data, emit_offset_symbol_table)
2077 * constants.c (build_constants_constructor)
2078 * java-tree.h (START_RECORD_CONSTRUCTOR)
2079 * parse.y (maybe_build_array_element_wfl):
2080 Use build_constructor.
2081
2082 2003-04-10 Eric Blake <ebb9@email.byu.edu>
2083
2084 PR java/10253:
2085 * parse.y (string_convert_int_cst): Always use at least one digit
2086 in string conversion. Remove ASCII dependence.
2087 (merge_string_cste): Fix merging of 3-byte UTF-8 characters.
2088
2089 2003-03-16 Mohan Embar <gnustuff@thisiscool.com>
2090
2091 * Make-lang.in: added win32-host.c
2092 * jcf.h: defined macro JCF_OPEN_EXACT_CASE which
2093 resolves to open() on non-Win32 platforms and
2094 Win32-specific jcf_open_exact_case() on Win32
2095 * jcf-io.c (find_class): use JCF_OPEN_EXACT_CASE
2096 when trying .java and .class files
2097 * win32-host.c: added to repository. Defines
2098 Win32-specific jcf_open_exact_case()
2099
2100 2003-04-10 Andrew Haley <aph@redhat.com>
2101
2102 * jcf-write.c (struct jcf_partial): num_jsrs: new field.
2103 (maybe_free_localvar): Renamed from localvar_free.
2104 Add new arg, really.
2105 (generate_bytecode_insns): Set new variable, jsrs.
2106 Only free local vars if no jsr insns have been emittted.
2107 Call maybe_free_localvar, not localvar_free.
2108
2109 2003-03-30 Joseph S. Myers <jsm@polyomino.org.uk>
2110
2111 * gcj.texi: Remove @ at start of file.
2112
2113 2003-03-25 Tom Tromey <tromey@redhat.com>
2114
2115 * parse.y (create_interface): Call CHECK_DEPRECATED.
2116
2117 2003-03-23 Zack Weinberg <zack@codesourcery.com>
2118
2119 * Make-lang.in: Link jcf-dump against $(LDEXP_LIB).
2120
2121 2003-03-21 Zack Weinberg <zack@codesourcery.com>
2122
2123 * javaop.h (jfloat, jdouble): Make them structures mirroring
2124 the bit fields of IEEE float and double respectively.
2125 (JFLOAT_FINITE, JFLOAT_QNAN_MASK, JFLOAT_EXP_BIAS,
2126 JDOUBLE_FINITE, JDOUBLE_QNAN_MASK, JDOUBLE_EXP_BIAS): New.
2127 (union Word, union DWord): Delete.
2128 (WORD_TO_FLOAT, WORDS_TO_DOUBLE): Update to match.
2129
2130 * gjavah.c (java_float_finite, java_double_finite, F_NAN_MASK,
2131 D_NAN_MASK): Delete.
2132 (jni_print_float, jni_print_double): New. Generate
2133 hexadecimal floating constants.
2134 (print_field_info): Use jni_print_float/double.
2135
2136 * jcf-dump.c: Include math.h. Use ldexp/frexp to assemble
2137 finite floating point numbers for output; special case
2138 non-finite floats.
2139
2140 2003-03-19 Nathanael Nerode <neroden@gcc.gnu.org>
2141
2142 * lang.c (java_dump_tree): Change return type from 'int' to 'bool'.
2143 Replace 0 and 1 with true and false in return statements.
2144
2145 2003-03-19 Tom Tromey <tromey@redhat.com>
2146
2147 * lex.c (do_java_lex): Renamed from java_lex.
2148 (java_lex): New function.
2149 Include timevar.h.
2150
2151 2003-03-13 Tom Tromey <tromey@redhat.com>
2152
2153 * parse.y (resolve_inner_class): Error if qualifier is a primitive
2154 type.
2155
2156 2003-03-04 Andrew Haley <aph@redhat.com>
2157
2158 * gjavah.c (is_first_data_member): New global variable.
2159 (print_c_decl): If it's the first data member, align it as the
2160 superclass.
2161 (process_file): Set is_first_data_member.
2162
2163 2003-03-11 Tom Tromey <tromey@redhat.com>
2164
2165 * parse.y (resolve_field_access): Initialize class if field is
2166 found in another static field.
2167 * expr.c (build_class_init): Don't optimize out initialization of
2168 implemented interface.
2169
2170 2003-03-11 Andrew Haley <aph@redhat.com>
2171
2172 * jcf-io.c (caching_stat): Initialize origsep to remove compiler
2173 warning.
2174
2175 2003-03-10 Ranjit Mathew <rmathew@hotmail.com>
2176
2177 * jcf-io.c (caching_stat): Account for both DIR_SEPARATOR
2178 and DIR_SEPARATOR_2 for a target.
2179 Correct minor typos.
2180
2181 * jcf-write.c (make_class_file_name): Take both DIR_SEPARATOR
2182 and DIR_SEPARATOR_2 for a target into account.
2183
2184 2003-03-08 Neil Booth <neil@daikokuya.co.uk>
2185
2186 * lang.c (java_init): Update prototype, move code to java_post_options.
2187 (java_post_options): Similarly.
2188
2189 2003-03-05 Ranjit Mathew <rmathew@hotmail.com>
2190
2191 * jcf.h (COMPARE_FILENAMES): New macro similar to "strcmp" to
2192 compare file name components depending on the case-sensitivity
2193 or otherwise of the host file system.
2194
2195 * jcf-path.c (add_entry): Use COMPARE_FILENAMES instead of
2196 "strcmp" to compare file name components.
2197 Use IS_DIR_SEPARATOR instead of comparing directly against
2198 DIR_SEPARATOR.
2199 (jcf_path_extdirs_arg): Use IS_DIR_SEPARATOR instead of
2200 comparing directly against DIR_SEPARATOR.
2201
2202 2003-03-04 Tom Tromey <tromey@redhat.com>
2203
2204 * Make-lang.in (java.tags): New target.
2205
2206 2003-03-01 Roger Sayle <roger@eyesopen.com>
2207
2208 * java/builtins.c (builtin_type): Handle DEF_FUNCTION_TYPE_VAR_3.
2209 (initialize_builtins): Handle DEF_FUNCTION_TYPE_VAR_3.
2210
2211 2003-03-01 Tom Tromey <tromey@redhat.com>
2212
2213 * parse.y (jdep_resolve_class): Only check deprecation if we found
2214 a decl.
2215
2216 2003-02-28 Tom Tromey <tromey@redhat.com>
2217
2218 PR java/9695:
2219 * class.c (maybe_layout_super_class): Always pass a WFL to
2220 do_resolve_class.
2221 * parse.y (do_resolve_class): Updated comment to explain
2222 parameters.
2223
2224 2003-02-26 Tom Tromey <tromey@redhat.com>
2225
2226 * jcf-write.c (generate_classfile): Check whether class is
2227 deprecated before writing attribute count.
2228
2229 2003-02-25 Roger Sayle <roger@eyesopen.com>
2230
2231 * java/decl.c (java_init_decl_processing): Get soft_fmod_node from
2232 built_in_decls[BUILT_IN_FMOD] rather than define it ourselves.
2233
2234 2003-02-23 Tom Tromey <tromey@redhat.com>
2235
2236 * lang-options.h: Added -Wdeprecated.
2237 * gcj.texi (Warnings): Document -Wdeprecated.
2238 * java-tree.h (flag_deprecated): Declare.
2239 * lang.c (lang_W_options): Added deprecated.
2240 (flag_deprecated): New global.
2241 * chartables.h: Rebuilt.
2242 * gen-table.pl (process_one): Look at whitespace.
2243 (print_tables): Define LETTER_SPACE, LETTER_MASK.
2244 * parse.h (CLEAR_DEPRECATED): New macro.
2245 (CHECK_DEPRECATED_NO_RESET): New macro.
2246 * jcf-parse.c (handle_deprecated): New function.
2247 (HANDLE_DEPRECATED_ATTRIBUTE): New define.
2248 * jcf-reader.c (get_attribute): Handle Deprecated attribute.
2249 * parse.y (resolve_type_during_patch): Check deprecation.
2250 (jdep_resolve_class): Likewise.
2251 (process_imports): Likewise.
2252 (resolve_expression_name): Likewise.
2253 (check_deprecation): Strip arrays from decl. Check
2254 flag_deprecated.
2255 (patch_method_invocation): Also check the particular constructor
2256 for deprecation.
2257 (register_fields): Use CHECK_DEPRECATED_NO_RESET in loop.
2258 * jcf-write.c (append_deprecated_attribute): New function.
2259 (generate_classfile): Generate deprecated attribute when
2260 appropriate.
2261 * lex.c (java_parse_doc_section): Return type now void. Rewrote.
2262 (java_lex) [case '*']: Simplify logic.
2263 (java_start_char_p): Use LETTER_MASK.
2264 (java_part_char_p): Likewise.
2265 (java_space_char_p): New function.
2266
2267 2003-02-20 Nathan Sidwell <nathan@codesourcery.com>
2268
2269 Change base class access representation.
2270 * java/class.c (set_super_info): Don't set TREE_VIA_PUBLIC.
2271 (add_interface_do): Likewise.
2272
2273 2003-02-12 Ranjit Mathew <rmathew@hotmail.com>
2274
2275 * decl.c (java_init_decl_processing): Change
2276 soft_lookupjnimethod_node to reflect the change in
2277 signature of _Jv_LookupJNIMethod in libjava/jni.cc
2278 * expr.c (build_jni_stub): Calculate and pass the size
2279 on the stack of the arguments to a JNI function. Use
2280 new target macro MODIFY_JNI_METHOD_CALL to allow a
2281 target to modify the call to a JNI method.
2282
2283 2003-02-08 Roger Sayle <roger@eyesopen.com>
2284
2285 * jcf-io.c (java_or_class_file): Use libiberty's lbasename
2286 instead of basename to avoid compiler warnings on Tru64.
2287
2288 2003-02-04 Joseph S. Myers <jsm@polyomino.org.uk>
2289
2290 * gcj.texi: Update to GFDL 1.2.
2291
2292 2003-01-31 Andrew Haley <aph@redhat.com>
2293
2294 * parse.y (java_expand_classes): Scan the whole class list looking
2295 for access methods that haven't yet been expanded.
2296
2297 2003-01-31 Adrian Bunk <bunk@fs.tum.de>
2298
2299 Fix for java/4269:
2300
2301 * jv-scan.c: Use HAVE_LANGINFO_CODESET instead of HAVE_NL_LANGINFO
2302 to fix bootstrap on sparc-unknown-netbsdelf1.5.
2303 * jcf-parse.c: Likewise.
2304
2305 2003-01-31 Mark Wielaard <mark@klomp.org>
2306
2307 * gjavah.c (throwable_p): Allocate 1 more byte for string.
2308
2309 2003-01-31 Nathan Sidwell <nathan@codesourcery.com>
2310
2311 * class.c (make_class): Use BINFO_ELTS.
2312 (set_super_info): Likewse.
2313 (add_interface_do): Likewise.
2314
2315 2003-01-30 Tom Tromey <tromey@redhat.com>
2316
2317 * jcf-parse.c (read_class): Update identifier's class value if it
2318 changed during parsing.
2319
2320 2003-01-30 Loren James Rittle <ljrittle@acm.org>
2321
2322 * Make-lang.in (po-generated): Find the targets in $(parsedir).
2323 Propagate change to all other rules as required.
2324 (java/parse-scan.o): Add explicit dependency on
2325 $(parsedir)/java/parse-scan.c .
2326
2327 2003-01-29 Tom Tromey <tromey@redhat.com>
2328
2329 * parse.y (patch_assignment): Only transform the rhs of an
2330 assignment when compiling to native.
2331
2332 2003-01-28 Tom Tromey <tromey@redhat.com>
2333
2334 * jcf-write.c (generate_bytecode_conditional): Typo fixes.
2335
2336 2003-01-28 Tom Tromey <tromey@redhat.com>
2337
2338 * lex.c (java_lex): Don't include UEOF as part of token.
2339 (java_read_unicode): Error if \u sequence prematurely terminated.
2340
2341 2003-01-27 Tom Tromey <tromey@redhat.com>
2342
2343 * parse.y (java_check_regular_methods): Check for construct after
2344 checking types in throws clause.
2345
2346 2003-01-24 Tom Tromey <tromey@redhat.com>
2347
2348 * class.c (build_static_field_ref): Only a String or numeric field
2349 can fold to a constant.
2350
2351 2003-01-23 Tom Tromey <tromey@redhat.com>
2352
2353 * jcf-parse.c (parse_zip_file_entries): Overwrite trailing \0 of
2354 file name in resource buffer.
2355
2356 2003-01-23 Tom Tromey <tromey@redhat.com>
2357
2358 * expr.c (build_known_method_ref): Use method's context to find
2359 method table index.
2360
2361 2003-01-23 Tom Tromey <tromey@redhat.com>
2362
2363 * constants.c (set_constant_entry): Allocated cleared memory.
2364
2365 2003-01-22 Tom Tromey <tromey@redhat.com>
2366
2367 * java-tree.h: Don't use PARAMS.
2368 * resource.c: Add prototypes for all functions.
2369 (write_resource_constructor): Use `const char *' to avoid
2370 warning.
2371
2372 2003-01-22 Nathanael Nerode <neroden@gcc.gnu.org>
2373
2374 * jcf-parse.c (process_zip_dir): Remove unused variable.
2375
2376 2003-01-22 Tom Tromey <tromey@redhat.com>
2377
2378 * expr.c (build_invokeinterface): Abort if method's context is not
2379 an interface.
2380
2381 2003-01-22 Tom Tromey <tromey@redhat.com>
2382
2383 * gcj.texi (Input and output files): Mention non-class entries.
2384 * decl.c (java_init_decl_processing): Call
2385 init_resource_processing.
2386 * java-tree.h (compile_resource_data, write_resource_constructor,
2387 compile_resource_file, init_resource_processing): Declare.
2388 * config-lang.in (gtfiles): Added resource.c.
2389 * Make-lang.in (gt-java-resource.h): New target.
2390 (JAVA_OBJS): Added resource.o.
2391 (java/resource.o): New target.
2392 * resource.c: New file.
2393 * class.c (compile_resource_file): Moved to resource.c.
2394 (registerResource_libfunc): Likewise.
2395 (utf8_decl_list): Mark with GTY; now static.
2396 * jcf-parse.c (classify_zip_file): New function.
2397 (parse_zip_file_entries): Use it; compile .properties files.
2398 (process_zip_dir): Use classify_zip_file and compute_class_name.
2399 Don't write class name into zip directory.
2400 (java_parse_file): Call write_resource_constructor.
2401 (compute_class_name): New function.
2402 * jcf-io.c (read_zip_member): Reindented.
2403
2404 2003-01-21 Tom Tromey <tromey@redhat.com>
2405
2406 * class.c (supers_all_compiled): New function.
2407 (make_class_data): Use it.
2408
2409 2003-01-21 Tom Tromey <tromey@redhat.com>
2410
2411 * parse.y (method_header): Native method can't be strictfp.
2412 No method can be transient or volatile.
2413
2414 2003-01-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2415
2416 Make-lang.in (jvspec.o-warn): Add -Wno-error.
2417
2418 2003-01-18 Kazu Hirata <kazu@cs.umass.edu>
2419
2420 * check-init.c: Fix comment typos.
2421 * class.c: Likewise.
2422 * constants.c: Likewise.
2423 * decl.c: Likewise.
2424 * except.c: Likewise.
2425 * expr.c: Likewise.
2426 * java-except.h: Likewise.
2427 * java-tree.h: Likewise.
2428 * javaop.h: Likewise.
2429 * jcf-dump.c: Likewise.
2430 * jcf-io.c: Likewise.
2431 * jcf-parse.c: Likewise.
2432 * jcf-write.c: Likewise.
2433 * lang.c: Likewise.
2434 * mangle.c: Likewise.
2435 * typeck.c: Likewise.
2436 * verify.c: Likewise.
2437
2438 2003-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2439
2440 * Make-lang.in (java/jcf-write.o): Depend on $(TM_P_H).
2441 * jcf-write.c: Include "tm_p.h".
2442
2443 2003-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2444
2445 * jcf-io.c (caching_stat): Cast the 3rd arg of scandir to void*.
2446
2447 2003-01-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2448
2449 * builtins.c (java_build_function_call_expr): Renamed from
2450 build_function_call_expr. All callers changed.
2451
2452 * Make-lang.in (java/jcf-parse.o): Depend on $(TM_P_H).
2453 * jcf-parse.c: Include tm_p.h.
2454
2455 * jcf-write.c (generate_bytecode_insns): Avoid signed/unsigned
2456 warning.
2457
2458 2003-01-14 Tom Tromey <tromey@redhat.com>
2459
2460 * class.c (make_class_data): Check that super is compiled before
2461 building class reference to it.
2462
2463 2003-01-14 Andrew Haley <aph@redhat.com>
2464
2465 * decl.c (java_init_decl_processing): _Jv_NewMultiArray is a
2466 varargs function -- correct.
2467
2468 2003-01-14 Andrew Haley <aph@redhat.com>
2469
2470 * decl.c (java_init_decl_processing): Temporarily back out previous patch.
2471
2472 2003-01-14 Andrew Haley <aph@redhat.com>
2473
2474 * decl.c (java_init_decl_processing): _Jv_NewMultiArray is a
2475 varargs function -- correct.
2476
2477 * parse.y (patch_assignment): Copy the rhs of an assignment into a
2478 temporary if the RHS is a reference.
2479
2480 2003-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2481
2482 * Make-lang.in (keyword.h): Pass "-L ANSI-C" to gperf.
2483 * keyword.h: Regenerated.
2484
2485 * All Files: Convert to ISO C style function definitions.
2486
2487 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
2488
2489 * parse.y (check_pkg_class_access): ANSIfy definition.
2490
2491 2003-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2492
2493 * decl.c, parse-scan.y, parse.y: Don't cast return value of
2494 xmalloc et al.
2495
2496 * class.c, gjavah.c, parse.y, verify.c: Don't use PTR.
2497
2498 2003-01-09 Geoffrey Keating <geoffk@apple.com>
2499
2500 Merge from pch-branch:
2501
2502 2002-12-02 Geoffrey Keating <geoffk@apple.com>
2503
2504 * Make-lang.in (java/gjavah.o): Update dependencies.
2505 * gjavah.c: Include ggc.h.
2506
2507 2002-08-16 Geoffrey Keating <geoffk@redhat.com>
2508
2509 * Make-lang.in (GCJH_OBJS): Add ggc-none.o.
2510 (JCFDUMP_OBJS): Add ggc-none.o.
2511 (java/jcf-dump.o): Depend on GGC_H.
2512 * jcf-reader.c (jcf_parse_constant_pool): Use ggc_alloc to allocate
2513 CPool substructures.
2514 * jcf-parse.c (process_zip_dir): Use ggc_alloc to allocate JCFs.
2515 * jcf-dump.c: Include ggc.h.
2516
2517 2002-08-08 Geoffrey Keating <geoffk@redhat.com>
2518
2519 * jcf.h (union cpool_entry): New.
2520 (struct CPool): Use gengtype to mark. Change field 'data' to be
2521 an array of unions.
2522 (struct JCF): Use gengtype to mark.
2523 (CPOOL_UINT): Update for new cpool_entry type.
2524 (CPOOL_USHORT1): Likewise.
2525 (CPOOL_USHORT2): Likewise.
2526 (CPOOL_FINISH): Use GC to free cpool subfields.
2527 * parse.h (struct parser_ctxt): Mark field current_jcf.
2528 * lex.c (java_init_lex): Use GC to allocate struct JCF.
2529 * jcf-parse.c (HANDLE_CONSTANT_Utf8): Update for new cpool_entry type.
2530 (main_jcf): Use gengtype to mark.
2531 (ggc_mark_jcf): Delete.
2532 (get_constant): Update for new cpool_entry type.
2533 (give_name_to_class): Likewise.
2534 (get_class_constant): Likewise.
2535 (init_outgoing_cpool): Use GGC to allocate struct CPool.
2536 (java_parse_file): Use GGC to allocate struct JCF.
2537 (init_jcf_parse): Don't call ggc_add_root.
2538 * jcf-reader.c (jcf_parse_constant_pool): Update for new
2539 cpool_entry type.
2540 * java-tree.h (current_jcf): Use gengtype to mark.
2541 (CPOOL_UTF): Update for new cpool_entry type.
2542 (outgoing_cpool): Use gengtype to mark.
2543 (struct lang_type): GC struct JCF and struct CPool.
2544 * config-lang.in (gtfiles): Add jcf.h.
2545 * constants.c (find_tree_constant): New.
2546 (set_constant_entry): Allocate cpool subfields using GGC. Update
2547 for new cpool_entry type.
2548 (find_constant1): Update for new cpool_entry type.
2549 (find_constant2): Likewise.
2550 (find_utf8_constant): Use find_tree_constant.
2551 (find_class_or_string_constant): Remove unnecessary cast to jword.
2552 Update for new cpool_entry type.
2553 (count_constant_pool_bytes): Update for new cpool_entry type.
2554 (write_constant_pool): Likewise.
2555 (alloc_name_constant): Use find_tree_constant.
2556 (build_constants_constructor): Update for new cpool_entry type.
2557
2558 2002-08-08 Geoffrey Keating <geoffk@redhat.com>
2559
2560 * parse.y (mark_parser_ctxt): Delete.
2561 (goal): Don't use ggc_add_root.
2562 (create_new_parser_context): Use GC to allocate struct parser_ctxt.
2563 (java_pop_parser_context): Let GC free parser_ctxt.
2564 (java_parser_context_resume): Likewise.
2565 * parse.h (struct parser_ctxt): Use gengtype to mark.
2566 (ctxp): Likewise.
2567 (ctxp_for_generation): Likewise.
2568 * lex.h (struct java_lc_s): Mark for gengtype.
2569 (java_lexer): Rearrange for gengtype.
2570 * config-lang.in (gtfiles): Add lex.h, parse.h.
2571
2572 2003-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2573
2574 * All Files: Remove PARAMS macro.
2575
2576 * expr.c, gjavah.c, javaop.h, jcf-dump.c, jcf-io.c, jcf-reader.c,
2577 jcf-write.c, jcf.h, jv-scan.c: Don't rely on the `DEFUN', `AND' or
2578 `__STDC__' macros.
2579
2580 * jv-scan.c, parse.y: Remove VPARAMS, VA_OPEN, VA_FIXEDARG and
2581 VA_CLOSE.
2582
2583 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
2584
2585 * Make-lang.in (java.install-common, java.uninstall,
2586 java.install-info, java.install-man): Prepend $(DESTDIR)
2587 to destination paths in all (un)installation commands.
2588 (java.install-common): Rewrite $(LN) command to support
2589 DESTDIR with "ln" as well as with "ln -s".
2590
2591 2003-01-08 Nathanael Nerode <neroden@gcc.gnu.org>
2592
2593 * java-tree.h: Protect against multiple inclusion.
2594
2595 2003-01-07 Tom Tromey <tromey@redhat.com>
2596
2597 * class.c (add_assume_compiled): Don't adjust parent if we're
2598 already at the root of tree.
2599
2600 2003-01-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2601
2602 * lang.c (dump_compound_expr): Prototype.
2603
2604 2003-01-03 Tom Tromey <tromey@redhat.com>
2605
2606 Fix for PR java/8712:
2607 * expr.c (build_instanceof): Build an NE_EXPR, not a COND_EXPR,
2608 when simply checking against `null'.
2609
2610 2003-01-03 Tom Tromey <tromey@redhat.com>
2611
2612 * gcj.texi (Standard Properties): Document http.proxyHost and
2613 http.proxyPort.
2614
2615 * gcj.texi (GNU Classpath Properties): Document new properties.
2616
2617 2003-01-02 Steven Bosscher <s.bosscher@student.tudelft.nl>
2618
2619 * java/jcf-reader.c, java/jvgenmain.c, java/keyword.gperf,
2620 java/lang-options.h, java/mangle.c, java/mangle_name.c,
2621 java/xref.c, java/zextract.c,java/zipfile.h: Fix copyright years.
2622
2623 2003-01-01 Steven Bosscher <s.bosscher@student.tudelft.nl>
2624
2625 * Make-lang.in, boehm.c, buffer.c,
2626 buffer.h, builtins.c, class.c,
2627 config-lang.in, constants.c,
2628 convert.h, decl.c, except.c,
2629 expr.c, java-except.h,
2630 java-tree.h, javaop.def,
2631 jcf-parse.c, jcf-write.c,
2632 jv-scan.c, jvgenmain.c,
2633 jvspec.c, keyword.gperf,
2634 keyword.h, lang-options.h,
2635 lang-specs.h, lang.c, lex.c,
2636 lex.h, mangle.c, mangle_name.c,
2637 parse-scan.y, parse.h, parse.y,
2638 typeck.c, verify.c, xref.c,
2639 xref.h: Replace "GNU CC" with
2640 "GCC" in the copyright header.
2641
2642 * check-init.c, gjavah.c, javaop.h,
2643 jcf-depend.c, jcf-dump.c, jcf-io.c,
2644 jcf-path.c, jcf-reader.c, jcf.h,
2645 zextract.c, zipfile.h: These files are
2646 "part of GCC". Also say "GCC" not "GNU CC".
2647
2648 2002-12-30 DJ Delorie <dj@redhat.com>
2649
2650 * Make-lang.in: Protect against texi2pod/pod2man failing.
2651
2652 2002-12-28 Joseph S. Myers <jsm@polyomino.org.uk>
2653
2654 * gcj.texi: Use @copying.
2655
2656 2002-12-27 Mark Mitchell <mark@codesourcery.com>
2657
2658 * gjavah.c (print_name_for_stub_or_jni): Adjust call to
2659 print_cxx_classname.
2660 (print_cxx_classname): Add add_scope parameter.
2661 (print_class_decls): Do not emit a semicolon after the extern
2662 "Java" block.
2663 (process_file): Adjust calls to print_cxx_classname.
2664
2665 2002-12-23 Joseph S. Myers <jsm@polyomino.org.uk>
2666
2667 * gcj.texi: Include Cover Texts in man page.
2668
2669 2002-12-23 Jeff Sturm <jsturm@one-point.com>
2670
2671 * class.c (build_static_field_ref): Check FIELD_FINAL.
2672
2673 * constants.c (alloc_class_constant): Use TYPE_CPOOL_DATA_REF
2674 instead of current_constant_pool_data_ref.
2675 * java-tree.h (current_constant_pool_data_ref): Undefine.
2676 (JTI_CURRENT_CONSTANT_POOL_DATA_REF): Remove.
2677 * jcf-parse.c (init_outgoing_cpool): Don't initialize
2678 current_constant_pool_data_ref.
2679
2680 * except.c (prepare_eh_table_type ): Use DECL_NAME of class type,
2681 not build_internal_class_name.
2682
2683 * parse.y (patch_incomplete_class_ref): Always emit `class$' method.
2684 Use it when class ref isn't certain to be compiled.
2685
2686 2002-12-23 Joseph S. Myers <jsm@polyomino.org.uk>
2687
2688 * gcj.texi: Include gcc-common.texi.
2689 * Make-lang.in ($(srcdir)/java/gcj.info, java/gcj.dvi): Depend on
2690 $(srcdir)/doc/include/gcc-common.texi.
2691
2692 2002-12-22 Anthony Green <green@redhat.com>
2693
2694 * gcj.texi (Limitations): Add note about org.xml.sax and
2695 org.w3c.dom.
2696
2697 2002-12-20 Tom Tromey <tromey@redhat.com>
2698
2699 * jcf-write.c (generate_bytecode_insns) [SWITCH_EXPR]: Handle case
2700 where minimum case value is Integer.MIN_VALUE.
2701 Fixes PR java/8955.
2702
2703 2002-12-18 Andrew Haley <aph@redhat.com>
2704
2705 * parse.y (patch_invoke): Force evaluation order when `check' is
2706 set. For PR libgcj/8945.
2707
2708 2002-12-16 Mark Mitchell <mark@codesourcery.com>
2709
2710 * gcj.texi: Change version number to 3.4.
2711
2712 2002-12-05 Ranjit Mathew <rmathew@hotmail.com>
2713 Andrew Haley <aph@redhat.com>
2714
2715 * parse.y (source_end_java_method): Remove custom encoding of line
2716 numbers for a function decl before passing it to the back end.
2717
2718 2002-12-03 Andrew Haley <aph@redhat.com>
2719
2720 * class.c (make_class_data): New field, "chain".
2721 * decl.c (java_init_decl_processing): Likewise.
2722
2723 2002-12-02 Tom Tromey <tromey@redhat.com>
2724
2725 For PR java/8740:
2726 * parse.y (do_resolve_class): Handle qualified name via
2727 recursion.
2728
2729 2002-11-30 Zack Weinberg <zack@codesourcery.com>
2730
2731 * boehm.c, buffer.c, builtins.c, check-init.c, class.c,
2732 constants.c, decl.c, except.c, expr.c, gjavah.c, jcf-depend.c,
2733 jcf-dump.c, jcf-io.c, jcf-parse.c, jcf-path.c, jcf-write.c,
2734 jv-scan.c, jvgenmain.c, jvspec.c, lang.c, mangle.c, mangle_name.c,
2735 parse-scan.y, parse.y, typeck.c, verify.c, xref.c, zextract.c:
2736 Include coretypes.h and tm.h.
2737 * Make-lang.in: Update dependencies.
2738
2739 2002-11-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2740
2741 * decl.c (java_init_decl_processing): Use `LL' on 64-bit constant.
2742
2743 2002-11-25 Diego Novillo <dnovillo@redhat.com>
2744
2745 * jcf-reader.c: Don't expand JCF_readu4 inside the
2746 expansion of JCF_SKIP.
2747
2748 2002-11-25 Diego Novillo <dnovillo@redhat.com>
2749
2750 * jcf-reader.c: Don't expand JCF_readu4 inside the
2751 expansion of JCF_SKIP.
2752
2753 2002-11-22 Tom Tromey <tromey@redhat.com>
2754
2755 * parse.y (patch_binop): Cast right hand side of shift expression
2756 to `int'. Fixes PR java/8676.
2757
2758 2002-11-22 Ranjit Mathew <rmathew@hotmail.com>
2759 Andrew Haley <aph@redhat.com>
2760
2761 * gcc/java/jcf-write.c (write_classfile): Remove target
2762 class file, if it exists, before renaming the temporary
2763 class file to it.
2764
2765 2002-11-19 Jason Thorpe <thorpej@wasabisystems.com>
2766
2767 * jvspec.c (lang_specific_spec_functions): New.
2768
2769 2002-11-18 Tom Tromey <tromey@redhat.com>
2770
2771 Fix for PR java/7912:
2772 * expr.c (can_widen_reference_to): Allow cast of array to
2773 Cloneable or Serializable.
2774 * java-tree.h (java_lang_cloneable_identifier_node): Declare.
2775 (java_io_serializable_identifier_node): Likewise.
2776 * parse.y (java_lang_cloneable, java_io_serializable): Removed.
2777 (valid_ref_assignconv_cast_p): Use new identifier nodes.
2778 * lex.c (java_init_lex): Don't initialize java_lang_cloneable and
2779 java_io_serializable.
2780 * decl.c (java_init_decl_processing): Initialize
2781 java_lang_cloneable_identifier_node and
2782 java_io_serializable_identifier_node.
2783 (java_lang_cloneable_identifier_node): New global.
2784 (java_io_serializable_identifier_node): Likewise.
2785
2786 2002-11-14 Jens-Michael Hoffmann <jensmh@gmx.de>
2787
2788 * buffer.c: Remove unnecessary casts.
2789 * check-init.c: Likewise.
2790 * class.c: Likewise.
2791 * constants.c: Likewise.
2792 * decl.c: Likewise.
2793 * except.c: Likewise.
2794 * gjavah.c: Likewise.
2795 * jcf-io.c: Likewise.
2796 * jcf-parse.c: Likewise.
2797 * jcf-path.c: Likewise.
2798 * jvspec.c: Likewise.
2799 * lang.c: Likewise.
2800 * lex.c: Likewise.
2801 * verify.c: Likewise.
2802
2803 2002-11-06 Tom Tromey <tromey@redhat.com>
2804
2805 * gjavah.c (print_stub_or_jni): Include JNIEXPORT and JNICALL in
2806 a JNI header.
2807
2808 2002-11-05 Tom Tromey <tromey@redhat.com>
2809
2810 Fix for PR java/6388.
2811 * lex.h (JAVA_INTEGRAL_RANGE_ERROR): Wrap in do...while.
2812 * java-tree.h (enum java_tree_index): New values
2813 JTI_DECIMAL_INT_MAX_NODE, JTI_DECIMAL_LONG_MAX_NODE.
2814 (decimal_int_max, decimal_long_max): New defines.
2815 * lex.c (yylex): Rewrote range checking. Sign extend literals.
2816 (error_if_numeric_overflow): Rewrote range checking.
2817 * decl.c (java_init_decl_processing): Initialize decimal_int_max,
2818 decimal_long_max.
2819
2820 2002-11-02 Tom Tromey <tromey@redhat.com>
2821
2822 * java-tree.h: Move JV_STATE_ERROR before JV_STATE_DONE.
2823
2824 * class.c (make_method_value): Put class name, not signature, into
2825 `throws' field. For PR java/8415.
2826
2827 2002-10-24 Tom Tromey <tromey@redhat.com>
2828
2829 * gcj.texi (Invoking gij): Document --showversion.
2830 (Standard Properties): java.library.path now set.
2831
2832 2002-10-23 Tom Tromey <tromey@redhat.com>
2833
2834 * gjavah.c (decode_signature_piece): In JNI mode, print
2835 `jobjectArray' when array depth is nonzero.
2836 Fixes PR java/8296.
2837
2838 2002-10-15 Andrew Haley <aph@redhat.com>
2839
2840 * parse.y (patch_invoke): Call force_evaluation_order on a static
2841 arg list.
2842 (resolve_qualified_expression_name): Call force_evaluation_order
2843 on a arg list that is part of a Qualified Expression Name.
2844
2845 * lang.c (dump_compound_expr): New.
2846 (java_dump_tree): New.
2847
2848 2002-10-20 Ranjit Mathew <rmathew@hotmail.com>
2849
2850 * gcj.texi: Added item describing the GCJ runtime property
2851 "gnu.gcj.progname".
2852
2853 2002-10-15 Richard Henderson <rth@redhat.com>
2854
2855 * jcf-parse.c (get_constant): Fix type warning.
2856
2857 2002-10-15 Andrew Haley <aph@redhat.com>
2858
2859 * java-tree.h (java_inlining_merge_static_initializers): Declare.
2860 (java_inlining_map_static_initializers): Declare.
2861
2862 2002-10-14 Andrew Haley <aph@redhat.com>
2863
2864 * tree-inline.c (remap_block): All local class initialization
2865 flags go in the outermost scope.
2866 (expand_call_inline): Call java_inlining_map_static_initializers.
2867 (expand_call_inline): Call java_inlining_merge_static_initializers.
2868 * java/lang.c (merge_init_test_initialization): New.
2869 (java_inlining_merge_static_initializers): New.
2870 (inline_init_test_initialization): New.
2871 (java_inlining_map_static_initializers): New.
2872
2873 2002-10-11 Mark Wielaard <mark@klomp.org>
2874
2875 * gcj.texi (Compatibility): Add Limitations and Extensions section.
2876
2877 2002-10-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2878
2879 * class.c (JAVA_TREEHASHHASH_H): Use htab_hash_pointer.
2880
2881 2002-10-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2882
2883 * parse.y (merge_string_cste): Add parentheses around & within |.
2884
2885 2002-10-08 Tom Tromey <tromey@redhat.com>
2886
2887 * parse.y (variable_declarator_id): Simplify error path for
2888 array declarator error. For PR java/8003.
2889
2890 2002-10-08 Zack Weinberg <zack@codesourcery.com>
2891
2892 * gjavah.c, jcf-dump.c, jv-scan.c: Globally replace GCCBUGURL with
2893 bug_report_url.
2894
2895 2002-10-08 Andrew Haley <aph@redhat.com>
2896
2897 * parse.y (attach_init_test_initialization_flags): Check for
2898 error_mark_node.
2899
2900 2002-10-07 Anthony Green <green@redhat.com>
2901
2902 * parse.y (merge_string_cste): Fix bug in string concatenation.
2903
2904 2002-10-03 Michael Koch <konqueror@gmx.de>
2905
2906 * gcj.texi (Standard properties):
2907 Change default of java.awt.toolkit to gnu.awt.gtk.GtkToolkit.
2908
2909 2002-10-02 Roger Sayle <roger@eyesopen.com>
2910
2911 PR optimization/6627
2912 * lang.c (java_init): If storing the vbit in function
2913 pointers, ensure that force_align_functions_log is atleast
2914 one to aid compatability with g++ vtables.
2915
2916 2002-10-01 Nathan Sidwell <nathan@codesourcery.com>
2917
2918 * jcf-dump.c (print_constant, case CONSTANT_float): Don't fall
2919 foul of type-based aliasing.
2920
2921 2002-09-30 Anthony Green <green@redhat.com>
2922
2923 * gcj.texi (Invoking jv-scan): Fix texinfo.
2924
2925 2002-09-28 Anthony Green <green@redhat.com>
2926
2927 * gcj.texi (Invoking jv-scan): Add --no-assert documentation.
2928 (Code Generation): Add -fno-assert documentation.
2929 * jv-scan.c (flag_assert): New global.
2930 (options): Add assert option.
2931 (help): Add --no-assert documentation.
2932 * parse-scan.y (flag_assert): New global.
2933 * lang.c (lang_f_options): Add -fassert/-fno-assert support.
2934 (flag_assert): New global.
2935 * java-tree.h (flag_assert): New global.
2936 * lex.c (java_lex): Obey flag_assert.
2937 * jvspec.c (jvgenmain_spec): Strip -fassert/-fno-assert when
2938 calling cc1.
2939
2940 2002-09-26 Andrew Haley <aph@redhat.com>
2941
2942 * expr.c (build_java_array_length_access): Check for null pointer.
2943 * expr.c (expand_java_arrayload): Likewise.
2944
2945 2002-09-21 Richard Henderson <rth@redhat.com>
2946
2947 * jcf-parse.c (get_constant): Decode from IEEE no matter
2948 what the target format.
2949
2950 2002-09-20 Kazu Hirata <kazu@cs.umass.edu>
2951
2952 * ChangeLog: Follow spelling conventions.
2953 * class.c: Likewise.
2954 * decl.c: Likewise.
2955 * expr.c: Likewise.
2956 * gjavah.c: Likewise.
2957 * java-tree.h: Likewise.
2958 * jcf-dump.c: Likewise.
2959 * jcf-parse.c: Likewise.
2960 * jvspec.c: Likewise.
2961 * lang.c: Likewise.
2962 * mangle.c: Likewise.
2963 * parse.y: Likewise.
2964
2965 2002-09-17 Tom Tromey <tromey@redhat.com>
2966
2967 * lex.c (java_read_unicode_collapsing_terminators): Handle case
2968 where \r appears at EOF. Fixes PR java/7950.
2969
2970 2002-09-16 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2971
2972 * jvspec.c (lang_specific_driver): Remove unused variable.
2973
2974 2002-09-16 Geoffrey Keating <geoffk@apple.com>
2975
2976 * java-tree.h (union lang_tree_node): Add chain_next option.
2977
2978 2002-09-16 Richard Henderson <rth@redhat.com>
2979
2980 * jcf-parse.c (get_constant): Runtime check for IEEE format;
2981 use new real.h interface.
2982 * jcf-write.c (find_constant_index): Use new real.h interface.
2983 * lex.c (IS_ZERO): Use REAL_VALUES_EQUAL.
2984
2985 2002-09-15 Kazu Hirata <kazu@cs.umass.edu>
2986
2987 * lang.c: Follow spelling conventions.
2988
2989 2002-09-11 Per Bothner <per@bothner.com>
2990
2991 * parse.y (fold_constant_for_init): If a VAR_DECL, convert numerical
2992 constant to the type of the field.
2993 (java_complete_tree): Remove now-redundant code.
2994
2995 * parse.y (fold_constant_for_init): 'null' is not a constant expr.
2996
2997 2002-09-03 Jesse Rosenstock <jmr@ugcs.caltech.edu>
2998
2999 For PR java/5794:
3000 * verify.c (verify_jvm_instructions) [OPCODE_jsr]: Only push the
3001 return label if a ret instruction for the jsr has been reached.
3002
3003 2002-09-09 Ranjit Mathew <rmathew@hotmail.com>
3004
3005 * parse.y (DIR_SEPARATOR): Don't define.
3006 (check_class_interface_creation): Use IS_DIR_SEPARATOR.
3007
3008 2002-08-28 Andrew Haley <aph@redhat.com>
3009
3010 * verify.c (verify_jvm_instructions): Allow exception handler
3011 inside code that is being protected, but generate a warning.
3012 * except.c (link_handler): Initialize `expanded' in new eh_range.
3013 (binding_depth, is_class_level, current_pc): Declare extern.
3014
3015 2002-09-01 Mark Wielaard <mark@klomp.org>
3016
3017 * gcj.texi: Add chapter about system properties.
3018 Fixed some typos.
3019
3020 2002-08-26 Tom Tromey <tromey@redhat.com>
3021
3022 * parse.y (try_builtin_assignconv): Allow narrowing primitive
3023 conversion if RHS_TYPE is byte, short, or char.
3024
3025 2002-08-22 Tom Tromey <tromey@redhat.com>
3026
3027 * gcj.texi (Invoking gij): Document -cp and -classpath.
3028
3029 2002-08-21 Tom Tromey <tromey@redhat.com>
3030
3031 * Make-lang.in (java/jcf-path.o): Use $(datadir), not
3032 $(prefix)/share. For PR libgcj/7633.
3033
3034 For PR java/6005 and PR java/7611:
3035 * lang.c (LANG_HOOKS_CAN_USE_BITFIELDS_P): New define.
3036 (java_can_use_bit_fields_p): New function.
3037
3038 2002-08-16 Tom Tromey <tromey@redhat.com>
3039
3040 * gcj.texi (Class Initialization): Mention class initialization of
3041 arrays.
3042
3043 2002-07-30 Andrew Haley <aph@cambridge.redhat.com>
3044
3045 * Make-lang.in (java-tree-inline.o): New.
3046 (JAVA_OBJS): Add java-tree-inline.o.
3047 * parse.y (source_end_java_method): Call java_optimize_inline.
3048 (java_expand_method_bodies): Save method's tree in
3049 DECL_SAVED_TREE.
3050 (add_stmt_to_compound): Keep track of the number of statments.
3051 * lang.c (java_init): Enable flag_inline_trees.
3052 (java_post_options): If flag_inline_functions is on, enable
3053 flag_inline_trees instread.
3054 (decl_constant_value): New.
3055 (java_tree_inlining_walk_subtrees): New.
3056 * java-tree.h (DECL_NUM_STMTS): New macro.
3057 (java_optimize_inline): Declare.
3058 * expr.c (java_expand_expr): Allow a BLOCK to return a value.
3059 Handle a LABEL_EXPR.
3060 * decl.c (build_result_decl): If we already have a DECL_RESULT
3061 don't make another.
3062 (dump_function): New.
3063 (java_optimize_inline): New.
3064 (dump_function): New.
3065
3066 2002-08-13 Jesse Rosenstock <jmr@fulcrummicro.com>
3067
3068 For PR java/7483:
3069 * parse.y (build_assertion): Invert return from
3070 desiredAssertionStatus.
3071
3072 2002-08-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3073
3074 * jcf-write.c (get_access_flags): Return correct access flags for
3075 private and protected inner classes.
3076
3077 2002-08-08 Nathan Sidwell <nathan@codesourcery.com>
3078
3079 * java/Make-lang.in (java.mostlyclean): Remove coverage files.
3080
3081 2002-08-05 Geoffrey Keating <geoffk@redhat.com>
3082
3083 * mangle_name.c: Don't include obstack.h twice.
3084 * xref.c: Don't include obstack.h.
3085
3086 2002-08-04 Geoffrey Keating <geoffk@redhat.com>
3087
3088 * class.c: (permanent_obstack): Delete declaration.
3089 * constants.c: (permanent_obstack): Delete declaration.
3090 * except.c: (permanent_obstack): Delete declaration.
3091 * expr.c: (permanent_obstack): Delete declaration.
3092 * jcf-parse.c: (permanent_obstack): Delete declaration.
3093 (saveable_obstack): Delete declaration.
3094 * parse.h: (permanent_obstack): Delete declaration.
3095 * typeck.c: (permanent_obstack): Delete declaration.
3096
3097 2002-08-04 Joseph S. Myers <jsm@polyomino.org.uk>
3098
3099 * gcj.texi (version-gcc): Increase to 3.3.
3100
3101 2002-07-22 Tom Tromey <tromey@redhat.com>
3102
3103 * lex.c (java_lex): Check for `e' or `E' after 0.
3104
3105 2002-07-21 Richard Henderson <rth@redhat.com>
3106
3107 * lang.c (java_unsafe_for_reeval): New.
3108 (LANG_HOOKS_UNSAFE_FOR_REEVAL): New.
3109
3110 2002-07-21 Neil Booth <neil@daikokuya.co.uk>
3111
3112 * jcf-path.c (GET_ENV_PATH_LIST): Remove.
3113 (jcf_path_init): Use GET_ENVIRONMENT.
3114
3115 2002-07-10 Roger Sayle <roger@eyesopen.com>
3116 Zack Weinberg <zack@codesourcery.com>
3117
3118 * builtins.c (initialize_builtins): Remove defines that
3119 handled C/C++ specific junk hereby removed from builtins.def.
3120
3121 2002-07-07 Neil Booth <neil@daikokuya.co.uk>
3122
3123 * lang.c (java_post_options): Update prototype.
3124
3125 2002-07-05 Roger Sayle <roger@eyesopen.com>
3126
3127 * builtins.c (initialize_builtins): Ignore the additional
3128 parameter to DEF_BUILTIN. Handle more C/C++ specific junk in
3129 the builtins.def file.
3130
3131 2002-07-01 Tom Tromey <tromey@redhat.com>
3132
3133 For PR libgcj/7073:
3134 * parse.y (patch_incomplete_class_ref): Handle VOID_TYPE
3135 specially.
3136
3137 2002-07-01 Roger Sayle <roger@eyesopen.com>
3138
3139 * java/decl.c (builtin_function): Accept additional parameter.
3140 (java_init_decl_processing): Pass an additional NULL_TREE
3141 argument to builtin_function.
3142
3143 2002-06-29 T.J. Mather <tjmather@maxmind.com>
3144
3145 * gcj.texi: Fixed gcj invocation example so that it compiles.
3146
3147 2002-06-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3148
3149 * lex.c (java_init_lex): Avoid incorrect hardcoded constant 11.
3150 * parse.y (mark_parser_ctxt): Likewise.
3151 (check_modifiers, declare_local_variables): Avoid incorrect
3152 hardcoded constant 10.
3153
3154 * lex.c (java_read_char): Avoid "comparison is always true"
3155 warning.
3156
3157 2002-06-25 Andreas Schwab <schwab@suse.de>
3158
3159 * expr.c (JSR): Avoid undefined operation on PC.
3160
3161 2002-06-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3162
3163 * decl.c (clear_binding_level): Const-ify.
3164
3165 2002-06-13 Akim Demaille <akim@epita.fr>
3166
3167 * parse.y (class_declaration, interface_declaration): Make sure
3168 all their rules have an action, in order to avoid meaningless `$$
3169 = $1' and their type clashes.
3170
3171 2002-06-11 Tom Tromey <tromey@redhat.com>
3172
3173 * jcf-write.c (generate_classfile): Use FIELD_SYNTHETIC.
3174 * parse-scan.y (statement_without_trailing_substatement): Added
3175 assert_statement.
3176 (assert_statement): New rule.
3177 * java-tree.h (struct lang_type) [assertions]: New field.
3178 (TYPE_USES_ASSERTIONS): New macro.
3179 (CLASS_USES_ASSERTIONS): Likewise.
3180 (FIELD_SYNTHETIC): New define.
3181 * lex.c (java_lval;): Added ASSERT_TK.
3182 * parse.y (ASSERT_TK): Added.
3183 (statement_without_trailing_substatement): Added assert_statement.
3184 (assert_statement): New rule.
3185 (build_assertion): New function.
3186 (maybe_generate_pre_expand_clinit): Create and initialize
3187 $assertionsDisabled.
3188 (lookup_package_type): Removed decl.
3189 * keyword.h: Rebuilt.
3190 * keyword.gperf (assert): New token.
3191
3192 2002-06-10 Akim Demaille <akim@epita.fr>
3193
3194 * parse.y (interface_type_list, class_member_declaration)
3195 (unary_expression_not_plus_minus): Remove duplicate %type.
3196 Whitespace changes.
3197
3198 2002-06-09 Tom Tromey <tromey@redhat.com>
3199
3200 * Make-lang.in (java/lang.o): Use LANGHOOKS_DEF_H.
3201
3202 * parse.y (method_header): Give error message in all cases.
3203 Fixes PR java/6865.
3204
3205 2002-06-10 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3206
3207 Don't use RTL inlining. Fix for PR java/6820.
3208 * lang.c (LANG_HOOKS_POST_OPTIONS): Define.
3209 (flag_really_inline): New.
3210 (java_decode_option): Set flag_really_inline if -finline-functions
3211 is seen.
3212 (java_post_options): New function. Turn off inlining unless
3213 flag_really_inline is set.
3214
3215 2002-06-10 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3216
3217 * gjavah.c (throwable_p): Accept argument as either a classname or
3218 signature fragment. Create null-terminated classname string for super
3219 when calling itself recursively.
3220 (decode_signature_piece): Skip first character from class name
3221 signature when calling throwable_p.
3222
3223 2002-06-08 H.J. Lu (hjl@gnu.org)
3224
3225 * jcf-path.c (jcf_path_init): Allocate 1 more byte for string.
3226
3227 2002-06-04 Tom Tromey <tromey@redhat.com>
3228
3229 * jcf-write.c (perform_relocations): Optmize a goto to a goto.
3230
3231 2002-06-04 Michael Koch <konqueror@gmx.de>
3232
3233 * gcj.texi (Input Options): Fixed typo.
3234
3235 2002-06-04 Zack Weinberg <zack@codesourcery.com>
3236
3237 * java-tree.h, class.c, expr.c, jcf-parse.c, parse.y,
3238 typeck.c, verify.c: Remove all #if JAVA_USE_HANDLES blocks,
3239 all mention of CLASS_TO_HANDLE_TYPE or HANDLE_TO_CLASS_TYPE,
3240 and all now-pointless local variables. Rename other local
3241 variables to reflect their not being handles.
3242
3243 * java-tree.h, jcf-dump.c, jcf-io.c: Remove all
3244 #if JCF_USE_STDIO blocks.
3245
3246 * parse.y: Add missing semicolon at end of rule.
3247
3248 2002-06-03 Geoffrey Keating <geoffk@redhat.com>
3249
3250 * check-init.c (attach_initialized_static_class): Delete, unused.
3251 * parse.y: Use htab_t instead of struct hashtable, update
3252 all uses.
3253 * java-tree.h: Include hashtab.h instead of hash.h.
3254 (struct lang_decl_func): Use htab_t, set up for gengtype.
3255 (struct init_test_hash_entry): Delete.
3256 (struct treetreehash_entry): New.
3257 (java_treetreehash_find): New
3258 (java_treetreehash_new): New prototype.
3259 (java_treetreehash_create): New prototype.
3260 (java_mark_tree): Delete prototype.
3261 (java_hash_hash_tree_node): Delete prototype.
3262 (java_hash_compare_tree_node): Delete prototype.
3263 (attach_initialized_static_class): Delete prototype.
3264 * expr.c (build_class_init): Update to use java_treetreehash
3265 functions.
3266 (java_expand_expr): Update to use htab_t.
3267 (emit_init_test_initialization): Likewise.
3268 * decl.c (java_mark_tree): Delete.
3269 * class.c (init_test_hash_newfunc): Delete.
3270 (java_hash_hash_tree_node): Delete.
3271 (java_hash_compare_tree_node): Delete.
3272 (add_method_1): Update to use java_treetreehash functions.
3273 (JAVA_TREEHASHHASH_H): New macro.
3274 (java_treetreehash_hash): New function.
3275 (java_treetreehash_compare): New function.
3276 (java_treetreehash_find): New function.
3277 (java_treetreehash_new): New function.
3278 (java_treetreehash_create): New function.
3279 * Make-lang.in (JAVA_TREE_H): Replace hash.h by HASHTAB_H.
3280
3281 * Make-lang.in (java/parse.o): Depend on debug.h.
3282 * java-tree.h (struct lang_identifier): Use gengtype.
3283 (union lang_tree_node): New.
3284 (struct lang_decl_func): Use gengtype.
3285 (struct lang_decl_var): Likewise.
3286 (struct lang_decl): Likewise.
3287 * parse.y: Include debug.h.
3288 * lang.c (LANG_HOOKS_MARK_TREE): Delete.
3289
3290 * lang.c (struct language_function): New dummy structure.
3291
3292 * java-tree.h (MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC): Set
3293 descriminator for DECL_LANG_SPECIFIC.
3294 (struct lang_decl_func): Rename from struct lang_decl.
3295 (enum lang_decl_desc): New.
3296 (struct lang_decl): Make it a union. Update all the accessor macros.
3297 (struct lang_type): Use gengtype.
3298 * class.c (add_method_1): Set descriminator for DECL_LANG_SPECIFIC.
3299 * decl.c (java_dup_lang_specific_decl): All lang_decl structures
3300 are now the same size.
3301 (lang_mark_tree): Use gengtype to mark TYPE_LANG_SPECIFIC;
3302 use discriminator to mark DECL_LANG_SPECIFIC.
3303
3304 * Make-lang.in (gt-java-builtins.h): New rule.
3305 (java/builtins.o): Add dependency on gt-<filename>.h.
3306 * builtins.c: Use gengtype for roots.
3307 (union string_or_tree): Use gengtype.
3308 (struct builtin_record): Use gengtype.
3309 * config-lang.in (gtfiles): Add builtins.c.
3310
3311 * Make-lang.in (gt-java-class.h, gt-java-constants.h,
3312 gt-java-decl.h, gt-java-expr.h, gt-java-jcf-parse.h,
3313 gt-java-jcf-write.h, gt-java-lang.h, gt-java-mangle.h,
3314 gt-java-parse.h, gtype-java.h): Add rules to generate.
3315 (parse.o): Add dependency on gt-java-parse.h, gt-java.h.
3316 (class.o): Add dependency on gt-*.h.
3317 (constants.o): Likewise.
3318 (decl.o): Likewise.
3319 (expr.o): Likewise.
3320 (jcf-parse.o): Likewise.
3321 (jcf-write.o): Likewise.
3322 (lang.o): Likewise.
3323 * config-lang.in (gtfiles): New.
3324 * class.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3325 * constants.c: Replace uses of ggc_add_* with GTY markers.
3326 Include gt-*.h.
3327 * decl.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3328 * expr.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3329 * java-tree.h: Replace uses of ggc_add_* with GTY markers.
3330 * jcf-parse.c: Replace uses of ggc_add_* with GTY markers.
3331 Include gt-*.h.
3332 * jcf-write.c: Replace uses of ggc_add_* with GTY markers.
3333 Include gt-*.h.
3334 * lang.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3335 * mangle.c: Replace uses of ggc_add_* with GTY markers. Include
3336 gt-*.h.
3337 * parse.y: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3338 Include gtype-java.h.
3339
3340 2002-06-02 Tom Tromey <tromey@redhat.com>
3341
3342 Fix for PR java/5913:
3343 * parse.y (patch_binop): Call patch_string on op1.
3344
3345 2002-06-02 Tom Tromey <tromey@redhat.com>
3346
3347 Fix for PR java/1343, PR java/6336:
3348 * parse.y (make_nested_class_name): Remove extraneous `else'; fix
3349 formatting. Changed return type.
3350 (anonymous_class_counter): Moved to top of file.
3351 (maybe_make_nested_class_name): Append number to class name for
3352 function-local classes.
3353
3354 2002-05-28 Zack Weinberg <zack@codesourcery.com>
3355
3356 * decl.c, jcf-parse.c, parse.y, typeck.c: Include real.h.
3357 * Make-lang.in: Update dependency lists.
3358
3359 2002-05-18 Mark Mitchell <mark@codesourcery.com>
3360
3361 * gjavah.c (throwable_p): Do not free the name of the class after
3362 passing it to find_class.
3363 * java-tree.h (CLASS_BEING_LAIDOUT): Remove duplicate definition.
3364 * jcf-io.c (dirent.h): Include it.
3365 (fnmatch.h): Likewise.
3366 (compare_path): New function.
3367 (java_or_class_file): Likewise.
3368 (memoized_dirlist_entry): New type.
3369 (memoized_dirlist_lookup_eq): New function.
3370 (memoized_dirlists): New variable.
3371 (caching_stat): New function.
3372 (memoized_class_lookup_eq): New function.
3373 (memoized_class_lookups): Likewise.
3374 (find_class): Use memoized_class_lookups and caching_stat.
3375 * jcf.h (JCF_USE_SCANDIR): Define.
3376 * parse.y (java_expand_classes): Write the class files in reverse
3377 order.
3378
3379 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
3380
3381 * Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
3382
3383 2002-05-13 Mark Mitchell <mark@codesourcery.com>
3384
3385 * jcf-write.c (write_classfile): Unlink the temporary file if it
3386 cannot be renamed. Use concat to build up the name of the
3387 temporary file.
3388
3389 2002-05-08 Mark Mitchell <mark@codesourcery.com>
3390
3391 * jcf-write.c (write_classfile): Write the file to a
3392 temporary file and then rename it.
3393
3394 2002-05-07 Tom Tromey <tromey@redhat.com>
3395
3396 * gjavah.c (throwable_p): Use xstrdup, not strdup.
3397
3398 Fix for PR java/1200:
3399 * gjavah.c (throwable_p): New function.
3400 (decode_signature_piece): Use it. A `WeakReference' isn't the
3401 same as a `jweak'.
3402 Include hashtab.h.
3403 (gcjh_streq): New function.
3404
3405 2002-05-07 Andreas Jaeger <aj@suse.de>
3406
3407 * parse.y (finish_for_loop): Fix if statement.
3408
3409 2002-05-06 Tom Tromey <tromey@redhat.com>
3410
3411 Fix for PR java/5941:
3412 * parse.y (finish_for_loop): Set SUPPRESS_UNREACHABLE_ERROR for
3413 loop update expression.
3414 (java_complete_lhs): Use SUPPRESS_UNREACHABLE_ERROR.
3415 * java-tree.h (SUPPRESS_UNREACHABLE_ERROR): New macro.
3416
3417 2002-05-04 Mark Wielaard <mark@klomp.org>
3418
3419 For PR java/6519:
3420 * parse.y (build_string_concatenation): Return just op1 only when op2
3421 is null and op1 is a STRING_CST, otherwise always construct a
3422 StringBuffer.
3423
3424 2002-04-27 Tom Tromey <tromey@redhat.com>
3425
3426 For PR java/6382:
3427 * parse.y (string_convert_int_cst): New function.
3428 (merge_string_cste): Use it.
3429
3430 2002-04-25 Neil Booth <neil@daikokuya.demon.co.uk>
3431
3432 * java-tree.h (java_parse_file): Update.
3433 (java_set_yydebug): Remove.
3434 * jcf-parse.c (yydebug): Remove.
3435 (java_set_yydebug): Die.
3436 (java_parse_file): Update.
3437 * lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
3438
3439 2002-04-24 Tom Tromey <tromey@redhat.com>
3440
3441 For PR java/6425:
3442 * parse.y (qualify_ambiguous_name) [case CALL_EXPR]: Always choose
3443 EXPR_WFL_QUALIFICATION of qual_wfl.
3444
3445 2002-04-23 Per Bothner <per@bothner.com>
3446
3447 * expr.c (PRE_JSR): Call NOTE_LABEL for return address.
3448 * java-tree.h (BCODE_RETURN_TARGET): Removed - never set.
3449 (BCODE_TARGET): Remove BCODE_RETURN_TARGET.
3450
3451 2002-04-23 Tom Tromey <tromey@redhat.com>
3452
3453 For PR java/6314:
3454 * jvspec.c (lang_specific_driver): Use --resource, not -R. Also
3455 recognize `-fcompile-resource='.
3456 * gcj.texi (Invoking gcj): Use --resource, not -R. Expanded text
3457 a bit.
3458
3459 2002-04-22 Alexandre Petit-Bianco <apbianco@redhat.com>
3460
3461 * jcf-parse.c: (yyparse): Don't prepend "./" to relative
3462 paths. Fixes PR java/2791.
3463
3464 2002-04-19 Andrew Haley <aph@redhat.com>
3465
3466 * jcf-write.c (push_long_const): lo, hi: New variables.
3467 Use rshift_double to extract the high part of a 64-bit long.
3468 Use WORD_TO_INT to extract the low part.
3469
3470 * jcf-parse.c (get_constant): CONSTANT_Integer: Use an unsigned
3471 HOST_WIDE_INT for num. Use JPOOL_UINT to get it.
3472 CONSTANT_Double: Use JPOOL_UINT to get both halve of a double.
3473
3474 2002-04-18 Neil Booth <neil@daikokuya.demon.co.uk>
3475
3476 * typeck.c (incomplete_type_error): Remove.
3477
3478 2002-04-18 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3479
3480 * class.c (make_class_data): Set DECL_ALIGN on static class data,
3481 for hash synchronization.
3482 * expr.c (java_expand_expr): Set DECL_ALIGN on static array objects.
3483 * decl.c (java_init_decl_processing): Don't set TYPE_ALIGN for
3484 class_type_node.
3485
3486 2002-04-16 Mark Wielaard <mark@klomp.org>
3487
3488 * jcf-write.c (generate_bytecode_insns): Only write const_0 if not
3489 negative zero.
3490
3491 2002-04-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3492
3493 Fix for PR java/6294:
3494 * parse.h (INNER_INTERFACE_MODIFIERS): Allow ACC_PRIVATE for inner
3495 interfaces.
3496
3497 2002-04-15 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3498
3499 Fix for PR java/6085:
3500 * parse.y (patch_method_invocation): Always use build_access_to_thisn
3501 to get enclosing "this" argument for inner-class constructor
3502 invocation. Pass correct arguments to build_access_to_thisn.
3503
3504 2002-04-10 Andreas Jaeger <aj@suse.de>
3505
3506 * gcj.texi (Input Options): Fix extdirs patch.
3507
3508 2002-04-10 Anthony Green <green@redhat.com>
3509
3510 * jcf-path.c (jcf_path_init) : Clean up local extdirs declaration.
3511
3512 2002-04-09 Anthony Green <green@redhat.com>
3513
3514 * gcj.texi (Input Options): Add --extdirs documentation.
3515 * jcf-dump.c (OPT_extdirs): New macro.
3516 (options): Add extdirs option.
3517 (help): Describe --extdirs.
3518 (main): Handle OPT_extdirs.
3519 * gjavah.c (OPT_extdirs): New macro.
3520 (options): Add extdirs option.
3521 (help): Describe --extdirs.
3522 (main): Handle OPT_extdirs.
3523 * jcf-path.c (jcf_path_init): Add extdirs support.
3524 (jcf_path_extdirs_arg): New function.
3525 (extensions): New variable to hold extensions path entries.
3526 * jvspec.c: Remove -fextdirs= when compiling main().
3527 * lang.c (java_decode_option): Handle -fextdirs=.
3528 * jcf.h (jcf_path_extdirs_arg): Declare new function.
3529 * Make-lang.in: Compile jcf-path with version info for use in
3530 identifying the appropriate libgcj.jar.
3531
3532 2002-04-08 Tom Tromey <tromey@redhat.com>
3533
3534 For PR libgcj/5303:
3535 * .cvsignore: Added rmic.1 and rmiregistry.1.
3536 * gcj.texi (Top): Link to new nodes.
3537 (Invoking rmic): New node.
3538 (Invoking rmiregistry): Likewise.
3539 * Make-lang.in (java.generated-manpages): Added rmic.1 and
3540 rmiregistry.1.
3541 (java.maintainer-clean): Likewise.
3542 ($(srcdir)/java/rmic.1): New target.
3543 ($(srcdir)/java/rmiregistry.1): Likewise.
3544 (java.install-man): Handle rmic.1 and rmiregistry.1.
3545
3546 2002-04-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3547
3548 * gcj.texi (Invocation): Update JvAttachCurrentThread documentation.
3549 Add note about handling uncaught exceptions. Add an exception handler
3550 to example.
3551
3552 2002-04-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3553
3554 * parse.y (resolve_qualified_expression_name): Clear "from_super" flag
3555 after using it to patch CALL_EXPR.
3556
3557 2002-04-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3558
3559 * gcj.texi (Invocation): Document CNI invocation API.
3560
3561 2002-04-04 Neil Booth <neil@daikokuya.demon.co.uk>
3562
3563 * expr.c (truthvalue_conversion): Rename. Update.
3564 (expand_compare): Update.
3565 * java-tree.h (java_truthvalue_conversion): New.
3566 * lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
3567
3568 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
3569
3570 * java-tree.h (java_mark_addressable): New.
3571 * lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
3572 * typeck.c (mark_addressable): Rename, update.
3573
3574 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
3575
3576 * expr.c (build_java_binop): Update.
3577 * java-tree.h (java_signed_type, java_unsigned_type,
3578 java_signed_or_unsigned_type): Update.
3579 * lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
3580 LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
3581 * parse.y (patch_binop): Update.
3582 * typeck.c (signed_or_unsigned_type, unsigned_type,
3583 signed_type): Update.
3584
3585 2002-03-31 Neil Booth <neil@daikokuya.demon.co.uk>
3586
3587 * lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
3588 (java_dummy_print): Remove.
3589 (lang_print_error): Rename. Exit early if inhibiting output.
3590 (inhibit_error_printing_function): New.
3591 (java_init): Don't set hook.
3592 (lang_init_source): Use new boolean.
3593
3594 2002-03-29 Martin Kahlert <martin.kahlert@infineon.com>
3595
3596 * parse.y (do_resolve_class): Fix infinite recursion.
3597
3598 2002-03-29 Tom Tromey <tromey@redhat.com>
3599
3600 * parse.y (check_inner_circular_reference): Ignore incomplete
3601 types.
3602
3603 2002-03-29 Neil Booth <neil@daikokuya.demon.co.uk>
3604
3605 * Make-lang.in (builtins.o): Update.
3606 * boehm.c (get_boehm_type_descriptor): Update.
3607 * builtins.c: Include langhooks.h.
3608 * decl.c (java_init_decl_processing): Update.
3609 * java-tree.h (java_type_for_mode, java_type_for_size): New.
3610 * lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIaZE):
3611 Redefine.
3612 * typeck.c (type_for_mode, type_for_size): Update.
3613
3614 2002-03-29 Martin Kahlert <martin.kahlert@infineon.com>
3615
3616 * lex.c (java_new_lexer): Alias "646" to DEFAULT_ENCODING.
3617
3618 2002-03-28 Tom Tromey <tromey@redhat.com>
3619
3620 * except.c (expand_end_java_handler): If the handler type is NULL,
3621 use java.lang.Throwable. Fixes PR java/5986.
3622
3623 2002-03-28 Alexandre Petit-Bianco <apbianco@redhat.com>
3624
3625 Fix for PR java/4715:
3626 * jcf-parse.c (parse_source_file_3): New function.
3627 (read_class): Call it.
3628 (java_parse_file): Likewise.
3629
3630 2002-03-28 Jan Hubicka <jh@suse.cz>
3631
3632 * java/lang.c (java_init_options): Set flag_trapping_math to 0.
3633
3634 2002-03-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3635
3636 * parse.y (resolve_package): Initialize "decl".
3637 (lookup_package_type): Remove unused function.
3638
3639 2002-03-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3640
3641 Fix for PR java/5993:
3642 * parse.y (resolve_package): Return the decl if resolution was
3643 successful. Don't special case "java.lang" and "java.lang.reflect"
3644 packages. Set type_name to the merged identifier.
3645 (resolved_qualified_expression_name): Print error using "name" if
3646 resolve_package returns NULL_TREE.
3647
3648 2002-03-27 Tom Tromey <tromey@redhat.com>
3649
3650 * expr.c (expand_invoke): Don't generate null pointer check if
3651 we're calling <init>.
3652
3653 2002-03-27 Neil Booth <neil@daikokuya.demon.co.uk>
3654
3655 * expr.c (java_lang_expand_expr): Rename java_expand_expr,
3656 fix prototype.
3657 * java-tree.h (java_lang_expand_expr): Similarly.
3658 * lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
3659 (java_init): Don't set hook.
3660
3661 2002-03-27 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3662
3663 Fix for PR java/5850:
3664 * parse.y (lookup_field_wrapper): Call itself recursively for enclosing
3665 context if field was not found in the current scope.
3666 * expr.c (lookup_field): Don't look in enclosing contexts.
3667
3668 2002-03-26 Tom Tromey <tromey@redhat.com>
3669
3670 Fix for PR java/5942:
3671 * parse.y (init_src_parse): Added sanity check.
3672 * parse.h (struct parser_ctxt) [modifier_ctx]: Array has 12
3673 elements, not 11.
3674
3675 2002-03-26 Neil Booth <neil@daikokuya.demon.co.uk>
3676
3677 * decl.c (lang_mark_tree): Rename java_mark_tree.
3678 * java-tree.h (java_mark_tree): New.
3679 * java-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
3680
3681 2002-03-25 Zack Weinberg <zack@codesourcery.com>
3682
3683 * lex.c: Change java_perform_atof to take normal parameters
3684 instead of a pointer to a parameter block. Call it directly
3685 from java_lex.
3686
3687 2002-03-22 Mark Wielaard <mark@klomp.org>
3688
3689 Fix for PR java/5368:
3690 * parse.y (resolve_qualified_expression_name): Use decl not field_decl
3691 when printing error message.
3692
3693 2002-03-25 Neil Booth <neil@daikokuya.demon.co.uk>
3694
3695 * decl.c (maybe_build_cleanup): Remove.
3696
3697 2002-03-22 Tom Tromey <tromey@redhat.com>
3698
3699 Andrew Haley <aph@cambridge.redhat.com>
3700
3701 * expr.c (build_field_ref): Don't build a check if the field is a
3702 member of `this'.
3703
3704 2002-03-21 Eric Blake <ebb9@email.byu.edu>
3705
3706 Fix for PR java/6026:
3707 * lex.c (java_lex): Fix parsing of consecutive floats.
3708
3709 2002-03-21 Tom Tromey <tromey@redhat.com>
3710
3711 * parse.y (build_access_to_thisn): Stop when FROM is not an inner
3712 class.
3713
3714 2002-03-21 Neil Booth <neil@daikokuya.demon.co.uk>
3715
3716 * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
3717 insert_block, getdecls, kept_level_p, global_bindings_p): New.
3718
3719 2002-03-20 Nic Ferrier <nferrier@tapsellferrier.co.uk>
3720
3721 * gcj.texi: @code{gcj} becomes @command{gcj}.
3722 @code{gcc} becomes @command{gcc}.
3723 GcjRaw changed to gnu.gcc.RawData.
3724
3725 2002-03-20 Neil Booth <neil@daikokuya.demon.co.uk>
3726
3727 * decl.c (start_java_method): Use new hook.
3728 * lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
3729 (java_init): Remove old hook.
3730
3731 2002-03-18 Alexandre Petit-Bianco <apbianco@redhat.com>
3732
3733 * builtins.c (define_builtin): Do nothing if `type' is null.
3734 Fixes PR java/5876.
3735
3736 2002-03-18 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3737
3738 * parse.y (parser_check_super_interface): Fix error message
3739 grammar/order.
3740
3741 2002-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3742
3743 * jcf-parse.c (get_constant): Delete unused variables.
3744
3745 2002-03-17 Neil Booth <neil@daikokuya.demon.co.uk>
3746
3747 * java-tree.h (java_parse_file): New.
3748 * jcf-parse.c (yyparse): Rename java_parse_file.
3749 * lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
3750
3751 2002-03-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3752
3753 * parse.y (craft_constructor): Return the constructor decl.
3754 (java_expand_classes): Update comments.
3755 (lookup_method_invoke): Call fix_constructors immediately for
3756 anonymous class. Fixes PR java/5935.
3757
3758 2002-03-15 Anthony Green <green@redhat.com>
3759
3760 * jcf-parse.c (yyparse): Don't emit class registration
3761 constructor when compiling resource files.
3762
3763 2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3764
3765 * lang.c (java_tree_code_type, java_tree_code_length,
3766 tree_code_name): Delete.
3767 (tree_code_type, tree_code_length, tree_code_name): Define.
3768 (java_init): Don't try to copy into the various tree_code
3769 arrays.
3770
3771 2002-03-12 Tom Tromey <tromey@redhat.com>
3772
3773 * jcf-parse.c (get_constant) [CONSTANT_String]: String values are
3774 UTF-8, not UCS-2. Fixes PR java/5923.
3775
3776 * parse.y (qualify_ambiguous_name): Handle case where QUAL_WFL is
3777 a call_expr wrapped in a convert. Fixes PR java/5848.
3778
3779 2002-03-12 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3780
3781 * jcf-write.c (write_classfile): Improve error strings.
3782
3783 2002-03-11 Eric Blake <ebb9@email.byu.edu>
3784
3785 * lex.c: Adjust comments to GNU standards.
3786
3787 2002-03-11 Eric Blake <ebb9@email.byu.edu>
3788
3789 Fix for PR java/5902:
3790 * lex.c (java_lex): Fix parsing of literals.
3791
3792 2002-03-11 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3793
3794 * parse.y (patch_assignment): Wrap the right-hand-side with a save_expr
3795 to prevent it getting evaluated twice in the store checking case.
3796 * expr.c (build_java_arraystore_check): Unwrap SAVE_EXPR's when
3797 examining OBJECT.
3798
3799 2002-03-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3800
3801 * decl.c (java_init_decl_processing): Make sure class_type_node
3802 alignment is not less than 64 bits if hash synchronization is enabled.
3803
3804 2002-03-08 Per Bothner <per@bothner.com>
3805
3806 * parse.y (java_complete_lhs): Check if patch_assignment
3807 returned an error-mark.
3808
3809 * parse.y (try_builtin_assignconv): Don't special-case zero.
3810
3811 2002-03-08 Per Bothner <per@bothner.com>
3812
3813 Fix for PR java/5812.
3814 * expr.c (build_java_jsr): Take pc arguments, and do lookup_label
3815 here instead of in JSR macro. Likewise with load_type_state call.
3816 Do the latter on if the return_pc has been verified (the jsr returns).
3817 (JSR): Now just call build_java_jsr.
3818
3819 2002-03-07 Jeff Sturm <jsturm@one-point.com>
3820
3821 * java/Make-lang.in (JAVA_TARGET_INSTALL_NAME): Define.
3822 (java.install-common): Link native driver to
3823 JAVA_TARGET_INSTALL_NAME.
3824
3825 2002-03-05 David Billinghurst <David.Billinghurst@riotinto.com>
3826
3827 * builtins.c(cos_builtin): method_return_type ATTRIBUTE_UNUSED
3828 * builtins.c(sin_builtin): Likewise
3829 * builtins.c(sqrt_builtin): Likewise
3830
3831 2002-03-03 Zack Weinberg <zack@codesourcery.com>
3832
3833 * java/expr.c, java/jcf-parse.c, java/lex.c:
3834 Remove all #ifndef REAL_ARITHMETIC blocks, make all #ifdef
3835 REAL_ARITHMETIC blocks unconditional. Delete some further
3836 #ifdef blocks predicated on REAL_ARITHMETIC.
3837
3838 2002-03-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3839
3840 * class.c (init_class_processing): Use ARRAY_SIZE in lieu of
3841 explicit sizeof/sizeof.
3842 * decl.c (java_init_decl_processing): Likewise.
3843 * jcf-parse.c (init_jcf_parse): Likewise.
3844 * parse.y (init_src_parse): Likewise.
3845
3846 2002-03-02 Per Bothner <per@bothner.com>
3847
3848 Make --CLASSPATH by a synonym for --classpath and -classpath.
3849 Implement --bootclasspath.
3850 * jcf-path.c (classpath_u): Rename static variable to classpath_user.
3851 (classpath_l): Remove.
3852 (jcf_path_CLASSPATH_arg): Remove.
3853 (jcf_path_bootclasspath_arg): New function.
3854 (jcf_path_seal): Simplify accordingly.
3855
3856 * jcf.h (jcf_path_bootclasspath_arg): New declarations.
3857 (jcf_path_CLASSPATH): Remove declaration.
3858 * jvspec.c (jvgenmain_spec): Also accept -fbootclasspath*.
3859 (lang_specific_driver): Translate -bootclasspath.
3860 * lang-options.h: Add --bootclasspath. Update --CLASSPATH.
3861 * lang.c (decode_lang_options): Do jcf_path_init first.
3862 Handle -fCLASSPATH same as -fclasspath. Also process -fbootclasspath.
3863 * gjavah.c: Also handle --bootclasspath.
3864 Handle --CLASSPATH as a synonum for --classpath.
3865 * jcf-dump.c: Likewise.
3866
3867 "." is not part of system path, but is the default for --classpath.
3868 * jcf-path.c (jcf_path_init): Don't add "." to sys_dirs.
3869 (jcf_path_seal): Add "." if no CLASSPATH specified.
3870
3871 * gcj.texi: Document changes.
3872
3873 2002-03-01 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3874
3875 * expr.c (build_java_arraystore_check): Fix formatting.
3876
3877 2002-02-28 Alexandre Petit-Bianco <apbianco@redhat.com>
3878
3879 Fix for PR java/5758, java/5632:
3880 * jcf-parse.c (load_class): Renamed local variable, consider `.' an
3881 inner-class separator too.
3882 * parse.y (do_resolve_class): New local `decl_result.'
3883 Progressively build a name for what can have been loaded.
3884
3885 2002-02-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3886
3887 * expr.c (java_array_data_offset): Removed function.
3888 (JAVA_ARRAY_LENGTH_OFFSET): Removed macro.
3889 (build_java_array_length_access): Obtain "length" value using a
3890 COMPONENT_REF, instead of INDIRECT_REF and arithmetic.
3891 (build_java_arrayaccess): Correct comment. Access "data" using a
3892 COMPONENT_REF, and return an ARRAY_REF instead of an INDIRECT_REF.
3893 (build_java_arraystore_check): New function.
3894 (expand_java_arraystore): Use build_java_arraystore_check.
3895 * parse.y (patch_assignment): Simplify code to insert a store check
3896 when lvalue is an ARRAY_REF. Use build_java_arraystore_check.
3897 * check-init.c (check_init): Update to reflect that an array length
3898 access is now a COMPONENT_REF.
3899 * gcj.texi (Code Generation): Improve documentation of
3900 -fno-bounds-check. Add documentation for -fno-store-check.
3901 * java-tree.h (flag_store_check): Declare.
3902 (build_java_arraystore_check): Declare.
3903 * lang.c (flag_store_check): Initialize to 1.
3904 (lang_f_options): Add store-check option.
3905 * jvspec.c: Don't pass store-check option to jvgenmain.
3906 * lang-options.h: Add help string for -fno-store-check.
3907
3908 2002-02-28 Neil Booth <neil@daikokuya.demon.co.uk>
3909
3910 * decl.c (copy_lang_decl): Rename java_dup_lang_specific_decl.
3911 * java-tree.h (java_dup_lang_specific_decl): New.
3912 * lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
3913
3914 2002-02-27 Zack Weinberg <zack@codesourcery.com>
3915
3916 * builtins.c, decl.c: Delete traditional-mode-related code
3917 copied from the C front end but not used, or used only to
3918 permit the compiler to link.
3919
3920 2002-02-22 Tom Tromey <tromey@redhat.com>
3921
3922 Fix for PR java/2369:
3923 * jvspec.c (verify_class_name): New function.
3924 (lang_specific_driver): Call it.
3925 (JAVA_START_CHAR_P): New macro.
3926 (JAVA_PART_CHAR_P): Likewise.
3927
3928 2002-02-22 Per Bothner <per@bothner.com>
3929
3930 * class.c: Change vtable to be more compatible with g++ v3 abi.
3931 (get_dispatch_table): Prepend offset-to-top (always 0) and
3932 type_info pointer (currently unimplemented hence NULL) to vtable.
3933 Specifically, prepend offset-to-top and typeinfo ptr (currently null).
3934 (make_class_data): Variable dtable_start_offset is sizeof 2 pointers.
3935 Adjust vtable pointers by dtable_start_offse - i.e. skip new words.
3936 (build_dtable_decl): Add declarations for new fields.
3937
3938 2002-02-20 Per Bothner <per@bothner.com>
3939
3940 * parse.y (patch_method_invocation): Set CAN_COMPLETE_NORMALLY on call
3941 to finit$ (otherwise generate_bytecode_insns drops it). However, we
3942 don't need to set it on the COMPOUND_EXPR - the caller does that.
3943
3944 2002-02-20 Nic Ferrier <nferrier@tapsellferrier.co.uk>
3945
3946 * gcj.texi: Option `--classpath' becomes `--CLASSPATH.'Option
3947 `--CLASSPATH' becomes `--classpath.'
3948 * gjavah.c: Likewise.
3949 * jcf-dump.c: Likewise.
3950 * lang-options.h: Likewise.
3951 * lang.c: Likewise.
3952 * jcf-path.c: Updated comment.
3953 (jcf_path_classpath_arg): Renamed `jcf_path_CLASSPATH_arg.'
3954 (jcf_path_CLASSPATH_arg): Renamed `jcf_path_classpath_arg.'
3955 * jcf.h (jcf_path_CLASSPATH_arg): Ditto.
3956 (jcf_path_CLASSPATH_arg): Ditto.
3957 (classpath_u): Updated leading comment.
3958
3959 2002-02-20 Per Bothner <per@bothner.com>
3960
3961 * builtins.c (check_for_builtin): New function.
3962 (build_call_or_builtin): Remove.
3963 * java-tree.h: Update accordingly.
3964 * expr.c (expand_invoke): Use build + check_for_builtin instead
3965 of build_call_or_builtin.
3966 * parse.y (patch_invoke): Likewise. This avoids needlessly creating
3967 a new CALL_EXPR node, which means we don't lose the CALL_USING_SUPER
3968 flag (which had caused jcf-write to incorrectly emit invokevirtual).
3969
3970 2002-02-17 Tom Tromey <tromey@redhat.com>
3971
3972 * java-tree.h (TYPE_STRICTFP): New macro.
3973 (struct lang_type) [strictfp]: New field.
3974 (CLASS_STRICTFP): New macro.
3975 (METHOD_STRICTFP): New macro.
3976 (struct lang_decl) [strictfp]: New field.
3977 * parse.y (method_header): Disallow strictfp constructor or
3978 abstract method.
3979 (STRICT_TK): Move before MODIFIER_TK.
3980 * parse.h (CLASS_MODIFIERS): Added ACC_STRICT.
3981 (METHOD_MODIFIERS): Likewise.
3982 (INTERFACE_MODIFIERS): Likewise.
3983 * jcf-write.c (get_access_flags): Likewise.
3984 * class.c (set_class_decl_access_flags): Recognize ACC_STRICT.
3985 (add_method_1): Likewise.
3986 (get_access_flags_from_decl): Likewise.
3987 * jcf-dump.c (print_access_flags): Print in standard order. Also,
3988 recognize strictfp flag.
3989 * jcf.h (ACC_STRICT): New define.
3990
3991 2002-02-12 David Billinghurst <Davod.Billinghurst@riotinto.com>
3992
3993 * class.c(build_utf8_ref): Move declaration of decl_size
3994
3995 2002-02-07 Tom Tromey <tromey@redhat.com>
3996
3997 * gcj.texi (Input Options): --CLASSPATH does not suppress system
3998 path.
3999
4000 2002-02-04 Anthony Green <green@redhat.com>
4001
4002 * class.c (build_utf8_ref): Put UTF-8 constants into merged
4003 sections if available.
4004
4005 2002-02-04 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4006
4007 * parse.y (java_expand_classes): Fix typo in static field loop.
4008
4009 2002-02-02 Richard Henderson <rth@redhat.com>
4010
4011 * class.c (add_field): Mark static fields external.
4012 (build_class_ref): Remove redundant set.
4013 * parse.y (java_expand_classes): Mark static fields of classes
4014 to be compiled as local.
4015 * jcf-parse.c (parse_class_file): Likewise.
4016
4017 2002-02-02 Nic Ferrier <nferrier@tapsellferrier.co.uk>
4018
4019 * gcj.texi (About CNI): New node.
4020
4021 2002-02-01 Craig Rodrigues <rodrigc@gcc.gnu.org>
4022
4023 PR java/5080
4024 * jcf-parse.c : Check for HAVE_LOCALE_H before using
4025 setlocale() with LC_CTYPE as a parameter.
4026 * jv-scan.c: Same.
4027
4028 2002-01-31 Joseph S. Myers <jsm28@cam.ac.uk>
4029
4030 * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version):
4031 Follow GNU Coding Standards for --version.
4032
4033 2002-01-28 Tom Tromey <tromey@redhat.com>
4034
4035 * expr.c (build_jni_stub): Ensure storage for `meth' is
4036 generated.
4037 * parse.y (java_complete_expand_methods): Set
4038 current_function_decl before building JNI stub.
4039
4040 2002-01-26 Andreas Tobler <a.tobler@schweiz.ch>
4041
4042 * gcc/java/builtins.c (sqrt_builtin): Use BUILT_IN_SQRT, not
4043 BUILT_IN_SQRTF.
4044
4045 2002-01-22 Tom Tromey <tromey@redhat.com>
4046
4047 * decl.c (java_init_decl_processing): Use add_predefined_file.
4048 Predefine RawData.java.
4049 (predef_filenames): Removed.
4050 (java_init_decl_processing): Don't register predef_filenames.
4051 * jcf-parse.c (add_predefined_file): New function.
4052 (predefined_filename_p): Rewrote.
4053 (predefined_filename_p): No longer static.
4054 * decl.c (java_init_decl_processing): Call initialize_builtins.
4055 * Make-lang.in (JAVA_OBJS): Added builtins.o.
4056 (java/builtins.o): New target.
4057 * builtins.c: New file.
4058 * parse.y (patch_invoke): Use build_call_or_builtin.
4059 * java-tree.h (build_call_or_builtin): Declare.
4060 (initialize_builtins): Declare.
4061 (java_set_exception_lang_code): Removed unused declaration.
4062 (PREDEF_FILENAMES_SIZE): Removed.
4063 (java_tree_index): Added JTI_PREDEF_FILENAMES.
4064 (predef_filenames): New define.
4065 (add_predefined_file): Declare.
4066 (predefined_filename_p): Declare.
4067 * expr.c (expand_invoke): Use build_call_or_builtin.
4068
4069 2002-01-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4070
4071 * parse.y (patch_switch_statement): Fix format specifier.
4072
4073 2002-01-16 Tom Tromey <tromey@redhat.com>
4074
4075 More for PR java/5365:
4076 * gjavah.c (print_stub_or_jni): Cause exception to be thrown by
4077 default.
4078 (process_file): Generate include for
4079 java.lang.UnsupportedOperationExceptions.
4080
4081 2002-01-15 Andreas Jaeger <aj@suse.de>
4082
4083 * .cvsignore: Add man pages.
4084
4085 2002-01-15 Tom Tromey <tromey@redhat.com>
4086
4087 Fix for PR java/5365:
4088 * gjavah.c (process_file): Turn class name into a file name.
4089
4090 2002-01-14 Matthias Klose <doko@debian.org>
4091
4092 * gcj.texi: Fix whitespace and formatting errors in the
4093 synopsis of the man pages. Update copyright.
4094
4095 2002-01-14 Tom Tromey <tromey@redhat.com>
4096
4097 For PR libgcj/5303:
4098 * Make-lang.in (java.install-man): Handle jv-convert man page.
4099 (java.generated-manpages): Added jv-convert.1.
4100 (java.uninstall): Remove jv-convert.1.
4101 (java.maintainer-clean): Likewise.
4102 ($(srcdir)/java/jv-convert.1): New target.
4103 * gcj.texi (Top): Link to jv-convert node.
4104 (Individual utilities): Likewise.
4105 (Invoking jv-convert): New node.
4106
4107 2001-01-10 Jeff Sturm <jsturm@one-point.com>
4108 Martin Kahlert <martin.kahlert@infineon.com>
4109
4110 * jcf-parse.c (get_constant): Don't swap lo/hi for big
4111 endian targets when HOST_BITS_PER_WIDE_INT >= 64.
4112
4113 2002-01-03 Graham Stott <grahams@redhat.com>
4114
4115 * class.c (compile_resource_file): Update copyright date.
4116 Constify filename parameter.
4117 (java-tree.h): Update copyright date.
4118 (compile_resource_file): Constify filename parameter.
4119
4120 2002-01-03 Graham Stott <grahams@redhat.com>
4121
4122 * gcc/jcf-parse.c: Update copyright date.
4123 (yyparse): Constify resource_filename.
4124
4125 2002-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4126
4127 * parse.y (src_parse_roots): Don't needlessly zero init.
4128
4129 2001-12-31 Tom Tromey <tromey@redhat.com>
4130
4131 * parse.y (dump_java_tree): New function.
4132 (source_end_java_method): Call it.
4133 (end_class_declaration): Likewise.
4134 * lang.c (java_decode_option): Call dump_switch_p.
4135
4136 2001-12-28 Tom Tromey <tromey@redhat.com>
4137
4138 * gen-table.pl: Don't process characters after \uffff. Added
4139 comment pointing to input file.
4140
4141 2001-12-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4142
4143 * gen-table.pl: Const-ify output. Document the location of a
4144 suitable unicode input file.
4145
4146 * chartables.h: Regenerate.
4147
4148 2001-12-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4149
4150 * chartables.h: Const-ify.
4151 * gjavah.c (options): Likewise.
4152 * jcf-dump.c (options): Likewise.
4153 * jv-scan.c (options): Likewise.
4154 * lex.c (java_start_char_p, java_part_char_p): Likewise.
4155 * parse.y (binop_lookup): Likewise.
4156
4157 2001-12-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4158
4159 * Make-lang.in (keyword.h): Pass -C to gperf to const-ify
4160 the static arrays that are output.
4161 * jvspec.c (jvgenmain_spec): Make static.
4162 * keyword.gperf (struct java_keyword, java_keyword): Const-ify.
4163 * keyword.h: Regenerate.
4164 * lang.c (string_option, process_option_with_no, lang_f_options,
4165 lang_W_options): Const-ify.
4166 * lex.c (java_lex): Likewise.
4167
4168 2001-12-21 Richard Henderson <rth@redhat.com>
4169
4170 * boehm.c (PROCEDURE_OBJECT_DESCRIPTOR): Merge into ..
4171 (get_boehm_type_descriptor): ... here. Arrange for the
4172 TREE_TYPE to get set properly.
4173
4174 2001-12-21 Richard Henderson <rth@redhat.com>
4175
4176 * class.c (compile_resource_file): Set TREE_PUBLIC on the constructor
4177 only if the target requires collect2.
4178
4179 * class.c (build_class_ref): Mark _Jv_fooClass DECL_EXTERNAL.
4180
4181 2001-12-20 Tom Tromey <tromey@redhat.com>
4182
4183 For PR java/4509:
4184 * parse.y (java_complete_lhs) [COMPOUND_EXPR]: Correctly compute
4185 CAN_COMPLETE_NORMALLY for the node.
4186 * jcf-write.c (generate_bytecode_insns) [COMPOUND_EXPR]: Don't
4187 generate code for second branch if first branch can't complete
4188 normally.
4189 (generate_bytecode_insns) [LOOP_EXPR]: Don't generate `goto' to
4190 the loop head if the loop body can't complete normally.
4191
4192 2001-12-20 Tom Tromey <tromey@redhat.com>
4193
4194 For PR java/4766:
4195 * jcf-write.c (generate_bytecode_insns) [TRY_FINALLY_EXPR]: Handle
4196 case where `finally' clause can't complete normally.
4197
4198 2001-12-20 Tom Tromey <tromey@redhat.com>
4199
4200 Fixes PR java/5057:
4201 * parse.y (analyze_clinit_body): Added this_class parameter.
4202 Check for more cases where we must keep <clinit>.
4203 (maybe_yank_clinit): Cleaned up flow control.
4204
4205 2001-12-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4206
4207 * decl.c (java_init_decl_processing): Don't initialize
4208 finit_leg_identifier_node.
4209 * java-tree.h (java_tree_index): Remove JTI_FINIT_LEG_IDENTIFIER_NODE.
4210 (finit_leg_identifier_node): Remove.
4211 (ID_FINIT_P): Don't check for JTI_FINIT_LEG_IDENTIFIER_NODE.
4212
4213 2001-12-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4214
4215 * mangle.c (mangle_member_name): Don't special-case for
4216 NO_DOLLAR_IN_LABEL.
4217 * mangle_name.c (unicode_mangling_length): Likewise.
4218 (append_unicode_mangled_name): Likewise.
4219 * parse.y (make_nested_class_name): Remove dead NO_DOLLAR_IN_LABEL
4220 code.
4221
4222 2001-12-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4223
4224 * expr.c (build_java_array_length_access): Don't force null pointer
4225 check unless flag_check_references is set.
4226
4227 2001-12-20 Tom Tromey <tromey@redhat.com>
4228
4229 Fix for PR java/3417:
4230 * parse.y (patch_assignment): Added special processing for
4231 `return'.
4232 (patch_return): Don't convert booleans to integers, and don't
4233 special-case `null'.
4234
4235 2001-12-20 Joseph S. Myers <jsm28@cam.ac.uk>
4236
4237 * config-lang.in (diff_excludes): Remove.
4238
4239 2001-12-17 Joseph S. Myers <jsm28@cam.ac.uk>
4240
4241 * gcj.texi: Update link to GCC manual.
4242
4243 2001-12-17 Tom Tromey <tromey@redhat.com>
4244
4245 * parse.y (link_nested_class_to_enclosing): Removed useless
4246 statement.
4247
4248 2001-12-16 Tom Tromey <tromey@redhat.com>
4249
4250 * mangle.c (mangle_method_decl): Never emit `C2' constructor.
4251 Fixes PR java/5088.
4252
4253 2001-12-16 Joseph S. Myers <jsm28@cam.ac.uk>
4254
4255 * ChangeLog, Make-lang.in, class.c, expr.c, gcj.texi, java-tree.h,
4256 jcf-parse.c, jcf-write.c, lex.c, parse.h, parse.y, verify.c: Fix
4257 spelling errors.
4258
4259 2001-12-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4260
4261 * lex.c (java_read_unicode, java_lex): Use hex_p/hex_value.
4262
4263 2001-12-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4264
4265 * decl.c (java_init_decl_processing): Build otable_type correctly.
4266 otable_decl is an otable_type.
4267
4268 2001-12-15 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4269
4270 * java-tree.h (otable_methods, otable_decl, otable_syms_decl,
4271 otable_type, otable_ptr_type, method_symbol_type,
4272 method_symbols_array_type, method_symbols_array_ptr_type): New
4273 field/global tree definitions.
4274 (flag_indirect_dispatch): New flag.
4275 * decl.c (java_init_decl_processing): Initialize new otable and
4276 otable_syms type nodes and decls. Add new field "index" to
4277 method_type_node.
4278 * class.c (build_method_symbols_entry): New function.
4279 (make_method_value): Set "index" to to method's vtable index for
4280 virtual methods when indirect-dispatch is not used.
4281 (make_class_data): For indirect-dispatch, don't emit the dtable_decl,
4282 and set vtable_method_count to -1. Set otable and otable_syms field
4283 if indirect-dispatch is used and there was something to put in them.
4284 (build_method_symbols_entry): New function.
4285 (emit_offset_symbol_table): New function.
4286 * expr.c (get_offset_table_index): New function.
4287 (build_invokevirtual): Build array reference to otable at the index
4288 returned by get_offset_table_index, and use the result as the vtable
4289 offset.
4290 (build_invokeinterface): Similar.
4291 * jcf-parse.c (yyparse): If indirect-dispatch, call
4292 emit_offset_symbol_table at the end of compilation, after all classes
4293 have been generated.
4294 * jvspec.c: Don't pass findirect-dispatch to jvgenmain.
4295 * lang.c (flag_indirect_dispatch): Define.
4296 (lang_f_options): Add indirect-dispatch flag.
4297
4298 2001-12-14 Matthias Klose <doko@debian.org>
4299
4300 * gcj.texi: Markup for man page generation. Document missing
4301 options printed by <tool> --help.
4302 Terminate description of gij's -ms option with a dot.
4303 * Make-lang.in ($(srcdir)/java/*.1): New targets.
4304 (java.generated-manpages java.install-man, java.uninstall,
4305 java-maintainer-clean) Updated.
4306
4307 2001-12-14 Hans Boehm <Hans_Boehm@hp.com>
4308
4309 * class.c (get_dispatch_table): Fix java vtable layout
4310 for TARGET_VTABLE_USES_DESCRIPTORS.
4311 * decl.c (java_init_decl_processing): Initialize
4312 alloc_no_finalizer_node, finalize_identifier_node.
4313 * expr.c (class_has_finalize_method): New function.
4314 (expand_java_NEW): Generate calls for finalizer-free allocation.
4315 (build_invokevirtual): Fix java vtable layout for
4316 TARGET_VTABLE_USES_DESCRIPTORS.
4317 * java-tree.h (enum java_tree_index): New entries:
4318 JTI_ALLOC_NO_FINALIZER_NODE, JTI_FINALIZE_IDENTIFIER_NODE.
4319 (alloc_no_finalizer_node, finalize_deintifier_node): New macros.
4320 (class_has_finalize_method): declare.
4321 (HAS_FINALIZER_P): New macro.
4322 * parse.y (patch_invoke): Generate calls for finalizer-free
4323 allocation.
4324
4325 2001-12-12 Matthias Klose <doko@debian.org>
4326
4327 * Make-lang.in: JAVA_INSTALL_NAME, JAVA_CROSS_NAME: Remove
4328 whitespace at end of line.
4329
4330 2001-12-11 Tom Tromey <tromey@redhat.com>
4331
4332 * lex.c (java_init_lex): Define wfl_to_string as
4333 gnu.gcj.runtime.StringBuffer unless generating bytecode.
4334
4335 2001-12-11 Jeff Sturm <jsturm@one-point.com>
4336
4337 * class.c (make_method_value): Use null_pointer_node to
4338 represent empty exception table.
4339
4340 2001-12-10 Tom Tromey <tromey@redhat.com>
4341
4342 * check-init.c (check_init) [SWITCH_EXPR]: Use SWITCH_HAS_DEFAULT.
4343
4344 2001-12-10 Douglas B. Rupp <rupp@gnat.com>
4345
4346 * Make-lang.in (jvspec.o): Add $(OUTPUT_OPTION).
4347
4348 2001-12-09 Per Bothner <per@bothner.com>
4349
4350 * check-init.c (current_switch_has_default): New static field.
4351 (check_init): Case DEFAULT_EXPR: Set current_switch_has_default.
4352 Case SWITCH_EXPR: Save/restore current_switch_has_default. If no
4353 DEFAULT_EXPR seen, simulate a default alternative that copies state.
4354
4355 2001-12-09 Tom Tromey <tromey@redhat.com>
4356
4357 * check-init.c (check_init): Don't allow pre- or post- increment
4358 or decrement of final variable.
4359 (final_assign_error): Minor error message rewording.
4360
4361 2001-12-08 Tom Tromey <tromey@redhat.com>
4362
4363 * java-tree.h: Fixed typo.
4364
4365 * gjavah.c (decompile_method): Don't decompile to `return this'
4366 for static methods.
4367
4368 * gjavah.c (cxx_keywords): Re-sorted.
4369 * lex.c (cxx_keywords): Re-sorted.
4370
4371 * gjavah.c (HANDLE_METHOD): Set `decompiled' before doing anything
4372 else.
4373
4374 * gjavah.c (print_namelet): Clear subnamelets.
4375 (HANDLE_METHOD): Set `method_printed' earlier.
4376
4377 2001-12-07 Tom Tromey <tromey@redhat.com>
4378
4379 * lang.c (lang_f_options): Added
4380 optimize-static-class-initialization.
4381 (java_decode_option): Removed special case.
4382
4383 2001-12-07 Per Bothner <per@bothner.com>
4384
4385 * check-init.c (check_init): Fix typo freeing memory twice.
4386
4387 2001-12-05 Per Bothner <per@bothner.com>
4388
4389 Restore support for static class initialization optimization.
4390 * java-tree.h (STATIC_CLASS_INIT_OPT_P): Re-enable.
4391 * check-init.c (check_int): At end of BLOCK handle initialization
4392 blocks, which used to be done in java_complete_expand_method but did
4393 not handle the case where check_for_initialization might allocate
4394 more than a word of bits.
4395 * decl.c (lang_make_tree): The smic field is now a tree.
4396 * expr.c (build_class_init): Set DECL_FUNCTION_INIT_TEST_CLASS field.
4397 * java-tree.h (DECL_FUNCTION_INIT_TEST_TABLE): New macro.
4398
4399 * parse.y (emit_test_initialization): Combine hash_lookup calls.
4400
4401 * java-tree.h (DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND):
4402 Change from a hash table to a list.
4403 (struct_lang_decl): Change field 'smic' to match.
4404 * class.c (add_method_1): Initialize
4405 DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND to null list.
4406 * parse.y (adjust_init_test_initialization): Removed - inlined into -
4407 (java_expand_method_bodies): -here, since 'smic' is now a list.
4408 (patch_invoke): Add to 'smic' list, instead of hash_lookup.
4409
4410 * check-init.c (WORD_SIZE): Use BITS_PER_UNIT.
4411
4412 * class.c (java_hash_compare_tree_node): Fix casts.
4413
4414 2001-12-04 Per Bothner <per@bothner.com>
4415
4416 * check-init.c: Handle definite unassignment to finals in addition
4417 to definite assignment.
4418 (loop_current_locals): New field.
4419 (num_current_locals, int start_current_locals, num_current_words):
4420 Make static.
4421 (SET_P, CLEAR_P, SET_BIT): Add needed but missing parentheses.
4422 (ASSIGNED_P, UNASSIGNED_P, SET_ASSIGNED, SET_UNASSIGNED,
4423 CLEAR_ASSIGNED, CLEAR_UNASSIGNED): New macros.
4424 (get_variable_decl, check_final_reassigned): New functions.
4425 (check_init, check_bool_init): Modify as needed for checking finals.
4426 (check_for_initialization): Take extra parameter and return void.
4427 Do extra start-up logic to check final fields for assignment.
4428 * parse.y (check_static_final_variable_assignment_flag,
4429 reset_static_final_variable_assignment_flag, check_final_assignment,
4430 check_final_variable_local_assignment_flag,
4431 reset_final_variable_indirect_assignment_flag,
4432 reset_final_variable_global_assignment_flag): Remove functions.
4433 (java_complete_expand_methods, outer_field_access_fix,
4434 patch_assignment): Remove no-longer used logic.
4435 * java-tree.h (DECL_FIELD_FINAL_IUD): Change usage and comments.
4436 * parse.y (register_fields, java_complete_tree): Update accordingly.
4437
4438 * check-init.c (ALLOC_WORDS/FREE_WORDS): Use xmalloc/free, not alloca.
4439 (DECLARE_BUFFERS, RELEASE_BUFFERS, ALLOC_BUFFER, FREE_BUFFER): New.
4440 (check_cond_init, check_bool2_init): Use DECLARE_BUFFERS.
4441
4442 * java-tree.h (STATIC_CLASS_INIT_OPT_P): Temporarily turn off.
4443
4444 * java-tree.h (DECL FINAL): New bit-field.
4445 (METHOD_FINAL, FIELD_FINAL, CLASS_FINAL): Define as DECL_FINAL.
4446 (LOCAL_FINAL_P): Use DECL_FINAL rather than old LOCAL_FINAL.
4447 (DECL_INIT_CALLS_THIS): New macro.
4448 (struct lang_decl): New bit-field init_calls_this.
4449 (DECL_FUNCTION_ALL_FINAL_INITIALIZED, DECL_FIELD_FINAL_LIIC,
4450 DECL_FIELD_FINAL_IERR, LOCAL_FINAL, TYPE_HAS_FINAL_VARIABLE
4451 (DECL_BIT_INDEX): Change to use pointer_alias_set since we now
4452 use it for both local variables and final fields.
4453 (struct lang_decl_var): Remove bit-fields final_liic, final_ierr,
4454 and local_final.
4455 (struct lang_type): Remove hfv bit-field.
4456 (check_for_initialization): Change to return void.
4457
4458 * java-tree.h (IS_ARRAY_LENGTH_ACCESS): New macros.
4459 * expr.c (build_java_array_length_access): Set IS_ARRAY_LENGTH_ACCESS.
4460 * check-init.c (final_assign_error): New helper function.
4461 (check_final_reassigned, check_init): Use it.
4462 (check_init): Also check IS_ARRAY_LENGTH_ACCESS for ARRAY.length.
4463
4464 * java-tree.h (struct lang_decl, struct lang_decl_var): Change all
4465 bit-fields to unsigned.
4466
4467 2001-12-03 Per Bothner <per@bothner.com>
4468
4469 * parse.y (patch_binop): Minor constant folding.
4470
4471 * parse.y (build_current_thisn): Shorter 'buffer'.
4472
4473 2001-12-03 Per Bothner <per@bothner.com>
4474
4475 * decl.c (complete_start_java_method): Now generate TRY_FINALLY_EXPR
4476 instead of CLEANUP_POINT_EXPR and WITH_CLEANUP_EXPR.
4477 * jcf-write.c (generate_bytecode_insns): Remove support for
4478 CLEANUP_POINT_EXPR and WITH_CLEANUP_EXPR as they are no longer used.
4479 * check-init.c (check_init): Likewise.
4480
4481 2001-12-03 Per Bothner <per@bothner.com>
4482
4483 * verify.c (subroutine_nesting): New function.
4484 (verify_jvm_instructions): Use it to fix logic for checking that
4485 we're done with the current subroutine.
4486
4487 * verify.c (verify_jvm_instruction): For OPCODE_checkcast and
4488 OPCODE_instanceof use POP_TYPE macro for better diagnostics.
4489
4490 2001-12-03 Per Bothner <per@bothner.com>
4491
4492 * jcf.h: Fix obvious typo in comment.
4493 * typeck.c (build_null_signature): Add comment.
4494
4495 2001-12-03 Neil Booth <neil@daikokuya.demon.co.uk>
4496
4497 * expr.c: Remove leading capital from diagnostic messages, as
4498 per GNU coding standards.
4499 * jcf-io.c: Similarly.
4500 * jcf-parse.c: Similarly.
4501 * jv-scan.c: Similarly.
4502 * jvspec.c: Similarly.
4503 * mangle.c: Similarly.
4504
4505 2001-12-02 Tang Ching-Hui <nicholas@cs.nthu.edu.tw>
4506 Alexandre Petit-Bianco <apbianco@redhat.com>
4507
4508 * expr.c (build_java_arrayaccess): Call save_expr on array for
4509 correct evaluation order, modified comment, fixed indentation.
4510 * parse.y: (patch_assignment): Correctly extract the array base
4511 from the tree generate by build_java_arrayaccess, added comments.
4512 (patch_array_ref): Remove SAVE_EXPR on ARRAY_REF.
4513 Fixes PR java/3096, PR java/3803, PR java/3965.
4514
4515 2001-12-01 Neil Booth <neil@daikokuya.demon.co.uk>
4516
4517 * expr.c (expand_byte_code): Remove trailing periods from messages.
4518 * jcf-parse.c (load_class, jcf_parse): Similarly.
4519 * jcf-write.c (generate_classfile): Similarly.
4520 * lex.c (java_lex): Similarly.
4521
4522 2001-11-30 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4523
4524 * class.c (add_interface_do): Set BINFO_VPTR_FIELD.
4525
4526 2001-11-29 Joseph S. Myers <jsm28@cam.ac.uk>
4527
4528 * Make-lang.in (java.generated-manpages): New dummy target.
4529
4530 2001-11-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
4531
4532 * jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
4533 ASM_FINAL_SPEC.
4534 (lang_specific_pre_link): Use set_input to set input_filename.
4535 Append `main' here.
4536 * jvgenmain.c (usage): Append literal `main' to CLASSNAME.
4537 (main): Fix definition.
4538 Strip `main' from classname.
4539 Fixes PR java/227.
4540
4541 2001-11-18 Roger Sayle <roger@eyesopen.com>
4542
4543 * parse.h (java_expand_switch): Remove old prototype.
4544
4545 2001-11-18 Tom Tromey <tromey@redhat.com>
4546
4547 Fix for PR java/1401:
4548 * jcf-write.c (generate_bytecode_insns) [binop]: Handle case where
4549 arg0 is null.
4550 (generate_bytecode_insns) [MODIFY_EXPR]: Handle `OP=' case
4551 correctly.
4552
4553 2001-11-18 Neil Booth <neil@daikokuya.demon.co.uk>
4554
4555 * lang.c (finish_parse): Rename to java_finish.
4556 (LANG_HOOKS_FINISH, java_finish): New.
4557
4558 2001-11-15 Neil Booth <neil@daikokuya.demon.co.uk>
4559
4560 * decl.c (init_decl_processing): Rename java_init_decl_processing.
4561 * java-tree.h: New prototype.
4562 * lang.c (java_init): Update prototype. Combine with old init_parse.
4563
4564 2001-11-13 Tom Tromey <tromey@redhat.com>
4565
4566 * gjavah.c (method_signature): New global.
4567 (HANDLE_METHOD): Set it.
4568 (decompile_return_statement): New function.
4569 (decompile_method): Use it.
4570 (print_method_info): Removed `synth' argument.
4571
4572 2001-11-09 Neil Booth <neil@daikokuya.demon.co.uk>
4573
4574 * java-tree.h (java_set_yydebug): New.
4575 * jcf-parse.c (set_yydebug): Rename java_set_yydebug.
4576 * lang.c (LANG_HOOKS_SET_YYDEBUG): Override.
4577 (print_lang_decl, print_lang_type, print_lang_identifier,
4578 print_lang_statistics, lang_print_xnode): Remove.
4579
4580 2001-11-09 Neil Booth <neil@daikokuya.demon.co.uk>
4581
4582 * jcf-parse.c (init_lex): Remove.
4583 * lang.c (language_string, lang_identify): Remove.
4584 (struct lang_hooks): Constify.
4585 (LANG_HOOKS_NAME): Override.
4586 (init_parse): Update.
4587
4588 2001-11-08 Andreas Franck <afranck@gmx.de>
4589
4590 * Make-lang.in (JAVA_INSTALL_NAME, JAVA_CROSS_NAME): Handle
4591 program_transform_name the way suggested by autoconf.
4592 (java.install-common): Also transform auxiliary program names with
4593 program_transform_name.
4594
4595 2001-11-08 Tom Tromey <tromey@cygnus.com>
4596
4597 * parse.y (trap_overflow_corner_case): New rule.
4598 (unary_expression): Use it.
4599 * lex.c (java_init_lex): Don't set minus_seen.
4600 (yylex): Don't use minus_seen. Communicate overflow to parser for
4601 it to handle.
4602 (error_if_numeric_overflow): New function.
4603 * parse.h (minus_seen): Removed field.
4604 (JAVA_RADIX10_FLAG): New define.
4605
4606 2001-11-07 Tom Tromey <tromey@redhat.com>
4607
4608 Patch for PR java/1414:
4609 * parse.y (case_label_list): New global.
4610 (goal): Register case_label_list with GC.
4611 (java_complete_lhs): Save new case on case_label_list.
4612 (patch_switch_statement): Check for duplicate case labels.
4613
4614 2001-11-07 Alexandre Petit-Bianco <apbianco@redhat.com>
4615
4616 * parse.y (patch_assignment): Removed unused third argument.
4617 (java_complete_lhs): Removed unused third argument to patch_assignment.
4618
4619 2001-11-06 Neil Booth <neil@cat.daikokuya.demon.co.uk>
4620
4621 * lang.c: Include langhooks-def.h.
4622 * Make-lang.in: Update.
4623
4624 2001-10-31 Zack Weinberg <zack@codesourcery.com>
4625
4626 * Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
4627
4628 2001-10-29 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4629
4630 * mangle.c (find_compression_record_match): Don't match compression
4631 records for package name elements unless they occur at the start of
4632 the name. Fix for PR java/4717.
4633
4634 2001-10-25 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4635
4636 * expr.c (expand_java_field_op): Don't special-case references to
4637 java.lang.PRIMTYPE.TYPE.
4638 (build_primtype_type_ref): Removed.
4639 * java-tree.h (build_primtype_type_ref): Remove prototype.
4640 * parse.y (maybe_build_primttype_type_ref): Removed.
4641 (complete_function_arguments): Don't special-case references to
4642 java.lang.PRIMTYPE.TYPE.
4643 (patch_assignment): Likewise.
4644 (array_constructor_check_entry): Likewise.
4645
4646 2001-10-24 Alexandre Petit-Bianco <apbianco@redhat.com>
4647
4648 * mangle.c (static tree compression_table): Fixed leading comment.
4649 * parse.h (struct parser_ctxt): Fixed field comment.
4650 * parse.y (check_pkg_class_access): New prototype, fixed leading
4651 comment, new parameter used to emit error only if passed as true.
4652 (parse_check_super): Pass extra argument to check_pkg_class_access.
4653 (do_resolve_class): Likewise.
4654 (process_imports): Likewise.
4655 (read_import_dir): Fixed indentation.
4656 (find_in_imports_on_demand): New local class_type_name. Local
4657 node_to_use deleted. while loop changed into for loop. Report
4658 multiple definition only for accessible classes. Improved error
4659 message.
4660 (start_complete_expand_method): Local `ptr' removed. DECL_ARGUMENTS
4661 assigned to parameter list, fixed indentation. while loop changed
4662 into for loop, restore TREE_CHAIN on local `tem' before the next
4663 iteration.
4664
4665 2001-10-23 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4666
4667 * lang.c (lang_get_alias_set): Deleted.
4668
4669 2001-10-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4670
4671 * gjavah.c (jni_print_char): Fix thinko in last change.
4672
4673 * gjavah.c (jni_print_char, decode_signature_piece): Use
4674 safe-ctype macros and/or fold extra calls into fewer ones.
4675 * lex.c (java_read_unicode, java_lex): Likewise.
4676 * lex.h (JAVA_START_CHAR_P, JAVA_PART_CHAR_P, JAVA_ASCII_DIGIT,
4677 JAVA_ASCII_HEXDIGIT, JAVA_ASCII_LETTER): Likewise.
4678 * mangle_name.c (append_unicode_mangled_name,
4679 unicode_mangling_length): Likewise.
4680
4681 2001-10-17 Richard Henderson <rth@redhat.com>
4682
4683 * Make-lang.in (java/lang.o): Depend on langhooks.h.
4684
4685 2001-10-15 Alexandre Petit-Bianco <apbianco@redhat.com>
4686
4687 * lang.c (langhooks.h): Included.
4688 (LANG_HOOKS_INIT): Redefined.
4689 (LANG_HOOKS_INIT_OPTIONS): Likewise.
4690 (LANG_HOOKS_DECODE_OPTION): Likewise.
4691 (struct lang_hooks lang_hooks): New initialization.
4692
4693 2001-10-11 Per Bothner <per@bothner.com>
4694
4695 * parse.y (patch_synchronized_statement): Use a TRY_FINALLY_EXPR
4696 rather than a CLEANUP_POINT_EXPR/WITH_CLEANUP_EXPR pair.
4697 The former is simpler, and jcf-write.c handles it better.
4698 (java_complete_lhs): No longer need to handle CLEANUP_POINT_EXPR
4699 or WITH_CLEANUP_EXPR.
4700 * jcf-write.c: Revert Alex's change from 2000-10-18. It is no
4701 longer needed, as we already handle empty TRY_FINALLY_EXPR bodies fine.
4702
4703 * parse.y (patch_if_else_statement): If the condition is constant,
4704 optimize away the test.
4705
4706 2001-10-09 Alexandre Petit-Bianco <apbianco@redhat.com>
4707
4708 * parse.y (patch_cast): Call patch_string on the first operand of
4709 the incoming node, update it if necessary. Fixes PR java/4510.
4710
4711 2001-10-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4712
4713 * parse.y (find_as_inner_class): Don't disregard the enclosing scope
4714 when name qualifier matches a package name.
4715
4716 2001-10-08 Tom Tromey <tromey@redhat.com>
4717
4718 Fix for PR java/4489:
4719 * jcf-write.c (generate_bytecode_insns) [SWITCH_EXPR]: Always
4720 force a new label when computing `body_block'.
4721
4722 2001-10-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4723
4724 * jcf-io.c (format_uint): Const-ify.
4725 * lang.c (java_tree_code_type, java_tree_code_length): Likewise.
4726 * lex.c (java_get_line_col): Likewise.
4727 * parse.y (build_incdec): Likewise.
4728
4729 2001-10-05 Alexandre Petit-Bianco <apbianco@redhat.com>
4730
4731 * parse.y (register_incomplete_type): Set JDEP_SUPER to be given
4732 a NULL enclosing context if appropriate. Fixes PR java/4466.
4733
4734 2001-10-03 Alexandre Petit-Bianco <apbianco@redhat.com>
4735
4736 * parse.y (patch_assignment): Use lvalue's original TYPE when
4737 building the final COMPOUND_EXPR.
4738 (try_reference_assignconv): Fixed leading comment.
4739
4740 2001-09-26 Alexandre Petit-Bianco <apbianco@redhat.com>
4741
4742 * parse.y (check_final_variable_indirect_assignment): For
4743 COMPOUND_EXPR, return only if finals were found initialized
4744 properly, if not, keep on checking.
4745 (check_final_variable_global_assignment_flag): New local
4746 error_found, set when appropriate and used to decide whether to
4747 report uninitialized finals. Fixed typo in comment.
4748
4749 2001-09-22 Alexandre Petit-Bianco <apbianco@redhat.com>
4750
4751 * decl.c (init_decl_processing): Fixed typo in predef_filenames
4752 last three initializations. Fixes PR java/4360.
4753
4754 2001-09-21 Richard Henderson <rth@redhat.com>
4755
4756 * class.c (get_dispatch_table): Handle function descriptors.
4757 (build_dtable_decl): Likewise.
4758 * expr.c (build_invokevirtual): Likewise.
4759
4760 2001-09-20 Alexandre Petit-Bianco <apbianco@redhat.com>
4761
4762 * parse.y (patch_method_invocation): Build class initialization
4763 when static finals are used to qualify method invocation.
4764 Fixes PR java/4366.
4765
4766 2001-09-19 Alexandre Petit-Bianco <apbianco@redhat.com>
4767
4768 * parse.h: (WFL_STRIP_BRACKET): Re-written using
4769 build_type_name_from_array_name.
4770 (STRING_STRIP_BRACKETS): New macro.
4771 * parse.y (build_type_name_from_array_name): New function.
4772 (array_creation_expression:): Accumulate []s instead of [s.
4773 (cast_expression:): Accumulate []s instead of [s after cast type
4774 name.
4775 (build_array_from_name): Local string deleted, use
4776 build_type_name_from_array_name.
4777 (build_unresolved_array_type): Accumulate []s instead of [s after
4778 type name.
4779 (register_fields): Fixed comment.
4780 (resolve_class): Local name, base deleted, new locals tname and
4781 array_dims. Use build_type_name_from_array_name. Use array_dims to
4782 build array type.
4783 (purify_type_name): Use STRING_STRIP_BRACKETS.
4784
4785 2001-09-18 Andreas Jaeger <aj@suse.de>
4786
4787 * parse.y: Use VA_OPEN/VA_CLOSE/VA_FIXEDARG throughout.
4788 * jv-scan.c: Likewise.
4789
4790 2001-09-17 Alexandre Petit-Bianco <apbianco@redhat.com>
4791
4792 * parse.y (patch_method_invocation): Inner class creation context
4793 check not enforced within constructors. Fixes PR java/1873.
4794
4795 2001-09-16 Tom Tromey <tromey@redhat.com>
4796
4797 * jcf-write.c (generate_bytecode_insns) [SWITCH_EXPR]: Call
4798 NOTE_PUSH for single-case push. Fixes PR java/4189.
4799
4800 2001-09-13 Alexandre Petit-Bianco <apbianco@redhat.com>
4801
4802 * java-tree.h (TYPE_IMPORT_LIST): New macro.
4803 (TYPE_IMPORT_DEMAND_LIST): Likewise.
4804 (struct lang_type): New fields import_list and import_demand_list.
4805 * parse.y (java_complete_class): Initialize TYPE_IMPORT_LIST and
4806 TYPE_IMPORT_DEMAND_LIST with ctxp counterparts.
4807 (do_resolve_class): New local saved_enclosing_type, initialized,
4808 passed as parameter to find_in_imports and find_in_imports_on_demand.
4809 (find_in_imports): Added paramater enclosing_type, use its
4810 TYPE_IMPORT_LIST when applicable.
4811 (find_in_imports_on_demand): Added parameter enclosing_type, use
4812 its TYPE_IMPORT_DEMAND_LIST when applicable. Reorganized locals
4813 declaration and initialization.
4814 (fold_constant_for_init): Switch/restore current_class to the
4815 appropriate context.
4816
4817 2001-09-13 Mark Mitchell <mark@codesourcery.com>
4818
4819 * verify.c (verify_jvm_instructions): Fix typo.
4820
4821 2001-09-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4822
4823 * expr.c (expand_invoke): Const-ification.
4824 * parse.y (patch_method_invocation): Likewise.
4825
4826 2001-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4827
4828 * gjavah.c (cxx_keywords): Const-ification.
4829 * keyword.gperf (java_keyword): Likewise.
4830 * lang.c (java_tree_code_name): Likewise.
4831 * lex.c (cxx_keywords): Likewise.
4832 * parse.y (java_parser_context_suspend, merge_string_cste): Likewise.
4833
4834 2001-09-11 Richard Henderson <rth@redhat.com>
4835
4836 * parse.h (ctxp_for_generation): Mark extern.
4837
4838 2001-09-10 Richard Henderson <rth@redhat.com>
4839
4840 * class.c (build_class_ref): Set DECL_EXTERNAL before make_decl_rtl.
4841
4842 2001-09-07 Matt Kraai <kraai@alumni.carnegiemellon.edu>
4843
4844 * typeck.c (java_array_type_length, build_prim_array_type):
4845 Represent empty arrays by NULL index.
4846
4847 2001-09-06 Alexandre Petit-Bianco <apbianco@redhat.com>
4848
4849 * java-tree.h (compile_resource_file): Grouped with other prototypes.
4850 * jvspec.c (lang_specific_driver): Removed unused local `ptr.'
4851
4852 2001-09-06 Anthony Green <green@redhat.com>
4853
4854 * class.c (O_BINARY): Define if necessary.
4855 (registerResource_libfunc): Declare.
4856 (init_class_processing): Initilize registerResource_libfunc.
4857 (compile_resource_file): New function.
4858 * java-tree.h (resource_name): Declare.
4859 (compile_resource_file): Declare.
4860 * jcf-parse.c (yyparse): Handle compiling java resource files.
4861 * lang.c (java_decode_option): Handle -fcompile-resource option.
4862 * jvspec.c (lang_specific_driver): Handle -R flag for compiling
4863 resource files.
4864 * gcj.texi (Code Generation): Add documentation for -R flag.
4865
4866 2001-09-05 Alexandre Petit-Bianco <apbianco@redhat.com>
4867
4868 * jcf-write.c (generate_classfile): Issue an error in case of
4869 field/initial value mismatch.
4870 * parse.y (analyze_clinit_body): Keep <clinit> if an array is
4871 being initialized and we're generating bytecode.
4872 (java_complete_lhs): In MODIFY_EXPR section: added comments,
4873 set DECL_INITIAL properly when appropriate.
4874 Fixes PR java/4230
4875 Fixes PR java/4204
4876
4877 2001-09-01 Per Bothner <per@bothner.com>
4878
4879 * parse.y (maybe_yank_clinit): A field without an initializer is not
4880 relevant. All initializers except static final and constant require
4881 <clinit>, regardless of flag_emit_class_files.
4882
4883 2001-08-31 Per Bothner <per@bothner.com>
4884
4885 * class.c (set_constant_value): When not emitting class files, then a
4886 String ConstantValue is a utf8const_ptr_type.
4887
4888 2001-08-30 Per Bothner <per@bothner.com>
4889
4890 * jcf-write.c (generate_classfile): Check that field is primitive
4891 or string before emitting ConstantValue attribute.
4892
4893 2001-08-30 Per Bothner <per@bothner.com>
4894
4895 * parse.y (resolve_qualified_expression_name): If creating a
4896 COMPOUND_EXPR, set it's type correctly.
4897
4898 2001-08-30 Per Bothner <per@bothner.com>
4899
4900 * jcf-io.c (open_class): Set filename field.
4901
4902 * jcf-parse,c (parse_class_file): Set current_function_decl
4903 for better error message when Code attribute is missing.
4904
4905 * lang.c (put_decl_node, lang_print_error): Re-arrange for
4906 better diagnostics, especially for constructors.
4907
4908 2001-08-30 Per Bothner <per@bothner.com>
4909
4910 * jcf-write.c (generate_classfile): Don't write ConstantValue
4911 attribute if field is not final, for compatibility with jdk.
4912
4913 * jcf-write.c (generate_classfile): Convert ConstantValue values
4914 to correct type. Work-around for front-end bug.
4915 * class.c (set_constant_value): Error if constant has wrong type.
4916
4917 2001-08-30 Per Bothner <per@bothner.com>
4918
4919 * jcf-dump.c (print_constant): Fix fencepost error so "Float" and
4920 "Double" are printed at verbosity 1.
4921
4922 * jcf-dump.c (main): Disable flag_print_attributes if --javap.
4923
4924 * jcf-dump.c (SPECIAL_IINC): Remove unneeded casts to long.
4925
4926 2001-08-30 Alexandre Petit-Bianco <apbianco@redhat.com>
4927
4928 * parse.y (patch_assignment): Don't verify final re-assignment here.
4929 (java_complete_lhs): Verify assignments to finals calling
4930 patch_assignment. Verify re-assignments to finals before calling
4931 patch_assignment.
4932
4933 2001-08-29 Alexandre Petit-Bianco <apbianco@redhat.com>
4934
4935 * parse.y (java_complete_lhs): Allow final locals in CASE_EXPRs.
4936 Fixes PR java/1413
4937
4938 2001-08-28 Alexandre Petit-Bianco <apbianco@redhat.com>
4939
4940 * lex.c (java_lex): new local found_hex_digits. Set and then used
4941 in test to reject invalid hexadecimal numbers.
4942 * parse.y (java_complete_tree): Prevent unwanted cast with
4943 initialized floating point finals.
4944 (patch_binop): Emit a warning when detecting a division by zero,
4945 mark result not constant, don't simplify non integer division.
4946
4947 2001-08-28 Per Bothner <per@bothner.com>
4948
4949 * jcf-write.c (generate_bytecode_insns): For increments and
4950 decrements just recurse to push constant. Improvement on Mark's patch.
4951
4952 2001-08-28 Mark Mitchell <mark@codesourcery.com>
4953
4954 * jcf-write.c (generate_bytecode_insns): Generate an integer to
4955 real conversion for increments and decrements of reals.
4956
4957 2001-08-27 Alexandre Petit-Bianco <apbianco@redhat.com>
4958
4959 * parse.y (resolve_qualified_expression_name): Handle unresolved
4960 qualified expressions, prevent numerical qualifiers, fixed typo.
4961 Fixes PR java/4141
4962
4963 2001-08-24 Alexandre Petit-Bianco <apbianco@redhat.com>
4964
4965 * parse.y (check_deprecation): Handle TYPE_DECL in a special case,
4966 don't report anything but deprecated class when marked so. Handle
4967 VAR_DECL.
4968 (patch_method_invocation): Check deprecation on methods and types.
4969 (patch_binop): code becomes an enum tree_code, added default: to
4970 switch to handle that. Detect division by zero, try to fold and
4971 return before using a subroutine.
4972
4973 2001-08-23 Alexandre Petit-Bianco <apbianco@redhat.com>
4974
4975 * jcf-parse.c (yyparse): Set magic to 0, don't issue error for a
4976 file smaller than 4 bytes.
4977 * parse.y (check_inner_circular_reference): New function.
4978 (check_circular_reference): Likewise.
4979 (array_initializer:): Accept {,}.
4980 (java_check_circular_reference): Rewritten using
4981 check_circular_reference and check_inner_circular_reference.
4982 (java_complete_expand_method): Unconditionally save and restore
4983 the unpurged exception list.
4984 (build_dot_class_method_invocation): Unmangle signature parameter.
4985
4986 2001-08-21 Tom Tromey <tromey@redhat.com>
4987
4988 * decl.c (init_decl_processing): Add `throws' field to method
4989 descriptor.
4990 * class.c (make_method_value): Compute `throws' field for method.
4991
4992 2001-08-22 Alexandre Petit-Bianco <apbianco@redhat.com>
4993
4994 * parse.y (resolve_inner_class): Keep local_enclosing to NULL if
4995 circularity is detected.
4996 (ctors_unchecked_throws_clause_p): Fixed leading comment.
4997
4998 2001-08-17 Richard Henderson <rth@redhat.com>
4999
5000 * class.c (emit_register_classes): Add align parameter to
5001 call to assemble_integer.
5002
5003 2001-08-16 Alexandre Petit-Bianco <apbianco@redhat.com>
5004
5005 * jcf-parse.c (load_class): New locals saved and class_loaded. If
5006 loading a class_or_name fails, try considering an innerclass name
5007 and load the enclosing context.
5008 * parse.y (resolve_inner_class): New function.
5009 (find_as_inner_class): Added leading comment.
5010 (register_incomplete_type): Keep the current context as enclosing
5011 context for JDEP_FIELD dependencies.
5012 (do_resolve_class): Locals new_class_decl and super initialized to
5013 NULL. Call resolve_inner_class, explore the enclosing context
5014 superclass if necessary.
5015 Fixes PR java/4007
5016
5017 2001-08-16 Tom Tromey <tromey@redhat.com>
5018
5019 * jcf-dump.c (main): Updated for change to jcf_path_seal.
5020 * gjavah.c (main): Updated for change to jcf_path_seal.
5021 * lang.c (version_flag): New global.
5022 (java_decode_option): Recognize `-version'.
5023 (java_init): Update for change to jcf_path_seal.
5024 * jcf.h (jcf_path_seal): Added `print' argument.
5025 * jcf-path.c (jcf_path_seal): Added `print' argument.
5026
5027 2001-08-13 Zack Weinberg <zackw@panix.com>
5028
5029 * Make-lang.in (java/decl.o): Update dependencies.
5030 * decl.c: Include libfuncs.h, don't include toplev.h.
5031
5032 2001-08-12 Alexandre Petit-Bianco <apbianco@redhat.com>
5033
5034 * decl.c (init_decl_processing): exception_type_node,
5035 class_not_found_type_node, and no_class_def_found_type_node
5036 initialized. predef_filenames augmented accordingly.
5037 instinit_identifier_node initialized.
5038 * java-tree.def (INSTANCE_INITIALIZERS_EXPR): Entry removed.
5039 * java-tree.h (enum java_tree_index): New entries
5040 JTI_EXCEPTION_TYPE_NODE, JTI_CLASS_NOT_FOUND_TYPE_NODE,
5041 JTI_NO_CLASS_DEF_FOUND_TYPE_NODE, JTI_INSTINIT_IDENTIFIER_NODE.
5042 (exception_type_node): New macro.
5043 (class_not_found_type_node): Likewise.
5044 (no_class_def_found_type_node): Likewise.
5045 (instinit_identifier_node): Likewise.
5046 (PREDEF_FILENAMES_SIZE): Adjusted.
5047 (TYPE_HAS_FINAL_VARIABLE): Fixed typo.
5048 (struct lang_type): Fixed typo in bitfield name.
5049 (DECL_INSTINIT_P): New macro.
5050 (ID_INSTINIT_P): Likewise.
5051 * jcf-write.c (generate_classfile): instinit$ bears the Synthetic
5052 attribute.
5053 * parse.y (encapsulate_with_try_catch): New function.
5054 (generate_instinit): Likewise.
5055 (build_instinit_invocation): Likewise.
5056 (ctors_unchecked_throws_clause_p): Likewise.
5057 (add_instance_initializer): Deleted.
5058 (build_instance_initializer): Likewise.
5059 (in_instance_initializer): Likewise.
5060 (check_method_redefinition): instinit$ not to be verified.
5061 (java_complete_expand_methods): Generate instinit$, simplified code.
5062 (build_dot_class_method): Eliminated unnecessary locals. Use
5063 encapsulate_with_try_catch, removed unnecessary code.
5064 (fix_constructors): New local iii. Use build_instinit_invocation.
5065 (patch_method_invocation): Added comment.
5066 (maybe_use_access_method): Don't consider instinit$.
5067 (find_applicable_accessible_methods_list): Shorten the search for
5068 instinit$ too.
5069 (java_complete_lhs): case INSTANCE_INITIALIZERS_EXPR removed.
5070 (patch_return): Use DECL_INSTINIT_P instead of in_instance_initializer.
5071 (patch_throw_statement): Likewise. Fixed typo.
5072
5073 2001-08-12 David Edelsohn <edelsohn@gnu.org>
5074
5075 Revert:
5076 2001-08-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5077 * jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
5078 ASM_FINAL_SPEC.
5079 (lang_specific_pre_link): Use set_input to set input_filename.
5080 Append `main' here.
5081 * jvgenmain.c (usage): Append literal `main' to CLASSNAME.
5082 (main): Fix definition.
5083 Strip `main' from classname.
5084 Fixes PR java/227.
5085
5086 2001-08-11 Zack Weinberg <zackw@panix.com>
5087
5088 * lex.h: Don't include setjmp.h. Don't define
5089 SET_FLOAT_HANDLER or prototype set_float_handler.
5090
5091 2001-08-09 Alexandre Petit-Bianco <apbianco@redhat.com>
5092
5093 * expr.c (java_lang_expand_expr): Call `expand_end_bindings' and
5094 `poplevel' in the right order.
5095
5096 2001-08-09 Richard Henderson <rth@redhat.com>
5097
5098 * Make-lang.in (class.o): Depend on TARGET_H.
5099 * class.c (emit_register_classes): Use target hooks instead of
5100 assemble_constructor and assemble_destructor.
5101
5102 2001-08-08 Alexandre Petit-Bianco <apbianco@redhat.com>
5103
5104 * check-init.c (flags.h): Include
5105 (check_init): Don't report uninitialized static class
5106 initialization flags, don't free bit index when doing static class
5107 initialization optimization.
5108 (check_for_initialization): Return type changed to `unsigned int.'
5109 (attach_initialized_static_class): New function.
5110 * class.c (add_method_1): Create the initialized static class
5111 table if necessary.
5112 (finish_class): Always emit deferred inline methods.
5113 * decl.c (emit_init_test_initialization): Moved to expr.c
5114 (complete_start_java_method): Don't traverse
5115 DECL_FUNCTION_INIT_TEST_TABLE.
5116 (lang_mark_tree): Mark hash tables in function decls.
5117 * expr.c (emit_init_test_initialization): Moved from decl.c.
5118 (build_class_init): Create LAG_DECL_SPECIFIC for the static class
5119 initialization flag, set DECL_CONTEXT and
5120 LOCAL_CLASS_INITIALIZATION_FLAG.
5121 (java_lang_expand_expr): Emit initialization code for static class
5122 initialized flags when entering block, if necessary.
5123 * gcj.texi (-fno-optimize-static-class-initialization): Documented.
5124 * java-tree.h (flag_optimize_sci): New global variable declaration.
5125 (DECL_FUNCTION_INITIALIZED_CLASS_TABLE): New macro.
5126 (DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND): Likewise.
5127 (LOCAL_FINAL_P): Fixed typo in comment.
5128 (FINAL_VARIABLE_P): Likewise.
5129 (LOCAL_CLASS_INITIALIZATIO_FLAG): New macro.
5130 (LOCAL_CLASS_INITIALIZATIO_FLAG_P): Likewise.
5131 (struct lang_decl): New fields `ict', `smic' and `cif.'
5132 (check_for_initialization): New returned value for global.
5133 (attach_initialized_static_class): New global function.
5134 (STATIC_CLASS_INIT_OPT_P): New macro.
5135 * lang-options.h (-fno-optimize-static-class-initialization): New flag.
5136 * lang.c (java_decode_option): Handle
5137 `-fno-optimize-static-class-initialization'
5138 * parse.y (start_complete_expand_method): New function.
5139 (java_expand_method_bodies): Likewise.
5140 (attach_init_test_initialization_flags): Likewise.
5141 (adjust_init_test_initialization): Likewise.
5142 (emit_test_initialization): Likewise.
5143 (java_complete_expand_methods): Nullify abstract and native method
5144 bodies.
5145 (java_complete_expand_method): New locals `fbody', `block_body'
5146 and `exception_copy.' Reorganized: directly return on empty method
5147 bodies, call `start_complete_expand_method', remember definitely
5148 initialized static class in function, don't expand method bodies.
5149 (java_expand_classes): Call `java_expand_method_bodies' before
5150 `finish_class' when compiling to native.
5151 (resolve_expression_name): Use `orig' after building outer class
5152 field access.
5153 (patch_invoke): Remember static method invocations.
5154
5155 2001-08-06 Richard Henderson <rth@redhat.com>
5156
5157 * class.c (emit_register_classes): Pass a symbol_ref and priority
5158 to assemble_constructor.
5159
5160 2001-08-02 Alexandre Petit-Bianco <apbianco@redhat.com>
5161
5162 * java-tree.h (all_class_filename): New macro.
5163 (enum java_tree_index): New enum `JTI_ALL_CLASS_FILENAME.'
5164 (BUILD_FILENAME_IDENTIFIER_NODE): Fixed leading comment. Link
5165 newly created IDENTIFIER_NODE to `all_class_filename.'
5166
5167 2001-08-01 Jeff Sturm <jsturm@one-point.com>
5168
5169 * java-tree.h (BUILD_FILENAME_IDENTIFIER_NODE):
5170 Use ggc_add_tree_root to register roots.
5171
5172 2001-07-31 Alexandre Petit-Bianco <apbianco@redhat.com>
5173
5174 * check-init.c (check_init): WITH_CLEANUP_EXPR node to use its
5175 second operand calling check_init.
5176 * decl.c (complete_start_java_method): Swaped second and third
5177 arguments while creating WITH_CLEANUP_EXPR node.
5178 * jcf-write.c (generate_bytecode_insns): Use second operand
5179 instead of third when handling WITH_CLEANUP_EXPR.
5180 * parse.y (java_complete_lhs): Expand second operand of
5181 WITH_CLEANUP_EXPR nodes.
5182 (patch_synchronized_statement): Swaped second and third arguments
5183 while creating WITH_CLEANUP_EXPR node.
5184
5185 2001-07-18 Alexandre Petit-Bianco <apbianco@redhat.com>
5186
5187 * parse.y (create_interface): Avoid cyclic inheritance report when
5188 syntax error encountered during class definition.
5189 Fixes PR java/2956
5190
5191 2001-08-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5192
5193 * jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
5194 ASM_FINAL_SPEC.
5195 (lang_specific_pre_link): Use set_input to set input_filename.
5196 Append `main' here.
5197 * jvgenmain.c (usage): Append literal `main' to CLASSNAME.
5198 (main): Fix definition.
5199 Strip `main' from classname.
5200 Fixes PR java/227.
5201
5202 2001-07-18 Tom Tromey <tromey@redhat.com>
5203
5204 For PR java/2812:
5205 * lex.h: Use HAVE_ICONV, not HAVE_ICONV_H.
5206 * lex.c (java_new_lexer): Use ICONV_CONST.
5207 (java_read_char): Likewise.
5208 * Make-lang.in (jc1$(exeext)): Link against LIBICONV.
5209 (jv-scan$(exeext)): Likewise.
5210
5211 2001-07-17 Alexandre Petit-Bianco <apbianco@redhat.com>
5212
5213 * parse.h (INTERFACE_INNER_MODIFIERS): Disallow `private.'
5214 * parse.y (check_class_interface_creation): Allow `private' if the
5215 enclosing is not an interface.
5216 (create_interface): Interface tagged public if the enclosing
5217 context is an interface.
5218 (create_class): Class tagged public if the enclosing context
5219 is an interface.
5220 Fixes PR java/2959
5221
5222 2001-07-17 Alexandre Petit-Bianco <apbianco@redhat.com>
5223
5224 * class.c (push_class): Set DECL_SIZE to `integer_zero_node.'
5225 Fixes PR java/2665
5226
5227 2001-07-14 Tim Josling <tej@melbpc.org.au>
5228
5229 * check-init.c (check_init): Remove references to EXPON_EXPR.
5230
5231 2001-07-13 Alexandre Petit-Bianco <apbianco@redhat.com>
5232
5233 * parse.y (java_complete_lsh): Set CAN_COMPLETE_NORMALLY and unset
5234 TREE_CONSTANT_OVERFLOW of CASE_EXPR value.
5235 Fixes PR java/3602
5236
5237 2001-07-13 Tom Tromey <tromey@redhat.com>
5238
5239 * jvspec.c (jvgenmain_spec): Remove -ffilelist-file from cc1
5240 invocation.
5241
5242 2001-07-12 Alexandre Petit-Bianco <apbianco@redhat.com>
5243
5244 * parse.y (patch_method_invocation): Don't override primary if one
5245 is already provided, but let this$<n> be built. Fixed comment.
5246
5247 2001-07-12 Alexandre Petit-Bianco <apbianco@redhat.com>
5248
5249 * parse.y (empty_statement:): Report empty statement error only
5250 when found at class declaration level.
5251 Fixes PR java/3635
5252
5253 2001-07-12 Tom Tromey <tromey@redhat.com>
5254
5255 * expr.c (expand_load_internal): New function.
5256 (LOAD_INTERNAL): Use it.
5257
5258 2001-07-11 Alexandre Petit-Bianco <apbianco@redhat.com>
5259
5260 * parse.y (verify_constructor_super): Compare anonymous class ctor
5261 args with `valid_method_invocation_conversion_p.'
5262 Fixes PR java/3285
5263
5264 2001-07-10 Alexandre Petit-Bianco <apbianco@redhat.com>
5265
5266 * lang-specs.h: Forbit the use if `-femit-class-file{s}' without
5267 `-fsyntax-only.' Fixes PR java/3248
5268
5269 2001-07-10 Alexandre Petit-Bianco <apbianco@redhat.com>
5270
5271 * jcf-io.c (find_class): Clarified error message. Fixes PR java/2603
5272
5273 2001-07-10 Alexandre Petit-Bianco <apbianco@redhat.com>
5274
5275 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): No `this' is fine if the
5276 current function is static. Fixes PR java/1970
5277
5278 2001-07-09 Alexandre Petit-Bianco <apbianco@redhat.com>
5279
5280 * parse.y (patch_method_invocation): Add enclosing context to ctor
5281 calls if necessary. Fixes PR java/2953
5282
5283 2001-07-09 Alexandre Petit-Bianco <apbianco@redhat.com>
5284
5285 * parse.y (resolve_package): Abort if qualified expression member
5286 isn't right.
5287 (qualify_ambiguous_name): Don't qualify as type if `this' in use.
5288 Fixes PR java/1391
5289
5290 2001-07-07 Zack Weinberg <zackw@stanford.edu>
5291
5292 * verify.c: Don't use // comments.
5293
5294 2001-07-05 Tom Tromey <tromey@redhat.com>
5295
5296 * lang.c (flag_assume_compiled): Removed.
5297 * java-tree.h (flag_assume_compiled): Removed.
5298 * lang-options.h: Removed -ffile-list-file, -fuse-boehm-gc,
5299 -fhash-synchronization, -fuse-divide-subroutine,
5300 -fcheck-references, -femit-class-file, -femit-class-files,
5301 -fassume-compiled. Updated --encoding information. Changed
5302 -foutput-class-dir to `-d'.
5303
5304 2001-07-04 Daniel Berlin <dan@cgsoftware.com>
5305
5306 * jcf-parse.c (parse_class_file): Add lineno parameter to
5307 debug_start_source_file call.
5308
5309 2001-07-04 Joseph S. Myers <jsm28@cam.ac.uk>
5310
5311 * gcj.texi: Use gpl.texi.
5312 * Make-lang.in ($(srcdir)/java/gcj.info, java/gcj.dvi): Update
5313 dependencies and use doc/include in search path.
5314
5315 2001-07-03 Jeff Sturm <jsturm@one-point.com>
5316
5317 * parse.y (fix_constructors): Test if a CALL_EXPR invokes
5318 `this'. If so, don't build instance initializers.
5319
5320 2001-07-03 Alexandre Petit-Bianco <apbianco@redhat.com>
5321
5322 * parse.y (resolve_expression_name): Improved error message for
5323 inner class cases. Fixes PR java/1958
5324
5325 2001-06-28 Gabriel Dos Reis <gdr@codesourcery.com>
5326
5327 * lang.c: #include diagnostic.h
5328 (lang_print_error): Add a `diagnostic_context *' parameter.
5329 (java_dummy_print): Likewise.
5330 * Make-lang.in (JAVA_LEX_C): Depend on diagnostic.h
5331
5332 2001-06-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5333
5334 * jcf-parse.c (gcc_mark_jcf): Test for a finished JCF.
5335 * jcf.h (typedef struct JCF): New bitfield `finished.'
5336 (JCF_FINISH): Set `finished.'
5337 (JCF_ZERO): Reset `finished.'
5338 Fixes PR java/2633
5339
5340 2001-06-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5341
5342 * parse.y (class_body_declaration:): Don't install empty instance
5343 initializers.
5344 Fixes PR java/1314
5345
5346 2001-06-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5347
5348 * class.c (set_super_info): Call `set_class_decl_access_flags.'
5349 (set_class_decl_access_flags): New function.
5350 * java-tree.h (set_class_decl_access_flags): New prototype.
5351 * jcf-parse.c (handle_innerclass_attribute): Read and set access flags.
5352 (parse_class_file): New local `decl_max_locals.' Take wide types
5353 into account to compute DECL_MAX_LOCALS.
5354 * parse.y (type_import_on_demand_declaration:): Ignore duplicate
5355 imports on demand.
5356
5357 2001-06-22 Jan van Male <jan.vanmale@fenk.wau.nl>
5358
5359 * zipfile.h: Use GCC_JCF_H instead of JCF_H.
5360
5361 2001-06-20 Alexandre Petit-Bianco <apbianco@redhat.com>
5362
5363 * class.c (java_hash_tree_node): Fixed indentation in leading comment.
5364 * parse.y (do_resolve_class): Moved comments out to leading comment
5365 section. Removed local `start', New local `_ht' and
5366 `circularity_hash.' Record `enclosing' in hash table and search
5367 it to detect circularity. Use `enclosing' as an argument to
5368 `lookup_cl.' Free the hash table when done.
5369
5370 2001-06-19 Tom Tromey <tromey@redhat.com>
5371
5372 * lex.c (java_read_char): Disallow invalid and overlong
5373 sequences. Fixes PR java/2319.
5374
5375 2001-06-05 Jeff Sturm <jsturm@one-point.com>
5376
5377 * decl.c (create_primitive_vtable): Don't call make_decl_rtl.
5378
5379 2001-06-04 Alexandre Petit-Bianco <apbianco@redhat.com>
5380
5381 * expr.c (force_evaluation_order): Match wrapped ctor calls, locate
5382 arguments accordingly.
5383
5384 2001-06-02 Joseph S. Myers <jsm28@cam.ac.uk>
5385
5386 * gcj.texi: Move contents to just after title page.
5387
5388 2001-06-01 Alexandre Petit-Bianco <apbianco@redhat.com>
5389
5390 * parse.y (type_literals:): Use `build_incomplete_class_ref' with
5391 builtin type.
5392 (patch_incomplete_class_ref): Build the class ref, build the class
5393 init if necessary, complete the tree.
5394 Fixes PR java/2605
5395
5396 2001-05-31 Alexandre Petit-Bianco <apbianco@redhat.com>
5397
5398 * parse.y (lookup_field_wrapper): Test `name' code.
5399 (resolve_qualified_expression_name): Test `qual_wfl' code.
5400 (qualify_ambiguous_name): Handle `CONVERT_EXPR', fixe indentation,
5401 handle `qual_wfl' by code.
5402 (maybe_build_primttype_type_ref): Test `wfl' code.
5403
5404 2001-05-23 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
5405
5406 * Make-lang.in ($(srcdir)/java/gcj.info): Added dependencies on
5407 fdl.texi.
5408 (java/gcj.dvi): Use TEXI2DVI instead of custom tex calls. Create
5409 the dvi file in the java directory.
5410
5411 2001-05-25 Sam TH <sam@uchicago.edu>
5412
5413 * gen-table.pl javaop.h jcf.h lex.h,
5414 parse.h: Fix header include guards.
5415
5416 2001-05-23 Joseph S. Myers <jsm28@cam.ac.uk>
5417
5418 * jv-scan.c (version): Update copyright year.
5419
5420 2001-05-21 Per Bothner <per@bothner.com>
5421
5422 * jcf-parse.c (read_class): If class is from .class or .zip file
5423 and it's already been read, don't push/pop parser context.
5424
5425 2001-05-18 Per Bothner <per@bothner.com>
5426
5427 * jvspec.c (lang_specific_pre_link): Re-arrange the linker
5428 command line so the jvgenmain-generated main program comes first.
5429
5430 2001-05-15 Tom Tromey <tromey@redhat.com>
5431
5432 * class.c (build_utf8_ref): Don't generate identifier based on
5433 utf8const contents.
5434
5435 2001-05-12 Richard Henderson <rth@redhat.com>
5436
5437 * java-tree.def (JAVA_EXC_OBJ_EXPR): New.
5438 * expr.c (java_lang_expand_expr): Expand it.
5439 (process_jvm_instruction): Build JAVA_EXC_OBJ_EXPR instead of
5440 calling build_exception_object_ref.
5441 * parse.y (catch_clause_parameter): Likewise.
5442 (build_dot_class_method): Likewise.
5443 (try_reference_assignconv): Likewise.
5444 * check-init.c (check_init): Check JAVA_EXC_OBJ_EXPR not EXC_PTR_EXPR.
5445 * jcf-write.c (generate_bytecode_insns): Likewise.
5446
5447 2001-05-07 Alexandre Petit-Bianco <apbianco@redhat.com>
5448
5449 * parse.y (build_unresolved_array_type): Set
5450 EXPR_WFL_QUALIFICATION on the newly created wfl.
5451 Fixes PR java/2538. Fixes PR java/2535.
5452
5453 2001-05-07 Alexandre Petit-Bianco <apbianco@redhat.com>
5454
5455 * parse.y (fix_constructors): Removed unnecessary assignment to
5456 local. Moved assignment to `this$<n>', fixed comments and
5457 indentation.
5458 (build_wfl_wrap): Fixed indentation.
5459 Fixes PR java/2598, java/2579 and java/2658.
5460
5461 2001-05-03 Mo DeJong <mdejong@redhat.com>
5462
5463 * lex.c (java_new_lexer): Call iconv_close on temp handle used to
5464 check for byte swap.
5465
5466 2000-05-02 Jeff Sturm <jsturm@one-point.com>
5467
5468 * expr.c (build_class_init): Move MODIFY_EXPR
5469 outside of COND_EXPR. Remove variable `call'.
5470
5471 2001-05-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5472
5473 * decl.c: NULL_PTR -> NULL.
5474 * jcf-write.c: Likewise.
5475
5476 2001-05-01 Tom Tromey <tromey@redhat.com>
5477
5478 * Make-lang.in ($(srcdir)/java/gcj.info): Added `-I..'.
5479 (java/gcj.dvi): Added $(srcdir) to TEXINPUTS.
5480 * gcj.texi: Updated copyright text. Include fdl.texi.
5481 (Top): Link to new node.
5482
5483 2001-05-01 Per Bothner <per@bothner.com>
5484
5485 * parse.h (REGISTER_IMPORT): Use tree_cons instead of chainon.
5486
5487 2001-05-01 Per Bothner <per@bothner.com>
5488
5489 * parse.y (java_pop_parser_context): The TREE_VALUE of a link in the
5490 import_list contains the name, not the TREE_PURPOSE.
5491
5492 2001-04-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5493
5494 * jcf-io.c (read_zip_member): Cast to long in comparison with
5495 signed value.
5496
5497 * jvspec.c (lang_specific_driver): Initialize variables.
5498
5499 * mangle.c (find_compression_record_match): Likewise.
5500
5501 * typeck.c (build_null_signature): Provide static prototype. Mark
5502 parameter with ATTRIBUTE_UNUSED.
5503
5504 * verify.c (verify_jvm_instructions): Initialize variable.
5505
5506 2001-04-27 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
5507
5508 * parse.y (do_resolve_class): Check for cyclic inheritance during
5509 inner class resolution.
5510
5511 2001-04-27 Per Bothner <per@bothner.com>
5512
5513 * parse.y (java_expand_classes): Don't change ctxp_for_generation
5514 while iterating, since that could cause gc to lose stuff.
5515
5516 2001-04-26 Per Bothner <per@bothner.com>
5517
5518 Fix method search wrt scope of inner classes to match JLS2.
5519 * typeck.c (build_null_signature): New static function.
5520 (has_method): New function. Uses build_null_signature and lookup_do.
5521 * java-tree.h (has_method): New declaration.
5522 * parse.y (find_applicable_accessible_methods_list): Do not search
5523 context of inner classes here.
5524 (patch_method_invocation): Search scope, ie. current and outer clases,
5525 for method matching simple name, to find class.
5526
5527 2001-04-26 Per Bothner <per@bothner.com>
5528
5529 * jcf-write.c (generate_bytecode_insns case SWITCH_EXPR):
5530 Fix thinko: If a single case, use if_icmpeq, not ifeq.
5531
5532 * constants.c (find_methodref_with_class_index): New function.
5533 (find_methodref_index): Use find_methodref_with_class_index.
5534 * java-tree.h (find_methodref_with_class_index): New declaration.
5535 * jcf-write.c (generate_bytecode_insns case CALL_EXPR): Don't change
5536 DECL_CONTEXT, instead use new find_methodref_with_class_index function.
5537 If context changed from interface to class, don't use invokeinterface.
5538
5539 2001-04-25 Per Bothner <per@bothner.com>
5540
5541 * verify.c (verify_jvm_instructions): For field instructions,
5542 check that field index is valid. For invoke instructions, check that
5543 method index is valid.
5544
5545 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
5546
5547 * config-lang.in (target_libs): Copy from $libgcj_saved.
5548
5549 2001-04-25 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
5550
5551 * decl.c (init_decl_processing): Add new class "protectionDomain"
5552 field.
5553 * class.c (make_class_data): Set initial value for "protectionDomain".
5554
5555 2001-04-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5556
5557 * jvspec.c (lang_specific_driver): Fix memory allocation
5558 deficit, by using concat in lieu of xmalloc/sprintf.
5559
5560 2001-04-20 Per Bothner <per@bothner.com>
5561
5562 Fixes to compile multiple .class files at once.
5563 * decl.c (init_decl_processing): Don't set CLASS_LOADED_P.
5564 * java-tree.h (CLASS_PARSED_P): New macro.
5565 (CLASS_LOADED_P): Re-define to use TYPE_SIZE and CLASS_PARSED_P.
5566 * jcf-parse.c (jcf_parse_source): Inline into read_class.
5567 (read_class): Avoid some code duplication.
5568 Don't call JCF_FINISH for a .class file - might be needed later.
5569 (jcf_parse): Don't call layout_class here. Check/set CLASS_PARSED_P
5570 rather than CLASS_LOADED_P, since latter implies class laid out.
5571 (yyparse): Do layout_class and JCF_FINISh here instead, in pass 2.
5572 * parse.y: Don't need to set CLASS_LOADED_P for array types.
5573
5574 2001-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5575
5576 * Make-lang.in (java/boehm.o): Depend on toplev.h.
5577
5578 * boehm.c: Include toplev.h.
5579
5580 2001-04-06 Tom Tromey <tromey@redhat.com>
5581 Alexandre Petit-Bianco <apbianco@redhat.com>
5582
5583 Fix for PR gcj/1404 and PR gcj/2332:
5584 * parse.y (build_array_from_name): If we use the type_wfl then
5585 accumulate dimensions from the original type as well.
5586 (build_unresolved_array_type): Don't modify TYPE_OR_WFL in place.
5587
5588 2001-04-06 Tom Tromey <tromey@redhat.com>
5589
5590 * parse.y (analyze_clinit_body): Return true if the second operand
5591 of a METHOD_EXPR is nonzero.
5592
5593 2001-04-06 Tom Tromey <tromey@redhat.com>
5594
5595 * Make-lang.in ($(srcdir)/java/parse-scan.c): Run bison from build
5596 directory.
5597 ($(srcdir)/java/parse.c): Likewise.
5598
5599 2001-04-05 Alexandre Petit-Bianco <apbianco@redhat.com>
5600
5601 * gcj.texi: Use `which-gcj' instead of `which-g77.'
5602 (version-gcc): Initialized.
5603 (which-gcj): Likewise.
5604
5605 2001-04-04 Alexandre Petit-Bianco <apbianco@redhat.com>
5606
5607 * java-tree.h (struct lang_decl): New macro
5608 `DECL_FIXED_CONSTRUCTOR_P.' New field `fixed_ctor.'
5609 * parse.y (build_instance_initializer): New function.
5610 (add_instance_initializer): Use it.
5611 (java_fix_constructors): Set `current_class' before fix pass.
5612 (fix_constructors): Just return if already fixed. Move `super()'
5613 invocation ahead. Use `build_instance_initializer.'
5614 Fixes PR java/1315.
5615
5616 2001-04-04 Alexandre Petit-Bianco <apbianco@redhat.com>
5617
5618 * parse.y (resolve_qualified_expression_name): Pass field's
5619 DECL_CONTEXT to `not_accessible_p.'
5620 (not_accessible_p): Changed parameters order in `inherits_from_p'
5621 invocation.
5622
5623 2001-03-27 Andrew Haley <aph@cambridge.redhat.com>
5624
5625 * lang-options.h: Add flag_check_references.
5626
5627 2001-04-04 Per Bothner <per@bothner.com>
5628
5629 * java-tree.h (CONSTANT_VALUE_P): New macro.
5630 * jcf-write.c (generate_classfile): Use CONSTANT_VALUE_P.
5631 * parse.y (maybe_build_class_init_for_field): New static function.
5632 (resolve_expression_name, resolve_field_access): Use
5633 maybe_build_class_init_for_field instead of build_class_init
5634 This does not do the init if the field is compile-time-constant.
5635 (resolve_field_access): Simplify.
5636
5637 * parse.y (fold_constant_for_init): Merge test into switch.
5638
5639 2001-04-03 Zack Weinberg <zackw@stanford.edu>
5640
5641 * Make-lang.in (buffer.o, check-init.o, class.o): Don't depend
5642 on gansidecl.h.
5643 * buffer.c, jvgenmain.c: Don't include gansidecl.h.
5644
5645 2001-04-02 Zack Weinberg <zackw@stanford.edu>
5646
5647 * expr.c (pop_type_0): Save the result of the first
5648 lang_printable_name call in a scratch buffer, so it
5649 won't be clobbered by the second call.
5650
5651 2001-03-30 Alexandre Petit-Bianco <apbianco@redhat.com>
5652
5653 * parse-scan.y (array_type:): Rewritten.
5654 (type_declaration:): `empty_statement' replaces `SC_TK.'
5655 (class_member_declaration:): `empty statement' added.
5656 (method_body:): Simplified.
5657 (static_initializer:): Likewise.
5658 (primary_no_new_array:): Use `type_literals.'
5659 (type_literals:): New rule.
5660 (dims:): Set and update `bracket_count.'
5661 Fixes PR java/1074. Fixes PR java/2412.
5662
5663 2001-03-28 Hans Boehm <boehm@acm.org>
5664
5665 * boehm.c (PROCEDURE_OBJECT_DESCRIPTOR): Set to use `build_int_2.'
5666 (get_boehm_type_descriptor): Set type on returned value to be a
5667 pointer length integer.
5668
5669 2001-03-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5670
5671 * expr.c (pop_type_0): Call `concat' rather than building the
5672 string manually.
5673 (pop_type): Add format specifier in call to `error'.
5674
5675 * parse.y (patch_method_invocation): Avoid casting away
5676 const-ness.
5677
5678 2001-03-28 Jeffrey Oldham <oldham@codesourcery.com>
5679
5680 * jvgenmain.c (do_mangle_classname): End string constant with '\0'.
5681
5682 2001-03-28 Richard Henderson <rth@redhat.com>
5683
5684 IA-64 ABI Exception Handling:
5685 * Make-lang.in (except.o): Don't depend on eh-common.h.
5686 * check-init.c (check_init): Handle EXC_PTR_EXPR.
5687 * decl.c (init_decl_processing) [throw_node]: No _Jv_Sjlj_Throw.
5688 [soft_exceptioninfo_call_node]: Remove.
5689 [eh_personality_libfunc, lang_eh_runtime_type]: New.
5690 (end_java_method): No emit_handlers.
5691 * except.c (java_set_exception_lang_code): Remove.
5692 (method_init_exceptions): Don't call it.
5693 (prepare_eh_table_type): No CATCH_ALL_TYPE.
5694 (build_exception_object_ref): New.
5695 (expand_end_java_handler): Update for except.h name changes.
5696 (emit_handlers, expand_resume_after_catch): Remove.
5697 * expr.c (java_lang_expand_expr): Update for except.h name changes.
5698 (process_jvm_instruction): Use build_exception_object_ref.
5699 * java-tree.h (JTI_SOFT_EXCEPTIONINFO_CALL_NODE): Remove.
5700 (soft_exceptioninfo_call_node): Remove.
5701 (build_exception_object_ref): Declare.
5702 * jcf-write.c (generate_bytecode_insns) [CALL_EXPR]: No
5703 soft_exceptioninfo_call_node. Move processing ...
5704 [EXC_PTR_EXPR]: ... here.
5705 * parse.h (BUILD_ASSIGN_EXCEPTION_INFO): Remove dead code.
5706 * parse.y (catch_clause_parameter): Use build_exception_object_ref.
5707 (source_end_java_method): No java_set_exception_lang_code or
5708 emit_handlers.
5709 (build_dot_class_method): Use build_exception_object_ref.
5710 (try_reference_assignconv): Check EXC_PTR_EXPR not
5711 soft_exceptioninfo_call_node.
5712
5713 2001-03-28 Richard Henderson <rth@redhat.com>
5714
5715 * java-tree.h (throw_node): Define as a single member of
5716 java_global_trees instead of a separate array.
5717 (JTI_THROW_NODE): New.
5718 * decl.c (throw_node): Don't declare.
5719 (init_decl_processing): Init a scalar throw_node.
5720 Don't register it for gc.
5721 * check-init.c (check_init): Reference scalar throw_node.
5722 * expr.c (build_java_athrow): Likewise.
5723 * jcf-write.c (generate_bytecode_insns): Likewise.
5724 * parse.h (BUILD_THROW): Likewise.
5725
5726 2001-03-28 Richard Henderson <rth@redhat.com>
5727
5728 * decl.c (end_java_method): Do not save and restore
5729 flag_non_call_exceptions.
5730 * parse.y (source_end_java_method): Likewise.
5731 * lang.c (flag_exceptions): Don't declare.
5732 (java_init_options): Set flag_non_call_exceptions. Set
5733 flag_exceptions here ...
5734 (java_init): ... not here.
5735
5736 2001-03-27 Richard Henderson <rth@redhat.com>
5737
5738 * expr.c, parse.h: Use USING_SJLJ_EXCEPTIONS instead of
5739 exceptions_via_longjmp.
5740
5741 * lang.c (flag_new_exceptions): Don't declare it.
5742 (java_init_options): Or set it.
5743
5744 2001-03-27 Richard Henderson <rth@redhat.com>
5745
5746 * decl.c (end_java_method): Rename asynchronous_exceptions to
5747 flag_non_call_exceptions.
5748 * parse.y (source_end_java_method): Likewise.
5749
5750 2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5751
5752 * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
5753
5754 2001-03-26 Mark Mitchell <mark@codesourcery.com>
5755
5756 * parse.h (DECL_END_SOURCE_LINE): Don't rely on DECL_FRAME_SIZE.
5757
5758 2001-03-26 Alexandre Petit-Bianco <apbianco@redhat.com>
5759
5760 * parse.y (find_as_inner_class): Follow current package
5761 indications not to mistakingly load an unrelated class.
5762
5763 2001-03-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5764
5765 * constants.c (PUTN): Use memcpy, not bcopy.
5766
5767 * lex.c (java_read_char): Use memmove, not bcopy.
5768
5769 * parse.y (java_parser_context_resume): Use memcpy, not bcopy.
5770
5771 2001-03-23 Per Bothner <per@bothner.com>
5772
5773 * verify.c (verify_jvm_instructions): Replace 3 pop_type by POP_TYPE
5774 macro for better error pin-pointing.
5775 * java-tree.h: Fix typo in comment.
5776
5777 * jcf-write.c (generate_bytecode_insns): Changes to TRY_FINALLY_EXPR.
5778 Don't include jsr/goto in exception range.
5779 Check if start and end of exception range are the same (also TRY_EXPR).
5780 Don't emit jsr after try_block if CAN_COMPLETE_NORMALLY is false.
5781 However, do emit the following goto even if try_block is empty.
5782 Defer freeing exception_decl until after the finalizer, to make
5783 sure the local isn't reused in the finalizer. Fixes PR java/1208.
5784
5785 * parse.y (java_complete_lhs): If the try-clause is empty, just
5786 return the finally-clause and vice versa.
5787
5788 2001-03-23 Alexandre Petit-Bianco <apbianco@redhat.com>
5789
5790 * gcj.texi (Input Options): documented the check for attribute
5791 `gnu.gcc.gccj-compiled' and the `-fforce-classes-archive-check' flag.
5792 * java-tree.h (flag_force_classes_archive_check): Declared extern.
5793 * jcf-parse.c (HANDLE_GCJCOMPILED_ATTRIBUTE): New macro.
5794 (jcf_parse): Check for the right classes archive if necessary.
5795 * jcf-reader.c (get_attribute): Define `MATCH_ATTRIBUTE' and use it.
5796 (jcf_parse_fields): Fixed indentation.
5797 * jcf-write.c (append_gcj_attribute): New function.
5798 (generate_classfile): Compute the attribute count, invoke
5799 `append_gcj_attribute'.
5800 * jcf.h (typedef struct JCF): `seen_in_zip' and `java_source'
5801 turned into bit-fields. New bit-field `right_zip.'
5802 (JCF_ZERO): Set `right_zip' to zero.
5803 * lang-options.h (-fforce-classes-archive-check): Added flag.
5804 * lang.c (flag_force_classes_archive_check): New flag.
5805 (lang_f_options): New entry `force-classes-archive-check.'
5806 Fixes PR java/1213.
5807
5808 2001-02-07 Andrew Haley <aph@redhat.com>
5809
5810 * gcj.texi (Configure-time Options): Add -fcheck-references.
5811 * expr.c (build_java_indirect_ref): New function.
5812 (java_check_reference): New function.
5813 (build_java_array_length_access): Use build_java_indirect_ref to
5814 check for null references.
5815 (build_java_arrayaccess): Likewise.
5816 (build_get_class): Likewise.
5817 (build_field_ref): Likewise.
5818 (invoke_build_dtable): Likewise.
5819 (build_invokeinterface): Likewise.
5820 * lang.c (lang_f_options): Add flag_check_references.
5821 * jvspec.c (jvgenmain_spec): Add flag_check_references.
5822 * java-tree.h (flag_check_references): New variable.
5823 * lang.c (flag_check_references): Likewise.
5824 * parse.y (patch_invoke): Use java_check_reference.
5825 (patch_assignment): Allow for extra nesting in
5826 _Jv_CheckArrayStore.
5827
5828 2001-03-23 Bryce McKinlay <bryce@albatross.co.nz>
5829
5830 * gjavah.c (cxx_keywords): Update from the definitive list in cp/lex.c.
5831 * lex.c (cxx_keywords): Likewise.
5832
5833 2001-03-21 Alexandre Petit-Bianco <apbianco@redhat.com>
5834
5835 * parse.y (qualify_ambiguous_name): Broaden `length'
5836 recognition. Help MODIFY_EXPR be resolved as expression names.
5837 Fixes PR java/2066. Fixes PR java/2400.
5838
5839 2001-03-21 Bryce McKinlay <bryce@albatross.co.nz>
5840
5841 * gjavah.c (process_file): Mark interface definitions with
5842 "__attribute__ ((java_interface))".
5843
5844 2001-03-21 Alexandre Petit-Bianco <apbianco@redhat.com>
5845
5846 * class.c (layout_class): Fixed push_super_field's second
5847 argument. Fixes PR java/2333.
5848 (jdep_resolve_class): Reset TYPE_SIZE if `error_mark_node', it's
5849 too early to lay innerclasses out.
5850
5851 2001-03-20 Tom Tromey <tromey@redhat.com>
5852 Alexandre Petit-Bianco <apbianco@redhat.com>
5853
5854 * parse.y (patch_assignment): Handle the case of a SAVE_EXPR
5855 inside an array reference. Insertion of the array store check
5856 rewritten. Fixes PR java/2299.
5857
5858 2001-03-20 Tom Tromey <tromey@redhat.com>
5859
5860 * lex.c (java_read_unicode): Only accept leading `u's.
5861
5862 2001-03-20 Tom Tromey <tromey@redhat.com>
5863
5864 * jcf-parse.c (read_class): Initialize `class'.
5865
5866 2001-03-20 Matt Kraai <kraai@alumni.carnegiemellon.edu>
5867
5868 * jcf_parse.c (jcf_parse): Eliminate unused variable.
5869
5870 2001-03-19 Mark Mitchell <mark@codesourcery.com>
5871
5872 * class.c (build_class_ref): Use SET_DECL_ASSEMBLER_NAME.
5873 (layout_class): Likewise.
5874 (layout_class_method): Likewise.
5875 (emit_register_classes): Likewise.
5876 * decl.c (builtin_function): Likewise.
5877 (give_name_to_locals): Likewise.
5878
5879 2001-03-19 Per Bothner <per@bothner.com>
5880
5881 * jcf-parse.c (load_inner_classes): Check CLASS_LOADED_P
5882 before trying to load an inner class.
5883
5884 Fixes to process to command-line .class files in two passes.
5885 * java-tree.h (JAVA_FILE_P, CLASS_FILE_P, ZIP_FILE_P): New flags.
5886 (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P): Rename to ..
5887 (CLASS_FROM_CURRENTLY_COMPILED_P): ... because it is more general now.
5888 * class.c (is_compiled_class): Fix for renamed flag.
5889 * parse.y (maybe_create_class_interface_decl): Likewise.
5890 * jcf-parse.c (yyparse): Also set if compiling .class files.
5891 * jcf-parse.c (read_class); Read current_class.
5892 (jcf_parse): Make static.
5893 (load_inner_classes): New function, with code moved from jcf_parse,
5894 because we need to inner classes after the command-line files are read.
5895 (yyparse): Set finput to NULL when it doesn't need to be closed.
5896 Reduce use of main_jcf (basically only for archive) and
5897 use finput instead of main_jcf->read_state.
5898 Inline jcf_figure_file_type into yyparse.
5899 Set JAVA_FILE_P, CLASS_FILE_P, or ZIP_FILE_P on filename list name.
5900 Defer load_inner_classes and parse_class_file to a second pass,
5901 after we've correctly mapped command-line .clas fiels to classes.
5902 (jcf_figure_file_type): Removed.
5903 * jcf.h (JCF_ZIP, JCF_CLASS, JCF_SOURCE): Removed flags.
5904 (JCF_ZERO): Also clear zipd field.
5905 * zipfile.h: Conditionalize on JCF_H insread of JCF_ZIP.
5906
5907 2001-03-18 Matt Kraai <kraai@alumni.carnegiemellon.edu>
5908
5909 * jcf-parse.c (yyparse): Change ch from char * to char.
5910
5911 2001-03-19 Per Bothner <per@bothner.com>
5912
5913 * jvspec.c (lang_specific_driver): Check for .zip and .jar files.
5914 Add constructed filelist-file at end, following -xjava. Thus any .o
5915 and library files are not affected by the -xjava. Also wrap
5916 explicit @FILE with -xjava and -xnone.
5917
5918 2001-03-19 Andrew Haley <aph@cambridge.redhat.com>
5919
5920 * class.c (build_static_field_ref): Call make_decl_rtl() after
5921 setting the DECL_EXTERNAL flag.
5922
5923 2001-03-17 Per Bothner <per@bothner.com>
5924
5925 * decl.c (clear_binding_level): Fix initializer (broke 03-15).
5926
5927 * jcf-write.c (generate_bytecode_insns): Handle emitting iinc
5928 when result is is needed (target is STACK_TARGET).
5929
5930 * parse.h (JDEP_SOLV): Removed.
5931 * parse.y (register_incomplete_type): Use JDEP_TO_RESOLVE instead.
5932
5933 * parse.y (incomplete_class_list): Removed.
5934 (obtain_incomplete_type): Don't use or set incomplete_class_list.
5935 It doesn't work if resolve_class changes the name of an array type
5936 that is on the list and then someone else looks for the modified name.
5937 Also, seems liable to break when compiling multiple source files at
5938 once. So the simplest is to just remove incomplete_class_list -
5939 it is only a minor space win and it is not even clear it saves time.
5940
5941 * parse.y (resolve_class): Remove unneeded promote_type.
5942
5943 2001-03-15 Per Bothner <per@bothner.com>
5944
5945 * java-tree.h (BLOCK_IS_IMPLICIT): New flag.
5946 * parse.h (BLOCK_EXPR_ORIGIN): Removed macro.
5947 * parse.y (declare_local_variables, maybe_absorb_scoping_blocks):
5948 Use BLOCK_IS_IMPLICIT rather than BLOCK_EXPR_ORIGIN.
5949
5950 * jcf-parse.c (yyparse): Set/reset input_filename for source file.
5951 * parse.y (java_expand_classes): Likewise.
5952
5953 * parse.y (expand_start_java_method): Was only called once and had a
5954 misleading name, so inline in caller java_complete_expand_method.
5955 (enter_a_block): Likewise inline in enter_block and remove.
5956
5957 Remove junk from when gcc/java was created (by copying from C/C++).
5958 * decl.c (keep_next_level_flag, keep_next_if_subblocks): Remove.
5959 (struct binding_level): Remove fields keep, keep_if_subblocks,
5960 more_cleanups_ok, have_cleanups (which have never been used).
5961 (pushlevel, poplevel): Remove related useless code.
5962
5963 * class.c (make_class_data): The class_dtable_decl (i.e. the
5964 vtable for Class) should be external, except when compiling Class.
5965
5966 * jvspec.c (lang_specific_driver): Fix -C handling.
5967 Check -save-temps to see if temp @FILE should be deleted.
5968 Follow-up to/fix for February 16 patch.
5969
5970 * verify.c (verify_jvm_instructions): Better error msgs for dup.
5971 (type_stack_dup): Remove no-longer neded error check.
5972
5973 2001-03-15 Bryce McKinlay <bryce@albatross.co.nz>
5974
5975 * mangle.c (mangle_record_type): Rename 'from_pointer' argument
5976 to 'for_pointer'. If this type is for a pointer (argument) mangling,
5977 don't surround the element with 'N..E' if the type name is
5978 unqualified.
5979
5980 2001-03-14 Mark Mitchell <mark@codesourcery.com>
5981
5982 * class.c (build_static_field_ref): Use COPY_DECL_RTL,
5983 DECL_RTL_SET_P, etc.
5984 (make_method_value): Likewise.
5985 (get_dispatch_table): Likewise.
5986
5987 * decl.c (push_jvm_slot): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5988
5989 2001-03-07 Tom Tromey <tromey@redhat.com>
5990
5991 * config-lang.in (lang_requires): Define.
5992
5993 2001-03-07 Brad Lucier <lucier@math.purdue.edu>
5994
5995 * typeck.c (convert): Check flag_unsafe_math_optimizations,
5996 not flag_fast_math.
5997
5998 2001-03-05 Per Bothner <per@bothner.com>
5999
6000 Fix a problem where rest_of_decl_compilation applied to
6001 class_dtable_decl causes problems because it was done too early,
6002 before output file was opened.
6003 * decl.c (init_decl_processing): Remove init of class_dtable_decl.
6004 * class.c (class_dtable_decl): Add macro - element of class_roots.
6005 (make_class_data): Define class_dtable_decl.
6006 * java-tree.h (JTI_CLASS_DTABLE_DECL, class_dtable_decl): Removed.
6007
6008 2001-03-01 Zack Weinberg <zackw@stanford.edu>
6009
6010 * java/class.c, java/decl.c, java/java-tree.h: Replace all
6011 uses of 'boolean' with 'bool'.
6012
6013 2001-03-01 Zack Weinberg <zackw@stanford.edu>
6014
6015 * lang-specs.h: Add zero initializer for cpp_spec field to all
6016 array elements.
6017
6018 2001-02-16 Per Bothner <per@bothner.com>
6019
6020 Handle compiling multiple input files at once, and @FILE syntax.
6021 * gcj.texi: Updated documentation to match.
6022 * java-tree.h (flag_filelist_file, init_src_parse): New declarations.
6023 * jcf-parse.c (parse_source_file): Split into ...
6024 (parse_source_file_1): New function - and:
6025 (parse_source_file_2): New function.
6026 (yyparse): On -ffilelist-file, open and scan named file.
6027 On first pass over files, only do parse_source_file_1.
6028 A new second pass calls parse_source_file_2 for each file to compile.
6029 (init_jcf_parse): Call init_src_parse.
6030 * jvspec.c (INDIRECT_FILE_ARG): New flag.
6031 (lang_specific_driver): Support @FILELIST-FILE syntax, as well
6032 as multiple input file combined in one compilation.
6033 * lang-options.h: Add -ffilelist-file
6034 * lang.c (flag_filelist_file): New flag variable.
6035 (lang_f_options): Handle -ffilelist-file.
6036 * lex.c (java_init_lex): Don't clear ctxp->incomplete_class.
6037 * parse.h (struct parse_ctxt): Remove fields incomplete_class and
6038 gclass_list - use global fields of src_parse_roots instead.
6039 * parse.y (src_parse_roots): New array.
6040 (incomplete_class_list, gclass_list): New macros.
6041 (push_parser_context, java_pop_parser_context,
6042 java_parser_context_resume): Don't fiddle with deleted fields.
6043 (various): Use incomplete_class gclass_list and global macros
6044 instead of parse_ctxt fields - the lists are global.
6045 (init_src_parse): New function.
6046
6047 2001-02-23 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6048
6049 * decl.c (set_block): Set NAMES and BLOCKS from BLOCK.
6050
6051 2001-02-20 Alexandre Petit-Bianco <apbianco@redhat.com>
6052
6053 * parse.y (check_inner_class_access): Moved declaration of local
6054 `enclosing_decl_type' to the right location.
6055
6056 2001-02-19 Bryce McKinlay <bryce@albatross.co.nz>
6057
6058 * parse.y (parser_check_super_interface): Don't call
6059 check_pkg_class_access for an inner interface.
6060 (parser_check_super): Don't call check_pkg_class_access for inner
6061 class.
6062 (do_resolve_class): Simplify enclosing type loop. Don't call
6063 check_pkg_class_access if CL and DECL are not set.
6064 (find_in_imports_on_demand): Set DECL if class_type needed to be
6065 loaded. Don't call check_pkg_class_access for an inner class.
6066 (check_inner_class_access): Rewritten to implement member access
6067 rules as per spec 6.6.1.
6068 (check_pkg_class_access): Handle the empty package correctly.
6069 (in_same_package): New function. Determine if two classes are in the
6070 same package.
6071
6072 2001-02-18 Bryce McKinlay <bryce@albatross.co.nz>
6073
6074 * typeck.c (build_java_array_type): Don't try to poke a public `clone'
6075 method into array types.
6076 * parse.y (patch_method_invocation): Bypass access check on clone call
6077 to array instance.
6078
6079 2001-02-15 Alexandre Petit-Bianco <apbianco@redhat.com>
6080
6081 * expr.c (build_instanceof): Check for arrays when trying fold to
6082 false.
6083
6084 2001-02-15 Jim Meyering <meyering@lucent.com>
6085
6086 * Make-lang.in (java.install-common): Depend on `installdirs'.
6087 (java.install-info): Likewise.
6088
6089 2001-02-15 Bryce McKinlay <bryce@albatross.co.nz>
6090
6091 * Make-lang.in (jvspec.o): Modify rule to match that of cp/g++spec.o.
6092
6093 2001-02-14 Tom Tromey <tromey@redhat.com>
6094 Alexandre Petit-Bianco <apbianco@cygnus.com>
6095
6096 Fix for PR java/1261.
6097 * typeck.c (build_java_array_type): Add public `clone' method to
6098 arrays.
6099 * parse.y (resolve_qualified_expression_name): Use current_class
6100 when checking for inaccessibility.
6101 (patch_method_invocation): Fixed error message when accessibility
6102 denied. Added `from_super' argument.
6103
6104 2001-02-14 Alexandre Petit-Bianco <apbianco@redhat.com>
6105
6106 * parse.y (resolve_class): Don't build a fake decl. Use the one
6107 already built.
6108 * typeck.c (build_java_array_type): Build and assign decl to array
6109 type.
6110
6111 2001-02-14 Alexandre Petit-Bianco <apbianco@redhat.com>
6112
6113 * parse.y (not_accessible_p): Changed leading comment. Added extra
6114 `where' argument. Use it to enforce protected access rules.
6115 (resolve_qualified_expression_name): Added extra argument to
6116 not_accessible_p.
6117 (patch_method_invocation): Use argument `primary' to provide
6118 not_accessible_p with an extra argument.
6119 (lookup_method_invoke): Added extra argument to not_accessible_p.
6120 (search_applicable_method_list): Likewise.
6121
6122 2001-02-13 Alexandre Petit-Bianco <apbianco@redhat.com>
6123
6124 * parse.y (resolve_qualified_expression_name): Try to resolve as
6125 an inner class access only if `decl' is a TYPE_DECL.
6126
6127 2001-02-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
6128
6129 * decl.c (classdollar_identifier_node): Initialize.
6130 * java-tree.h (enum java_tree_index): New entry
6131 `JTI_CLASSDOLLAR_IDENTIFIER_NODE.'
6132 (classdollar_identifier_node): New macro.
6133 (ID_CLASSDOLLAR_P): Likewise.
6134 * parse.y (build_dot_class_method): Use `classdollar_identifier_node.'
6135 (build_dot_class_method_invocation): Likewise.
6136 (find_applicable_accessible_methods_list): `class$' can't be
6137 inherited.
6138
6139 2001-02-09 Raja R Harinath <harinath@cs.umn.edu>
6140
6141 * Make-lang.in (java/mangle_name.o): Add 'make' prereqs.
6142
6143 2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
6144
6145 * Manke-lang.in (JVGENMAIN_OBJS): Added `errors.o'
6146 * jvgenmain.c (error): Reversed 2001-02-09 patch. `error' is now
6147 gone.
6148
6149 2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
6150
6151 * mangle_name (append_unicode_mangled_name): Emit `_' or `U'
6152 outside of the `__U' sequence too.
6153 (unicode_mangling_length): Count `_' or `U' outside of the `__U'
6154 sequence too.
6155
6156 2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
6157
6158 * jvgenmain.c (error): Reversed 2001-02-01 deletion.
6159
6160 2001-02-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
6161
6162 * Make-lang.in (JAVA_OBJS): Added java/mangle_name.o
6163 (JVGENMAIN_OBJS): Likewise.
6164 * java-tree.h (append_gpp_mangled_name): New prototype.
6165 * jcf-parse.c (ggc_mark_jcf): Argument now `void *.'
6166 Removed cast calling `gcc_add_root.'
6167 * jvgenmain.c (mangle_obstack): New global, initialized.
6168 (main): Use it.
6169 (do_mangle_class): Constify local `ptr.'
6170 Removed macro `MANGLE_NAME.' Removed cast in `for.' Call
6171 append_gpp_mangle_name and update `count' if necessary.
6172 Use `mangle_obstack.'
6173 * mangle.c (append_unicode_mangled_name): Removed.
6174 (append_gpp_mangled_name): Likewise.
6175 (unicode_mangling_length): Likewise.
6176 (mangle_member_name): Return type set to `void.'
6177 (mangle_field_decl): Don't append `U' in escaped names.
6178 (mangle_method_decl): Likewise.
6179 (mangle_member_name): Just use `append_gpp_mangled_name.'
6180 * mangle_name.c: New file.
6181
6182 2001-02-07 Per Bothner <per@bothner.com>
6183
6184 * check-init.c (check_init): Fix TRY_FINALLY_EXPR logic.
6185
6186 * check-init.c (check_init): Don't call done_alternative after
6187 processing loop code, as a LOOP_EXPR never terminates normally.
6188
6189 2001-02-08 Joseph S. Myers <jsm28@cam.ac.uk>
6190
6191 * gcj.texi: Change sources.redhat.com reference to gcc.gnu.org.
6192
6193 2001-02-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
6194
6195 * jcf-parse.c (HANDLE_SYNTHETIC_ATTRIBUTE): Don't handle field
6196 DECLs.
6197
6198 2001-02-06 Tom Tromey <tromey@redhat.com>
6199
6200 * lex.c (java_new_lexer): Longer error message.
6201
6202 2001-02-05 Jeff Sturm <jeff.sturm@commerceone.com>
6203 Alexandre Petit-Bianco <apbianco@cygnus.com>
6204
6205 * typeck.c (build_prim_array_type): Added leading comment.
6206 (build_java_array_type): Moved locals out of
6207 block. Always create the `data' field, fixed alignment to match
6208 C++.
6209
6210 2001-02-04 Tom Tromey <tromey@redhat.com>
6211
6212 * expr.c (java_lang_expand_expr): Don't bother recomputing
6213 `length'. Use rest_of_decl_compilation, not make_decl_rtl.
6214 Fixes PR java/1866.
6215
6216 2001-02-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
6217
6218 * parse.y (process_imports): Save the original name of the import
6219 for better error report.
6220
6221 2001-02-04 Bryce McKinlay <bryce@albatross.co.nz>
6222
6223 * Make-lang.in (jvspec.o): Add DRIVER_DEFINES to the list
6224 of macros used when compiling jvspec.c.
6225 * jvspec.c (lang_specific_driver): Link with the shared
6226 libgcc by default.
6227
6228 2001-02-04 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6229
6230 * check-init.c (check_init): Call internal_error instead of fatal.
6231 * expr.c (java_lang_expand_expr): Likewise.
6232 * jcf-parse.c (get_constant): Likewise.
6233 * mangle.c (java_mangle_decl): Likewise.
6234 * parse.y (make_nested_class_name, java_complete_lhs): Likewise.
6235 (operator_string): Likewise.
6236 * check-init.c (check_init): Call abort instead of fatal.
6237 * class.c (build_class_ref): Likewise.
6238 * constants.c (write_constant_pool): Likewise.
6239 * decl.c (start_java_method): Likewise.
6240 * expr.c (push_type, java_stack_pop, java_stack_swap): Likewise.
6241 (java_stack_dup, encode_newarray_type): Likewise.
6242 (build_java_array_length_access): Likewise.
6243 (build_java_check_indexed_type, expand_java_pushc): Likewise.
6244 (build_java_soft_divmod, build_invokeinterface): Likewise.
6245 * java-tree.h (INNER_CLASS_P): Likewise.
6246 * jcf-parse.c (parse_signature, get_name_constant): Likewise.
6247 (give_name_to_class, get_class_constant): Likewise.
6248 * jcf-write.c (CHECK_PUT, CHECK_OP, get_access_flags): Likewise.
6249 (find_constant_index, generate_bytecode_conditional): Likewise.
6250 (generate_bytecode_insns, perform_relocations): Likewise.
6251 * lex.c (java_unget_unicode, java_lex): Likewise.
6252 * mangle.c (mangle_type, mangle_record_type): Likewise.
6253 (mangle_pointer_type, mangle_array_type, init_mangling): Likewise.
6254 (finish_mangling): Likewise.
6255 * parse.h (MARK_FINAL_PARMS): Likewise.
6256 * parse.y (pop_current_osb, unreachable_stmt_error): Likewise.
6257 (obtain_incomplete_type, java_complete_class): Likewise.
6258 (java_check_regular_methods, java_complete_expand_method): Likewise.
6259 (cut_identifier_in_qualified, check_deprecation): Likewise.
6260 (patch_invoke, find_applicable_accessible_methods_list): Likewise.
6261 (java_complete_lhs, lookup_name_in_blocks): Likewise.
6262 (check_final_variable_indirect_assignment, build_unaryop): Likewise.
6263 * typeck.c (set_local_type, parse_signature_type): Likewise.
6264 (parse_signature_string, build_java_signature): Likewise;
6265 (set_java_signature): Likewise.
6266 * verify.c (type_stack_dup, CHECK_PC_IN_RANGE): Likewise.
6267 * class.c (add_method): Call fatal_error instead of fatal.
6268 (build_static_field_ref): Likewise.
6269 * expr.c (build_known_method_ref, expand_invoke): Likewise.
6270 * jcf-parse.c (get_constant, jcf_parse): Likewise.
6271 * lex.c (java_new_new_lexer): Likewise.
6272 * jv-scan.c (main): Likewise.
6273 (fatal_error): Renamed from fatal.
6274 * jcf-parse.c (yyparse): Call fatal_io_error instead of
6275 pfatal_with_name.
6276 * jcf-parse.c (jcf_parse_source): Call fatal_io_error, not fatal.
6277 (yyparse): Likewise.
6278 * jcf-write.c (make_class_file_name, write_classfile): Likewise.
6279 * lex.c (java_get_line_col): Likewise.
6280 * jcf-parse.c (load_class): Make errors non-fatal.
6281 * lex.c (byteswap_init, need_byteswap): Only #ifdef HAVE_ICONV.
6282
6283 2001-02-01 Bryce McKinlay <bryce@albatross.co.nz>
6284
6285 * jvgenmain.c (class_mangling_suffix): Remove unused string.
6286 (error): Remove unused function.
6287 (main): Don't use "__attribute__ alias" on generated class symbol.
6288
6289 2001-01-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
6290
6291 * jcf-parse.c (init_jcf_parse): Added cast to ggc_add_root's last
6292 argument.
6293 * parse.y (finish_method_declaration): Code accounting for WFLed
6294 method DECL_NAMEs deleted.
6295 (check_abstract_method_definitions): Likewise.
6296 (resolve_type_during_patch): Layout resolved type.
6297 * typeck.c (lookup_do): Removed unused local.
6298
6299 2001-01-30 Bryce McKinlay <bryce@albatross.co.nz>
6300
6301 * java-tree.h: Remove JTI_INTEGER_NEGATIVE_ONE_NODE.
6302 * decl.c (init_decl_processing): Use integer_minus_one_node, not
6303 integer_negative_one_node.
6304 * expr.c (build_java_binop): Likewise.
6305
6306 2001-01-24 Jeff Sturm <jeff.sturm@commerceone.com>
6307
6308 * zextract.c (read_zip_archive): Read file_offset before writing
6309 zipd and consequently clobbering the header contents.
6310
6311 2001-01-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6312
6313 * Make-lang.in: Remove all dependencies on defaults.h.
6314 * decl.c: Don't include defaults.h.
6315 * expr.c: Likewise.
6316 * parse.y: Likewise.
6317
6318 2001-01-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
6319
6320 * ChangeLog (2001-01-21): Fixed typo.
6321 * class.c (layout_class_method): Code accounting for WFLed
6322 method DECL_NAMEs deleted.
6323 * constant.c (find_methodref_index): Likewise.
6324 * decl.c (lang_mark_tree): Mark `wfl' field in struct lang_decl.
6325 * java-tree.h (DECL_FUNCTION_WFL): New macro.
6326 (struct lang_decl): New field `wfl'.
6327 (java_get_real_method_name): Prototype deleted.
6328 * mangle.c (mangle_method_decl): Code accounting for WFLed
6329 method DECL_NAMEs deleted.
6330 * parse.h (GET_METHOD_NAME): Macro deleted.
6331 * parse.y (reset_method_name): Deleted.
6332 (method_header): Set DECL_FUNCTION_WFL.
6333 (check_abstract_method_header): Code accounting for WFLed method
6334 DECL_NAMEs deleted.
6335 (java_get_real_method_name): Deleted.
6336 (check_method_redefinition): Code accounting for WFLed method
6337 DECL_NAMEs deleted. Use DECL_FUNCTION_WFL.
6338 (java_check_regular_methods): Likewise.
6339 (java_check_abstract_methods): Likewise.
6340 (java_expand_classes): Don't call `reset_method_name.'
6341 (search_applicable_method_list): Use DECL_NAMEs instead of
6342 GET_METHOD_NAME.
6343 * typeck.c (lookup_do): Code accounting for WFLed method
6344 DECL_NAMEs deleted.
6345
6346 2001-01-25 Richard Earnshaw <rearnsha@arm.com>
6347
6348 * lex.c (java_read_char): Check for EOF from getc first.
6349
6350 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6351
6352 * class.c (layout_class): Don't lay the superclass out if it's
6353 already being laid out.
6354 * jcf-parse.c (handle_innerclass_attribute): New function.
6355 (HANDLE_INNERCLASSES_ATTRIBUTE): Invoke
6356 handle_innerclasses_attribute.
6357 (jcf_parse): Don't load an innerclasses if it's already being
6358 laid out.
6359 * jcf-write.c (append_innerclass_attribute_entry): Static
6360 `anonymous_name' and its initialization deleted. `ocii' and `ini'
6361 to be zero for anonymous classes.
6362
6363 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6364
6365 * class.c (set_constant_value): Set DECL_FIELD_FINAL_IUD if
6366 necessary.
6367 * jcf-parse.c (set_source_filename): Use
6368 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC if necessary.
6369
6370 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6371
6372 * expr.c (build_jni_stub): Set DECL_CONTEXT on `meth_var' so it
6373 gets a unique asm name.
6374
6375 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6376
6377 * jcf-parse.c (HANDLE_END_METHODS): Nullify current_method.
6378 (HANDLE_START_FIELD): Invoke MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC
6379 if necessary.
6380 (HANDLE_SYNTHETIC_ATTRIBUTE): New macro.
6381 * jcf-reader.c (get_attribute): Handle `Synthetic' attribute.
6382 * parse.y (lookup_package_type_and_set_next): Deleted.
6383 (resolve_package): Removed unnecessary code.
6384 (find_applicable_accessible_methods_list): `finit$' can't be
6385 inherited.
6386 * verify.c (pop_argument_types): Added missing prototype.
6387
6388 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
6389
6390 * config-lang.in: Disable java by default.
6391
6392 2001-01-23 Tom Tromey <tromey@redhat.com>
6393
6394 * gcj.texi (Copying): New node.
6395 Added copyright information.
6396
6397 2001-01-21 Per Bothner <per@bothner.com>
6398
6399 Various fixes to allow compiling a compressed .jar/.zip archive.
6400 * zipfile.h (struct ZipFileCache): Replace by struct ZipFile.
6401 (struct ZipFile): Add fields name and next (from ZipFileCache).
6402 (struct ZipDirectory): New field zipf points to owning ZipFile.
6403 * jcf.h (struct ZipDirectory): Add forward declaration.
6404 (struct JCF): Declare zipd field to have type struct ZipDirectory.
6405 Remove seen_in_zip and zip_offset fields.
6406 (JCF_SEEN_IN_ZIP): New macro.
6407 * zextract.c (read_zip_archive): Set ZipDirectory's zipf field.
6408 * jcf-io.c: Change all ZipFileCache to ZipFile.
6409 (read_zip_member): New function.
6410 (open_in_zip): Call read_zip_member.
6411 * jcf-parse.c (find_in_current_zip): Remove function.
6412 (read_class): Merge in find_in_current_zip functionality.
6413 Call read_zip_member if needed.
6414 (parse_zip_file_entries): Use read_zip_member.
6415 (process_zip_dir): Update for removed and added JCF fields.
6416 (jcf_figure_file_type): Re-use, don't copy initial ZipFile struct.
6417
6418 2001-01-21 Per Bothner <per@bothner.com>
6419
6420 Minor optimization of static ggc roots.
6421 * jcf-parse.c (parse_roots): New static field.
6422 (current_field, current_method, current_file_list): Replace by macros
6423 naming fields of parse_roots.
6424 (init_jcf_parse): Combine 3 ggc_add_tree_root calls to 1.
6425 * class.c (class_roots): New static field.
6426 (registered_class, fields_ident, info_ident, class_list):
6427 New macros naming fields of parse_roots.
6428 (build_static_field_ref): Don't register roots here.
6429 (layout_class): Static field list replaced by macro class_list.
6430 (init_class_processing): Call ggc_add_tree_root for 4 roots.
6431 Initialize fields_ident and info_ident here.
6432
6433 2001-01-21 Per Bothner <per@bothner.com>
6434
6435 * jcf-parse.c (ggc_mark_jcf): New function.
6436 (init_jcf_parse): Register current_jcf as ggc root.
6437
6438 2001-01-21 Per Bothner <per@bothner.com>
6439
6440 * lang.c (put_decl_node): Print method's name.
6441
6442 2001-01-21 Per Bothner <per@bothner.com>
6443
6444 * verify.c (VERIFICATION_ERROR_WITH_INDEX): New macro.
6445 (verify_jvm_instructions): Use it, for better error messages on loads.
6446
6447 2001-01-21 Per Bothner <per@bothner.com>
6448
6449 * verify.c (merge_type_state): Still may have to merge even if
6450 LABEL_VERIFIED (label).
6451
6452 2001-01-21 Per Bothner <per@bothner.com>
6453
6454 * parse.y (method_header): Don't set the DECL_NAME of a FUNCTION_DECL
6455 to a EXPR_WITH_FILE_LOCATION - that is just too fragile and wrong.
6456
6457 2001-01-19 Per Bothner <per@bothner.com>
6458
6459 * expr.c (pop_type_0): Only return object_ptr_type_node on mismatch
6460 if expeting an interface type. Refines Tom's change of 2000-09-12.
6461
6462 2001-01-18 Per Bothner <per@bothner.com>
6463
6464 * gcj.texi (Input Options): Mention .java files.
6465
6466 2001-01-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
6467
6468 * lang-options.h (-Wunsupported-jdk11): Removed.
6469 * lang.c (flag_not_overriding): Deleted.
6470 (flag_static_local_jdk1_1): Likewise.
6471 (lang_W_options): Removed "unsupported-jdk11" entry.
6472 * parse.y (java_check_methods): Removed dead code.
6473
6474 2001-01-17 Tom Tromey <tromey@redhat.com>
6475
6476 Changes suggested by Per Bothner:
6477 * gcj.texi (Input Options): Don't mention input files.
6478 (Code Generation): Updated --main information.
6479 (Invoking jcf-dump): Mention that --javap is incomplete.
6480 From Alexandre Petit-Bianco:
6481 (Warnings): Don't mention -Wunsupported-jdk11.
6482 My stuff:
6483 (Compatibility): Mention JDK 1.2-ness of libraries.
6484 (Resources): Mention resources used when writing gcj.
6485
6486 2001-01-17 Tom Tromey <tromey@redhat.com>
6487
6488 * gcj.texi: New file.
6489 * Make-lang.in ($(srcdir)/java/gcj.info): New target.
6490 (java.info): Depend on gcj.info.
6491 (java/gcj.dvi): New target.
6492 (java.dvi): Depend on gcj.dvi.
6493 (java.install-info): Wrote.
6494
6495 2001-01-16 Jeff Sturm <jeff.sturm@appnet.com>
6496
6497 * expr.c (java_lang_expand_expr): Use TREE_SYMBOL_REFERENCED after
6498 having called make_decl_rtl.
6499
6500 2001-01-14 Per Bothner <per@bothner.com>
6501
6502 Various patches to emit better messages on verification errors.
6503 * expr.c (push_type_0): Return error indication on stack overflow,
6504 instead of callinfg fatal.
6505 (push_type): Now just call push_type_0 (nd fatal on overflow).
6506 (pop_type_0): Return detailed error message (in a char** argument).
6507 (pop_type): If pop_type_0 fails, print error message.
6508 (pop_argument_types): Moved to verify.c.
6509 * verify.c (pop_argument_types): Moved from expr.c.
6510 Return a (possible) error message, rather than void.
6511 (POP_TYPE, POP_TYPE_CONV, PUSH_TYPE, PUSH_PENDING): New macros.
6512 (verify_jvm_instruction): Use new macros, improving error messages.
6513 For case OPCODE_astore use object_ptr_type_node.
6514 * java-tree.h (TYPE_UNDERFLOW, TYPE_UNEXPECTED): New macros.
6515 (pop_type_0, push_type_0, pop_argument_types): Update accordingly.
6516
6517 * parse.y (java_complete_lhs case EXPR_WITH_FILE_LOCATION): If body is
6518 constant, return body without wrapper. (Improves constant folding.)
6519 * lex.c (build_wfl_node): Clear TREE_TYPE from returned node.
6520
6521 2001-01-13 Per Bothner <per@bothner.com>
6522
6523 * expr.c (expand_java_field_op): Assigning to a final field outside
6524 an initializer does not violate JVM spec, so should be warning, not
6525 error. (Sun's verifier does not complain - though MicroSoft's does.)
6526
6527 2001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
6528
6529 * gjavah.c (version), jcf-dump.c (version): Update copyright year
6530 to 2001.
6531
6532 2001-01-11 Bryce McKinlay <bryce@albatross.co.nz>
6533
6534 * parse.y (resolve_expression_name): Permit instance variables from
6535 enclosing context in super constructor call.
6536 (resolve_qualified_expression_name): Permit enclosing class's qualified
6537 "this" in super constructor call.
6538
6539 2001-01-10 Mark Mitchell <mark@codesourcery.com>
6540
6541 * class.c (build_utf8_ref): Remove last argument in call to
6542 make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
6543 (build_class_ref): Likewise.
6544 (build_static_field_ref): Likewise.
6545 (get_dispatch_table): Likewise.
6546 (layout_class_method): Likewise.
6547 (emit_register_classes): Likewise.
6548 * constants.c (build_constant_data_ref): Likewise.
6549 * decl.c (builtin_function): Likewise.
6550 (create_primitive_vtable): Likewise.
6551 * expr.c (build_known_method_def): Likewise.
6552 (build_jni_stub): Likewise.
6553 (java_lang_expand_expr): Likewise.
6554
6555 2001-01-10 Tom Tromey <tromey@redhat.com>
6556
6557 * jvspec.c (jvgenmain_spec): Omit -fencoding from cc1 invocation.
6558
6559 2001-01-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
6560
6561 * java-tree.h (lang_printable_name_wls): New prototype.
6562 * lang.c (put_decl_name): Removed dead code. Use DECL_CONTEXT
6563 rather than `current_class' to print type name. Don't prepend type
6564 names when printing constructor names.
6565 (lang_printable_name_wls): New function.
6566 * jcf-parse.c (jcf_parse_source): Pass NULL `file' argument to
6567 `build_expr_wfl', alway set EXPR_WFL_FILENAME_NODE.
6568 * parse.y (patch_method_invocation): Message tuned for constructors.
6569 (not_accessible_p): Grant `private' access from within
6570 enclosing contexts.
6571
6572 2001-01-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
6573
6574 All files with updated copyright when applicable.
6575 * Make-lang.in (JVGENMAIN_OBS): Removed java/mangle.o.
6576 * class.c (mangle_class_field): Function removed.
6577 (append_gpp_mangled_type, mangle_static_field, mangle_field): Likewise.
6578 (utf8_cmp, cxx_keyword_p): Moved to lex.c.
6579 (build_class_ref): Call `java_mangle_class_field' instead of
6580 `mangle_class_field.'
6581 (build_dtable_decl): Rewritten to call `java_mangle_vtable.'
6582 (layout_class): Call `java_mangle_decl' instead of
6583 `mangle_static_field.'
6584 (cxx_keywords): Initialized static array moved to `lex.c.'
6585 (layout_class_method): Changed leading comment. Simplified to
6586 call `java_mangle_decl.' Local `ptr' moved in for loop body.
6587 * decl.c (lang_mark_tree): Mark field `package_list.'
6588 * java-tree.h (TYPE_PACKAGE_LIST): New macro.
6589 (struct lang_type): New field `package_list.'
6590 (unicode_mangling_length): Prototype removed.
6591 (append_gpp_mangled_name, append_gpp_mangled_classtype,
6592 emit_unicode_mangled_name): Likewise.
6593 (cxx_keyword_p): New prototype.
6594 (java_mangle_decl, java_mangle_class_field,
6595 java_mangle_class_field_from_string, java_mangle_vtable): Likewise.
6596 * jcf-parse.c (jcf_parse_source): Constify `file' argument to
6597 `build_expr_wfl.'
6598 * jvgenmain.c (main_method_prefix): Global variable removed.
6599 (main_method_suffix): Likewise.
6600 (do_mangle_classname): New function.
6601 (main): Call it. Format changed to accommodate new mangling scheme.
6602 * lex.c: (utf8_cmp): Conditionally prototyped.
6603 (cxx_keywords): Moved from class.c, conditionally defined.
6604 (utf8_cmp, cxx_keyword_p): Likewise.
6605 * mangle.c (obstack.h, ggc.h): Included.
6606 (mangle_field_decl): New function.
6607 (mangle_method_decl, mangle_type, mangle_pointer_type,
6608 mangle_array_type, mangle_record_type,
6609 find_compression_pointer_match, find_compression_array_match,
6610 find_compression_record_match,
6611 find_compression_array_template_match, set_type_package_list,
6612 entry_match_pointer_p, emit_compression_string, init_mangling,
6613 finish_mangling, compression_table_add, mangle_member_name): Likewise.
6614 (mangle_obstack): New global.
6615 (MANGLE_RAW_STRING): New macro.
6616 (unicode_mangling_length): Turned static.
6617 (append_unicode_mangled_name): Renamed from
6618 `emit_unicode_mangled_name.' Turned static. `mangle_obstack'
6619 replaces `obstack', removed from the parameter list.
6620 (append_gpp_mangled_name): Turned static. `mangle_obstack'
6621 replaces parameter `obstack', removed from the parameter list. Call
6622 `append_unicode_mangled_name' instead of `emit_unicode_mangled_name.
6623 (append_gpp_mangled_classtype): Removed.
6624 (compression_table, compression_next): New static variables.
6625 * parse.y (temporary_obstack): Extern declaration removed.
6626
6627 2001-01-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
6628
6629 * parse.y (patch_binop): Compute missing type in error situations.
6630
6631 2001-01-05 Bryce McKinlay <bryce@albatross.co.nz>
6632
6633 * class.c (make_class_data): Push initial value for "arrayclass".
6634 * decl.c (init_decl_processing): Add new class field "arrayclass".
6635
6636 2001-01-05 Bryce McKinlay <bryce@albatross.co.nz>
6637
6638 From patha@softlab.ericsson.se:
6639 * parse.y (switch_label): Use build, not build1, to construct
6640 DEFAULT_EXPR.
6641
6642 2001-01-04 Neil Booth <neil@daikokuya.demon.co.uk>
6643
6644 * lang.c (lang_decode_option): Change -MA to -MP.
6645 * jcf-depend.c (jcf_dependency_add_target, jcf_dependency_set_target):
6646 Update to new prototype; do quote targets.
6647 (jcf_dependency_write): Update.
6648
6649 2000-12-22 Bryce McKinlay <bryce@albatross.co.nz>
6650
6651 Shorten primitive array allocation path:
6652 * decl.c (init_decl_processing): Use _Jv_NewPrimArray not _Jv_NewArray
6653 to create new primitive arrays.
6654 * expr.c (build_newarray): If generating native code, call
6655 soft_newarray_node with a reference to the primitive TYPE identifier
6656 instead of type_value.
6657
6658 2000-12-17 Bryce McKinlay <bryce@albatross.co.nz>
6659
6660 Fix for PRs gcj/312 and gcj/253:
6661 * parse.y (valid_ref_assignconv_cast_p): Load classes for source and
6662 dest if they arn't already.
6663 * class.c (layout_class): Call maybe_layout_super_class on
6664 superinterfaces also, but only if compiling from bytecode.
6665
6666 Fix for PR gcj/373:
6667 * parse.y (create_class): Set ACC_STATIC if class is declared in an
6668 interface.
6669
6670 2000-12-15 Tom Tromey <tromey@redhat.com>
6671
6672 * jcf-parse.c (jcf_parse_source): Set wfl_operator if not already
6673 set.
6674
6675 2000-12-14 Andrew Haley <aph@redhat.com>
6676
6677 * boehm.c (mark_reference_fields): Change test to correctly detect
6678 bitmap overflow.
6679
6680 2000-12-15 Andreas Jaeger <aj@suse.de>
6681
6682 * config-lang.in (lang_dirs): Added.
6683
6684 2000-12-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
6685
6686 * parse.y (end_artificial_method_body): Fixed undefined behavior.
6687 Credits go to rth for finding it.
6688
6689 2000-12-13 Mike Stump <mrs@wrs.com>
6690
6691 * parse.y (check_static_final_variable_assignment_flag): Fix spelling.
6692
6693 2000-11-07 Tom Tromey <tromey@cygnus.com>
6694
6695 * Make-lang.in (JAVA_LEX_C): Added chartables.h.
6696 * lex.c (java_ignorable_control_p): Removed.
6697 (java_letter_or_digit_p): Removed.
6698 (java_start_char_p): New function.
6699 (java_read_char): Return `int', not `unicode_t'. Changed
6700 callers.
6701 (java_read_unicode): Likewise.
6702 (java_read_unicode_collapsing_terminators): Likewise.
6703 (java_get_unicode): Likewise.
6704 (java_new_lexer): Initialize hit_eof.
6705 (java_parse_end_comment): Take `int' argument.
6706 (java_parse_doc_section): Likewise.
6707 (java_parse_escape_sequence): Don't allow backlash-newline.
6708 Return `int'.
6709 * lex.h (JAVA_DIGIT_P): Removed.
6710 (_JAVA_LETTER_OR_DIGIT_P): Removed.
6711 (_JAVA_IDENTIFIER_IGNORABLE): Removed.
6712 (JAVA_START_CHAR_P): Renamed from JAVA_ID_CHAR_P.
6713 (JAVA_PART_CHAR_P): New macro.
6714 (UEOF): Now -1.
6715 (JAVA_CHAR_ERROR): Now -2.
6716 (java_lexer): New field `hit_eof'.
6717 * chartables.h: New file.
6718 * gen-table.pl: new file.
6719
6720 2000-11-20 Tom Tromey <tromey@cygnus.com>
6721 Alexandre Petit-Bianco <apbianco@cygnus.com>
6722
6723 * parse.y (java_complete_lhs): Only allow compound assignment of
6724 reference type if type is String.
6725
6726 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
6727
6728 * Make-lang.in (java/jcf-path.o:): libgcj.jar replaces libgcj.zip.
6729 jcf-path.c: Likewise.
6730
6731 2000-12-09 Anthony Green <green@redhat.com>
6732
6733 * zipfile.h (ZipDirectory): Declare size, uncompressed_size,
6734 filestart and filename_length as int values.
6735
6736 2000-12-07 Mo DeJong <mdejong@redhat.com>
6737
6738 * jcf-io.c (find_class): Correct the logic that tests to see if a
6739 .java file is newer than its .class file. The compiler was
6740 incorrectly printing a warning when file mod times were equal.
6741
6742 2000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
6743
6744 * jvgenmain.c: Use ISPRINT not isascii.
6745
6746 2000-12-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
6747
6748 * parse.y (end_artificial_method_body): Fixed typo.
6749
6750 2000-12-04 Alexandre Petit-Bianco <apbianco@cygnus.com>
6751
6752 * parse.y (patch_method_invocation): Pick the correct enclosing
6753 context when creating inner class instances.
6754 Fixes gcj/332.
6755
6756 2000-11-26 Joseph S. Myers <jsm28@cam.ac.uk>
6757
6758 * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version):
6759 Update copyright year to 2000.
6760
6761 2000-11-23 Anthony Green <green@redhat.com>
6762
6763 * jcf-parse.c (init_jcf_parse): Register current_file_list root.
6764 Move current_file_list out of yyparse and make it static.
6765
6766 * expr.c: Declare quick_stack and tree_list_free_list as static
6767 (init_expr_processing): Register quick_stack and
6768 tree_list_free_list roots.
6769
6770 2000-11-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
6771
6772 * parse.y (build_outer_field_access): New local `decl_ctx', use
6773 it. Check for field's context and current class immediate outer
6774 context inheritance.
6775 (outer_field_access_p): Consider fields inherited from the last
6776 enclosing context.
6777 (build_access_to_thisn): Stop at the last enclosing context if
6778 necessary.
6779 Fixes gcj/367.
6780
6781 2000-11-23 J"orn Rennecke <amylaar@redhat.com>
6782
6783 * Make-lang.in (jvspec.o): Depend on $(CONFIG_H).
6784
6785 2000-11-22 Bryce McKinlay <bryce@albatross.co.nz>
6786
6787 * jcf-parse.c (get_constant): Call UT8_CHAR_LENGTH on `utf8', not the
6788 scratch buffer.
6789
6790 2000-11-20 Tom Tromey <tromey@cygnus.com>
6791
6792 * jv-scan.c (help): Document --complexity.
6793 (options): Added --complexity.
6794 (flag_complexity): New global.
6795 (main): Call `report'.
6796 * parse-scan.y (complexity): New global.
6797 (if_then_statement, if_then_else_statement,
6798 if_then_else_statement_nsi, switch_block_statement_group,
6799 while_expression, do_statement, for_begin, continue_statement,
6800 throw_statement, catch_clause, finally, method_invocation,
6801 conditional_and_expression, conditional_or_expression,
6802 conditional_expression): Update complexity.
6803 (reset_report): Reset complexity.
6804 (report): New function.
6805
6806 2000-11-20 Tom Tromey <tromey@cygnus.com>
6807
6808 * lex.c (yylex): Added STRICT_TK case.
6809 * parse.y (STRICT_TK): Added.
6810 * parse-scan.y (STRICT_TK): Added.
6811 * Make-lang.in ($(srcdir)/java/keyword.h): Added missing `\' and
6812 `;'. Use 4, not 3, with -k option. Correctly rename resulting
6813 file.
6814 * keyword.h: Rebuilt.
6815 * keyword.gperf (strictfp): Added.
6816
6817 2000-11-20 Tom Tromey <tromey@cygnus.com>
6818
6819 * lex.c (yylex): Recognize floating point constants with leading
6820 0.
6821
6822 2000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6823
6824 * java-tree.h (cyclic_inheritance_report): Constify.
6825 * parse.y (cyclic_inheritance_report): Likewise.
6826
6827 2000-11-17 Zack Weinberg <zack@wolery.stanford.edu>
6828
6829 * parse.y (goal): Remove call to ggc_add_string_root.
6830
6831 2000-11-16 Zack Weinberg <zack@wolery.stanford.edu>
6832
6833 * jcf-parse.c (get_constant), parse.y (do_merge_string_cste):
6834 Create string in scratch buffer, then pass to build_string.
6835
6836 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
6837
6838 * parse.y (issue_warning_error_from_context): Add
6839 ATTRIBUTE_PRINTF.
6840
6841 2000-11-11 Anthony Green <green@redhat.com>
6842
6843 * jcf-parse.c (process_zip_dir): Add finput parameter.
6844 (jcf_figure_file_type): Call process_zip_dir with appropriate
6845 argument.
6846
6847 2000-11-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6848
6849 * decl.c (copy_lang_decl): Use memcpy, not bcopy.
6850 * jcf-parse.c (jcf_figure_file_type): Likewise.
6851
6852 2000-11-09 Joseph S. Myers <jsm28@cam.ac.uk>
6853
6854 * parse.y (create_new_parser_context): Use memset () instead of
6855 bzero ().
6856
6857 2000-11-08 Tom Tromey <tromey@cygnus.com>
6858
6859 * gjavah.c (process_file): Only include gcj/cni.h when generating
6860 CNI stubs.
6861
6862 2000-11-07 Joseph S. Myers <jsm28@cam.ac.uk>
6863
6864 * expr.c (note_instructions), jcf-io.c (find_class), jcf-parse.c
6865 (init_outgoing_cpool), lex.c (java_init_lex): Use memset ()
6866 instead of bzero ().
6867
6868 2000-11-05 Tom Tromey <tromey@cygnus.com>
6869
6870 * lex.h (JAVA_FLOAT_RANGE_ERROR): Typo fix.
6871 * lex.c (IS_ZERO): New define.
6872 (java_perform_atof): Error on floating point underflow.
6873
6874 2000-11-04 Tom Tromey <tromey@cygnus.com>
6875
6876 * lex.c (java_parse_escape_sequence): Only read two octal
6877 characters if the first one is greater than 3. Don't allow
6878 "octal" numbers to include the digits 8 or 9.
6879
6880 2000-11-05 Joseph S. Myers <jsm28@cam.ac.uk>
6881
6882 * Make-lang.in (java.distdir): Remove.
6883
6884 2000-11-03 Tom Tromey <tromey@cygnus.com>
6885
6886 * Make-lang.in (java.dvi): New target.
6887 Partial fix for PR other/567.
6888
6889 * lang-options.h: Mention -Wout-of-date.
6890 * jcf-dump.c (flag_newer): New global.
6891 * gjavah.c (flag_newer): New global.
6892 * jcf-io.c (find_class): Only warn when flag_newer set.
6893 * lang.c (flag_newer): New global.
6894 (struct string_option): New declaration.
6895 (lang_W_options): New global.
6896 (process_option_with_no): New function.
6897 (lang_decode_option): Use it.
6898
6899 * class.c (cxx_keyword_p): Accept keywords with trailing `$'s.
6900 * gjavah.c (cxx_keyword_subst): Handle any number of trailing
6901 `$'.
6902
6903 * lex.h (_JAVA_IDENTIFIER_IGNORABLE): New macro.
6904 (JAVA_ID_CHAR_P): Also try java_ignorable_control_p.
6905 * lex.c (java_read_unicode): Removed `term_context' argument.
6906 Recognize any number of `u' in `\u'.
6907 (java_read_unicode_collapsing_terminators): New function.
6908 (java_get_unicode): Use it.
6909 (java_lineterminator): Removed.
6910 (yylex): Produce error if character literal is newline or single
6911 quote. Return if eof found in middle of `//' comment. EOF in
6912 `//' comment is only an error if pedantic.
6913 (java_ignorable_control_p): New function.
6914 (java_parse_end_comment): Return if eof found in middle of
6915 comment.
6916 Include flags.h.
6917 * jv-scan.c (pedantic): New global.
6918
6919 2000-10-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
6920
6921 * parse.y (outer_field_access_p): Inherited fields aren't
6922 consider outer fields.
6923 (maybe_build_thisn_access_method): Use
6924 PURE_INNER_CLASS_TYPE_P instead of INNER_CLASS_TYPE_P.
6925 (resolve_expression_name): Trigger an error if a static field
6926 is being accessed as an outer field.
6927
6928 2000-10-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
6929
6930 * Make-lang.in (LIBGCJ_ZIP_FILE): Define with `$(prefix)'.
6931 Fixes gcj/365.
6932
6933 2000-10-27 Zack Weinberg <zack@wolery.stanford.edu>
6934
6935 * Make-lang.in: Move all build rules here from Makefile.in,
6936 adapt to new context. Wrap all rules that change the current
6937 directory in parentheses. Expunge all references to $(P).
6938 When one command depends on another and they're run all at
6939 once, use && to separate them, not ;. Add OUTPUT_OPTION to
6940 all object-file generation rules. Delete obsolete variables.
6941
6942 * Makefile.in: Delete.
6943 * config-lang.in: Delete outputs= line.
6944
6945 2000-10-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
6946
6947 * parse.y (patch_method_invocation): NULLify this_arg when already
6948 inserted.
6949 (maybe_use_access_method): Handle call to methods unrelated to the
6950 current class. Fixed comment.
6951 Fixes gcj/361.
6952
6953 2000-10-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
6954
6955 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Check inherited type in
6956 scope.
6957
6958 2000-10-24 Tom Tromey <tromey@cygnus.com>
6959
6960 * lex.c (java_new_lexer): Initialize new fields. Work around
6961 broken iconv() implementations.
6962 (java_read_char): Swap bytes if required. Use fallback decoder if
6963 required.
6964 (byteswap_init, need_byteswap): New globals.
6965 (java_destroy_lexer): Only close iconv handle if it is in use.
6966 * lex.h (java_lexer): New fields read_anything, byte_swap,
6967 use_fallback.
6968 Made out_buffer unsigned.
6969
6970 2000-10-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
6971
6972 * parse.y (register_incomplete_type): Include JDEP_FIELD as a case
6973 where an enclosing context can be set on the jdep.
6974 (do_resolve_class): Fixed identation.
6975
6976 2000-10-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6977
6978 * gjavah.c (NEED_PEEK_ATTRIBUTE, NEED_SKIP_ATTRIBUTE): Define
6979
6980 * jcf-reader.c (peek_attribute, skip_attribute): Only define
6981 when requested.
6982
6983 * parse.h (yyerror): If JC1_LITE, mark with ATTRIBUTE_NORETURN.
6984
6985 * verify.c (CHECK_PC_IN_RANGE): Cast result of stmt-expr to void.
6986
6987 2000-10-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
6988
6989 * jcf-write.c (OP1): Update `last_bc'.
6990 (struct jcf_block): Fixed indentation and typo in comments. New
6991 field `last_bc'.
6992 (generate_bytecode_insns): Insert `nop' if `jsr' immediately
6993 follows `monitorenter'.
6994 * parse.y (patch_synchronized_statement): New local `tmp'. Call
6995 `patch_string'.
6996 Fixes gcj/232.
6997
6998 2000-10-16 Tom Tromey <tromey@cygnus.com>
6999
7000 * jvspec.c (lang_specific_driver): Recognize -MF and -MT.
7001 * lang-specs.h: Added %{MA}, %{MF*}, %{MT*}.
7002 * lang-options.h: Added -MA, -MT, -MF..
7003 * lang.c (lang_decode_option): Recognize -MA, -MT, -MF.
7004 (DEPEND_TARGET_SET): New macro.
7005 (DEPEND_FILE_ALREADY_SET): Likewise.
7006 (init_parse): Handle new flags.
7007 * jcf.h (jcf_dependency_print_dummies): Declare.
7008 * Make-lang.in (s-java): Added mkdeps.o.
7009 * Makefile.in (BACKEND): Added mkdeps.o.
7010 (../gcjh$(exeext)): Added mkdeps.o.
7011 (../jcf-dump$(exeext)): Added mkdeps.o.
7012 * jcf-depend.c: Include mkdeps.h.
7013 (struct entry, dependencies, targets, MAX_OUTPUT_COLUMNS,
7014 add_entry): Removed.
7015 (jcf_dependency_reset): Rewrote.
7016 (dependencies): New global.
7017 (jcf_dependency_set_target): Rewrote.
7018 (jcf_dependency_add_target): Likewise.
7019 (jcf_dependency_add_file): Likewise.
7020 (munge): Removed.
7021 (print_ents): Removed.
7022 (jcf_dependency_write): Rewrote.
7023 (print_dummies): New global.
7024 (jcf_dependency_print_dummies): New function
7025 (jcf_dependency_write): Call deps_dummy_targets if required.
7026
7027 2000-10-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
7028
7029 * gjavah.c (add_class_decl): Removed unused variables `tname',
7030 `tlen' and `name_index'.
7031 * java-tree.h (BUILD_FILENAME_IDENTIFIER_NODE): New macro.
7032 * jcf-parse.c (jcf_parse_source): Use it and set EXPR_WFL_FILENAME
7033 in `wfl_operator' with value.
7034 (yyparse): Use BUILD_FILENAME_IDENTIFIER_NODE.
7035 (jcf_figure_file_type): Fixed identation.
7036 * lex.c (java_get_line_col): Use EOF. Tuned `^' placement.
7037 * parse.y (analyze_clinit_body): New function.
7038 (static_initializer:): Reset `current_static_block'.
7039 (java_parser_context_restore_global): Set EXPR_WFL_FIILENAME_NODE in
7040 `wfl_operator' with new value.
7041 (lookup_cl): Use EXPR_WFL_FILENAME.
7042 (maybe_yank_clinit): Handle bogus <clinit> bodies, call
7043 analyze_clinit_body.
7044 (build_outer_field_access): Access to this$<n> built from
7045 current_class, not its outer context.
7046 (build_access_to_thisn): Fixed leading comment. Tidied things up.
7047 (resolve_qualified_expression_name): Handle `T.this' and `T.this.f()'.
7048 (patch_method_invocation): Use `is_static_flag' when already
7049 initialized.
7050 (patch_newarray): Removed assignment in ternary operator.
7051
7052 2000-10-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
7053
7054 * except.c (free_eh_ranges): Don't free `whole_range'.
7055
7056 2000-10-15 Anthony Green <green@redhat.com>
7057
7058 * decl.c (init_decl_processing): Call init_class_processing before
7059 anything else.
7060
7061 2000-10-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7062
7063 * check-init.c (check_init): Fixed leading comment. Use
7064 LOCAL_FINAL_P.
7065 * decl.c (push_jvm_slot): Use MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC.
7066 (give_name_to_locals): Likewise.
7067 (lang_mark_tree): Handle FIELD_DECL. Register `am' and `wfl'
7068 fields in lang_decl_var.
7069 * java-tree.h (DECL_FUNCTION_SYNTHETIC_CTOR,
7070 DECL_FUNCTION_ALL_FINAL_INITIALIZED): New macros.
7071 (FIELD_INNER_ACCESS): Removed ugly cast, macro rewritten.
7072 (FIELD_INNER_ACCESS_P, DECL_FIELD_FINAL_IUD, DECL_FIELD_FINAL_LIIC,
7073 DECL_FIELD_FINAL_IERR, DECL_FIELD_FINAL_WFL): New macros.
7074 (LOCAL_FINAL): Rewritten.
7075 (LOCAL_FINAL_P, FINAL_VARIABLE_P, CLASS_FINAL_VARIABLE_P
7076 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC): New macros.
7077 (struct lang_decl): Fixed comments. Added `synthetic_ctor' and
7078 `init_final' fields.
7079 (struct lang_decl_var): Fixed leading comment. Added `am', `wfl',
7080 `final_uid', `final_liic', `final_ierr' and `local_final' fields.
7081 (TYPE_HAS_FINAL_VARIABLE): New macro.
7082 (struct lang_type): Added `afv' field.
7083 * parse.y (check_static_final_variable_assignment_flag): New function.
7084 (reset_static_final_variable_assignment_flag): Likewise.
7085 (check_final_variable_local_assignment_flag): Likewise.
7086 (reset_final_variable_local_assignment_flag): Likewise.
7087 (check_final_variable_indirect_assignment): Likewise.
7088 (check_final_variable_global_assignment_flag): Likewise.
7089 (add_inner_class_fields): Use LOCAL_FINAL_P.
7090 (register_fields): Handle local finals and final variables.
7091 (craft_constructor): Set DECL_FUNCTION_SYNTHETIC_CTOR.
7092 (declare_local_variables): Call MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC.
7093 (source_start_java_method): Call MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC
7094 on local finals.
7095 (java_complete_expand_methods): Loop to set
7096 TYPE_HAS_FINAL_VARIABLE. Call
7097 `reset_final_variable_local_assignment_flag' and
7098 `check_final_variable_local_assignment_flag' accordingly before
7099 and after constructor expansion. Call
7100 `reset_static_final_variable_assignment_flag'
7101 before expanding <clinit> and after call
7102 `check_static_final_variable_assignment_flag' if the
7103 current_class isn't an interface. After all methods have been
7104 expanded, call `check_final_variable_global_assignment_flag' and
7105 `check_static_final_variable_assignment_flag' if the current class
7106 is an interface.
7107 (maybe_yank_clinit): Fixed typo in comment.
7108 (build_outer_field_access_methods): Removed old sanity check. Use
7109 FIELD_INNER_ACCESS_P. Call MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC.
7110 Don't create access methods for finals.
7111 (resolve_field_access): Use `CLASS_FINAL_VARIABLE_P'.
7112 (java_complete_tree): Likewise. Reset DECL_FIELD_FINAL_IUD if
7113 existing DECL_INIT has been processed.
7114 (java_complete_lhs): Likewise.
7115 (check_final_assignment): Filter input on `lvalue''s TREE_CODE.
7116 Test for COMPONENT_REF to get to the FIELD_DECL. Implemented new
7117 logic.
7118 (patch_assignment): Use LOCAL_FINAL_P.
7119 (fold_constant_for_init): Reset DECL_FIELD_FINAL_IUD if
7120 DECL_INITIAL is nullified.
7121 Fixes gcj/163.
7122
7123 2000-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7124
7125 * Make-lang.in (parse.c, parse-scan.c): Create atomically.
7126
7127 * Makefile.in (parse.c, parse-scan.c): Likewise.
7128
7129 2000-10-12 Mark Mitchell <mark@codesourcery.com>
7130
7131 * class.c (temporary_obstack): Remove.
7132 (make_class): Don't mess with obstascks.
7133 (push_class): Likewise.
7134 (set_super_info): Likewise.
7135 (add_method_1): Likewise.
7136 (add_method): Likewise.
7137 (add_field): Likewise.
7138 (build_utf8_ref): Likewise.
7139 (build_class_ref): Likewise.
7140 (build_static_field_ref): Likewise.
7141 (finish_class): Likewise.
7142 (push_super_field): Likewise.
7143 (layout_class): Likewise.
7144 (layout_class_methods): Likewise.
7145 (init_class_processing): Likewise.
7146 * constants.c (get_tag_node): Likewise.
7147 (build_constant_data_ref): Likewise.
7148 * decl.c (ggc_p): Remove.
7149 (copy_lang_decl): Use ggc_alloc.
7150 (complete_start_java_method): Don't mess with obstacks.
7151 (start_java_method): Likewise.
7152 (end_java_method): Likewise.
7153 * except.c (link_handler): Use xmalloc.
7154 (free_eh_ranges): New function.
7155 (method_init_exceptions): Use it.
7156 (add_handler): Use xmalloc.
7157 (expand_start_java_handler): Don't mess with obstacks.
7158 (prepare_eh_table_type): Likewise.
7159 (expand_end_java_handler): Likewise.
7160 * expr.c (push_value): Likewise.
7161 (create_label_decl): Likewise.
7162 (build_jni_stub): Likewise.
7163 (java_lang_expand_expr): Likewise.
7164 (note_instructions): Use xrealloc.
7165 (java_push_constant_from_pool): Don't mess with obstacks.
7166 (process_jvm_instruction): Likewise.
7167 * java-tree.h (cyclic_inheritance_report): Remove duplicate
7168 declaration.
7169 * jcf-parse.c (get_constant): Don't mess with obstacks.
7170 (read_class): Likewise.
7171 (jcf_parse): Likewise.
7172 * lex.c (expression_obstack): Remove.
7173 (java_lex): Don't use obstack_free.
7174 * parse.h (exit_java_complete_class): Don't mess with obstacks.
7175 (MANGLE_OUTER_LOCAL_VARIABLE_NAME): Adjust.
7176 (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID): Likewise.
7177 (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STRING): Likewise.
7178 * parse.y (gaol): Add more GC roots.
7179 (add_inner_class_fields): Adjust calls to MANGLE_* macros.
7180 (lookup_field_wrapper): Likewise.
7181 (obtain_incomplete_type): Don't mess with obstacks.
7182 (build_alias_initializer_parameter_list): Adjust calls to MANGLE_*
7183 macros.
7184 (craft_constructor): Don't mess with obstacks.
7185 (safe_layout_class): Likewise.
7186 (java_complete_class): Likewise.
7187 (source_end_java_method): Likewise.
7188 (build_outer_field_access_methods): Likewise.
7189 (build_outer_method_access_method): Likewise.
7190 (maybe_build_thisn_access_method): Likewise.
7191 (build_dot_class_method_invocation): Likewise.
7192 (java_complete_tree): Likewise.
7193 (java_complete_lhs): Likewise.
7194 (do_merge_string_cste): Likewise.
7195 (patch_string_cst): Likewise.
7196 (array_constructor_check_entry): Likewise.
7197 * typeck.c (build_java_array_type): Likewise.
7198 (parse_signature_string): Likewise.
7199 (build_java_signature): Likewise.
7200
7201 2000-10-12 Tom Tromey <tromey@cygnus.com>
7202
7203 Fix for PR gcj/356:
7204 * gjavah.c (add_class_decl): Don't special-case inner classes.
7205 (add_namelet): Likewise.
7206
7207 2000-10-11 Rodney Brown <RodneyBrown@mynd.com>
7208
7209 * java-tree.h: Constify current_encoding.
7210 * lang.c: Constify current_encoding.
7211
7212 2000-10-10 Jeff Sturm <jeff.sturm@appnet.com>
7213
7214 * jvgenmain.c (class_mangling_suffix): Omit `.'.
7215 (main): Use `$' when NO_DOLLAR_IN_LABEL is not set, otherwise `.'.
7216
7217 2000-10-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7218
7219 * expr.c (java_lang_expand_expr): Reinstall 1999-08-14 Anthony's
7220 patch. Fixes gcj/340.
7221
7222 2000-10-10 Tom Tromey <tromey@cygnus.com>
7223
7224 * lex.c (java_new_lexer): Initialize out_first and out_last
7225 fields.
7226 * lex.h (java_lexer): Added out_buffer, out_first, out_last.
7227
7228 2000-10-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
7229
7230 * parse.y (pop_current_osb): New function.
7231 (array_type:): Use `dims:', changed actions
7232 accordingly. Suggested by Anthony Green.
7233 (array_creation_expression:): Used pop_current_osb.
7234 (cast_expression:): Likewise.
7235 (search_applicable_method_list): Fixed indentation.
7236
7237 2000-10-08 Anthony Green <green@redhat.com>
7238
7239 * parse.y (array_type_literal): Remove production.
7240 (type_literals): Refer to array_type, not array_type_literal.
7241
7242 2000-10-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7243
7244 Patch contributed by Corey Minyard.
7245 * decl.c (check_local_named_variable): New function.
7246 (tree check_local_unnamed_variable): Likewise.
7247 (find_local_variable): Splitted. Call check_local_{un}named_variable.
7248
7249 2000-10-07 Anthony Green <green@redhat.com>
7250
7251 * class.c (layout_class): Handle case where superclass can't be
7252 layed out yet.
7253
7254 2000-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
7255
7256 * Makefile.in (keyword.h): Refer to GNU FTP site for updated
7257 gperf.
7258
7259 2000-10-05 Tom Tromey <tromey@cygnus.com>
7260
7261 * jvspec.c (jvgenmain_spec): Added `-fdollars-in-identifiers'.
7262 * jvgenmain.c (class_mangling_prefix): Removed.
7263 (class_mangling_suffix): New global.
7264 (main): Use it.
7265 * gjavah.c (cxx_keyword_subst): Mangle C++ keywords by appending
7266 `$'.
7267 (print_method_info): Handle overrides for static and final
7268 methods.
7269 (process_file): Generate declaration for class object field.
7270 * class.c (cxx_keywords): New array.
7271 (utf8_cmp): New function.
7272 (cxx_keyword_p): New function.
7273 (layout_class_method): Mangle C++ keywords by appending `$'.
7274 (mangle_field): New function.
7275 (mangle_class_field): Use mangle_field. Mangle class name as
7276 `class$'.
7277 (mangle_static_field): Use mangle_field.
7278
7279 2000-10-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
7280
7281 * decl.c (find_local_variable): Removed uncessary type check and
7282 fixed range check typo. From Corey Minyard.
7283
7284 2000-09-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7285
7286 * decl.c (give_name_to_locals): New local `code_offset'. Call
7287 `maybe_adjust_start_pc'.
7288 * expr.c (note_instructions): New function.
7289 (expand_byte_code): Don't collect insn starts here.
7290 (peek_opcode_at_pc): New function.
7291 (maybe_adjust_start_pc): Likewise.
7292 * java-tree.h (maybe_adjust_start_pc): Declare.
7293 (note_instructions): Likewise.
7294 * jcf-parse.c (parse_class_file): Call `note_instructions'.
7295
7296 2000-09-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7297
7298 * parse.y (field_access:): Fixed indentation.
7299 (qualify_ambiguous_name): Properly qualify `this.a[b].c'.
7300
7301 2000-09-07 Tom Tromey <tromey@cygnus.com>
7302
7303 Fix for PR gcj/307:
7304 * parse.y (patch_binop): Use JNUMERIC_TYPE_P, not
7305 JPRIMITIVE_TYPE_P, for arithmetic operators.
7306 (patch_method_invocation): Indentation fix.
7307 (try_builtin_assignconv): Handle boolean specially. Fixed typo.
7308 (valid_builtin_assignconv_identity_widening_p): Handle boolean.
7309 (do_unary_numeric_promotion): Cleaned up code.
7310 (valid_cast_to_p): Handle boolean correctly.
7311
7312 2000-09-27 Tom Tromey <tromey@cygnus.com>
7313
7314 * lex.c (java_read_unicode): Reset bs_count when finished with
7315 `\u' sequence.
7316
7317 2000-10-01 Mark Mitchell <mark@codesourcery.com>
7318
7319 Convert to GC.
7320 * Make-lang.in (s-java): Don't depend on ggc-callbacks.o.
7321 * Makefile.in (BACKEND): Don't include ggc-callbacks.o.
7322 (typeck.o): Depend on ggc.h.
7323 * class.c (add_method_1): Use GC functions for allocation.
7324 (init_class_processing): Register roots.
7325 * decl.c (ggc_p): Set to 1.
7326 (pending_local_decls): Make it static.
7327 (push_jvm_slot): Use GC functions for allocation.
7328 (init_decl_processing): Register roots.
7329 (give_name_to_locals): Use GC functions for allocation.
7330 (lang_mark_tree): New function.
7331 * java-tree.h (MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC): Use GC
7332 functions for allocation.
7333 * jcf-parse.c (jcf_parse_source): Use ggc_strdup.
7334 * lex.c (java_lex): Use build_string, rather than replicating it
7335 inline.
7336 * parse.y (goal): Add more roots.
7337 (mark_parser_ctxt): New function.
7338 * typeck.c: Include ggc.h.
7339
7340 2000-09-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7341
7342 * parse.y (maybe_yank_clinit): Also keep <clinit> if its body
7343 contains something else than MODIFY_EXPR.
7344
7345 2000-09-23 Mark Mitchell <mark@codesourcery.com>
7346
7347 * Make-lang.in (JAVA_SRCS): Include java-tree.h.
7348 * Makefile.in (parse.o): Depend on ggc.h.
7349 (class.o): Likewise.
7350 (constants.o): Likewise.
7351 (decl.o): Likewise.
7352 (expr.o): Likewise.
7353 (jcf-parse.o): Likewise.
7354 (jcf-write.o): Likewise.
7355 (mangle.o): Likewise.
7356 * class.c: Include ggc.h.
7357 (build_static_field_ref): Register GC roots.
7358 (layout_class): Likewise.
7359 (init_class_processing): Likewise.
7360 * constants.c: Include ggc.h.
7361 (current_constant_pool_data_ref): Remove.
7362 (tag_nodes): Move it to ...
7363 (get_tag_node): ... here. Register GC roots.
7364 * decl.c: Include ggc.h. Remove many global tree definitions.
7365 (throw_node): Define.
7366 (java_global_trees): Likewise.
7367 (predef_filenames): Make the size a constant.
7368 (init_decl_processing): Adjust accordingly.
7369 (init_decl_processing): Call init_jcf_parse. Register GC roots.
7370 * expr.c: Include ggc.h.
7371 (init_expr_processing): Register GC roots.
7372 (build_invokeinterface): Likewise.
7373 * java-tree.h: Replace extern tree declarations with macros.
7374 (java_global_trees): New variable.
7375 (java_tree_index): New enumeration.
7376 (init_jcf_parse): Declare.
7377 * jcf-parse.c: Include ggc.h.
7378 (current_class): Remove declaration.
7379 (main_class): Likewise.
7380 (all_class_list): Likewise.
7381 (predefined_filename_p): Adjust for constant size of
7382 predef_filenames.
7383 (init_jcf_parse): New function.
7384 * jcf-write.c: Include ggc.h.
7385 (generate_classfile): Register GC roots.
7386 (append_synthetic_attribute): Likewise.
7387 (append_innerclass_attribute_entry): Likewise.
7388 * lang.c: Include ggc.h.
7389 (lang_print_error): Register GC roots.
7390 * parse.h (struct parser_ctxt): Rename fields to avoid conflicts
7391 with macros.
7392 * parse.y: Include ggc.h.
7393 (wfl_operator): Remove.
7394 (goal): Register GC roots.
7395 (java_pop_parser_context): Adjust for new field names.
7396 (java_parser_context_save_global): Likewse.
7397 (java_parser_context_restore_global): Likewise.
7398 (java_parser_context_suspend): Likewise.
7399 (java_parser_context_resume): Likewise.
7400 (verify_constructor_circularity): Register GC roots.
7401 (lookup_cl): Likewise.
7402 (java_reorder_fields): Likewise.
7403 (build_current_this): Likewise.
7404 (class_in_current_package): Likewise.
7405 (argument_types_convertible): Likewise.
7406 (patch_cast): Rename wfl_op parameter to avoid macro conflicts.
7407
7408 2000-09-14 Tom Tromey <tromey@cygnus.com>
7409
7410 * lex.h: Use HAVE_ICONV_H, not HAVE_ICONV.
7411
7412 2000-09-13 Tom Tromey <tromey@cygnus.com>
7413
7414 * jcf-parse.c: Include <locale.h>.
7415 * jv-scan.c: Include <locale.h>.
7416
7417 2000-09-12 Tom Tromey <tromey@cygnus.com>
7418
7419 * expr.c (pop_type_0): Return `Object' if trying to merge two
7420 interface types.
7421 * verify.c (merge_types): Don't return `TYPE_UNKNOWN' for
7422 interface types; `Object' is always a valid supertype.
7423
7424 2000-09-12 Tom Tromey <tromey@cygnus.com>
7425
7426 Fix for PR gcj/33:
7427 * jv-scan.c (help): Document --encoding.
7428 (options): Added `encoding' entry.
7429 (OPT_ENCODING): New define.
7430 (main): Handle --encoding.
7431 Include <langinfo.h> if nl_langinfo exists.
7432 * lang-options.h: Document --classpath, --CLASSPATH, --main, and
7433 --encoding.
7434 * jcf-parse.c Include <langinfo.h> if we have nl_langinfo.
7435 (parse_source_file): Correctly call java_init_lex. Added `finput'
7436 argument. Use nl_langinfo to determine default encoding.
7437 * java-tree.h (current_encoding): Declare.
7438 * parse.y (java_parser_context_restore_global): Don't restore
7439 `finput'.
7440 (java_parser_context_save_global): Don't set `finput' field.
7441 (java_pop_parser_context): Don't restore `finput'. Free old lexer
7442 if required.
7443 * lang.c (current_encoding): New global.
7444 (lang_decode_option): Recognize `-fencoding='.
7445 (finish_parse): Don't close finput.
7446 * parse.h (struct parser_ctxt): Removed `finput' and
7447 `unget_utf8_value' fields. Added `lexer' field.
7448 (java_init_lex): Fixed declaration.
7449 * lex.c (java_new_lexer): New function.
7450 (java_destroy_lexer): Likewise.
7451 (java_read_char): Added `lex' argument. Handle iconv case.
7452 (java_read_unicode): Added `lex' argument. Count backslashes in
7453 lexer structure.
7454 (java_init_lex): Added `finput' and `encoding' arguments. Set
7455 `lexer' field in ctxp.
7456 (BAD_UTF8_VALUE): Removed.
7457 (java_lex): Handle seeing UEOF in the middle of a string literal.
7458 * lex.h: Include <iconv.h> if HAVE_ICONV defined.
7459 (java_lexer): New structure.
7460 (UNGETC): Removed.
7461 (GETC): Removed.
7462 (DEFAULT_ENCODING): New define.
7463 (java_destroy_lexer): Declare.
7464
7465 2000-09-12 Tom Tromey <tromey@cygnus.com>
7466
7467 Fix for PR gcj/343:
7468 * lex.c (java_init_lex): Initialize java_io_serializable.
7469 * parse.y (java_io_serializable): New global.
7470 (valid_ref_assignconv_cast_p): An array can be cast to
7471 serializable.
7472
7473 2000-09-10 Zack Weinberg <zack@wolery.cumb.org>
7474
7475 * decl.c, expr.c: Include defaults.h if not already included.
7476 Don't define the *_TYPE_SIZE macros.
7477
7478 2000-09-09 Geoffrey Keating <geoffk@cygnus.com>
7479
7480 * typeck.c (build_java_array_type): Correct first parameter
7481 in ADJUST_FIELD_ALIGN invocation.
7482
7483 2000-09-06 Tom Tromey <tromey@cygnus.com>
7484
7485 * lang-specs.h: Also recognize `-femit-class-files'.
7486
7487 2000-09-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
7488
7489 * verify.c (merge_types): Load the types to merge if necessary.
7490
7491 2000-09-02 Anthony Green <green@redhat.com>
7492
7493 * jcf-io.c: Include zlib.h.
7494 (open_in_zip): Read compressed class file archives.
7495 * zipfile.h (ZipDirectory): Add uncompressed_size and
7496 compression_method fields.
7497 * zextract.c (read_zip_archive): Collect file compression info.
7498
7499 2000-08-15 Bryce McKinlay <bryce@albatross.co.nz>
7500
7501 * parse.y (do_resolve_class): Also explore superclasses of
7502 intermediate enclosing contexts when searching for inner classes.
7503
7504 2000-08-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
7505
7506 * parse.y (variable_declarator_id:): Better error message.
7507 (expression_statement:): Use YYNOT_TWICE.
7508 (cast_expression:): Likewise.
7509 (assignment:): Likewise.
7510
7511 2000-08-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
7512
7513 * parse.y (do_merge_string_cste): New locals. Create new
7514 STRING_CSTs each time, use memcpy. Fixes gcj/311.
7515
7516 2000-08-07 Hans Boehm <boehm@acm.org>
7517
7518 * boehm.c (mark_reference_fields): Set marking bits for all words in
7519 a multiple-word record.
7520 (get_boehm_type_descriptor): Use the procedure marking descriptor for
7521 java.lang.Class.
7522
7523 2000-08-31 Mike Stump <mrs@wrs.com>
7524
7525 * Make-lang.in (jc1$(exeext), gcjh$(exeext), jv-scan$(exeext),
7526 jcf-dump$(exeext)): Make parallel safe.
7527
7528 2000-08-29 Zack Weinberg <zack@wolery.cumb.org>
7529
7530 * jcf-parse.c (set_source_filename): Constify a char *.
7531 * jcf-write.c (append_innerclasses_attribute,
7532 make_class_file_name): Constify a char *. Don't recycle a
7533 variable for an unrelated purpose.
7534 * parse.y: (build_alias_initializer_parameter_list): Constify a char *.
7535 (breakdown_qualified): Do not modify IDENTIFIER_POINTER strings.
7536
7537 2000-08-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7538
7539 * expr.c (can_widen_reference_to): Fixed indentation.
7540 * java-tree.h (CLASS_METHOD_CHECKED_P): Added leading comment.
7541 * parse.y: `finit$' replaces `$finit$' in comments.
7542 (try_builtin_assignconv): Fixed leading comment.
7543
7544 2000-08-25 Greg McGary <greg@mcgary.org>
7545
7546 * gjavah.c (cxx_keyword_subst): Use ARRAY_SIZE.
7547
7548 2000-08-24 Greg McGary <greg@mcgary.org>
7549
7550 * lang.c (lang_decode_option): Use ARRAY_SIZE.
7551 * parse.y (BINOP_LOOKUP): Likewise.
7552
7553 2000-08-22 Andrew Haley <aph@cygnus.com>
7554
7555 * javaop.h (WORD_TO_INT): Mask lower 32 bits of a jword before
7556 sign extending. Fixes gcj/321.
7557 * jcf-parse.c (get_constant): Mask lower 32 bits of a jint before
7558 combining to make a jlong. Fixes gcj/321.
7559
7560 2000-08-21 Nix <nix@esperi.demon.co.uk>
7561
7562 * lang-specs.h: Do not process -o or run the assembler if
7563 -fsyntax-only.
7564
7565 2000-08-16 Andrew Haley <aph@cygnus.com>
7566
7567 * typeck.c (build_java_array_type): Rewrite code to do array
7568 alignment. Take into account back-end macros when aligning array
7569 data. Remove setting of TYPE_USER_ALIGN; Java doesn't allow the
7570 user to set alignment. Fixes gcj/252 and 160.
7571
7572 2000-08-09 Tom Tromey <tromey@cygnus.com>
7573
7574 * parse.y (check_abstract_method_definitions): Now return `int'.
7575 Check implemented interfaces. Fixes PR gcj/305.
7576
7577 * parse.y (patch_switch_statement): Disallow `long' in switch
7578 expressions. Fixes PR gcj/310.
7579
7580 2000-08-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
7581
7582 * decl.c (finit_leg_identifier_node): New global.
7583 (init_decl_processing): Use `finit$' to initialize
7584 finit_identifier_node. Use `$finit$' to initialize
7585 finit_leg_identifier_node.
7586 * expr.c (expand_java_field_op): Use ID_FINIT_P.
7587 * java-tree.h (finit_identifier_node): Changed attached comment.
7588 (finit_leg_identifier_node): New declaration.
7589 (ID_FINIT_P): Take finit_identifier_node and
7590 finit_leg_identifier_node into account. This is a backward
7591 compatibility hack.
7592
7593 2000-08-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
7594
7595 * jcf-write.c (generate_bytecode_conditional): Re-installed lost
7596 Jan 6 2000 patch.
7597 (generate_bytecode_insns): Check `nargs' before emitting it.
7598 * verify.c (merge_type_state): Fixed typo.
7599 * ChangeLog: Fixed typo in some jcf-write.c entries mentioning
7600 generate_bytecode_{conditional,insns}.
7601
7602 2000-08-13 Anthony Green <green@redhat.com>
7603
7604 * check-init.c (check_init): Add case for BIT_FIELD_REF (required
7605 for -pg builds).
7606
7607 2000-08-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7608
7609 * class.c (maybe_layout_super_class): Fixed indentation.
7610 * java-tree.h (CLASS_METHOD_CHECKED_P): New macro.
7611 (java_check_methods): New function declaration.
7612 * jcf-parse.c (get_constant): Let `char_len' go up to 3. Use `str'
7613 instead of `str_ptr'.
7614 * jcf-write.c (generate_bytecode_insns): Emit number the of args
7615 of a `invokeinterface' at the right time.
7616 * parse.h (WFL_STRIP_BRACKET): New macro.
7617 (SET_TYPE_FOR_RESOLUTION): Use it.
7618 * parse.y (build_unresolved_array_type): Reuse `type_or_wfl'.
7619 (check_class_interface_creation): Don't check for cross package
7620 innerclass name clashes.
7621 (method_header): Behave properly if MDECL is `error_mark_node'.
7622 (method_declarator): Return `error_mark_node' if bogus current
7623 class.
7624 (resolve_class): Apply WFL_STRIP_BRACKET on `cl' if necessary.
7625 (resolve_and_layout): New local `decl_type', set and used. Call
7626 java_check_methods.
7627 (java_check_methods): New method.
7628 (java_layout_classes): Use it.
7629 (resolve_qualified_expression_name): No EH check necessary in
7630 access$<n>.
7631 (java_complete_lhs): Use VAR_DECL's DECL_INITIAL when evaluating
7632 `case' statement.
7633 (patch_assignment): Set DECL_INITIAL on integral final local.
7634
7635 2000-08-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
7636
7637 * java-tree.h (flag_extraneous_semicolon): New extern.
7638 * lang-options.h: (-Wextraneous-semicolon): New option.
7639 * lang.c (flag_redundant): Fixed typo in leading comment.
7640 (flag_extraneous_semicolon): New global.
7641 (lang_decode_option): Set `flag_extraneous_semicolon' when
7642 -Wall. Decode `-Wextraneous-semicolon'.
7643 * parse.y (type_declaration:): Removed `SC_TK' hack, added
7644 `empty_statement' rule.
7645 (class_body_declaration): Likewise.
7646 (method_body:): Accept `;' as a method body.
7647 (static_initializer:): Removed `SC_TK' hack.
7648 (constructor_block_end:): Likewise.
7649 (empty_statement:): Report deprecated empty declaration. Fixes
7650 gcj/295
7651
7652 2000-08-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7653
7654 * parse.y (build_dot_class_method_invocation): Changed parameter
7655 name to `type'. Build signature from `type' and convert it to a
7656 STRING_CST if it's an array.
7657 (patch_incomplete_class_ref): `build_dot_class_method_invocation'
7658 to use `ref_type' directly.
7659
7660 2000-08-06 Ovidiu Predescu <ovidiu@cup.hp.com>
7661
7662 * lang-options.h: Added a comma after the last element to avoid
7663 syntax errors when other languages define additional options.
7664
7665 2000-08-04 Zack Weinberg <zack@wolery.cumb.org>
7666
7667 * Make-lang.in (jc1, jv-scan): Depend on $(BACKEND), not stamp-objlist.
7668 * Makefile.in: Add BACKEND; delete OBJS, OBJDEPS.
7669 (jc1): Link with $(BACKEND).
7670 (jv-scan): Depend on version.o, not all of $(OBJS) or $(BACKEND).
7671
7672 2000-08-02 Zack Weinberg <zack@wolery.cumb.org>
7673
7674 * jvspec.c: Adjust type of second argument to
7675 lang_specific_driver, and update code as necessary.
7676
7677 * class.c (build_dtable_decl): Initialize dummy.
7678
7679 2000-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7680
7681 * parse.y (maybe_yank_clinit): When generating bytecode: non empty
7682 method bodies not to rule out discarding `<clinit>'; don't use
7683 <clinit> to initialize static fields with constant initializers.
7684
7685 2000-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7686
7687 * gjavah.c (print_method_info): Added `synth' parameter. Skip
7688 synthetic methods.
7689 (method_synthetic): New global.
7690 (HANDLE_METHOD): Recognize synthetic method and tell
7691 `print_method_info' about it.
7692 (HANDLE_END_METHOD): Do not issue an additional `;\n' if we're
7693 processing a synthetic method.
7694 * jcf-reader.c (skip_attribute): New function.
7695 ( skip_attribute): Likewise.
7696
7697 2000-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7698
7699 * parse.y (build_outer_field_access): Fixed comments.
7700 (fix_constructors): Emit the initialization of this$<n> before
7701 calling $finit$.
7702 (resolve_qualified_expression_name): Build an access to `decl' if
7703 necessary.
7704
7705 2000-07-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
7706
7707 * parse-scan.y (curent_class): Non longer const.
7708 (inner_qualifier, inner_qualifier_length): Deleted.
7709 (current_class_length): New global.
7710 (bracket_count): Fixed typo in leading comment.
7711 (anonymous_count): New global.
7712 (class_instance_creation_expression:): Handle anonymous classes.
7713 (anonymous_class_creation:): New rule.
7714 (push_class_context): Rewritten.
7715 (pop_class_context): Likewise.
7716 (INNER_QUALIFIER): Macro deleted.
7717 (report_class_declaration): call `push_class_context' when
7718 entering the function. `fprintf' format modified not to use
7719 INNER_QUALIFIER.
7720 (report_class_declaration): Assign `package_name' and
7721 `current_class' to NULL separately.
7722
7723 2000-07-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
7724
7725 * expr.c (build_invokeinterface): Call layout_class_methods on
7726 target interface.
7727
7728 2000-07-27 Tom Tromey <tromey@cygnus.com>
7729 Anthony Green <green@cygnus.com>
7730 Alexandre Petit-Bianco <apbianco@cygnus.com>
7731
7732 * class.c (make_class_data): Create vtable for abstract classes.
7733 (get_dispatch_table): Changed to cope with abstract classes.
7734
7735 2000-07-27 Tom Tromey <tromey@cygnus.com>
7736
7737 * parse.y (patch_method_invocation): Don't reverse the argument
7738 list when dealing with anonymous class constructors. Fixed typo in
7739 comment.
7740
7741 2000-07-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
7742
7743 * parse.y (build_alias_initializer_parameter_list): Reverse
7744 crafted list when building aliases for anonymous class
7745 constructors.
7746
7747 2000-07-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
7748
7749 * parse.y (jdep_resolve_class): Don't bother checking potential
7750 innerclass access if `decl' is NULL.
7751 (find_in_imports_on_demand): TREE_PURPOSE of `import' contains the
7752 WFL.
7753
7754 2000-07-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
7755
7756 * parse.c: Remove (again.)
7757
7758 2000-07-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
7759
7760 * parse.y (find_as_inner_class): Removed 2000-07-19 patches.
7761 * jcf-parse.c (HANDLE_INNERCLASSES_ATTRIBUTE): Local `decl' moved
7762 outside the `if' statement, alias to innerclass removed, `decl'
7763 used to mark the class complete.
7764
7765 2000-07-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
7766
7767 * parse.y (simple_name:): Fixed typo in error message.
7768
7769 2000-07-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
7770
7771 * parse.y (java_complete_lhs): LOOP_EXPR:, SWITCH_EXPR: the node
7772 or its first operand can be error marks.
7773
7774 2000-07-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
7775
7776 * parse.h (SET_TYPE_FOR_RESOLUTION): Use GET_CPC.
7777 * parse.y (method_header): Likewise.
7778
7779 2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
7780
7781 * parse.y (process_imports): Consider that one might be trying to
7782 import an innerclass. Fixes gcj/254
7783
7784 2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
7785
7786 * parse.y (find_as_inner_class): Handle the case where the
7787 enclosing context of an innerclass has been loaded as bytecode.
7788
7789 2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
7790
7791 * parse.y (simple_name:): Reject `$' in type names.
7792 (resolve_type_during_patch): Use `type' as a second
7793 argument to resolve_no_layout. Fixes gcj/257.
7794
7795 2000-07-18 Bryce McKinlay <bryce@albatross.co.nz>
7796
7797 * parse.y (find_most_specific_methods_list): Select the only
7798 non-abstract method even if max has been set.
7799 Fixes gcj/285, gcj/298.
7800
7801 2000-07-18 Jeff Sturm <jeff.sturm@appnet.com>
7802
7803 * lang-specs.h: Added %(jc1) to java compiler options.
7804
7805 2000-07-14 Zack Weinberg <zack@wolery.cumb.org>
7806
7807 * .cvsignore: New file.
7808
7809 2000-07-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7810
7811 * parse.y (not_accessible_p): Access granted to innerclasses
7812 (indirectly) extending the reference type. Fixes gcj/249.
7813
7814 2000-07-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7815
7816 * parse.y (patch_method_invocation): Fixed comment.
7817 (maybe_use_access_method): Build this$<n>s to the context of the
7818 target method, or a type that extends it. Fixes gcj/242.
7819
7820 2000-07-13 Mark Mitchell <mark@codesourcery.com>
7821
7822 * parse.c: Remove.
7823
7824 2000-07-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7825
7826 * parse.y (fold_constant_for_init): Avoid bullish conversion.
7827
7828 2000-07-13 Tom Tromey <tromey@cygnus.com>
7829
7830 * lang-specs.h: Added %{I*}.
7831
7832 2000-07-13 Zack Weinberg <zack@wolery.cumb.org>
7833
7834 * lang-specs.h: Use the new named specs. Remove unnecessary braces.
7835
7836 2000-07-12 Mark Mitchell <mark@codesourcery.com>
7837
7838 * parse-scan.c: Remove.
7839
7840 2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7841
7842 * class.c (set_super_info): Handled protected inner classes.
7843 (common_enclosing_context_p): Bail early if arguments aren't both
7844 inner classes.
7845 (get_access_flags_from_decl): Handle private and protected inner
7846 classes.
7847 * java-tree.h (TYPE_PROTECTED_INNER_CLASS): New macro.
7848 (CLASS_PROTECTED): Likewise.
7849 (struct lang_type): New bitfield `poic'.
7850 * parse.y (jdep_resolve_class): Call check_inner_class_access on
7851 inner classes only.
7852 (check_inner_class_access): Renamed arguments, added
7853 comments. Handles protected inner classes (fixes gcj/225)
7854 (not_accessible_p): Fixed comments. Avoid handling inner classes.
7855
7856 2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7857
7858 * parse.y (resolve_qualified_expression_name): Verify qualified
7859 access to `this'. Fixes gcj/239.
7860
7861 2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7862
7863 * jcf-write.c (generate_classfile): Don't install ConstantValue
7864 for null pointers.
7865
7866 2000-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7867
7868 * parse.y (resolve_qualified_expression_name): Handle inner class
7869 access. Fixes gcj/256.
7870
7871 2000-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7872
7873 * jcf-write.c (generate_classfile): Properly install the
7874 ConstantValue attribute and the initial value constant pool index
7875 on string constants.
7876 * parse.y (java_complete_lhs): Keep DECL_INITIAL when emitting
7877 class files.
7878
7879 2000-07-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
7880
7881 * parse.h (BUILD_PTR_FROM_NAME): Surround with a do/while
7882 construct.
7883 * parse.y (find_as_inner_class): Fixed typo.
7884 (do_resolve_class): Explore enclosing contexts when searching for
7885 innerclasses. Removed curly brackets around BUILD_PTR_FROM_NAME.
7886 (check_inner_class_access): Check `decl' which can be null in case
7887 of previous errors.
7888
7889 2000-07-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
7890
7891 * java-tree.h (java_debug_context): Declared `extern'.
7892 (safe_layout_class): Likewise.
7893 * parse.y (resolve_field_access): Field must be `static' in order
7894 to be replaced by its initial value. Added comments.
7895 (find_applicable_accessible_methods_list): Fixed typo.
7896 (find_most_specific_methods_list): Methods found in innerclasses
7897 take over methods founds in the enclosing contexts.
7898 (java_complete_tree): Loosen restrictions on the type of DECLs
7899 that can be replaced by their initialization values.
7900 (valid_ref_assignconv_cast_p): Removed call to `enclosing_context_p'.
7901
7902 2000-07-05 Tom Tromey <tromey@cygnus.com>
7903
7904 * Make-lang.in (PARSE_DIR): New macro.
7905 (PARSE_RELDIR): Likewise.
7906 (PARSE_C): Likewise.
7907 (PARSE_SCAN_C): Likewise.
7908 ($(PARSE_C)): New target.
7909 ($(PARSE_SCAN_C)): Likewise.
7910 (SET_BISON): New macro.
7911 (BISONFLAGS): Likewise.
7912 (JAVABISONFLAGS): Likewise.
7913
7914 2000-07-02 Bryce McKinlay <bryce@albatross.co.nz>
7915
7916 * gjavah.c (HANDLE_METHOD): Call print_method_info with a NULL stream
7917 argument on the first pass for CNI as well as JNI.
7918 (print_method_info): Set up method name on the first pass only.
7919
7920 2000-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7921
7922 * parse.y (parser_qualified_classname): Removed parameter
7923 `is_static'.
7924 (create_interface): Removed first passed parameter to
7925 parser_qualified_classname.
7926 (create_class): Likewise. Don't install alias on static
7927 innerclasses. Fixes gcj/275.
7928
7929 2000-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7930
7931 * parse.y (maybe_generate_pre_expand_clinit): Don't build a
7932 debugable statement with empty_stmt_node. Fixes gcj/272
7933
7934 2000-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7935
7936 * expr.c (build_instanceof): Layout type after it's loaded. Fixes
7937 gcj/271.
7938
7939 2000-06-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7940
7941 * jcf-write.c (push_long_const): Appropriately cast short negative
7942 constant to jword.
7943
7944 2000-06-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7945
7946 * parse.y (verify_constructor_super): Use loop variable
7947 `m_arg_type' initialized with `mdecl_arg_type'.
7948
7949 2000-06-29 Tom Tromey <tromey@cygnus.com>
7950
7951 * parse.y (resolve_field_access): Handle case where `type_found'
7952 is NULL.
7953
7954 2000-06-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
7955
7956 * expr.c (lookup_field): The same field can be found through two
7957 different interface. Don't declare it ambiguous in that case.
7958
7959 2000-06-27 Tom Tromey <tromey@cygnus.com>
7960
7961 * lex.c (java_lineterminator): Don't recognize \r after \n. If \r
7962 follows \r, then unget it at a lower level.
7963
7964 2000-06-26 Tom Tromey <tromey@cygnus.com>
7965
7966 * parse.y (resolve_field_access): Pass decl, not DECL_INITIAL, to
7967 java_complete_tree.
7968
7969 2000-06-25 Tom Tromey <tromey@cygnus.com>
7970
7971 * parse.y (for_statement): Wrap expression in a WFL if it is a
7972 constant. For PR gcj/268.
7973
7974 2000-06-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
7975
7976 * parse.y (do_resolve_class): Minor optimiztion in the package
7977 list search. Removed unnecessary test and return statement.
7978 (valid_ref_assignconv_cast_p): Order of arguments to
7979 enclosing_context_p fixed.
7980
7981 2000-06-24 Tom Tromey <tromey@cygnus.com>
7982
7983 * expr.c (lookup_field): Print error and return error_mark_node if
7984 field reference is ambiguous.
7985
7986 * parse.y (check_abstract_method_definitions): Also check if
7987 `other_method' is abstract.
7988
7989 2000-06-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
7990
7991 * class.c (set_super_info): Handle ACC_PRIVATE for (inner)
7992 classes.
7993 * java-tree.h (TYPE_PRIVATE_INNER_CLASS): New macro.
7994 (struct lang_type): New field `pic'.
7995 (CLASS_PRIVATE): New macro.
7996 * parse.y (check_inner_class_access): New function.
7997 (jdep_resolve_class): Call it.
7998
7999 2000-06-23 Tom Tromey <tromey@cygnus.com>
8000
8001 * parse.y (patch_incomplete_class_ref): Initialize the returned
8002 class. For PR gcj/260.
8003
8004 2000-06-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
8005
8006 * except.c (prepare_eh_table_type): Use `CATCH_ALL_TYPE'.
8007
8008 2000-06-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
8009
8010 * check-init.c (ENABLE_JC1_CHECKING): Replaces ENABLE_CHECKING for
8011 Java specific checks.
8012 * expr.c (build_instanceof): CLASS_INTERFACE and CLASS_FINAL usage
8013 screened by DECL_P.
8014 * java-tree.def (CASE_EXPR): Marked 'e'.
8015 (DEFAULT_EXPR): Likewise.
8016 * jcf-parse.c (set_source_filename): CLASS_COMPLETE_P usage
8017 screened by DECL_P.
8018 * jcf-write.c (ENABLE_JC1_CHECKING): Replaces ENABLE_CHECKING for
8019 Java specific checks.
8020 (generate_bytecode_insns): Test try_block for BLOCK before using
8021 BLOCK_EXPR_BODY.
8022 * parse.y (build_wfl_wrap): Added `location' argument. Set
8023 EXPR_WFL_LINECOL accordingly.
8024 (dim_expr:): Wrap constants with WFLs.
8025 (method_declarator): Use TREE_TYPE not TYPE_NAME on GET_CPC.
8026 (resolve_package): Check for `stmt' not being a BLOCK before
8027 building a debuggable statement with it.
8028 (make_qualified_primary): Added extra parameter to build_wfl_wrap
8029 invocation.
8030 (resolve_field_access): Make sure `decl' is a DECL before treating
8031 it as such.
8032 (maybe_build_primttype_type_ref): Make sure `wfl''s node is an
8033 IDENTIFIER_NODE before treating it as such.
8034 (patch_new_array_init): Make sure `elt' is a TREE_LIST before
8035 treating it as such.
8036 (find_applicable_accessible_methods_list): CLASS_INTERFACE macro
8037 to be applied only on non array types.
8038
8039 2000-06-16 Per Bothner <per@bothner.com>
8040
8041 * java-tree.h (LABEL_RETURN_LABELS, LABEL_PENDING_CHAIN): Don't
8042 define in terms of DECL_RESULT, as that fails when --enable-checking.
8043
8044 2000-06-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8045
8046 * jcf-write.c (CHECK_PUT): Add static prototype. Make pointer
8047 types the same in comparison.
8048 (CHECK_OP): Add static prototype.
8049
8050 2000-06-13 Jakub Jelinek <jakub@redhat.com>
8051
8052 * typeck.c (build_java_array_type): Set TYPE_USER_ALIGN.
8053 * parse.y (java_complete_class): Set DECL_USER_ALIGN.
8054 * parse.c: Rebuilt.
8055
8056 2000-06-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8057
8058 * decl.c (create_primitive_vtable): Prototype.
8059
8060 * jcf-write.c (generate_bytecode_insns): Initialize variable
8061 `saved_context'.
8062
8063 * lang.c (lang_get_alias_set): Mark parameter with ATTRIBUTE_UNUSED.
8064
8065 2000-06-09 Bryce McKinlay <bryce@albatross.co.nz>
8066
8067 * parse.y (find_applicable_accessible_methods_list): Use a hashtable
8068 to track searched classes, and do not search the same class more than
8069 once. Call find_applicable_accessible_methods_list on immediate
8070 superclass, instead of search_applicable_method_list on all ancestors.
8071 Fix for PR gcj/238.
8072
8073 2000-06-09 Bryce McKinlay <bryce@albatross.co.nz>
8074
8075 * parse.y (register_fields): Permit static fields in inner classes
8076 if they are final. Fix for PR gcj/255.
8077
8078 2000-06-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
8079
8080 * parse.h (REGISTER_IMPORT): Use `chainon' to link new entries.
8081 * parse.y (find_in_imports): Returned type changed to void,
8082 leading comment fixed.
8083 (register_package): New function.
8084 (qualify_and_find): Likewise.
8085 (package_declaration:): Use `register_package'.
8086 (single_type_import_declaration:): Removed local variable
8087 `node'. Added missing `;' for consistency.
8088 (type_import_on_demand_declaration:): Use `chainon' to link new
8089 entries.
8090 (lookup_field_wrapper): Lookup local variables defined in outer
8091 contexts first.
8092 (java_complete_class): Don't reverse the list of imported on demand.
8093 (do_resolve_class): Reorganized. Removed local variable
8094 `original_name'. Call `qualify_and_find' with the current package
8095 name, invoke `find_in_imports_on_demand' right after. Call
8096 `qualify_and_find' with the packages we've seen so far. Fixed
8097 operations numbering in comments.
8098 (java_expand_class): Don't reverse `package_list'.
8099 (find_most_specific_methods_list): New local variables `abstract'
8100 and `candidates'. Use them to pick the right method.
8101
8102 2000-06-06 Tom Tromey <tromey@ferrule.cygnus.com>
8103
8104 * parse.y (check_modifiers_consistency): Don't subtract out
8105 `PUBLIC_TK' from argument to THIS_MODIFIER_ONLY.
8106
8107 2000-06-04 Philipp Thomas <pthomas@suse.de>
8108
8109 * Makefile.in (INTLLIBS): New.
8110 (LIBS): Add above.
8111 (DEPLIBS): Ditto.
8112
8113 2000-06-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8114
8115 * class.c (get_dispatch_table): Build the vtable dummy entry list
8116 element with a null purpose. Fixed leading comment.
8117 (build_dtable_decl): Build an accurate dtable type when appropriate
8118 and use it.
8119
8120 2000-06-02 Richard Henderson <rth@cygnus.com>
8121
8122 * lang.c (lang_get_alias_set): New.
8123
8124 2000-05-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
8125
8126 * parse.y (resolve_field_access): Complete the DECL_INITIAL tree
8127 before using it as the accessed field.
8128
8129 2000-05-31 Tom Tromey <tromey@cygnus.com>
8130
8131 * java-tree.h (boolean_array_vtable, byte_array_vtable,
8132 char_array_vtable, short_array_vtable, int_array_vtable,
8133 long_array_vtable, float_array_vtable, double_array_vtable):
8134 Declare.
8135 * expr.c (get_primitive_array_vtable): New function.
8136 (create_primitive_vtable): New function.
8137 (java_lang_expand_expr): Enable code to statically generate
8138 arrays.
8139 * decl.c (init_decl_processing): Create primitive vtables.
8140 (boolean_array_vtable, byte_array_vtable, char_array_vtable,
8141 short_array_vtable, int_array_vtable, long_array_vtable,
8142 float_array_vtable, double_array_vtable): Define.
8143
8144 2000-05-26 Zack Weinberg <zack@wolery.cumb.org>
8145
8146 * java/parse.y (find_applicable_accessible_methods_list):
8147 Don't add an uninitialized value to the list.
8148
8149 2000-05-25 Tom Tromey <tromey@cygnus.com>
8150
8151 * parse.y (resolve_field_access): Don't check DECL_LANG_SPECIFIC
8152 when trying to see if field's class should be initialized. Always
8153 initialize field's declaring class, not qualified class.
8154 For PR gcj/162.
8155
8156 * parse.y (array_constructor_check_entry): Pass `wfl_value', not
8157 `wfl_operator', to maybe_build_primttype_type_ref.
8158 Fixes PR gcj/235.
8159
8160 2000-05-23 Bryce McKinlay <bryce@albatross.co.nz>
8161
8162 * parse.y (patch_method_invocation): Don't try to lookup methods
8163 in primitive types.
8164
8165 2000-05-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8166
8167 * parse.y (resolve_field_access): Call the appropriate <clinit>
8168 before accessing the length of a static array. Craft a decl for
8169 the field while its time. Fixes PR gcj/129.
8170
8171 2000-05-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8172
8173 * parse.y (resolve_package): Correctly set `*next' (was off by
8174 one.)
8175 (resolve_qualified_expression_name): Fixed comment.
8176
8177 2000-04-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8178
8179 * jcf-parse.c (jcf_parse_source): Reset current_class and
8180 current_function_decl to NULL before parsing a new file.
8181
8182 2000-04-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8183
8184 * parse.y (block_end:): If the collected block doesn't feature a
8185 statement, insert an empty statement.
8186
8187 2000-04-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8188
8189 * parse.y (maybe_yank_clinit): New function.
8190 (maybe_generate_pre_expand_clinit): Always link <clinit> at the
8191 end of the list of methods belonging to a class.
8192 (java_complete_expand_method): Check whether <clinit> is really
8193 necessary and expand it accordingly.
8194
8195 2000-04-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8196
8197 * parse.y (fold_constant_for_init): Let VAR_DECL and FIELD_DECL be
8198 processed by the method's switch statement.
8199
8200 2000-05-19 Tom Tromey <tromey@cygnus.com>
8201
8202 * java-tree.h: Added init state enum.
8203 * decl.c (emit_init_test_initialization): Initialize class
8204 initialization check variable by looking at class' state.
8205
8206 2000-05-19 Tom Tromey <tromey@cygnus.com>
8207
8208 * java-tree.h (build_instanceof): Declare.
8209 (build_get_class): Declare.
8210 * parse.y (patch_binop): Use build_instanceof.
8211 * expr.c (build_instanceof): New function. If class is final,
8212 don't make a function call.
8213 (expand_java_INSTANCEOF): Use it.
8214 (build_get_class): New function.
8215
8216 2000-05-18 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
8217
8218 * jcf-write.c (generate_classfile): Scan the source_file for
8219 slashes with the right pointer variable.
8220
8221 2000-05-17 Andrew Cagney <cagney@b1.cygnus.com>
8222
8223 * lang.c (lang_decode_option): Update -Wunused flags by calling
8224 set_Wunused.
8225 * decl.c (poplevel): Replace warn_unused with warn_unused_label.
8226
8227 2000-05-09 Zack Weinberg <zack@wolery.cumb.org>
8228
8229 * check_init.c (check_init): Constify local char *.
8230 * class.c (push_class): Constify local char *.
8231 * java_tree.h: Update prototypes.
8232 * jcf-io.c (open_class): Constify filename parameter and
8233 return value.
8234 (find_class): Remove redundant string copy. Cast return from
8235 open_class.
8236 * jcf-parse.c (read_class, parse_class_file, yyparse):
8237 Constify local char *.
8238 * jcf-write.c (generate_bytecode_insns, generate_classfile):
8239 Constify local char *.
8240 * jcf.h (JCF): Constify filename and classname.
8241 (JCF_FINISH): Cast args to FREE to char * when appropriate.
8242 * lang.c (init_parse): Constify parameter and return value.
8243 * lex.c (java_get_line_col): Constify filename parameter.
8244 * parse.h: Constify parser_ctxt.filename. Update prototypes.
8245 * parse.y (java_parser_context_suspend,
8246 issue_warning_error_from_context, safe_layout_class): Constify
8247 local char *.
8248 * parse.c: Regenerate.
8249
8250 2000-05-08 Tom Tromey <tromey@cygnus.com>
8251
8252 * expr.c (build_jni_stub): Cache the result of
8253 _Jv_LookupJNIMethod.
8254
8255 2000-05-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8256
8257 * decl.c (predef_filenames_size): Now 7.
8258 (predef_filenames): New seventh entry.
8259
8260 2000-05-04 Tom Tromey <tromey@cygnus.com>
8261
8262 * boehm.c (mark_reference_fields): Don't mark RawData fields.
8263 Keep track of when we've seen a reference field after a
8264 non-reference field.
8265 (get_boehm_type_descriptor): Handle case where we see
8266 non-reference fields but no trailing reference field.
8267 * decl.c (rawdata_ptr_type_node): Define.
8268 (init_decl_processing): Initialize rawdata_ptr_type_node.
8269 * java-tree.h (rawdata_ptr_type_node): Declare.
8270
8271 2000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8272
8273 * jcf-dump.c (SPECIAL_IINC): Ensure arguments match format
8274 specifiers in calls to fprintf.
8275
8276 2000-05-03 Andrew Haley <aph@cygnus.com>
8277
8278 * expr.c (build_java_jsr): Use emit_jump, not expand_goto.
8279
8280 * javaop.h (WORD_TO_INT): New function.
8281 (IMMEDIATE_s4): Use WORD_TO_INT.
8282 * jcf.h (JPOOL_INT): Ditto.
8283
8284 * gjavah.c (decode_signature_piece): Don't treat `$' as namespace
8285 separator.
8286
8287 2000-04-19 Tom Tromey <tromey@cygnus.com>
8288
8289 * class.c (add_method_1): Set both DECL_EXTERNAL and METHOD_NATIVE
8290 on native function.
8291 * jcf-parse.c (parse_class_file): Call build_jni_stub for native
8292 JNI methods.
8293 * expr.c (build_jni_stub): New function.
8294 * lang-specs.h: -fjni and -femit-class-file are incompatible.
8295 * parse.c: Rebuilt.
8296 * parse.y (java_complete_expand_methods): Expand a native method
8297 and call build_jni_stub if -fjni given.
8298 * lang-options.h: Document -fjni.
8299 * lang.c (flag_jni): New global.
8300 (lang_f_options): Added `jni' entry.
8301 * java-tree.h (soft_lookupjnimethod_node,
8302 soft_getjnienvnewframe_node, soft_jnipopsystemframe_node):
8303 Declare.
8304 (flag_jni): Declare.
8305 (build_jni_stub): Declare.
8306 (struct lang_decl): Added `native' flag.
8307 (METHOD_NATIVE): Redefined to use `native' field of lang specific
8308 structure.
8309 * decl.c (soft_lookupjnimethod_node, soft_getjnienvnewframe_node,
8310 soft_jnipopsystemframe_node): New globals.
8311 (init_decl_processing): Set them. _Jv_InitClass only takes one
8312 argument.
8313
8314 * java-tree.def: Put into `C' mode.
8315
8316 2000-04-27 Tom Tromey <tromey@cygnus.com>
8317
8318 Fix for PR gcj/2:
8319 * expr.c (expand_invoke): Generate check to see if object pointer
8320 is null in nonvirtual invocation case.
8321 * java-tree.h (soft_nullpointer_node): Declare.
8322 * decl.c (soft_nullpointer_node): New global.
8323 (init_decl_processing): Initialize soft_nullpointer_node.
8324 * parse.y (invocation_mode): Return INVOKE_NONVIRTUAL for `final'
8325 or `private' methods.
8326 (patch_invoke): Handle INVOKE_NONVIRTUAL case.
8327
8328 2000-04-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
8329
8330 * decl.c (complete_start_java_method): Don't call _Jv_InitClass
8331 from <clinit>
8332
8333 2000-04-26 Tom Tromey <tromey@cygnus.com>
8334
8335 * zextract.c (find_zip_file_start): New function.
8336 (read_zip_archive): Use it.
8337
8338 2000-04-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
8339
8340 * parse.y (register_incomplete_type): Handle JDEP_ANONYMOUS.
8341
8342 2000-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
8343
8344 * class.c (common_enclosing_context_p): New function.
8345 * java-tree.h (common_enclosing_context_p): Added prototype.
8346 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Relaxed test to allow
8347 classes sharing an outer context with the current instance.
8348 * parse.y (build_access_to_thisn): Fixed leading comment.
8349 (verify_constructor_super): New local `supper_inner'. Skip
8350 enclosing context argument in the case of inner class constructors.
8351 (patch_method_invocation): Insert proper context as second
8352 parameter to pure inner class constructor super invocations.
8353
8354 2000-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
8355
8356 * parse.y (end_class_declaration): Reset the interface number
8357 counter.
8358
8359 2000-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
8360
8361 * parse.y (source_start_java_method): Deleted unnecessary code.
8362 (patch_method_invocation): Fixed comment.
8363
8364 2000-04-24 Robert Lipe <robertlipe@usa.net>
8365
8366 * parse.h (_jdep): Member `kind' now ENUM_BITFIELD.
8367
8368 2000-04-23 Tom Tromey <tromey@cygnus.com>
8369
8370 * boehm.c (mark_reference_fields): Use int_byte_position.
8371
8372 2000-04-22 Tom Tromey <tromey@cygnus.com>
8373
8374 * boehm.c (mark_reference_fields): Only call byte_position on
8375 non-static fields.
8376
8377 2000-04-22 Tom Tromey <tromey@cygnus.com>
8378
8379 * boehm.c (mark_reference_fields): Added `last_view_index'
8380 argument. Use DECL_FIELD_OFFSET to determine field's offset.
8381
8382 2000-04-20 Mo DeJong <mdejong@cygnus.com>
8383
8384 * parse.h (INTERFACE_INNER_MODIFIERS): New macro.
8385 * parse.y (check_class_interface_creation): Fixed comments. Select
8386 permitted modifiers for (inner) interfaces. Changed error message
8387 to report rejected modifiers used with local classes.
8388
8389 2000-04-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
8390
8391 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Immediate inner classes
8392 of directly inherited type considered in scope.
8393 * parse.y (do_resolve_class): Search inherited classes for inner
8394 classes.
8395
8396 2000-04-20 Tom Tromey <tromey@cygnus.com>
8397
8398 * parse.y (not_accessible_p): Use member's class, not current
8399 class, when doing inheritance check for protected reference.
8400 Fixes PR gcj/124.
8401
8402 2000-04-20 Jason Schroeder <shrode@subnature.com>
8403
8404 * jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction.
8405
8406 2000-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
8407
8408 * parse.y (lookup_field_wrapper): Search for final local aliases.
8409 (resolve_expression_name): Let lookup_field_wrapper search for
8410 final local aliases. Force the value of `name' if one is found.
8411 (qualify_ambiguous_name): CONVERT_EXPR is enough to now we have
8412 an expression name. Fixed comments.
8413
8414 2000-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
8415
8416 * parse.y (yyerror): `msg' can be null, don't use it in that case.
8417
8418 2000-04-19 Tom Tromey <tromey@cygnus.com>
8419
8420 * gjavah.c (cxx_keyword_subst): Avoid potential infinite loop.
8421
8422 2000-04-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
8423
8424 * parse.y (maybe_make_nested_class_name): Use `obstack_grow0'.
8425
8426 2000-04-18 Tom Tromey <tromey@cygnus.com>
8427
8428 PR gcj/211:
8429 * gjavah.c (utf8_cmp): Changed return value.
8430 (cxx_keyword_subst): Handle all C++ keywords. Allocate new return
8431 result.
8432 (cxx_keywords): New global.
8433 (get_field_name): Handle new result of cxx_keyword_subst.
8434 (print_method_info): Likewise.
8435
8436 2000-04-17 Bryce McKinlay <bryce@albatross.co.nz>
8437
8438 * gjavah.c (print_name_for_stub_or_jni): Don't prefix method names
8439 with a newline, for CNI.
8440 (print_stub_or_jni): Print a space or newline before method name for
8441 CNI as well as JNI.
8442 (print_cxx_classname): Don't write leading "::" in CNI stub method.
8443 (process_file): Include gcj/cni.h if generating CNI stubs.
8444
8445 2000-04-16 Tom Tromey <tromey@cygnus.com>
8446
8447 * gjavah.c (decompile_method): Use print_field_name.
8448 Fixes PR gcj/205.
8449
8450 2000-04-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
8451
8452 * parse.y (java_expand_classes): Reverse the package list once.
8453 (java_complete_lhs): PLUS_EXPR: don't try rhs and lhs at string
8454 reduction.
8455 (patch_binop): New temp `cn'. Call patch_string on LHS/RHS of
8456 the `==' and `!=' operators.
8457
8458 2000-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8459
8460 * jcf-write.c (generate_bytecode_insns): At invocation time,
8461 always relate an interface method to the type of its selector.
8462
8463 2000-04-05 Tom Tromey <tromey@cygnus.com>
8464
8465 Fix for PR gcj/2:
8466 * expr.c (expand_invoke): Generate check to see if object pointer
8467 is null in nonvirtual invocation case.
8468 * java-tree.h (soft_nullpointer_node): Declare.
8469 * decl.c (soft_nullpointer_node): New global.
8470 (init_decl_processing): Initialize soft_nullpointer_node.
8471 * parse.y (invocation_mode): Return INVOKE_NONVIRTUAL for `final'
8472 or `private' methods.
8473 (patch_invoke): Handle INVOKE_NONVIRTUAL case.
8474
8475 2000-04-05 Tom Tromey <tromey@cygnus.com>
8476
8477 Fix for PR gcj/140:
8478 * parse.y (check_final_assignment): Recognize assignments to the
8479 `length' field of an array when generating class files.
8480
8481 2000-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8482
8483 * class.c (decl_hash): Prototype removed.
8484 (decl_compare): Likewise.
8485
8486 2000-04-05 Tom Tromey <tromey@cygnus.com>
8487
8488 * parse.h (THIS_MODIFIER_ONLY): Changed meaning of `v' parameter.
8489 * parse.y (check_modifiers_consistency): Check for final/volatile
8490 clash. Fixes PR gcj/164.
8491
8492 2000-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8493
8494 * class.c: (java_hash_hash_tree_node): Renamed from `decl_hash',
8495 made global.
8496 (java_hash_compare_tree_node): Renamed from `decl_compare, made
8497 global.
8498 (add_method_1): Use `java_hash_hash_tree_node' and
8499 `java_hash_compare_tree_node'.
8500 * java-tree.h: (java_hash_hash_tree_node): Prototyped.
8501 (java_hash_compare_tree_node): Likewise.
8502 * parse.y (find_applicable_accessible_methods_list): Create,
8503 delete and use a hash table to remember already searched interfaces.
8504
8505 2000-04-03 Matt Welsh <mdw@cs.berkeley.edu>
8506
8507 * jcf-depend.c (add_entry): Fixed bug where list was always replaced
8508 with latest entry.
8509
8510 2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8511
8512 * boehm.c (mark_reference_fields, set_bit): Prototype.
8513 (set_bit): Un-ANSI-fy definition.
8514
8515 * class.c (init_test_hash_newfunc, decl_hash, decl_compare):
8516 Prototype.
8517
8518 * decl.c (emit_init_test_initialization): Likewise.
8519
8520 * gjavah.c (jni_print_char): Likewise.
8521
8522 * parse.y (create_new_parser_context): Likewise.
8523
8524 2000-03-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
8525
8526 * expr.c (java_lang_expand_expr): Added Anthony's Thu Jan 6 2000
8527 patch missing hunk. Fixed indentation.
8528
8529 2000-03-30 Tom Tromey <tromey@cygnus.com>
8530
8531 * gjavah.c (D_NAN_MASK): Only define as word-reversed when
8532 HOST_FLOAT_WORDS_BIG_ENDIAN and HOST_WORDS_BIG_ENDIAN disagree.
8533
8534 2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
8535
8536 * parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
8537 when negative *before* using it as an array index.
8538 * ChangeLog: Fixed typo.
8539
8540 2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
8541
8542 * parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
8543 to 0 when it reaches -1.
8544
8545 2000-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8546
8547 * jcf-parse.c (get_constant): Properly cast `num' during the
8548 invocation of `add_double'.
8549 * jcf-write.c (push_long_const): Properly cast `lo' before
8550 comparing it to short bounds.
8551 * parse-scan.y (interface_declaration:): Rule re-arrange so that
8552 `interface_body:' is reduced after the current interface is
8553 pushed.
8554
8555 2000-03-26 Tom Tromey <tromey@cygnus.com>
8556
8557 * jvspec.c (jvgenmain_spec): Add `%{<...}' construct for each
8558 Java-specific `-f' option.
8559
8560 2000-03-26 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8561
8562 * decl.c (init_decl_processing): Only call initialize_sizetypes once.
8563 Adjust order of making types.
8564 Make bitsize_*_node values.
8565
8566 2000-03-25 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8567
8568 * class.c (make_field_value): Use byte_position.
8569 * expr.c (JAVA_ARRAY_LENGTH_OFFSET): Use byte_position.
8570 (java_array_data_offset): Likewise.
8571 * java-tree.h (MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC): Add case to
8572 bzero call.
8573
8574 2000-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
8575
8576 * parse.y (check_abstract_method_definitions): New local
8577 `end_type_reached'. Make sure we also consider `end_type'.
8578 (java_check_abstract_method_definitions): Make sure we eventually
8579 consider `java.lang.Object'.
8580 (maybe_use_access_method): Don't use access method if not in the
8581 context of a pure inner class or if the method's context is right.
8582 (find_applicable_accessible_methods_list): New static flag
8583 `object_done'. Don't search abstract classes as interfaces. Fixed
8584 indentation. Fixed the `java.lang.Object' only search. Search
8585 class interface(s) first, then fully search enclosing contexts.
8586 (find_most_specific_methods_list): Pick the closest candidate when
8587 they're all abstract.
8588
8589 2000-03-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
8590
8591 * jcf-write.c (generate_bytecode_insns): TRY_FINALLY_EXPR:
8592 properly initialize `finished_label'. Don't emit gotos for empty
8593 try statements.
8594
8595 2000-03-19 Martin v. Löwis <loewis@informatik.hu-berlin.de>
8596
8597 * except.c (emit_handlers): Clear catch_clauses_last.
8598
8599 2000-03-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8600
8601 * parse.y (check_method_types_complete): New function.
8602 (create_class): Reset anonymous class counter only when seeing an
8603 non inner classe.
8604 (java_complete_class): JDEP_METHOD: Don't recompute signature
8605 if incomplete.
8606
8607 2000-03-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8608
8609 * class.c (build_static_ref): Fixed indentation in comment.
8610 * java-tree.def (TRY_EXPR): Fixed typo in name.
8611 (CLASS_LITERAL): Likewise.
8612 * java-tree.h: (TYPE_DOT_CLASS): New macro.
8613 (struct lang_type): New field `dot_class'.
8614 * jcf-write.c (generate_bytecode_insns): Fixed error message.
8615 (generate_classfile): Method `class$' is synthetic.
8616 * parse.y (build_do_class_method): New function.
8617 (build_dot_class_method_invocation): Likewise.
8618 (java_complete_expand_methods): Expand TYPE_DOT_CLASS if necessary.
8619 (resolve_qualified_expression_name): Handle CLASS_LITERAL.
8620 (qualify_ambiguous_name): Likewise.
8621 (patch_incomplete_class_ref): Invoke synthetic method if necessary.
8622 (build_try_statement): Fixed leading comment.
8623
8624 2000-03-17 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8625
8626 * class.c (make_field_value): Properly handle sizes.
8627 (get_dispatch_vector): Use tree_low_cst and host_integerp.
8628 (layout_class_method): Count using trees.
8629 * decl.c (push_promoted_type): Set TYPE_{MIN,MAX}_VALUE with copy_node.
8630 * expr.c (java_array_data_offset): Use int_bit_position.
8631 (build_newarray, build_anewarray): Use host_integerp and tree_low_cst.
8632 (build_invokevirtual): Use tree_low_cst and do computations with trees.
8633
8634 2000-03-16 Tom Tromey <tromey@cygnus.com>
8635
8636 * lang.c (flag_hash_synchronization): New global.
8637 (lang_f_options): Added `hash-synchronization'.
8638 * lang-options.h: Mention -fhash-synchronization.
8639 * java-tree.h (flag_hash_synchronization): Declare.
8640 * expr.c (java_lang_expand_expr): Only push `sync_info' value when
8641 hash table synchronization is disabled.
8642 * decl.c (init_decl_processing): Only push `sync_info' value when
8643 hash table synchronization is disabled.
8644 * class.c (make_class_data): Only push `sync_info' field when hash
8645 table synchronization is disabled. Removed dead code.
8646
8647 2000-03-16 Tom Tromey <tromey@cygnus.com>
8648
8649 * lang.c (lang_decode_option): Enable -Wunused when -Wall given.
8650
8651 2000-03-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
8652
8653 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Disregard anonymous
8654 classes.
8655 * parse.y (patch_method_invocation): Handle anonymous classes
8656 creation in static context.
8657
8658 2000-03-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
8659
8660 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): New macro.
8661 * parse.y (resolve_qualified_expression_name): Use it.
8662 (patch_method_invocation): Likewise.
8663
8664 2000-03-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
8665
8666 * parse.y (register_incomplete_type): JDEP_ENCLOSING set
8667 depending on the type of dependency which dictates what the
8668 current class is.
8669 (unresolved_type_p): Resolved types limited to the current class.
8670
8671 2000-03-15 Tom Tromey <tromey@cygnus.com>
8672
8673 * decl.c (init_decl_processing): Set type of `sync_info' to be
8674 pointer to Object.
8675
8676 * boehm.c (get_boehm_type_descriptor): Correctly compute `bits'.
8677 Correctly compute bit number for current slot. Zero `high' and
8678 `low' in DS_LENGTH case. Don't skip inherited fields. Use
8679 mark_reference_fields.
8680 (mark_reference_fields): New function.
8681
8682 2000-03-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
8683
8684 * parse.y (register_incomplete_type): Fixed initialization of
8685 JDEP_ENCLOSING.
8686
8687 2000-02-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
8688
8689 * parse-scan.y (inner_qualifier, inner_qualifier_length): New
8690 static globals.
8691 (push_class_context, pop_class_context): New function.
8692 (class_body:): Call pop_class_context.
8693 (interface_body:): Likewise.
8694 (INNER_QUALIFIER): New macro.
8695 (report_class_declaration): Changed output format and use
8696 INNER_QUALIFIER. Call push_class_context.
8697
8698 2000-02-14 Andrew Haley <aph@cygnus.com>
8699
8700 * check-init.c (check_init): Add new cases for unary and binary
8701 tree nodes.
8702
8703 2000-03-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
8704
8705 * parse.y (resolve_package): Set `next' once a type name has been
8706 progressively discovered.
8707 (resolve_qualified_expression_name): Propagate resolution only if
8708 there are remaining qualifiers. Take into account `q' might have
8709 been cleared after re-qualification.
8710 * parse.y (patch_method_invocation): New local `resolved'.
8711 Section dealing with qualified expression rewritten to use
8712 resolve_field_access.
8713
8714 2000-03-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
8715
8716 * parse.h (PUSH_CPC): Fixed indentation.
8717 (DEBUG_CPC): New macro.
8718 (SET_CPC_INITIALIZER_STMT, SET_CPC_STATIC_INITIALIZER_STMT,
8719 SET_CPC_INSTANCE_INITIALIZER_STMT): New macros.
8720 * parse.y (class_body_declaration:): Use
8721 SET_CPC_INSTANCE_INITIALIZER_STMT.
8722 (method_declaration:): Check for null current_function_decl.
8723 (static_initializer:): Use SET_CPC_STATIC_INITIALIZER_STMT.
8724 (java_parser_context_pop_initialized_field): Better handling of
8725 empty lists.
8726 (maybe_make_nested_class_name): Mark nested class name as
8727 qualified when necessary.
8728 (end_class_declaration): Don't call java_parse_context_resume when
8729 one or more error occurred.
8730 (add_inner_class_fields): Use SET_CPC_INITIALIZER_STMT.
8731 (register_fields): Use SET_CPC_STATIC_INITIALIZER_STMT and
8732 SET_CPC_INITIALIZER_STMT.
8733 (method_header): Check for inner classes declaring static methods.
8734 (resolve_qualified_expression_name): Handle situation where `this'
8735 is implied.
8736
8737 2000-03-13 Hans Boehm <boehm@acm.org>
8738
8739 * typeck.c (build_prim_array_type): Correctly set the high word too.
8740
8741 2000-03-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
8742
8743 * parse.y (java_complete_expand_methods): Leave <clinit> out of
8744 ordinary methods.
8745 (maybe_generate_pre_expand_clinit): Put <clinit> at the end of the
8746 list of methods for interfaces.
8747
8748 2000-03-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
8749
8750 * parse.y (qualify_ambiguous_name): Properly handle expressions
8751 using `null'.
8752
8753 2000-03-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
8754
8755 * parse.y (check_final_assignment): Extended to process
8756 COMPOUND_EXPR.
8757 (patch_assignment): Have check_final_assignment called only once.
8758
8759 2000-03-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
8760
8761 * java-tree.h (IS_INIT_CHECKED): New flag.
8762 * check-init.c (check_init): Test and set IS_INIT_CHECKED.
8763 * parse.y (patch_string): Call force_evaluation_order on the
8764 completed string concatenation tree.
8765 * expr.c (force_evaluation_order): Call force_evaluation_order on
8766 function's arguments too.
8767
8768 2000-03-06 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8769
8770 * decl.c (emit_init_test_initialization): Mark KEY as unused.
8771 * expr.c (build_newarray): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
8772 (build_anewarray): Likewise.
8773 * parse.y (patch_newarray): Likewise.
8774 * parse.c: Regenerated.
8775
8776 2000-03-06 Bryce McKinlay <bryce@albatross.co.nz>
8777
8778 * decl.c (init_decl_processing): Added new class fields `depth',
8779 `ancestors', and `idt' to class_type_node. Use
8780 _Jv_LookupInterfaceMethodIdx for soft_lookupinterfacemthod_node.
8781 * class.c (make_class_data): Push initial values for new fields.
8782 * java-tree.h: Updated prototype for `build_invokeinterface'.
8783 * expr.c (build_invokeinterface): Changed parameters to accept
8784 `method' tree. Calculate index of `method' in its declaring
8785 interface. Build call to _Jv_LookupInterfaceMethodIdx.
8786 (expand_invoke): Call `build_invokeinterface' with new parameters.
8787 * parse.y (patch_invoke): Call `build_invokeinterface' with new
8788 parameters.
8789
8790 2000-03-06 Bryce McKinlay <bryce@albatross.co.nz>
8791
8792 * typeck.c (lookup_do): Search superinterfaces first
8793 when looking up an interface method. From Godmar Back
8794 <gback@cs.utah.edu>
8795
8796 2000-03-06 Tom Tromey <tromey@cygnus.com>
8797
8798 * Make-lang.in (JAVA_SRCS): Added boehm.c, lex.c.
8799
8800 2000-03-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8801
8802 * java-tree.h (lookup_argument_method2): Declared.
8803 (safe_layout_class): Prototype moved from parse.h.
8804 * parse.h (safe_layout_class): Prototype moved to java-tree.h.
8805 * parse.y (java_check_regular_methods): Local `super_class' gone.
8806 Call lookup_argument_method2 instead of lookup_argument_method.
8807 Perform modifier match for methods found declared in implemented
8808 interfaces. Fixed indentation problem. Overriding/hiding error
8809 report to take place only for methods found in classes.
8810 * typeck.c (lookup_argument_method): Changed leading
8811 comment. Re-written by calling lookup_do.
8812 (lookup_argument_method2): New function.
8813 (lookup_java_method): Re-written by calling lookup_do.
8814 (lookup_do): New function.
8815
8816 2000-03-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8817
8818 * check-init.c (check_init): Removed dead code. Handle (blank)
8819 final variables.
8820 * parse.y (declare_local_variables): New local `final_p', set it
8821 and use it to initialize LOCAL_FINAL.
8822 (check_final_assignment): Only check FIELD_DECLs.
8823
8824 2000-02-17 Tom Tromey <tromey@cygnus.com>
8825
8826 * Makefile.in (JAVA_OBJS): Added boehm.o.
8827 (boehm.o): New target.
8828 * Make-lang.in (JAVA_SRCS): Added boehm.c.
8829 * java-tree.h (flag_use_boehm_gc): Declare.
8830 (get_boehm_type_descriptor): Declare.
8831 * lang.c (lang_f_options): Added `use-boehm-gc'.
8832 (flag_use_boehm_gc): New global.
8833 * lang-options.h: Added -fuse-boehm-gc.
8834 * boehm.c: New file.
8835 * class.c (get_dispatch_table): If class uses a Boehm type
8836 descriptor, put it in the vtable.
8837 (make_class_data): Removed dead code.
8838
8839 2000-03-03 Per Bothner <per@bothner.com>
8840
8841 * decl.c (init_decl_processing): Initialize sizetype properly.
8842
8843 2000-03-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8844
8845 * java-tree.h (LOCAL_CLASS_P): New flag usage and macro.
8846 (PURE_INNER_CLASS_DECL_P, PURE_INNER_CLASS_TYPE_P): New macros.
8847 * jcf-dump.c (HANDLE_INNERCLASSES_ATTRIBUTE): New macro.
8848 * jcf-parse.c (HANDLE_INNERCLASSES_ATTRIBUTE): Likewise.
8849 (jcf_parse): New local `current'. Load innerclasses seen in outer
8850 context being processed.
8851 * jcf-reader.c (HANDLE_INNERCLASSES_ATTRIBUTE): New macro.
8852 * jcf-write.c (append_innerclasses_attribute): New function.
8853 (append_innerclasses_attribute_entry): Likewise.
8854 (get_access_flags): Handle static classes. Set anonymous and local
8855 classes to be private.
8856 (generate_classfile): Attribute count adjusted. Call
8857 append_innerclasses_attribute.
8858 * parse.h (SKIP_THIS_AND_ARTIFICIAL_PARMS): Use
8859 PURE_INNER_CLASS_TYPE_P.
8860 * parse.y (parser_qualified_classname): New parameter `is_static',
8861 produce non qualified name accordingly.
8862 (block_statement:): Set LOCAL_CLASS_P when declaring local class.
8863 (create_interface): Added argument to parser_qualified_classname.
8864 (create_class): Added argument to parser_qualified_classname. Setup
8865 alias for top level classes. Use PURE_INNER_CLASS_DECP_P.
8866 (add_inner_class_fields): Fixed indentation.
8867 (method_declarator): Use PURE_INNER_CLASS_DECP_P.
8868 (method_declarator): Fixed typo in comment.
8869 (craft_constructor): Use PURE_INNER_CLASS_DECP_P.
8870 (build_current_thisn): Likewise.
8871 (patch_method_invocation): Likewise.
8872
8873 2000-03-01 Martin von Loewis <loewis@informatik.hu-berlin.de>
8874
8875 * decl.c (current_function_decl): Move to toplev.c.
8876
8877 2000-02-28 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8878
8879 * java-tree.h (LABEL_PC): Relect name changes in ../tree.h.
8880 (DECL_BIT_INDEX): Use underlying representation.
8881 * parse.h (DECL_INHERITED_SOURCE_LINE): Likewise.
8882
8883 2000-02-27 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8884
8885 * expr.c (build_java_ret): Pass proper type to size_binop.
8886
8887 2000-02-25 Anthony Green <green@cygnus.com>
8888
8889 * expr.c (build_class_init): Mark the decl to be ignored by
8890 check_init.
8891 * java-tree.h (DECL_BIT_INDEX): Move definition from check-init.c
8892 * check-init.c: Move DECL_BIT_INDEX to java-tree.h
8893 * class.c (init_test_hash_newfunc): New function.
8894 (decl_hash): New function.
8895 (decl_compare): New function.
8896 * decl.c (emit_init_test_initialization): New function.
8897 (complete_start_java_method): Traverse the init test hashtable,
8898 calling emit_init_test_initialization.
8899 (always_initialize_class_p): Define.
8900 * expr.c (build_class_init): Use initialization tests when
8901 emitting class initialization code.
8902 (always_initialize_class_p): Declare.
8903 * jcf-parse.c (parse_class_file): Set always_initialize_class_p to
8904 1.
8905 * java-tree.h: Include hash.h.
8906 (DECL_FUNCTION_INIT_TEST_TABLE): Define.
8907 (struct lang_decl): Add init_test_table field.
8908 (init_test_hash_entry): Define.
8909
8910 2000-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
8911
8912 * gjavah.c (main): Avoid using `argi' to report unimplemented
8913 options.
8914
8915 2000-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
8916
8917 * jcf-write.c (generate_bytecode_insns): TRY_FINALLY_EXPR:
8918 initialize locals to avoid warnings. Local `exception_type' moved
8919 into if statement.
8920
8921 2000-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
8922
8923 * parse.y (resolve_expression_name): Use `orig' as a second
8924 argument to resolve_field_access.
8925 (resolve_field_access): Removed unnecessary code when dealing with
8926 static fields.
8927
8928 2000-02-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
8929
8930 * class.c (push_super_field): Don't push the field twice.
8931 * jcf-parse.c (parse_source_file): Call java_reorder_fields.
8932 * parse.h (java_reorder_fields): Prototyped.
8933 * parse.y (java_reorder_fields): New function.
8934 (java_layout_class): Simplified not to worry about re-ordering.
8935
8936 2000-02-23 Tom Tromey <tromey@cygnus.com>
8937
8938 * gjavah.c (print_name): In JNI case, correctly quote string.
8939 (print_method_info): Don't handle overrides in JNI mode.
8940
8941 2000-02-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
8942
8943 * parse.y (init_decl_processing): `_Jv_IsInstanceOf' returned
8944 value type set to `boolean_type_node'.
8945
8946 2000-01-18 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de>
8947
8948 * jcf-dump.c (main): Test for correct condition after
8949 output file creation.
8950
8951 2000-02-19 Anthony Green <green@cygnus.com>
8952
8953 * jcf-depend.c (add_entry): Fix test for first list entry.
8954
8955 2000-02-19 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8956
8957 * class.c (build_class_ref, push_super_field): Set DECL_SIZE_UNIT.
8958 * constants.c (build_constants_constructor): Likewise.
8959
8960 2000-02-19 Anthony Green <green@cygnus.com>
8961
8962 * jcf-depend.c (add_entry): Add entries to the end of the list.
8963
8964 1999-11-03 Pekka Nikander <pekka.nikander@hut.fi>
8965
8966 * decl.c (INT_TYPE_SIZE): Define if necessary.
8967 (expand_java_return): Handle the case of a native integer smaller
8968 than a JVM integer.
8969
8970 2000-02-18 Martin von Loewis <loewis@informatik.hu-berlin.de>
8971
8972 * gjavah.c (help): Use GCCBUGURL.
8973 * jv-scan.c (help): Likewise.
8974 * jcf-dump.c (help): Likewise.
8975
8976 2000-02-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8977
8978 * jcf-write.c (generate_bytecode_insns): Don't generate empty
8979 `finally' clauses.
8980
8981 2000-02-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8982
8983 * jcf-parse.c (load_class): Call `fatal' if no file containing
8984 the target class are found.
8985
8986 2000-02-16 Zack Weinberg <zack@wolery.cumb.org>
8987
8988 * Makefile.in (PARSE_C, PARSE_SCAN_C): Move dependencies on
8989 lex.c, lex.h, and PARSE_H to...
8990 (parse.o, parse-scan.o): ...here, respectively.
8991
8992 * lex.c: Split out code that may trigger SIGFPE from yylex()
8993 to its own function.
8994 * lex.h (JAVA_FLOAT_RANGE_ERROR): Don't set value.
8995
8996 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8997
8998 * Make-lang.in (jvspec.o): Depend on $(GCC_H), not gcc.h.
8999
9000 2000-02-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
9001
9002 * parse.y (outer_field_access_p): Stop in time when outer contexts
9003 are exhausted.
9004 (resolve_qualified_expression_name): Properly qualify *everything*
9005 after a package.type to be resoled as expression names.
9006 (find_applicable_accessible_methods_list): Save/restore `class' to
9007 isolate it from a possible outer context search.
9008
9009 2000-02-15 Tom Tromey <tromey@cygnus.com>
9010
9011 * gjavah.c (jni_print_char): New function.
9012 (print_full_cxx_name): Use it.
9013 (decode_signature_piece): Likewise.
9014 (print_cxx_classname): Likewise.
9015
9016 2000-02-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9017
9018 * Makefile.in (jv-scan, jcf-dump, gcjh): Depend on and link with
9019 version.o.
9020 (jcf-dump.o, gjavah.o, jv-scan.o): Depend on version.h.
9021
9022 * gjavah.c: Include version.h.
9023
9024 * jcf-dump.c: Likewise.
9025
9026 * jv-scan.c: Likewise.
9027
9028 2000-02-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
9029
9030 * parse.y (outer_field_access_fix): First parameter now a tree
9031 node. Check for assignment to final. First argument to
9032 build_outer_field_access_fix modified to accommodate prototype.
9033 (build_outer_field_access): Don't check for assignment to final
9034 here.
9035 (java_complete_lhs): MODIFY_EXPR case: Check for `error_mark_node'
9036 possibly returned by outer_field_access_fix. Changed
9037 outer_field_access_fix's first argument.
9038 (check_final_assignment): $finit$'s context is OK.
9039 (patch_unaryop): Use node instead of its line/column value when
9040 calling outer_field_access_fix.
9041
9042 2000-02-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
9043
9044 * parse.y (interface_declaration:): No longer tagged
9045 <node>. Re-installed default action.
9046 (class_member_declaration:): Handle inner interfaces.
9047 (interface_member_declaration): Handle inner interfaces and
9048 classes.
9049 (create_interface): Push error if one seen. Suspend parsing
9050 context when processing an inner interface.
9051 (register_fields): Inner class static field limitations not to
9052 apply to inner interfaces.
9053
9054 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9055
9056 * jcf-parse.c (load_class): Update `java_error_count' when a
9057 class' file can't be found.
9058 (parse.y): Avoid (byte)code generation when errors seen.
9059
9060 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9061
9062 * parse.y (java_complete_lhs): Handle TRUNC_DIV_EXPR. Ensure `fatal'
9063 decodes a valid node.
9064 (patch_binop): Handle TRUNC_DIV_EXPR.
9065
9066 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9067
9068 * parse.y (resolve_package): New local `acc'. Try to progressively
9069 build and guess a package and type name.
9070
9071 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9072
9073 * parse.y (find_applicable_accessible_methods_list): Load and
9074 layout the search class if necessary.
9075 (java_complete_tree): Keep to original type of the folded initial
9076 value.
9077
9078 2000-02-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9079
9080 * class.c (layout_class): Set and test CLASS_BEING_LAIDOUT.
9081 Generate error message if circularity is detected. New static
9082 local `list'.
9083 * java-tree.h (CLASS_BEING_LAIDOUT): New flag usage, new macro. *
9084 * jcf-write.c (generate_bytecode_insns): Very simply handle
9085 SAVE_EXPR.
9086 * parse.y (java_check_circular_reference): Use
9087 `cyclic_inheritance_report' during report, if necessary.
9088 (java_complete_lhs): fixed comment with `THROW_EXPR:' case. Avoid
9089 walking NEW_ARRAY_INIT twice.
9090
9091 2000-02-09 Tom Tromey <tromey@cygnus.com>
9092
9093 * parse.y (check_class_interface_creation): Allow inner classes to
9094 be `private' or `protected', check modifiers' consistency. Prevent
9095 block local classes from bearing any modifiers.
9096
9097 2000-02-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9098
9099 * except.c (check_start_handlers): Re-add prototype lost in last
9100 patch.
9101 (maybe_start_try): Remove excess argument to `check_start_handlers'.
9102
9103 2000-02-09 Andrew Haley <aph@cygnus.com>
9104
9105 * decl.c (clear_binding_level): Remove excess initializer.
9106 (maybe_poplevels): Remove unused variable.
9107 (force_poplevels): Ditto.
9108 (struct binding_level): Add comment.
9109
9110 2000-02-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
9111
9112 * jcf-write.c (generate_classfile): Don't consider
9113 pre-initialization with reference value (use <clinit> instead.)
9114 * parse.y (java_fix_constructors): No generated constructor for
9115 interfaces.
9116 (build_outer_field_access): Removed debug message.
9117 (outer_field_expanded_access_p): Adapted to bytecode generation.
9118 (build_outer_field_access_method): Use fix_method_argument_names.
9119 (build_outer_method_access_method): Fixed indentation. Added
9120 comment. Handle access method generation for static and also void
9121 methods.
9122 (build_access_to_thisn): Inserted debug message.
9123 (maybe_build_thisn_access_method): Use fix_method_argument_names.
9124 (resolve_qualified_expression_name): Fixed comment.
9125 (not_accessible_p): Adapted to bytecode generation. Added comment.
9126 (patch_method_invocation): Added comment.
9127 (maybe_use_access_method): Fixed leading comment. Handle static
9128 methods.
9129 (java_complete_lhs): Don't shortcut handling of initialized upon
9130 declaration String type static fields when generating bytecode.
9131 (patch_unaryop): Handle outer field access when generating
9132 bytecode.
9133
9134 2000-02-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
9135
9136 * java-tree.h (FIELD_THISN): New macro.
9137 * jcf-write.c (append_synthetic_attribute): New function.
9138 (generate_classfile): Set "Synthetic" attribute on this$<n>,
9139 val$<name> fields, access$<n> and $finit$ methods. Fixed indentation.
9140 * parse.y (add_inner_class_fields): Set FIELD_THISN for created
9141 this$<n> fields.
9142 (build_outer_field_access): Turned on access functions usage and
9143 generation when compiling to bytecode.
9144 (maybe_use_access_method): Likewise.
9145
9146 2000-01-25 Andrew Haley <aph@cygnus.com>
9147
9148 * java-except.h (struct eh_range): Add `expanded' field.
9149 (maybe_start_try): Add end_pc arg.
9150 (maybe_end_try): Ditto.
9151 * java-tree.h (force_poplevels): new function.
9152 * expr.c (expand_byte_code): Don't call maybe_start_try or
9153 maybe_end_try.
9154 * except.c (add_handler): Reset expanded.
9155 (expand_start_java_handler): Set expanded.
9156 (check_start_handlers): Don't expand a start handler that's
9157 already been expanded.
9158 (maybe_start_try): Add end_pc arg. Only expand a handler which
9159 ends after end_pc.
9160 (expand_end_java_handler): call force_poplevels.
9161 (force_poplevels): new function.
9162 * decl.c (binding_level): Add start_pc of binding level.
9163 (maybe_pushlevels): Call maybe_start_try when pushing binding
9164 levels.
9165 (maybe_poplevels): Call maybe_end_try when popping binding levels.
9166 (LARGEST_PC): Define.
9167 (clear_binding_level): Use LARGEST_PC.
9168
9169 * java-tree.h (DEBUG_JAVA_BINDING_LEVELS): new define.
9170 * decl.c (DEBUG_JAVA_BINDING_LEVELS): new define.
9171 (binding_depth, is_class_level, current_pc): new variables.
9172 (struct binding_level): ditto.
9173 (indent): new function.
9174 (push_jvm_slot): add debugging info.
9175 (maybe_pushlevels): ditto.
9176 (maybe_poplevels): ditto.
9177 (pushlevel): ditto.
9178 (poplevel): ditto.
9179 (start_java_method): ditto.
9180 (give_name_to_locals): comment only.
9181 * except.c (binding_depth, is_class_level, current_pc):
9182 new variables.
9183 (expand_start_java_handler): add debugging info.
9184 (expand_end_java_handler): ditto.
9185
9186 2000-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9187
9188 * gjavah.c (overloaded_jni_method_exists_p): Add prototype.
9189 (print_name_for_stub_or_jni, process_file): Constify a char*.
9190
9191 2000-02-03 Tom Tromey <tromey@cygnus.com>
9192
9193 * jcf-io.c (jcf_print_utf8_replace): Handle UTF-8 input.
9194
9195 2000-01-31 Scott Bambrough <scottb@netwinder.org>
9196
9197 * gcc/java/javaop.h (WORDS_TO_DOUBLE): Allow WORDS_TO_DOUBLE to
9198 assemble doubles correctly when HOST_FLOAT_WORDS_BIG_ENDIAN is
9199 defined to be 1.
9200
9201 2000-02-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
9202
9203 * java-tree.def (INSTANCE_INITIALIZERS_EXPR): New tree code.
9204 * java-tree.h (TYPE_II_STMT_LIST): New macro.
9205 (struct lang_type): New field `ii_block'.
9206 * lex.c (java_init_lex): Use CPC_INITIALIZER_LIST,
9207 CPC_STATIC_INITIALIZER_LIST and CPC_INSTANCE_INITIALIZER_LIST.
9208 * parse.h (struct parser_ctxt): New field `instance_initializers'.
9209 (CPC_INITIALIZER_LIST, CPC_STATIC_INITIALIZER_LIST,
9210 CPC_INSTANCE_INITIALIZER_LIST, CPC_INITIALIZER_STMT,
9211 CPC_STATIC_INITIALIZER_STMT, CPC_INSTANCE_INITIALIZER_STMT): New
9212 macros.
9213 * parse.y (add_instance_initializer): New function.
9214 (in_instance_initializer): New static global.
9215 (class_body_declaration:): Link instance initializer block.
9216 (static_initializer:): Use CPC_STATIC_INITIALIZER_STMT.
9217 (array_creation_expression:): Remove unused local.
9218 (java_parser_context_push_initialized_field): Fixed leading
9219 comment. Use CPC_STATIC_INITIALIZER_LIST, CPC_INITIALIZER_LIST and
9220 CPC_INSTANCE_INITIALIZER_LIST.
9221 (java_parser_context_pop_initialized_field): Likewise.
9222 (add_inner_class_fields): Use CPC_INITIALIZER_STMT.
9223 (register_fields): Use CPC_STATIC_INITIALIZER_STMT and
9224 CPC_INITIALIZER_STMT.
9225 (fix_constructors): New local `class_type'. Use it. Call
9226 add_instance_initializer.
9227 (java_complete_lhs): New case INSTANCE_INITIALIZERS_EXPR.
9228 (patch_return): Forbid return in instance initializers.
9229 (patch_throw_statement): Enforce exception handling in the context
9230 of instance initializers.
9231
9232 2000-02-03 Tom Tromey <tromey@cygnus.com>
9233
9234 * Make-lang.in (java.mostlyclean): Remove executables in
9235 `mostlyclean'.
9236
9237 2000-01-31 Scott Bambrough <scottb@netwinder.org>
9238
9239 * gcc/java/gjavah.c (D_NAN_MASK): Alternate definition required when
9240 HOST_FLOAT_WORDS_BIG_ENDIAN is defined to be 1.
9241 (java_float_finite): Convert to use union Word from javaop.h.
9242 (java_double_finite): Convert to use union DWord from javaop.h.
9243
9244 2000-02-02 Tom Tromey <tromey@cygnus.com>
9245
9246 * gjavah.c (options): Added `jni' entry.
9247 (help): Document -jni.
9248 (flag_jni): New global.
9249 (process_file): Handle JNI output. Don't print text from
9250 -prepend, -add, etc, when generating stubs. Only remove `.class'
9251 suffix if it actually exists.
9252 (main): Create a `.c' file when run with `--jni --stubs'. Create
9253 correct output file name with `--jni'.
9254 (print_include): Mangle header name differently in JNI case.
9255 (HANDLE_METHOD): In JNI mode, call print_method_info to generate
9256 method list.
9257 (print_method_info): Handle JNI case. Put signature info into
9258 method name. Handle case when STREAM is NULL.
9259 (print_name_for_stub_or_jni): New function.
9260 (print_stub_or_jni): Renamed from `print_stub'. Handle JNI.
9261 (print_cxx_classname): Handle JNI.
9262 (print_full_cxx_name): Likewise.
9263 (decode_signature_piece): Likewise.
9264 (overloaded_jni_method_exists_p): New function.
9265 (struct method_name): Added `signature' and `sig_length' fields.
9266 (HANDLE_END_FIELD): Do nothing in JNI mode.
9267
9268 2000-02-02 Tom Tromey <tromey@cygnus.com>
9269
9270 * jv-scan.c: Include version.c, <getopt.h>.
9271 (LONG_OPT, OPT_HELP, OPT_VERSION): New macros.
9272 (options): New array.
9273 (usage): New function.
9274 (version): New function.
9275 (main): Use getopt_long to parse command line.
9276 * jcf-dump.c: Include version.c, <getopt.h>.
9277 (LONG_OPT, OPT_classpath, OPT_CLASSPATH, OPT_HELP, OPT_VERSION,
9278 OPT_JAVAP): New macros.
9279 (options): New array.
9280 (usage): Return `void'. Changed message.
9281 (help): New function.
9282 (version): New function.
9283 (main): Use getopt_long_only to parse command line.
9284 * gjavah.c: Include <getopt.h>.
9285 (LONG_OPT, OPT_classpath, OPT_CLASSPATH, OPT_HELP, OPT_TEMP,
9286 OPT_VERSION, OPT_PREPEND, OPT_FRIEND, OPT_ADD, OPT_APPEND, OPT_M,
9287 OPT_MM, OPT_MG, OPT_MD, OPT_MMD): New macros.
9288 (options): New array.
9289 (java_no_argument): Removed.
9290 (help): Updated with missing options.
9291 (main): Use getopt_long_only to parse command line.
9292 (usage): Changed message.
9293
9294 2000-02-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
9295
9296 * java-tree.def (NEW_ANONYMOUS_ARRAY_EXPR): New tree code.
9297 * parse.h (ANONYMOUS_ARRAY_BASE_TYPE, ANONYMOUS_ARRAY_DIMS_SIG,
9298 ANONYMOUS_ARRAY_INITIALIZER): New access macros.
9299 * parse.y (array_creation_expression:): Handle anonymous arrays.
9300 (build_array_from_name): Don't set `ret_name' if null.
9301 (resolve_qualified_expression_name): New case NEW_ANONYMOUS_ARRAY_EXPR.
9302 (qualify_ambiguous_name): Likewise.
9303 (java_complete_expand_class): Likewise.
9304
9305 2000-02-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
9306
9307 * java-tree.def (SYNCHRONIZED_EXPR): Fixed typo.
9308 * parse.h (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID): New macro.
9309 (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR): Likewise.
9310 (SKIP_THIS_AND_ARTIFICIAL_PARMS): Use DECL_FINIT_P.
9311 (AIPL_FUNCTION_FINIT_INVOCATION): Replaces
9312 AIPL_FUNCTION_COMPLETED_INVOCATION.
9313 (AIPL_FUNCTION_CTOR_INVOCATION): Replaces
9314 AIPL_FUNCTION_INVOCATION_READY.
9315 (AIPL_FUNCTION_DECLARATION): New enum entry.
9316 * parse.y (reorder_static_initialized): New function.
9317 (java_parser_context_pop_initialized_field): Use it.
9318 (add_inner_class_fields): Use
9319 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID. Comment
9320 augmented. Install marker after last alias initializer, if any.
9321 (generate_finit): Fixed typo. Don't try to retain only the used
9322 fields.
9323 (method_header): Compute and set DECL_FUNCTION_NAP.
9324 (method_declarator): Fixed comment. Insert alias initializer in
9325 parameter list.
9326 (build_alias_initializer_parameter_list): Fixed leading
9327 comment. New case for AIPL_FUNCTION_DECLARATION. Old enum value
9328 replaced by new ones. Use MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID.
9329 (java_complete_expand_class): Code to retain only used aliases
9330 removed.
9331 (java_complete_expand_methods): New local `first_decl'. Generate
9332 $finit$ first, then expand the constructors, regular methods and
9333 <clinit>.
9334 (java_complete_expand_method): Don't report error on missing
9335 return statement if previously detected bogus.
9336 (fix_constructors): Don't patch constructor parameters list.
9337 (patch_method_invocation): Use new AIPL enum values. Reverse
9338 alias initializer list for anonymous classes.
9339
9340 2000-01-30 Anthony Green <green@redhat.com>
9341
9342 * jcf-write.c (generate_bytecode_insns): Use TYPE_IS_WIDE to
9343 determine how many stack slots to pop.
9344
9345 2000-01-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
9346
9347 * parse.y (formal_parameter:): Set `$$' to NULL_TREE for better
9348 error handling/recovery.
9349 * java-tree.h (SYNCHRONIZED_EXPR): Fixed typo in comment.
9350
9351 2000-01-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
9352
9353 * java-tree.h (ARG_FINAL_P, FIELD_LOCAL_ALIAS,
9354 FIELD_LOCAL_ALIAS_USED): New macros.
9355 (DECL_FUNCTION_NAP): New macro.
9356 (struct lang_decl): New field `nap'.
9357 (TYPE_FINIT_STMT_LIST, TYPE_CLINIT_STMT_LIST): New macros.
9358 (struct lang_type): New fields `finit_stmt_list' and
9359 `clinit_stmt_list'.
9360 (CLASS_HAS_FINIT_P): Defined using TYPE_FINIT_STMT_LIST.
9361 * parse.h (MANGLE_OUTER_LOCAL_VARIABLE_NAME): New macro.
9362 (SKIP_THIS_AND_ARTIFICIAL_PARMS, MARK_FINAL_PARMS,
9363 UNMARK_FINAL_PARMS, CRAFTED_PARAM_LIST_FIXUP): New macros.
9364 (AIPL_FUNCTION_CREATION, AIPL_FUNCTION_COMPLETED_INVOCATION,
9365 AIPL_FUNCTION_INVOCATION_READY): New enum fields.
9366 (BUILD_THROW): Macro line separator re-indented.
9367 * parse.y (end_class_declaration): New function.
9368 (maybe_generate_pre_expand_clinit): New name for
9369 java_pre_expand_clinit. Create <clinit> off TYPE_CLINIT_STMT_LIST,
9370 pre-expand static fields.
9371 (maybe_generate_clinit): Function deleted.
9372 (check_for_static_method_reference): Prototype's parameter list
9373 indented.
9374 (generate_finit): New name for maybe_generate_finit. Changed
9375 leading comment. Function rewritten to use
9376 TYPE_FINIT_STMT_LIST. Call build_alias_initializer_parameter_list.
9377 (build_alias_initializer_parameter_list): New function.
9378 (java_parser_context_pop_initialized_field): Likewise.
9379 (add_inner_class_fields): Likewise.
9380 (type_declaration:): Call end_class_declaration.
9381 (class_member_declaration:): Likewise.
9382 (formal_parameter_list:): Fixed typos.
9383 (formal_parameter:): Use ARG_FINAL_P to mark created tree list
9384 element. Improved error handling.
9385 (block_statement:): Call end_class_declaration.
9386 (anonymous_class_creation:): Likewise.
9387 (create_anonymous_class): Fixed comments.
9388 (create_class): Call add_inner_class_fields.
9389 (register_fields): Set FIELD_LOCAL_ALIAS according to ARG_FINAL_P.
9390 (method_header): Use MARK_FINAL_PARMS.
9391 (finish_method_declaration): Use UNMARK_FINAL_PARMS.
9392 (method_declarator): Propagate final argument flag.
9393 (craft_constructor): New local `artificial'. Call
9394 build_alias_initializer_parameter_list. Use
9395 CRAFTED_PARAM_LIST_FIXUP, assign DECL_FUNCTION_NAP.
9396 (source_start_java_method): Mark parm decls with LOCAL_FINAL if
9397 necessary.
9398 (complete_expand_class): Get rid of unused outer context local
9399 alias fields.
9400 (java_complete_expand_methods): Fixed leading
9401 comment. Generate/pre-expand <clinit> first. Changed method
9402 expansion order to regular, $finit$, constructors, <clinit>.
9403 (java_complete_expand_method): Set current_function_decl.
9404 (fix_constructors): Fix constructor parameter list to account for
9405 outer context local alias initializers.
9406 (verify_constructor_super): Use SKIP_THIS_AND_ARTIFICIAL_PARMS.
9407 (resolve_expression_name): Lookup outer context local aliases. New
9408 local `access', use it.
9409 (patch_method_invocation): Patch inner class ctor invocation with
9410 outer context local aliases initialization values. $finit$
9411 invocation patching now includes things generated with
9412 build_alias_initializer_parameter_list.
9413 (argument_types_convertible): Use SKIP_THIS_AND_ARTIFICIAL_PARMS.
9414 (build_super_invocation): Likewise.
9415 (patch_assignment): Changed comment.
9416
9417 2000-01-27 Andrew Haley <aph@cygnus.com>
9418
9419 * jcf-write.c (emit_goto): RESERVE 3 bytes for insn.
9420 (emit_if): Ditto.
9421 (emit_jsr): Ditto.
9422
9423 2000-01-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9424
9425 * parse.h (OBSOLETE_MODIFIER_WARNING): Don't use ANSI string
9426 concatenation.
9427 (OBSOLETE_MODIFIER_WARNING2): New macro allowing two args.
9428
9429 * parse.y (register_fields): Don't pass a format specifier to
9430 OBSOLETE_MODIFIER_WARNING.
9431 (check_abstract_method_header): Use OBSOLETE_MODIFIER_WARNING2
9432 instead of OBSOLETE_MODIFIER_WARNING, and don't pass a format
9433 specifier.
9434 (check_modifiers): Change function into a macro.
9435 (check_class_interface_creation): Pass a literal format string.
9436
9437 2000-01-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9438
9439 * buffer.h: PROTO -> PARAMS.
9440 * check-init.c: Likewise.
9441 * class.c: Likewise.
9442 * constants.c: Likewise.
9443 * convert.h: Likewise.
9444 * decl.c: Likewise.
9445 * except.c: Likewise.
9446 * expr.c: Likewise.
9447 * gjavah.c: Likewise.
9448 * java-except.h: Likewise.
9449 * java-tree.h: Likewise.
9450 * jcf-depend.c: Likewise.
9451 * jcf-dump.c: Likewise.
9452 * jcf-parse.c: Likewise.
9453 * jcf-path.c: Likewise.
9454 * jcf-reader.c: Likewise.
9455 * jcf-write.c: Likewise.
9456 * jcf.h: Likewise.
9457 * jv-scan.c: Likewise.
9458 * jvgenmain.c: Likewise.
9459 * jvspec.c: Likewise.
9460 * lang.c: Likewise.
9461 * lex.c: Likewise.
9462 * lex.h: Likewise.
9463 * parse-scan.y: Likewise.
9464 * parse.h: Likewise.
9465 * parse.y: Likewise.
9466 * typeck.c: Likewise.
9467 * verify.c: Likewise.
9468 * xref.c: Likewise.
9469 * xref.h: Likewise.
9470 * zextract.c: Likewise.
9471 * zipfile.h: Likewise.
9472
9473 2000-01-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
9474
9475 * class.c (make_class): Use MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC.
9476 (is_compiled_class): Remove test on TYPE_LANG_SPECIFIC, use TYPE_JCF.
9477 * constants.c (build_constant_data_ref): Check for cached
9478 current_constant_pool_data_ref. Cache current_constant_pool_data_ref
9479 in TYPE_CPOOL_DATE_REF.
9480 * java-tree.h (TYPE_JCF, TYPE_CPOOL, TYPE_CPOOL_DATA_REF,
9481 MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC:) New macros.
9482 (struct lang_type): New fields `cpool' and `cpool_data_ref'.
9483 (LOCAL_FINAL): New macro.
9484 * jcf-parse.c (init_outgoing_cpool): Always allocate new outgoing
9485 constant pool -- don't try to reuse.
9486 (parse_zip_file_entries): Use TYPE_JCF, don't lazily allocate
9487 TYPE_LANG_SPECIFIC.
9488 (find_in_current_zip): Use TYPE_JCF.
9489 * parse.h (java_check_final): Prototype removed.
9490 * parse.y (create_class): Reversed Jan 12, 2000 extra argument patch.
9491 (maybe_create_class_interface_decl,
9492 check_class_interface_creation): Likewise.
9493 (java_expand_finals): Function removed.
9494 (class_declaration:): Reversed Jan 12, 2000 extra argument patch.
9495 (block_statement:): Fixed comment.
9496 (anonymous_class_creation:): Likewise.
9497 (check_class_interface_creation): Reversed Jan 12, 2000 extra
9498 argument patch.
9499 (check_class_interface_creation): Loosened error report on (inner)
9500 public class declarations. CPC_INNER_P replaces GET_CPC_LIST.
9501 (link_nested_class_to_enclosing): Reversed Jan 12, 2000 patch.
9502 (maybe_create_class_interface_decl): Reversed Jan 12, 2000 extra
9503 argument patch.
9504 (create_interface): Likewise.
9505 (anonymous_class_counter): New static global.
9506 (create_anonymous_class): Reversed Jan 12, 2000 extra argument
9507 patch. Fixed comments.
9508 (create_class): Reversed Jan 12, 2000 extra argument patch. Reset
9509 anonymous_class_counter when declaring a toplevel class.
9510 (craft_constructor): Fixed constructor name when handling
9511 anonymous classes. Anonymous class constructors to feature hidden
9512 this$<n> parameter.
9513 (java_fix_constructors): Added comment.
9514 (java_check_final): Function removed.
9515 (java_complete_expand_methods): Fixed comment. Don't generate
9516 class data, save its outgoing constant pool instead.
9517 (verify_constructor_super): Skip anonymous class constructor
9518 hidden this$<n> parameter.
9519 (java_expand_classes): New local `saved_ctxp'. Removed call to
9520 java_expand_finals and java_check_final. Expand anonymous class
9521 constructors. Generate class data.
9522 (build_super_invocation): Skip anonymous class hidden this$<n>
9523 parameter.
9524 * typeck.c (build_java_signature): Use TYPE_SIGNATURE and
9525 MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC.
9526 (set_java_signature): Likewise.
9527
9528 2000-01-18 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de>
9529
9530 * gjavah.c: Delete ACC_VISIBILITY define.
9531 * jcf.h: Add ACC_VISIBILITY define.
9532 * parse.y: final: rule tagged <value>.
9533 (java_check_regular_methods): Use ACC_VISIBILITY define for
9534 default package access check.
9535 (local_variable_declaration_statement): Use final: rule.
9536
9537 2000-01-17 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de>
9538
9539 * parse.y (format_parameter:): Use final: rule instead of modifiers:.
9540 (final:): New rule.
9541
9542 2000-01-17 Tom Tromey <tromey@cygnus.com>
9543
9544 * gjavah.c (print_field_info): Allow non-static final fields.
9545
9546 2000-01-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
9547
9548 * parse.h (enum jdep_code): New entry `JDEP_ANONYMOUS'.
9549 * parse.y (patch_anonymous_class): New function.
9550 (create_anonymous_class): Register incomplete type when the
9551 class/interface to extends/implement isn't known yet.
9552 (parser_check_super_interface): Simplify argument to CLASS_INTERFACE.
9553 (verify_constructor_super): Tuned error message.
9554
9555 2000-01-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
9556
9557 * java-tree.h (FOR_LOOP_P): Replaces IS_FOR_LOOP_P.
9558 (ANONYMOUS_CLASS_P): New macro.
9559 (TYPE_SIGNATURE, TYPE_JCF): New macros.
9560 (INNER_CLASS_TYPE_P): Fixed typo in leading comment.
9561 * parse.y (create_class): Added leading argument.
9562 (maybe_create_class_interface_decl,
9563 check_class_interface_creation): Likewise.
9564 (craft_constructor): New function.
9565 (verify_constructor_super): Added argument in prototype.
9566 (class_declaration:): Inserted leading argument.
9567 (for_begin:): Use FOR_LOOP_P.
9568 (anonymous_class_creation): Create WFL of the anonymous class to
9569 instantiate. Call build_new_invocation. Added comments.
9570 (check_class_interface_creation): Handle parameter `anonymous' in
9571 verbose mode class creation announce.
9572 (link_nested_class_to_enclosing): Exclude anonymous classes.
9573 (maybe_create_class_interface_decl): Don't set DECL_CONTEXT on
9574 anonymous class, even though they appear to have an enclosing
9575 context.
9576 (create_interface): Pass extra argument to
9577 check_class_interface_creation.
9578 (create_anonymous_class): Set ANONYMOUS_CLASS_P to 1.
9579 (create_class): Call check_class_interface_creation and
9580 maybe_create_class_interface_decl with extra new argument. Don't
9581 add private this$<n> to anonymous classes.
9582 (method_declarator): Insert hidden this$<n> to anonymous class
9583 constructors.
9584 (java_fix_constructors): Deleted code creating default
9585 constructor. Call craft_constructor instead.
9586 (java_check_regular_methods): Set `saw_constructor' to 1 for
9587 anonymous classes.
9588 (fix_constructors): Pass extra argument to verify_constructor_super.
9589 (verify_constructor_super): New local `sdecl', use it. Search for
9590 matching constructor (possibly featuring arguments) in super
9591 class.
9592 (lookup_method_invoke): Craft constructor according to arguments
9593 list when dealing with anonymous class constructors.
9594 (build_super_invocation): Pass arguments to anonymous class super
9595 constructors.
9596 (search_loop): Use FOR_LOOP_P.
9597 (labeled_block_contains_loop_p): Likewise.
9598
9599 2000-01-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
9600
9601 * class.c (set_super_info): Set CLASS_STATIC when appropriate.
9602 (enclosing_context_p): New function.
9603 (get_access_flags_from_decl): Handle CLASS_STATIC.
9604 (maybe_layout_super_class): Extra first argument passed to
9605 do_resolve_class.
9606 (layout_class_method): Use ID_FINIT_P, DECL_CLINIT_P and
9607 ID_INIT_P.
9608 * decl.c (access0_identifier_node): New global.
9609 (init_decl_processing): access0_identifier_node initialized.
9610 (pushdecl): Set DECL_CONTEXT only on non type decls.
9611 * expr.c (lookup_field): Lookup inner class fields in enclosing
9612 contexts.
9613 (expand_invoke): Use ID_INIT_P.
9614 (expand_java_field_op): Use DECL_CLINIT_P.
9615 * java-tree.def (CLASS_LITERAL): New tree code.
9616 * java-tree.h (DECL_FUNCTION_ACCESS_DECL,
9617 DECL_FUNCTION_INNER_ACCESS, FIELD_INNER_ACCESS): New macros.
9618 (struct lang_decl): New field `inner_access'.
9619 (enclosing_context_p): Prototyped.
9620 (DECL_INIT_P, DECL_FINIT_P, DECL_CLINIT_P, ID_INIT_P, ID_FINIT_P,
9621 ID_CLINIT_P): New macros.
9622 (CLASS_STATIC): New macro.
9623 (CLASS_ACCESS0_GENERATED_P): New macro.
9624 (OUTER_FIELD_ACCESS_IDENTIFIER_P, INNER_CLASS_DECL_P,
9625 TOPLEVEL_CLASS_DECL_P, INNER_CLASS_TYPE_P, TOPLEVEL_CLASS_TYPE_P,
9626 INNER_CLASS_P): New macros.
9627 (DECL_INNER_CLASS_LIST): New macro.
9628 * jcf-parse.c (yyparse): Avoid the use of ANSI string
9629 concatenation.
9630 * jcf-write.c (generate_bytecode_insns): binop: Change the type of
9631 the shift value to int. Fixed typo in comment.
9632 * lex.c (inst_id, wpv_id): Initialize.
9633 * mangle.c (unicode_mangling_length): Take `$' into account.
9634 * parse.h (DRECOVER, RECOVER): Terminate properly.
9635 (IDENTIFIER_INNER_CLASS_OUTER_FIELD_ACCESS): New macro.
9636 (typedef struct _jdep): New field `enclosing'.
9637 (JDEP_ENCLOSING): New macro.
9638 (IS_CLINIT): Deleted (DECL_CLINIT_P replaces it.)
9639 (struct parser_ctxt): New fields `marker_beginning', `marked_end'.
9640 (GET_CPC_LIST, CPC_INNER_P, GET_CPC, GET_CPC_UN, GET_CPC_UN_MODE,
9641 GET_CPC_DECL_NODE, GET_ENCLOSING_CPC, GET_NEXT_ENCLOSING_CPC,
9642 GET_ENCLOSING_CPC_CONTEXT): New macros.
9643 (PUSH_CPC, PUSH_ERROR, POP_CPC): New macros.
9644 (do_resolve_class): Added extra argument in prototype.
9645 * parse.y (resolve_class): Added extra argument in prototype.
9646 (maybe_create_class_interface_decl): Likewise.
9647 (maybe_use_access_method, build_wfl_wrap): New functions.
9648 (java_complete_expand_classes, java_complete_expand_class):
9649 Likewise.
9650 (java_parser_context_push_initialized_field,
9651 java_parser_context_suspend, java_parser_context_resume):
9652 Likewise.
9653 (maybe_make_nested_class_name, make_nested_class_name,
9654 set_nested_class_simple_name_value,
9655 link_nested_class_to_enclosing, find_as_inner_class,
9656 find_as_inner_class_do, check_inner_class_redefinition,
9657 build_thisn_assign, build_current_thisn, build_access_to_thisn,
9658 maybe_build_thisn_access_method, build_outer_field_access,
9659 build_outer_field_access_methods, build_outer_field_access_expr,
9660 build_outer_method_access_method, build_new_access_id,
9661 build_outer_field_access_method, outer_field_access_p,
9662 outer_field_expanded_access_p, outer_field_access_fix,
9663 build_incomplete_class_ref, patch_incomplete_class_ref,
9664 create_anonymous_class): Likewise.
9665 (inst_id, wpv_id): New static global variables.
9666 (synchronized:): New rule, tagged <node>.
9667 (type_declaration:): No longer tagged <node>. Call POP_CPC in sub
9668 rules.
9669 (anonymous_class_creation:): New rule, tagged <node>.
9670 (NEW_TK): Tagged <node>.
9671 (type_literals, array_type_literal): New rules, tagged <node>.
9672 (class_declaration:): Removed action when reducing by class_body:
9673 (class_body:): Set DECL_END_SOURCE_LINE and rule's returned value
9674 using GET_CPC in sub-rules.
9675 (class_member_declaration): Handle inner classes.
9676 (method_declaration): When reducing method_header:, reset
9677 current_function_decl when appropriate.
9678 (method_declarator:): Set the number of formal parameter to 0 for
9679 method declared without arguments.
9680 (constructor_declarator:): Likewise.
9681 (static_initializer:): List of elements kept in a list.
9682 (static:): Rule modifiers: replaces MODIFIER_TK. Enforce correct
9683 use of the keyword `static' for type declarations.
9684 (block_statement:): Handle inner class declarations.
9685 (primary_no_new_array:): Use type_literals:. Fixed comment. Handle
9686 type qualified `this'.
9687 (class_instance_creation_expression): Use anonymous_class_creation:
9688 to handle inner class instances creation. Handle qualified `new'.
9689 (something_dot_new): Added appropriate actions.
9690 (create_new_parser_context): New function.
9691 (java_push_parser_context, java_parser_context_save_global,
9692 java_parser_context_suspend): Use create_new_parser_context.
9693 (check_modifiers): Changed leading comment.
9694 (check_class_interface_creation): Handle interclasses.
9695 (add_superinterfaces): Fixed comment.
9696 (create_interface): Build qualified name from the raw_name instead
9697 of its matching WFL. Push the initialized fields list. raw_name added
9698 as an extra argument to maybe_create_class_interface_decl.
9699 (create_class): Build qualified name from the raw_name instead of
9700 its matching WFL. Removed assignment to current_parsed_class_un.
9701 Call PUSH_ERROR before returning an error. Suspend the current
9702 parser context when processing an inner class. Push the
9703 initialized fields list. raw_name added as an extra argument to
9704 maybe_create_class_interface_decl. Add the private this$<n>
9705 field.
9706 (duplicate_declaration_error_p): Use GET_CPC when calling find_field.
9707 (register_fields): Get the class type from GET_CPC and handle
9708 previous errors. Added code to handle the creation of static
9709 fields in inner classes. Initialized fields initialization
9710 statements kept in a list of lists.
9711 (maybe_generate_finit): Initialized fields initialization
9712 statements kept in a list of lists. Use GET_CPC.
9713 (maybe_generate_clinit): Likewise.
9714 (method_header): Use GET_CPC and GET_CPC_UN.
9715 (parser_qualified_classname): Handle inner classes.
9716 (register_incomplete_type): Set JDEP_ENCLOSING using GET_CPC.
9717 (java_fix_constructors): Hide pointer to enclosing context
9718 instance in constructor list when dealing with inner classes.
9719 (jdep_resolve_class): Call resolve_class with extra first argument
9720 JDEP_ENCLOSING.
9721 (resolve_class): Add enclosing context as a first extra argument
9722 to do_resolve_class.
9723 (do_resolve_class): Call find_as_inner_class. Handle WFLs
9724 properly.
9725 (resolve_no_layout): Extra argument added to resolve_class
9726 invocation.
9727 (reset_method_name): Use DECL_CLINIT_P, DECL_FINIT_P.
9728 (java_get_real_method_name): Use GET_CPC_UN.
9729 (check_abstract_method_definitions): Use DECL_CLINIT_P.
9730 (java_check_abstract_methods): Handle static method declared in
9731 inner classes by an error.
9732 (java_check_regular_methods): Use DECL_CLINIT_P.
9733 (source_start_java_method): Also set DECL_MAX_LOCALS.
9734 (create_artificial_method): Call java_parser_context_save_global
9735 and java_parser_context_restore_global instead of saving/restoring
9736 the context by hand.
9737 (expand_start_java_method): Improved verbose mode message.
9738 (java_complete_expand_methods): Fixed leading comment. Use
9739 DECL_CLINIT_P.
9740 (fix_constructors): Added assignment to this$<n> if necessary.
9741 (java_expand_classes): Call java_complete_expand_classes instead
9742 of java_complete_expand_methods.
9743 (make_qualified_primary): Simplified.
9744 (merge_qualified_name): Optimized for missing left or right parts.
9745 (resolve_expression_name): Handle access to outer class fields from
9746 interclasses.
9747 (resolve_qualified_expression_name): New macro
9748 RESTORE_THIS_AND_CURRENT_CLASS, used. Handle creation of inner
9749 classes. Report error on non appropriate qualification of
9750 `new'. Handle qualified `this'.
9751 (not_accessible_p): Allow access to outer class private fields from
9752 inner classes.
9753 (patch_method_invocation): Handle method invocations through
9754 access methods and inner class constructor invocations.
9755 (find_applicable_accessible_methods_list): Search enclosing
9756 contexts of an inner class.
9757 (search_applicable_methods_list): Fixed typo.
9758 (argument_types_convertible): Handle inner class constructors'
9759 hidden outer context reference argument.
9760 (qualify_ambiguous_name): Handle qualified `this'.
9761 (java_complete_lhs): Handle use of field accessed through
9762 artificial access methods in various cases of assignments. Handle
9763 CLASS_LITERAL node.
9764 (check_final_assignment): Use DECL_CLINIT_P.
9765 (valid_ref_assignconv_cast_p): Handle the destination being an
9766 enclosing context of the source.
9767 (patch_unaryop): Handle use of field accessed through artificial
9768 access methods.
9769 (patch_return): Use DECL_CLINIT_P.
9770 (patch_throw_statement): Use DECL_CLINIT_P.
9771 (check_thrown_exceptions): Use DECL_FINIT_P and DECL_INIT_P.
9772 * verify.c (verify_jvm_instructions): Use ID_CLINIT_P and
9773 ID_INIT_P.
9774
9775 2000-01-16 Anthony Green <green@cygnus.com>
9776
9777 * parse.y (build_string_concatenation): Only use
9778 StringBuffer(String) shortcut if String arg is constant.
9779
9780 2000-01-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
9781
9782 * jcf-write.c (generate_bytecode_insns): binop: Change the type of
9783 the shift value to int. Fixed typo in comment.
9784
9785 2000-01-11 Mumit Khan <khan@xraylith.wisc.edu>
9786
9787 * jcf-path.c: Delete PATH_SEPARATOR and DIR_SEPARATOR macros.
9788 * jcf-write.c: Likewise.
9789 * parse.y: Likewise.
9790 * parse.c: Regenerate.
9791
9792 2000-01-09 Anthony Green <green@cygnus.com>
9793
9794 * jcf-write.c (generate_bytecode_insns): Emit invokeinterface
9795 bytecodes in the correct order.
9796
9797 2000-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9798
9799 * Makefile.in (jcf-dump, gcjh): Move ../errors.o before $(LIBS).
9800
9801 2000-01-06 Anthony Green <green@cygnus.com>
9802
9803 * expr.c (java_lang_expand_expr): Switch to permanent obstack
9804 before building constant array decl.
9805
9806 2000-01-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
9807
9808 * jcf-write.c (generate_bytecode_conditional): Fixed indentation in
9809 method invocation and typo in conditional expression.
9810 (generate_bytecode_insns): COND_EXPR can be part of a binop. Issue
9811 the appropriate NOTE_POP.
9812 * parse.y (patch_binop): Shift value mask to feature the right
9813 type.
9814
9815 1999-12-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9816
9817 * class.c (assume_compiled, assume_compiled_node): Add static
9818 prototype.
9819 (add_assume_compiled): Use xmalloc/xstrdup, not malloc/strdup.
9820
9821 * jcf-dump.c (ARRAY_NEW_NUM): Cast long to int in switch.
9822
9823 * jvgenmain.c (usage): Add static prototype with ATTRIBUTE_NORETURN.
9824
9825 * parse.h (OBSOLETE_MODIFIER_WARNING): Rename parameter `modifier'
9826 to `__modifier' to avoid stringifying it.
9827
9828 * parse.y (verify_constructor_circularity): Don't call a variadic
9829 function with a non-literal format string.
9830 (java_check_abstract_methods): Move unreachable code inside
9831 `continue' statement.
9832 (lookup_method_invoke): Call xstrdup, not strdup.
9833
9834 * expr.c (expand_java_field_op): Avoid the use of ANSI string
9835 concatenation.
9836
9837 * jcf-parse.c (yyparse): Likewise.
9838
9839 * jv-scan.c (main): Likewise.
9840
9841 1999-12-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9842
9843 * parse.h (ABSTRACT_CHECK, JCONSTRUCTOR_CHECK,
9844 ERROR_CANT_CONVERT_TO_BOOLEAN, ERROR_CANT_CONVERT_TO_NUMERIC,
9845 ERROR_CAST_NEEDED_TO_INTEGRAL): Avoid the use of ANSI string
9846 concatenation.
9847
9848 * parse.y (synchronized, variable_redefinition_error,
9849 check_class_interface_creation, create_interface, create_class,
9850 method_header, finish_method_declaration,
9851 check_modifiers_consistency, method_declarator,
9852 complete_class_report_errors, check_abstract_method_definitions,
9853 java_check_regular_methods, check_throws_clauses,
9854 java_check_abstract_methods, read_import_dir,
9855 check_pkg_class_access, declare_local_variables, fix_constructors,
9856 cut_identifier_in_qualified, resolve_expression_name,
9857 resolve_qualified_expression_name, patch_method_invocation,
9858 java_complete_lhs, patch_assignment, try_builtin_assignconv,
9859 patch_binop, patch_array_ref, patch_newarray, build_labeled_block,
9860 patch_exit_expr, patch_exit_expr, patch_switch_statement,
9861 patch_try_statement, patch_synchronized_statement,
9862 patch_throw_statement, check_thrown_exceptions,
9863 patch_conditional_expr): Likewise.
9864
9865 1999-12-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
9866
9867 * Makefile.in (LIBDEPS): Added gcc's errors.o
9868 (../jcf-dump$(exeext):): Link with gcc's errors.o
9869 (../gcjh$(exeext):): Likewise.
9870 * expr.c (expand_java_NEW): Layout the entire target type instead of
9871 laying out its methods only.
9872 (lookup_field): Layout the class after having loaded it.
9873 * java-tree.h (java_debug_context): Declared.
9874 * jcf-io.c (toplev.h): Included.
9875 (find_class): Removed assignment to jcf's outofsynch
9876 field. Force source file to be read if newer than its matching
9877 class file. Tweaked debug messages.
9878 * jcf-parse.c (jcf_out_of_synch): Deleted.
9879 (read_class): Call to jcf_out_of_synch removed.
9880 * jcf.h (typedef struct JCF): Field `outofsynch' deleted.
9881 (jcf_out_of_synch): Prototype deleted.
9882 * parse.h (struct parser_ctxt): `minus_seen', `java_error_flag',
9883 `deprecated' and `class_err': integer turned into bit-fields.
9884 New bit-fields `saved_data_ctx' and `saved_data'. Fixed comments.
9885 * parse.y (package_list): New global.
9886 (package_declaration:): Record newly parsed package name.
9887 (extra_ctxp_pushed_p): Static global deleted.
9888 (java_parser_context_save_global): Create buffer context for the
9889 purpose of saving globals, if necessary.
9890 (java_parser_context_restore_global): Pop context pushed for the
9891 purpose of saving globals, if necessary.
9892 (java_debug_context_do): New prototype and function.
9893 (java_debug_context): Likewise.
9894 (do_resolve_class): Use already parsed package names to qualify
9895 and lookup class candidate.
9896 (java_pre_expand_clinit): Removed unnecessary local variable.
9897
9898 1999-12-17 Tom Tromey <tromey@cygnus.com>
9899
9900 * gjavah.c (decode_signature_piece): Print "::" in JArray<>. This
9901 fixes PR gcj/119.
9902 (process_file): Use `\n\' at end of each line in string.
9903
9904 1999-12-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
9905
9906 * expr.c (expand_invoke): Layout the loaded class before
9907 attempting to use it.
9908 (expand_java_field_op): Allow final field assignments to take
9909 place in $finit$.
9910 * typeck.c (convert): Return error_mark_node if expr is null.
9911
9912 1999-12-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
9913
9914 * class.c (class_depth): Return -1 if the class doesn't load
9915 properly.
9916 * expr.c (can_widen_reference_to): Check for errors during depth
9917 computation and return 0 accordingly.
9918 * jcf-parse.c (parse_source_file): Call java_fix_constructors to
9919 create default constructors and add an other error check.
9920 * parse.h (java_fix_constructors): Prototyped.
9921 * parse.y (java_pre_expand_clinit): Likewise.
9922 (build_super_invocation): Re-prototyped to feature one argument.
9923 (java_check_circular_reference): Directly use `current'.
9924 (java_fix_constructors): New function.
9925 (java_check_regular_methods): Don't create default constructors
9926 here, but abort if none were found.
9927 (java_complete_expand_methods): Pre-process <clinit> calling
9928 java_pre_expand_clinit.
9929 (java_pre_expand_clinit): New function.
9930 (fix_constructors): build_super_invocation invoked with the
9931 current method declaration as an argument.
9932 (build_super_invocation): Use the context of the processed method
9933 decl argument instead of current_class.
9934 * typeck.c (lookup_java_method): Take WFLs in method names into
9935 account.
9936
9937 1999-12-14 Per Bothner <per@bothner.com>
9938
9939 * class.c (make_class_data): flag_keep_inline_functions to keep
9940 private methods in the method array.
9941
9942 1999-12-15 Anthony Green <green@cygnus.com>
9943
9944 * check-init.c (check_init): Take into account both types of
9945 `throw's when checking for uninitialized variables.
9946
9947 1999-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9948
9949 * parse.y (java_complete_lhs): Force conversion of array
9950 dimensions to int_type_node, that's what runtime's ABI expects.
9951
9952 1999-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9953
9954 * parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third
9955 operand of a WFL, until the Java front-end gets fixed with regard
9956 to Mark Mitchell's gcc/tree.h patch (1999-12-04.)
9957
9958 1999-12-10 Andrew Haley <aph@cygnus.com>
9959
9960 * parse.h (BUILD_THROW): Add support for sjlj-exceptions.
9961 decl.c (init_decl_processing): Add _Jv_Sjlj_Throw.
9962 expr.c (build_java_athrow): Add support for sjlj-exceptions.
9963 java-tree.h: Ditto.
9964 jcf-write.c: Ditto.
9965
9966 1999-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
9967
9968 * expr.c (java_lang_expand_expr): Switch to permanent obstack
9969 before calling expand_eh_region_start and expand_start_all_catch.
9970 * except.c (expand_start_java_handler): Switch to permanent
9971 obstack before calling expand_eh_region_start.
9972 (expand_end_java_handler): Switch to permanent obstack before
9973 calling expand_start_all_catch.
9974
9975 1999-12-5 Anthony Green <green@cygnus.com>
9976
9977 * decl.c (init_decl_processing): Mark throw_node as a noreturn
9978 function with side effects.
9979 (init_decl_processing): Mark all memory allocating DECLs with
9980 DECL_IS_MALLOC.
9981
9982 1999-12-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
9983
9984 * except.c (expand_end_java_handler): Call
9985 expand_resume_after_catch and end_catch_handler.
9986
9987 1999-11-30 Anthony Green <green@cygnus.com>
9988
9989 * verify.c (verify_jvm_instructions): Create new return label
9990 chain if non existent (don't rely on the verified state of the jsr
9991 target.)
9992
9993 1999-11-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
9994
9995 * jcf-write.c (generate_bytecode_insns): Fixed indentation for
9996 COMPOUND_EXPR and FIX_TRUNC_EXPR cases.
9997
9998 * parse.y (patch_assignment): Removed bogus final class test on
9999 lhs when checking on whether to emit an ArrayStoreException runtime
10000 check.
10001 * expr.c (expand_java_arraystore): Likewise.
10002
10003 1999-11-28 Anthony Green <green@cygnus.com>
10004
10005 * decl.c (find_local_variable): Reuse single slot decls when
10006 appropriate.
10007
10008 1999-11-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
10009
10010 * jcf-parse.c (saw_java_source): Global variable removed.
10011 (read_class): Don't use `saw_java_source'. Added extra braces.
10012 (yyparse): Code setting `saw_java_source' removed.
10013
10014 1999-11-24 Mark Mitchell <mark@codesourcery.com>
10015
10016 * except.c (emit_handlers): Zero catch_clauses after emitting them.
10017
10018 1999-11-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
10019
10020 * verify.c (merge_type_state): Non verified subroutines being
10021 considered more than once to trigger passive type merge.
10022
10023 1999-11-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
10024
10025 * parse.y (catch_clause_parameter:): Still set `$$' to NULL_TREE
10026 in case of error. Error message tuned.
10027
10028 1999-11-21 Anthony Green <green@cygnus.com>
10029
10030 * constants.c (find_methodref_index): Unwrap method names before
10031 inserting them in the constant pool.
10032
10033 * jcf-parse.c (jcf_parse): Display `interface' when appropriate.
10034
10035 * class.c (assume_compiled_node): New typedef.
10036 (assume_compiled_tree): New static data.
10037 (find_assume_compiled_node): New function.
10038 (add_assume_compiled): New function.
10039 (assume_compiled): New function.
10040 * class.c (make_class_data): Use assume_compiled.
10041 (is_compiled_class): Use assume_compiled.
10042
10043 * java-tree.h (add_assume_compiled): Declare.
10044
10045 * lang.c (lang_decode_option): Parse new options.
10046
10047 1999-11-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
10048
10049 * class.c (layout_class): Always convert TYPE_SIZE_UNIT to
10050 int_type_node: that's what `_Jv_AllocObject' expects.
10051
10052 1999-11-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
10053
10054 * parse.y (lookup_method_invoke): Use lang_printable_name to
10055 reliably build the type name during error report. Fixes PR gcj/97.
10056
10057 1999-11-09 Tom Tromey <tromey@cygnus.com>
10058
10059 * jcf-path.c: Include <sys/stat.h>.
10060 (jcf_path_init): Search for libjava.zip. Fixes PR gcj/84.
10061 (DIR_UP): New macro.
10062
10063 1999-11-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
10064
10065 * parse.y (source_end_java_method): Resume permanent allocation,
10066 reversing Apr 27 1998 patch.
10067 (patch_string_cst): Pop obstacks after having pushed the permanent
10068 ones.
10069
10070 1999-11-05 Tom Tromey <tromey@cygnus.com>
10071
10072 * class.c (finish_class): Emit inlined methods if any native
10073 methods exist in the class. Fixes PR gcj/85.
10074
10075 1999-11-04 Alexandre Petit-Bianco <apbianco@cygnus.com>
10076
10077 * parse.y (resolve_qualified_expression_name): Handle PLUS_EXPR.
10078 (qualify_ambiguous_name): Likewise.
10079
10080 1999-11-03 Godmar Back <gback@cs.utah.edu>
10081
10082 * typeck.c: (lookup_java_method): search all inherited
10083 interfaces when looking up interface method.
10084
10085 1999-11-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10086
10087 * parse.y (method_header:): Issue error message for rule `type
10088 error'.
10089 (synchronized:): Error report when not using synchronized.
10090
10091 1999-11-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10092
10093 * parse.y (resolve_qualified_expression_name): Prevent `this' from
10094 being used before the superclass constructor has been called.
10095 (complete_function_arguments): Use CALL_EXPLICIT_CONSTRUCTOR_P
10096 instead of `CALL_THIS_CONSTRUCTOR_P'.
10097
10098 1999-10-30 Todd T. Fries <todd@lighthouse.fries.net>
10099
10100 * check-init.c: Fix typo in comment.
10101
10102 1999-10-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
10103
10104 * class.c (add_method_1): Set DECL_INLINE to 1 for private, static
10105 and final method.
10106
10107 1999-10-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
10108
10109 * parse.y (expression_statement:): Call function to report
10110 improper invocation of a constructor.
10111 (parse_ctor_invocation_error): New function.
10112
10113 1999-10-26 Mark Mitchell <mark@codesourcery.com>
10114
10115 * decl.c (poplevel): Don't set BLOCK_TYPE_TAGS or call
10116 remember_end_note.
10117
10118 1999-10-21 Tom Tromey <tromey@cygnus.com>
10119
10120 * jvgenmain.c (main): _Jv_Compiler_Properties now an extern; set
10121 in generated `main'.
10122
10123 1999-10-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
10124
10125 * parse.y (resolve_qualified_expression_name): Handle MODIFY_EXPR.
10126 (qualify_ambiguous_name): Likewise.
10127
10128 1999-10-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
10129
10130 * parse.y (java_complete_tree): fold_constant_for_init to work on
10131 permanent_obstack.
10132 (java_complete_lhs): Likewise.
10133 (array_constructor_check_entry): Complete an initializer element
10134 on permanent_obstack.
10135
10136 1999-10-19 Tom Tromey <tromey@cygnus.com>
10137
10138 * jcf-parse.c (parse_source_file): Call jcf_dependency_add_file.
10139 From Mike Moreton <mike@pillim.demon.co.uk>.
10140
10141 1999-10-15 Greg McGary <gkm@gnu.org>
10142
10143 * java-tree.h (flag_bounds_check): Remove extern decl.
10144 * lang.c (flag_bounds_check): Remove global variable.
10145 (lang_f_options): Remove "bounds-check" entry.
10146 (lang_init_options): Default flag_bounds_check to "on".
10147
10148 1999-10-14 Tom Tromey <tromey@cygnus.com>
10149
10150 * jvgenmain.c (usage): New function.
10151 (main): Use it. Also, handle `-D' options.
10152 * jvspec.c (lang_specific_driver): Recognize -D.
10153 (jvgenmain_spec): Added `%{D*}' to jvgenmain invocation.
10154
10155 * jvspec.c (jvgenmain_spec): Use `%umain', not just `%u'.
10156
10157 1999-10-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10158
10159 * jcf-dump.c (print_constant, disassemble_method): Don't call a
10160 variadic function with a non-literal format string.
10161
10162 * parse-scan.y (report_main_declaration): Likewise.
10163
10164 * parse.h (ERROR_CAST_NEEDED_TO_INTEGRAL): Likewise.
10165
10166 * parse.y (read_import_dir, patch_assignment, patch_binop,
10167 patch_array_ref): Likewise.
10168
10169 * typeck.c (build_java_array_type): Likewise.
10170
10171 * verify.c (verify_jvm_instructions): Likewise.
10172
10173 1999-10-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
10174
10175 * jcf-write.c (RELOCATION_VALUE_1): Fixed integer value from 0 to 1.
10176
10177 1999-10-07 Anthony Green <green@cygnus.com>
10178
10179 * jcf-write.c (generate_classfile): Use UNSAFE_PUTx in cases
10180 where CHECK_PUT may fail for valid reasons.
10181
10182 * jcf-write.c (UNSAFE_PUT1, UNSAFE_PUT2, UNSAFE_PUT3,
10183 UNSAFE_PUTN): New macros.
10184
10185 1999-10-04 Tom Tromey <tromey@cygnus.com>
10186
10187 * lex.h (BUILD_OPERATOR2): Return ASSIGN_ANY_TK in `lite' case as
10188 well. Fixes Java PR gcj/59.
10189 * parse-scan.y (yyerror): Report errors.
10190
10191 1999-09-24 Glenn Chambers <GChambers@provsol.com>
10192
10193 * decl.c (insert_block): Remove unconditional `abort'.
10194
10195 1999-09-24 Bernd Schmidt <bernds@cygnus.co.uk>
10196
10197 * decl.c (builtin_function): No longer static. New arg CLASS. Arg
10198 FUNCTION_CODE now of type int. All callers changed.
10199 Set the builtin's DECL_BUILT_IN_CLASS.
10200
10201 1999-09-23 Tom Tromey <tromey@cygnus.com>
10202
10203 * jvspec.c (lang_specific_driver): Don't read spec file if
10204 -fsyntax-only given.
10205
10206 1999-09-22 Tom Tromey <tromey@cygnus.com>
10207
10208 * lang-specs.h: Added `%(jc1)' to the jc1 spec.
10209
10210 * javaop.h (WORD_TO_FLOAT): Use `inline' unconditionally.
10211 (WORDS_TO_LONG): Likewise.
10212 (WORDS_TO_DOUBLE): Likewise.
10213
10214 1999-09-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
10215
10216 * jcf-write.c (RELOCATION_VALUE_0): New macro.
10217 (RELOCATION_VALUE_1): Likewise.
10218 (emit_iinc, emit_reloc, push_constant1, push_constant2,
10219 push_in_const, push_long_const): Prototyped.
10220 (push_constant1): Argument `index' is of type HOST_WIDE_INT.
10221 (push_constant2): Likewise.
10222 (push_int_const): Cast find_constant1's integer arguments to `jword'.
10223 (find_constant_wide): Cast find_constant2's integer arguments to
10224 `jword'.
10225 (find_constant_index): Cast find_constant2's and find_constant2's
10226 integer arguments to `jword'.
10227 (emit_pop): Argument `value' is of type HOST_WIDE_INT.
10228 (emit_switch_reloc): Use RELOCATION_VALUE_0.
10229 (emit_if): Use RELOCATION_VALUE_1.
10230 (emit_goto): Likewise.
10231 (emit_jsr): Likewise.
10232 (generate_bytecode_insns): Use RELOCATION_VALUE_0. Cast second
10233 argument to push_long_const to HOST_WIDE_INT.
10234
10235 1999-09-15 Andreas Schwab <schwab@suse.de>
10236
10237 * Makefile.in (parse.o): Depend on $(JAVA_TREE_H).
10238
10239 1999-09-20 Nick Clifton <nickc@cygnus.com>
10240
10241 * lang.c (lang_decode_option): Extend comment.
10242
10243 1999-09-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
10244
10245 * parse.y (java_method_add_stmt): Test against GET_CURRENT_BLOCK
10246 instead of fndecl.
10247
10248 1999-09-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10249
10250 * gjavah.c (get_field_name, print_method_info, print_include,
10251 add_namelet): Use xmalloc, not malloc.
10252
10253 * jcf-depend.c (add_entry): Likewise. Use xstrdup, not strdup.
10254 (munge): Use xrealloc, not realloc, trust xrealloc to handle a
10255 NULL pointer.
10256
10257 * jcf-io.c (open_in_zip, find_class): Use xstrdup, not strdup.
10258
10259 * jcf-parse.c (jcf_out_of_synch, yyparse): Likewise.
10260
10261 * jcf-path.c (add_entry): Likewise.
10262
10263 * jcf.h (ALLOC, REALLOC): Use xmalloc/xrealloc, not malloc/realloc.
10264
10265 * jv-scan.c (xmalloc): Remove definition.
10266
10267 * jvgenmain.c (xmalloc): Likewise.
10268
10269 * jvspec.c (lang_specific_driver): Use xcalloc, not xmalloc/bzero.
10270
10271 * lex.c (java_store_unicode): Use xrealloc, not realloc.
10272
10273 * parse-scan.y: Use concat, not of xmalloc/assign/strcpy. Use
10274 concat, not xmalloc/sprintf.
10275 (java_push_parser_context): Use xcalloc, not xmalloc/bzero.
10276 (xstrdup): Remove definition.
10277
10278 * parse.y (duplicate_declaration_error_p,
10279 constructor_circularity_msg, verify_constructor_circularity,
10280 check_abstract_method_definitions, java_check_regular_methods,
10281 java_check_abstract_methods, patch_method_invocation,
10282 check_for_static_method_reference, patch_assignment, patch_binop,
10283 patch_cast, array_constructor_check_entry, patch_return,
10284 patch_conditional_expr): Use xstrdup, not strdup.
10285
10286 * zextract.c (ALLOC): Use xmalloc, not malloc.
10287
10288 1999-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10289
10290 * Make-lang.in (jvspec.o): Depend on system.h and gcc.h.
10291
10292 * jvspec.c: Include gcc.h. Don't include gansidecl.h.
10293 (do_spec, lang_specific_pre_link, lang_specific_driver,
10294 input_filename, input_filename_length): Don't declare.
10295 (main_class_name, jvgenmain_spec, lang_specific_driver):
10296 Constify a char*.
10297 (lang_specific_driver): All calls to the function pointer
10298 parameter now explicitly call `fatal'.
10299
10300 1999-09-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
10301
10302 * parse.y (find_applicable_accessible_methods_list): Search
10303 abstract classes as interfaces.
10304
10305 1999-09-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
10306
10307 * class.c (finish_class): We're now outside a valid method
10308 declaration. Tell the rest of gcc so.
10309
10310 1999-09-08 Bruce Korb autogen@linuxbox.com
10311
10312 * Makefile.in: Give the gperf user a hint about why "gperf -F" fails.
10313
10314 1999-09-07 Tom Tromey <tromey@cygnus.com>
10315
10316 * gjavah.c (add_class_decl): Generate include for gcj/array.h, not
10317 java-array.h.
10318 (decode_signature_piece): Don't emit "::" in JArray<>.
10319 (print_namelet): Only print trailing `;' when printing a class.
10320
10321 1999-09-10 Bernd Schmidt <bernds@cygnus.co.uk>
10322
10323 * java-tree.h: Delete declarations for all tree nodes now moved to
10324 global_trees.
10325 * decl.c: Delete their definitions.
10326
10327 1999-09-04 Mark Mitchell <mark@codesourcery.com>
10328
10329 * Make-lang.in (jc1): Depend on ggc-callbacks.o.
10330 * Makefile.in (OBJS): Add ggc-callbacks.o.
10331 (OBJDEPS): Likewise.
10332
10333 1999-09-03 Tom Tromey <tromey@cygnus.com>
10334
10335 * parse.y (strip_out_static_field_access_decl): Return operand if
10336 it satisfies JDECL_P.
10337
10338 1999-09-02 Tom Tromey <tromey@cygnus.com>
10339
10340 * gjavah.c (decode_signature_piece): Emit "::" in JArray<>.
10341 Handle nested arrays, like `[[I'.
10342
10343 1999-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10344
10345 * class.c (finish_class): Remove unused parameter, all callers
10346 changed.
10347
10348 * expr.c (build_java_athrow): Change return type to void.
10349 (java_lang_expand_expr): Make sure each case in switch returns a
10350 value.
10351
10352 * java-tree.h (finish_class): Fix prototype to take void args.
10353
10354 * jcf-dump.c (usage): Mark with ATTRIBUTE_NORETURN.
10355 (main): Issue return from main, not exit.
10356
10357 * jcf-parse.c (parse_class_file): Fix call to `finish_class'.
10358
10359 * jcf.h (jcf_unexpected_eof): Mark with ATTRIBUTE_NORETURN.
10360
10361 * jv-scan.c (main): Issue return from main, not exit.
10362
10363 * parse.y (check_abstract_method_definitions,
10364 java_check_abstract_method_definitions): Add static prototypes.
10365 (java_complete_expand_methods): Fix call to `finish_class'.
10366
10367 * verify.c (verify_jvm_instructions): Initialize variables `oldpc'
10368 and `prevpc'.
10369
10370 1999-08-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10371
10372 * lang.c (language_string): Constify.
10373
10374 1999-08-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10375
10376 * Makefile.in (LIBS): Fix definition so we link with $(CLIB).
10377 Remove hacks for stuff which comes from libiberty.
10378
10379 * Make-lang.in: Likewise.
10380
10381 1999-08-30 Hans-Peter Nilsson <hp@axis.se>
10382
10383 * Makefile.in (xref.o): Depend on xref.c explicitly.
10384
10385 1999-08-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10386
10387 * java-tree.h (lang_printable_name): Constify a char*.
10388
10389 * lang.c (lang_printable_name): Likewise.
10390
10391 1999-08-27 Jeffrey A Law (law@cygnus.com)
10392
10393 * gjavah.c, jcf-write.c, verify.c: Do not use C++ style
10394 comments in C code.
10395
10396 1999-08-26 Tom Tromey <tromey@cygnus.com>
10397
10398 * gjavah.c (print_cxx_classname): Print "::" before qualified
10399 name.
10400
10401 1999-08-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
10402
10403 * parse.y (lookup_cl): Changed leading comment. Now does its best
10404 to set the column number.
10405 (qualify_ambiguous_name): Take WFL wrappers into account.
10406
10407 1999-08-25 Gregg Townsend <gmt@cs.arizona.edu>
10408
10409 * verify.c (verify_jvm_instructions): Don't check instruction
10410 validity beyond end of method.
10411
10412 1999-08-25 Tom Tromey <tromey@cygnus.com>
10413
10414 * jvspec.c (lang_specific_driver): Correctly handle --help again.
10415
10416 1999-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10417
10418 * gjavah.c (print_name, print_base_classname, utf8_cmp,
10419 cxx_keyword_subst, generate_access, name_is_method_p,
10420 get_field_name, print_field_name, super_class_name, print_include,
10421 decode_signature_piece, print_class_decls, usage, help,
10422 java_no_argument, version, add_namelet, print_namelet): Add static
10423 prototype.
10424 (print_base_classname, utf8_cmp, cxx_keyword_subst,
10425 name_is_method_p): Constify a char*.
10426 (get_field_name): Likewise. Prefer xstrdup over malloc/strcpy.
10427 Provide a final else clause in an if-else-if.
10428 (print_field_info): Add missing final arg in function call to
10429 `print_field_name'.
10430 (print_method_info, decompile_method, decode_signature_piece,
10431 print_c_decl, print_full_cxx_name, print_stub,
10432 print_mangled_classname, super_class_name, print_include,
10433 add_namelet, add_class_decl, print_class_decls, process_file,
10434 help): Constify a char*.
10435
10436 * jcf-write.c (jcf_handler, push_constant1, push_constant2,
10437 push_int_const, find_constant_wide, find_constant_index,
10438 push_long_const, field_op, maybe_wide, emit_dup, emit_pop,
10439 emit_iinc, emit_load_or_store, emit_load, emit_store, emit_unop,
10440 emit_binop, emit_reloc, emit_switch_reloc, emit_case_reloc,
10441 emit_if, emit_goto, emit_jsr, call_cleanups,
10442 make_class_file_name): Add static prototypes.
10443 (generate_bytecode_return, generate_bytecode_insns): Pass a
10444 NULL_PTR, not a NULL_TREE.
10445
10446 * jv-scan.c: Include "jcf.h".
10447 (main): Declare using DEFUN macro.
10448
10449 * jvspec.c (find_spec_file, lang_specific_pre_link,
10450 lang_specific_driver): Add prototypes.
10451 (find_spec_file): Constify a char*.
10452
10453 * keyword.gperf (hash, java_keyword): Add prototypes.
10454
10455 * lang.c (lang_print_error): Add static prototype.
10456 (lang_init): Prefer memcpy over bcopy to avoid casts.
10457
10458 * lex.c (yylex): Add static prototype.
10459
10460 * parse-scan.y: Include "lex.c" earlier.
10461
10462 * parse.h: Remove redundant declaration for `yylex'.
10463
10464 * parse.y (java_decl_equiv, binop_compound_p, search_loop,
10465 labeled_block_contains_loop_p): Add static prototypes.
10466 (not_accessible_p): Make static to match prototype.
10467
10468 * verify.c (start_pc_cmp): Don't needlessly cast away const.
10469
10470 1999-08-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10471
10472 * parse.y (check_method_redefinition): Changed leading comment.
10473 (check_abstract_method_definitions): New function.
10474 (java_check_abstract_method_definitions): New function.
10475 (java_check_regular_methods): Call it.
10476 (verify_constructor_super): Fixed indentation.
10477 (lookup_method_invoke): Likewise.
10478
10479 1999-08-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
10480
10481 * parse.y (method_header): Return a null pointer if the current
10482 class node is null.
10483 (finish_method_declaration): Return if the current function decl
10484 is null.
10485 (source_start_java_method): Likewise.
10486 (java_method_add_stmt): Likewise.
10487
10488 1999-08-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
10489
10490 * class.c (emit_register_class): Removed unnecessary call to
10491 start_sequence.
10492 * parse.y (labeled_block_contains_loop_p): Removed unused local
10493 variable.
10494
10495 1999-08-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
10496
10497 * parse.y (java_refold): Added prototype.
10498
10499 1999-08-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
10500
10501 * parse.y (BINOP_COMPOUND_CANDIDATES): New macro.
10502 (java_stabilize_reference): Removed unnecessary `else'.
10503 (java_complete_lhs): Set flag to remember boolean. Call
10504 java_refold. Added comments.
10505 (java_decl_equiv): New function.
10506 (binop_compound_p): Likewise.
10507 (java_refold): Likewise.
10508 (patch_unaryop): Striped static field access assigned to decl and
10509 op. Changed promotion scheme for ++/-- operators.
10510 (search_loop): New function.
10511 (labeled_block_contains_loop_p): Likewise.
10512 (patch_loop_statement): Call labeled_block_contains_loop_p. Added
10513 comment.
10514 (patch_bc_statement): Call search_loop. Fixed comment.
10515
10516 1999-08-14 Anthony Green <green@cygnus.com>
10517
10518 * expr.c (java_lang_expand_expr): Mark static array data as
10519 referenced.
10520
10521 1999-08-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10522
10523 * jvgenmain.c (main): NUL-terminate name_obstack.
10524
10525 1999-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10526
10527 * check-init.c (check_bool2_init, done_alternative): Add static
10528 prototypes.
10529
10530 * class.c (add_interface_do, maybe_layout_super_class): Likewise.
10531 (add_method, build_utf8_ref, build_class_ref,
10532 append_gpp_mangled_type, layout_class_method): Constify a char*.
10533
10534 * decl.c (push_promoted_type, make_binding_level): Add static
10535 prototypes.
10536 (push_promoted_type, pushdecl): Constify a char*.
10537
10538 * except.c (find_handler_in_range, link_handler,
10539 check_start_handlers): Add static prototypes.
10540
10541 * expr.c (process_jvm_instruction): Constify a char*.
10542
10543 * gjavah.c (main): Constify a char*.
10544
10545 * java-tree.h (verify_jvm_instructions, process_jvm_instruction):
10546 Constify a char*.
10547
10548 * jcf-depend.c (free_entry, add_entry, munge, print_ents): Add
10549 static prototypes.
10550 (add_entry, jcf_dependency_set_target, jcf_dependency_add_target,
10551 munge, print_ents): Constify a char*.
10552
10553 * jcf-dump.c (disassemble_method): Constify a char*.
10554 (print_constant_pool, print_exception_table): Add static prototypes.
10555 (print_constant, print_exception_table, main, disassemble_method):
10556 Constify a char*.
10557
10558 * jcf-io.c (find_classfile, find_class): Likewise.
10559
10560 * jcf-parse.c (JPOOL_UTF_DATA, find_in_current_zip): Likewise.
10561 (set_source_filename, predefined_filename_p): Add static prototypes.
10562 (set_source_filename, get_constant, get_class_constant,
10563 find_in_current_zip): Constify a char*.
10564
10565 * jcf-path.c (free_entry, append_entry, add_entry, add_path): Add
10566 static prototypes.
10567 (add_entry, add_path, jcf_path_classpath_arg,
10568 jcf_path_CLASSPATH_arg, jcf_path_include_arg): Constify a char*.
10569
10570 * jcf-reader.c (get_attribute, jcf_parse_preamble,
10571 jcf_parse_constant_pool, jcf_parse_class, jcf_parse_fields,
10572 jcf_parse_one_method, jcf_parse_methods,
10573 jcf_parse_final_attributes): Add static prototypes.
10574 (get_attribute): Constify a char*.
10575
10576 * jcf.h (find_class, find_classfile, jcf_dependency_set_target,
10577 jcf_dependency_add_target, jcf_path_classpath_arg,
10578 jcf_path_CLASSPATH_arg, jcf_path_include_arg): Constify a char*.
10579
10580 * jv-scan.c (main): Constify a char*.
10581 (gcc_obstack_init): Add prototype arguments.
10582
10583 * jvgenmain.c (gcc_obstack_init): Likewise.
10584 (main): Constify a char*.
10585
10586 * lang.c (put_decl_string, put_decl_node, java_dummy_print): Add
10587 static prototypes.
10588 (put_decl_string, lang_print_error): Constify a char*.
10589 (lang_init): Remove redundant extern prototype.
10590
10591 * mangle.c (emit_unicode_mangled_name): Constify a char*.
10592
10593 * typeck.c (convert_ieee_real_to_integer, parse_signature_type):
10594 Add static prototypes.
10595 (get_type_from_signature): Constify a char*.
10596
10597 * verify.c (check_pending_block, type_stack_dup, start_pc_cmp ):
10598 Add static prototypes.
10599 (start_pc_cmp): Prefer PTR over GENERIC_PTR.
10600 (verify_jvm_instructions): Constify a char*.
10601
10602 * xref.c (xref_flag_value): Likewise.
10603
10604 * xref.h (xref_flag_value): Likewise.
10605
10606 * zextract.c (makeword, makelong): Add static prototypes.
10607 (makeword, makelong): Constify a uch*.
10608
10609 1999-08-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10610
10611 * lang.c (java_dummy_print): Constify a char*.
10612 (lang_print_error): Likewise.
10613 (lang_init): Remove redundant prototype for `print_error_function'.
10614 (lang_init_source): Likewise.
10615 (lang_identify): Constify a char*.
10616
10617 1999-08-09 Tom Tromey <tromey@cygnus.com>
10618
10619 * javaop.h (WORD_TO_FLOAT): only inline if building with gcc.
10620 (WORDS_TO_LONG): Likewise.
10621 (WORDS_TO_DOUBLE): Likewise.
10622
10623 1999-08-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10624
10625 * Makefile.in (lang.o): Depend on $(RTL_H) $(EXPR_H).
10626
10627 * expr.c (java_stack_pop, java_array_data_offset,
10628 build_java_throw_out_of_bounds_exception, case_identity,
10629 build_java_check_indexed_type): Add static prototypes.
10630 (linenumber_table, expand_invoke, expand_java_field_op,
10631 build_primtype_type_ref, expand_byte_code): Constify a char*.
10632
10633 * java-tree.h (build_primtype_type_ref, linenumber_table):
10634 Constify a char*.
10635 (java_lang_expand_expr): Add prototype.
10636
10637 * lang.c: Include rtl.h and expr.h. Remove extern prototype for
10638 `java_lang_expand_expr'.
10639
10640 * lex.c (java_lex_error): Constify a char*.
10641 (java_get_unicode, java_read_char, java_allocate_new_line,
10642 java_unget_unicode, java_sneak_unicode): Prototype.
10643
10644 * parse-scan.y (current_class, package_name, method_declarator,
10645 report_class_declaration, yyerror): Constify a char*.
10646
10647 * parse.h (java_report_errors): Prototype.
10648 (yyerror): Constify a char*.
10649
10650 * parse.y (classitf_redefinition_error, check_modifiers,
10651 parse_jdk1_1_error, lookup_package_type,
10652 lookup_package_type_and_set_next, get_printable_method_name,
10653 purify_type_name): Constify a char*.
10654 (build_super_invocation, maybe_generate_finit,
10655 verify_constructor_super, parser_add_interface,
10656 add_superinterfaces, jdep_resolve_class, note_possible_classname,
10657 java_complete_expand_methods, java_expand_finals,
10658 cut_identifier_in_qualified, java_stabilize_reference,
10659 do_unary_numeric_promotion, operator_string, do_merge_string_cste,
10660 merge_string_cste): Prototype.
10661 (single_type_import_declaration, yyerror,
10662 variable_redefinition_error, build_array_from_name,
10663 build_unresolved_array_type, check_class_interface_creation,
10664 resolve_class, complete_class_report_errors,
10665 note_possible_classname, read_import_dir,
10666 find_in_imports_on_demand, resolve_package, fix_constructors,
10667 check_deprecation, lookup_method_invoke,
10668 maybe_build_primttype_type_ref, array_constructor_check_entry):
10669 Constify a char*.
10670 (java_complete_expand_methods, java_expand_finals): Make static.
10671 (convert_narrow): Remove static prototype.
10672
10673 1999-08-03 J"orn Rennecke <amylaar@cygnus.co.uk>
10674
10675 * Makefile.in (decl.o): Depends on $(srcdir)/../defaults.h.
10676
10677 1999-08-02 Richard Henderson <rth@cygnus.com>
10678
10679 * decl.c: Include defaults.h instead of expr.h.
10680 * parse.y: Likewise.
10681
10682 1999-08-02 Jakub Jelinek <jj@ultra.linux.cz>
10683
10684 * java/decl.c (start_java_method): Change all uses of
10685 PROMOTE_PROTOTYPES, so that it tests it as a C expression.
10686 Ensure expr.h is included.
10687 * java/expr.c (pop_arguments): Ditto.
10688 * java/parse.y (expand_start_java_method): Ditto.
10689
10690 1999-08-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10691
10692 * Makefile.in (ALL_CFLAGS): Add '-W -Wall'.
10693
10694 1999-07-31 Bernd Schmidt <bernds@cygnus.co.uk>
10695
10696 * decl.c: Include "function.h".
10697 * except.c: Likewise.
10698 * parse.y: Likewise.
10699 * Makefile.in: Update dependencies.
10700
10701 1999-07-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10702
10703 * expr.c (build_java_soft_divmod): Provide a default case in switch.
10704 (java_lang_expand_expr): Mark parameters `target', `tmode' and
10705 `modifier' with ATTRIBUTE_UNUSED.
10706
10707 * gjavah.c (process_file): Add braces around ambiguous `else'.
10708
10709 * jcf-dump.c (print_access_flags, localvar_free): Change return
10710 type to void.
10711
10712 * parse.y (java_complete_expand_method): Initialize variable
10713 `exception_copy'.
10714 (resolve_qualified_expression_name): Likewise for `field_decl'.
10715 (patch_method_invocation): Likewise for `class_to_search'.
10716 (qualify_ambiguous_name): Likewise for `name' and `ptr_type'.
10717 (patch_assignment): Likewise for `lhs_type'.
10718
10719 * verify.c (verify_jvm_instructions): Remove unused variable
10720 `caller'.
10721
10722 1999-07-25 Richard Henderson <rth@cygnus.com>
10723
10724 * decl.c (va_list_type_node): New.
10725
10726 1999-07-25 Anthony Green <green@cygnus.com>
10727
10728 * gjavah.c (print_stub): New function.
10729 (METHOD_IS_NATIVE): New macro.
10730 (print_mangled_classname): Make static.
10731 (HANDLE_END_FIELD): Don't emit fields during stub generation.
10732 (process_file): Perform stub generation.
10733 (HANDLE_METHOD): Don't emit class decls during stub
10734 generation.
10735 (HANDLE_END_METHOD): Take into account stub generation.
10736 (print_method_info): Handle stub generation.
10737 (print_stub): New function.
10738 (print_cxx_classname): Make signature consistant with others.
10739 (help): Describe -stubs option.
10740 (main): Create stub file.
10741 (version): Use version.c.
10742 (print_full_cxx_name): New function.
10743 (print_c_decl): Use print_full_cxx_name.
10744
10745 1999-07-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10746
10747 * check-init.c (check_init): Handle MAX_EXPR.
10748
10749 1999-07-15 Andrew Haley <aph@cygnus.com>
10750
10751 * lang.c (flag_use_divide_subroutine): New variable.
10752 * typeck.c: (convert_ieee_real_to_integer): Bounds check
10753 fp-to-integer conversion.
10754 (convert): Call convert_ieee_real_to_integer when flag_fast_math
10755 is not set.
10756
10757 * expr.c (build_java_soft_divmod): New function.
10758 (build_java_binop): Call build_java_soft_divmod if
10759 flag_use_divide_subroutine is set.
10760 * decl.c: soft_idiv_node, soft_irem_node, soft_ldiv_node, tree
10761 soft_lrem_node: new builtin functions.
10762 (init_decl_processing) Initialize the new builtins.
10763 * java-tree.h soft_idiv_node, soft_irem_node, soft_ldiv_node, tree
10764 soft_lrem_node: new builtin functions.
10765 (build_java_soft_divmod): New function.
10766 * parse.y: Call build_java_soft_divmod if
10767 flag_use_divide_subroutine is set.
10768 * parse.c: Rebuilt.
10769
10770 * jvspec.c (lang_specific_driver): Always allow an extra arg (for
10771 a --specs= arg) even if not linking.
10772 * lang-options.h (DEFINE_LANG_NAME ("Java")): Add
10773 -fuse-divide-subroutine
10774
10775 1999-07-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
10776
10777 * parse.y (resolve_and_layout): Check methods only once.
10778 (resolve_qualified_expression_name): Verify thrown exceptions
10779 compatibility.
10780 (check_thrown_exceptions): Reject exceptions thrown in
10781 initializer. Error message tuned.
10782
10783 1999-07-14 Andrew Haley <aph@cygnus.com>
10784
10785 * expr.c (expand_expr): Do not return the last statement in a
10786 block as the block's value.
10787
10788 1999-07-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
10789
10790 * expr.c (force_evaluation_order): Save the COMPOUND_EXPR'ed
10791 CALL_EXPR, to avoid order of evaluation changes.
10792
10793 1999-07-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
10794
10795 * parse.y (qualify_ambiguous_name): Do not use
10796 IDENTIFIER_LOCAL_VALUE when name is a STRING_CST.
10797
10798 1999-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10799
10800 * check-init.c (check_init): Handle MAX_EXPR.
10801 * expr.c (force_evaluation_order): Force method call arguments to
10802 be evaluated in left-to-right order.
10803 * parse.y (qualify_ambiguous_name): Loop again to qualify
10804 NEW_ARRAY_EXPR properly.
10805
10806 1999-06-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
10807
10808 * parse.y (patch_invoke): Resolve unresolved invoked method
10809 returned type.
10810 (qualify_ambiguous_name): STRING_CST to qualify expression for
10811 type name resolution.
10812
10813 1999-06-24 Andrew Haley <aph@cygnus.com>
10814
10815 * class.c (finish_class): Whenever a deferred method is
10816 output, rescan the list of methods to see if a new candidate for
10817 output can be found.
10818
10819 1999-06-28 Tom Tromey <tromey@cygnus.com>
10820
10821 * jvspec.c (lang_specific_driver): Recognize --help.
10822
10823 1999-06-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
10824
10825 * parse.y (resolve_package): Fixed bogus return statement.
10826 (patch_method_invocation): Resolve method invocation beginning with
10827 a package name qualifier.
10828
10829 1999-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10830
10831 * Make-lang.in (java.stage1): Depend on stage1-start.
10832 (java.stage2): Likewise for stage2-start.
10833 (java.stage3): Likewise for stage3-start.
10834 (java.stage4): Likewise for stage4-start.
10835
10836 1999-06-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
10837
10838 * parse.y (java_complete_lhs): When doing cross referencing, don't
10839 try to keep file location on a WFL expanded as a CALL_EXPR.
10840
10841 1999-06-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
10842
10843 * parse.y (finish_method_declaration): Insert a RETURN_EXPR when
10844 compiling to class file a void method with an empty method body.
10845 As a side effect, the bytecode backend will generate the
10846 appropriate `return' instruction.
10847
10848 1999-06-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10849
10850 * parse.y (lookup_package_type_and_set_next): New function prototype.
10851 (resolve_package): Search current and imported packages.
10852 (lookup_package_type_and_set_next): New function.
10853
10854 1999-06-22 Andrew Haley <aph@cygnus.com>
10855
10856 * verify.c (verify_jvm_instructions): Check for pending blocks
10857 before invalid PC test and opcode switch, not after.
10858
10859 1999-06-21 Andrew Haley <aph@cygnus.com>
10860
10861 * except.c (find_handler_in_range): The upper limit for exception
10862 ranges is exclusive, not inclusive: (start <= pc < end).
10863 (link_handler): find child pointer which points to outer by
10864 searching sibling list: previous code incorrectly assumed that
10865 outer->outer->first_child must point to outer.
10866 * verify.c (verify_jvm_instructions): FIXME added to code for
10867 `athrow'.
10868 (verify_jvm_instructions): Do not assume that the last block
10869 processed in a subroutine is a block which ends with a `ret'
10870 instruction. With some control flows it is possible that the last
10871 block ends with an `athrow'.
10872
10873 1999-06-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
10874
10875 * parse.y (qualify_ambiguous_name): Reorganized the post
10876 evaluation of non WFL leading expression nodes.
10877
10878 1999-06-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
10879
10880 * parse.y (qualify_ambiguous_name): Handle ARRAY_REF after
10881 CONVERT_EXPR.
10882
10883 1999-06-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
10884
10885 * parse.y (qualify_ambiguous_name): Handle qualified expression
10886 beginning with a STRING_CST.
10887
10888 1999-06-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
10889
10890 * parse.y (register_fields): Set DECL_INITIAL on both
10891 pre-initialized static and public fields.
10892 (resolve_field_access): Static field access expressions to always
10893 use pointer types.
10894 (qualify_ambiguous_name): Work out buried CALL_EXPR for proper
10895 qualification. CONVERT_EXPR to be resolved as an expression name.
10896 (java_complete_lhs): Identify and access qualified final
10897 initialized field in switch statement case expression.
10898 (fold_constant_for_init): Pre-initialized field decl constant to
10899 be folded.
10900
10901 1999-06-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
10902
10903 * parse.y (note_possible_classname): Mark returned node with
10904 QUALIFIED_P only if the original class name contained a '/'.
10905
10906 1999-06-05 Anthony Green <green@cygnus.com>
10907
10908 * Make-lang.in (gcjh): More parallel build fixes.
10909
10910 1999-06-03 Mike Stump <mrs@wrs.com>
10911
10912 * Make-lang.in (JCF_DUMP_SOURCES, jvgenmain): Fix parallel builds.
10913
10914 1999-06-02 Anthony Green <green@cygnus.com>
10915
10916 * except.c (link_handler): Chain exception handlers in order.
10917
10918 1999-06-02 Anthony Green <green@cygnus.com>
10919
10920 * expr.c (expand_byte_code): Fill unreachable bytecode regions
10921 with nops and process as usual in order to always set correct EH
10922 ranges. Emit detailed warnings about unreachable bytecodes.
10923
10924 1999-06-02 Anthony Green <green@cygnus.com>
10925
10926 * class.c (build_utf8_ref): Mark cinit and utf8 tree nodes as
10927 constant.
10928
10929 1999-05-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
10930
10931 * parse.y (lookup_field_wrapper): Unified returned value to NULL
10932 or the searched field decl.
10933
10934 1999-05-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
10935
10936 * parse.y (fold_constant_for_init): Convert numerical constant
10937 values to the type of the assigned field.
10938
10939 1999-05-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
10940
10941 * expr.c (lookup_field): Relaxed the test on class loading error
10942 detection.
10943 * parse.y (fold_constant_for_init): Enabeled old code.
10944
10945 1999-05-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
10946
10947 * parse.y (valid_ref_assignconv_cast_p): Let `_Jv_CheckCast'
10948 decide the validity of the cast of a java.lang.Cloneable reference
10949 to an array.
10950 (patch_conditional_expr): Fixed first argument passed to
10951 binary_numeric_promotion.
10952
10953 1999-05-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
10954
10955 * parse.y (qualify_ambiguous_name): Take into account that a
10956 CONVERT_EXPR might specify a type as a WFL.
10957
10958 1999-05-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
10959
10960 * parse.y (patch_assignment): Save the rhs before using it as an
10961 argument to _Jv_CheckArrayStore.
10962
10963 1999-05-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
10964
10965 * lex.c (java_parse_doc_section): Fixed `tag' buffer size.
10966
10967 1999-05-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
10968
10969 * lex.c (java_lex): Accepts `+' or `-' after the beginning of a
10970 floating point literal only when the exponent indicator has been
10971 parsed.
10972
10973 1999-05-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10974
10975 * parse.y (formal_parameter:): Construct argument tree list
10976 element even if a yet unsupported final parameter was encountered.
10977
10978 1999-05-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
10979
10980 * parse.y (finish_method_declaration): Issue errors for native or
10981 abstract methods declared with a method body, as well as for non
10982 native or non abstract methods with no method body.
10983
10984 1999-05-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10985
10986 * class.c (build_utf8_ref): Initialize variable `field'.
10987
10988 * decl.c (init_decl_processing): Initialize variable `field'.
10989
10990 * expr.c (build_known_method_ref): Mark parameters `method_type',
10991 `method_signature' and `arg_list' with ATTRIBUTE_UNUSED.
10992 (process_jvm_instruction): Likewise for parameter `length'.
10993
10994 * jvspec.c (lang_specific_driver): Mark variables `saw_math',
10995 `saw_libc', `saw_gc', `saw_threadlib' and `saw_libgcj' with
10996 ATTRIBUTE_UNUSED.
10997
10998 * parse.y (maybe_generate_clinit): Remove unused variable
10999 `has_non_primitive_fields'.
11000 (find_in_imports_on_demand): Initialize variables `node_to_use'
11001 and `cl'.
11002 (patch_binop): Likewise for variable `prom_type'.
11003 (patch_unaryop): Likewise for variable `prom_type'.
11004
11005 * verify.c (verify_jvm_instructions): Likewise for variable `last'.
11006
11007 * xref.c (xref_table): Add missing initializer.
11008
11009 1999-05-14 Tom Tromey <tromey@cygnus.com>
11010
11011 * java-except.h (struct eh_range): Removed unused `next' member.
11012 * verify.c (verify_jvm_instructions): Call check_nested_ranges
11013 after adding all exception handlers. Sort exception ranges in
11014 order of start PC.
11015 (struct pc_index): New structure.
11016 (start_pc_cmp): New function.
11017 * except.c (add_handler): Return `void'. Don't call link_handler;
11018 instead construct an ordinary linked list and do range
11019 coalescing.
11020 (check_nested_ranges): New function.
11021 (link_handler): Changed interface to allow merging of eh_ranges.
11022 Split overlapping ranges. Return `void'.
11023
11024 1999-05-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
11025
11026 * parse.y (constructor_block_end:): New rule, tagged <node>.
11027 (constructor_body:): Use `constructor_block_end' instead of
11028 `block_end'.
11029
11030 1999-05-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
11031
11032 * parse.y (statement_nsi:): Pop `for' statement block.
11033 (java_complete_lhs): Labeled blocks containing no statement are
11034 marked as completing normally.
11035
11036 1999-05-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
11037
11038 * xref.c (xref_set_current_fp): New function, defined.
11039 * xref.h (xref_set_current_fp): New function, prototyped.
11040
11041 1999-05-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
11042
11043 * check-init.c (check_init): Take into account that
11044 LABELED_BLOCK_STMT can be empty.
11045
11046 1999-05-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
11047
11048 * parse.y (java_check_regular_methods): Warning check on not
11049 overriding methods with default access in other packages does not
11050 apply to `<clinit>'.
11051 (java_complete_lhs): If block body is an empty_stmt_node, replace
11052 it by NULL_TREE. This prevents gcc from generating an irrelevant
11053 warning.
11054
11055 1999-05-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
11056
11057 * check-init.c (check_init): Removed code accepting to see things
11058 falling through default:, when doing xrefs.
11059 * java-tree.h (do_not_fold): New global variable, declared.
11060 * parse.y (do_not_fold): New global variable, defined.
11061 (java_complete_expand_method): Set `do_not_fold' to the value of
11062 `flag_emit_xref'. When doing xrefs: copy the thrown exceptions,
11063 and reinstall them after them have been purged; do not check for
11064 initializations; do not issue missing return errors.
11065 (java_complete_lhs): Do not attempt to patch INSTANCEOF_EXPR nodes
11066 when doing xrefs.
11067 (patch_binop): Skip the fold part when doing xrefs.
11068 (build_string_concatenation): Skip the concatenation part when
11069 doing xrefs.
11070 (patch_synchronized_statement): Do not generate a try-finally when
11071 doing xrefs.
11072 (patch_throw_statement): When doing xrefs, do not call BUILD_THROW
11073 and keep the location where the throw was seen.
11074 * typeck.c (convert): When `do_not_fold' is set, do not attempt
11075 any treatment on the converted node an simply return a NOP_EXPR of
11076 the targeted type.
11077 * xref.c (xref_get_data): New function, defined.
11078 * xref.h (xref_get_data): New function, declared.
11079 (XREF_GET_DATA): Use xref_get_data.
11080
11081 1999-05-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11082
11083 * gjavah.c (print_include): Cast the result of `strlen' to int
11084 when comparing against a signed value.
11085 (add_namelet): Likewise.
11086
11087 1999-05-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11088
11089 * expr.c (expand_invoke): Mark parameter `nargs' with
11090 ATTRIBUTE_UNUSED.
11091 (PRE_LOOKUP_SWITCH): Likewise for variable `match'.
11092
11093 * jcf-io.c (jcf_unexpected_eof): Mark parameter `count' with
11094 ATTRIBUTE_UNUSED.
11095
11096 * jcf-reader.c (get_attribute): Cast a value to long
11097 when comparing against a signed expression. Likewise.
11098
11099 * lex.h: Never define HOST_WIDE_INT, HOST_BITS_PER_WIDE_INT or
11100 HOST_BITS_PER_CHAR.
11101
11102 1999-05-11 Andrew Haley <aph@cygnus.com>
11103
11104 * parse.y (source_end_java_method): If the current method contains
11105 any exception handlers, force asynchronous_exceptions: this is
11106 necessary because signal handlers in libjava may throw exceptions.
11107 * decl.c (end_java_method): Ditto.
11108
11109 1999-05-11 Tom Tromey <tromey@cygnus.com>
11110
11111 * Make-lang.in (jvspec.o): Don't define WITH_THREAD_x or WITH_GC_x
11112 flags.
11113 * jvspec.c (THREAD_NAME): Removed.
11114 (GC_NAME): Likewise.
11115 (MATHLIB): Likewise.
11116 (WITHLIBC): Likewise.
11117 (GCLIB): Likewise.
11118 (THREADLIB): Likewise.
11119 (MATH_LIBRARY): Likewise.
11120 (lang_specific_driver): Don't add `-l' options to command line.
11121 Instead, add a single --specs option. Recognize `-L' options and
11122 use them to search for spec file.
11123 (find_spec_file): New function.
11124 (SPEC_FILE): New define.
11125
11126 1999-05-11 Dave Brolley <brolley@cygnus.com>
11127
11128 * lang-options.h: -MD, -MMD, -M and -MM not needed here for
11129 cpplib-enabled build.
11130
11131 1999-05-05 Per Bothner <bothner@cygnus.com>
11132
11133 * class.c (make_field_value): DECL_INITIAL may be a string literal;
11134 temporarily zero it while calling rest_of_decl_compilation.
11135
11136 * java-tree.h (string_ptr_type_node): Add declaration.
11137 * decl.c: Define and initialize string_ptr_type_node.
11138 * parse.y (patch_string_cst): Use string_ptr_type_node.
11139
11140 * parse.h (LOOP_HAS_LABEL_P, LOOP_HAS_LABEL_SKIP_P): Removed.
11141 * parse.y (for_statement): Now unconditionally exit_block.
11142 (finish_labeled_statement): No longer exit_block if for-loop.
11143 (patch_loop_statement): Check harder if the loop is already labeled.
11144
11145 * parse.y (patch_initialized_static_field): Removed function.
11146 (maybe_generate_clinit): Removed special handling for interfaces.
11147 (java_complete_expand_methods): Do a preliminary java_complete_tree
11148 on <clinit> to determine if it can be removed.
11149 (java_complete_expand_method): Remove special handling for <clinit>.
11150 (java_complete_lhs): For BLOCK and EXPR_WITH_FILE_LOCATION
11151 optimize if we get back empty_stmt_node.
11152 For MODIFY_EXPR, re-do checking of static initializers.
11153 (fold_constant_for_init): Don't return immediate if VAR_DECL.
11154 For VAR_DECL, pass correct context.
11155
11156 * verify.c (verify_jvm_instructions): Better error messages.
11157
11158 1999-05-03 Tom Tromey <tromey@cygnus.com>
11159
11160 * parse-scan.y (interface_declaration): Call
11161 report_class_declaration for interfaces.
11162
11163 1999-04-30 20:54 -0400 Zack Weinberg <zack@rabi.columbia.edu>
11164
11165 * Makefile.in: Remove -v from bison command lines.
11166
11167 1999-04-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
11168
11169 * check-init.c (check_init): Exclude a case of error when doing
11170 xrefs.
11171 * class.c (layout_class_method): Don't generate the error message
11172 twice when compiling from source.
11173 * lang-options.h: Added `-Wredundant-modifers' and
11174 `-Wunusupported-jdk11' flags and help text.
11175 * lang.c (lang_decode_option): Added support for
11176 `-Wunsupported-jdk11' and `-Wredundant-modifiers'.
11177 flag_static_local_jdk11 and flag_redundant set accordingly.
11178 * lex.c (java_lex): Call BUILD_OPERATOR on CCB_TK.
11179 * parse.h (EXPR_WFL_ADD_COL): New macro.
11180 (DECL_END_SOURCE_LINE): Likewise.
11181 (DECL_INHERITED_SOURCE_LINE): Likewise.
11182 * parse.y (static_ref_err): New function, prototyped.
11183 (CCB_TK): Now tagged <operator>.
11184 (class_body:): Remember the location of the closing '}' of a class
11185 definition when doing xrefs.
11186 (block:): Likewise.
11187 (block_end:): Likewise.
11188 (create_class): Remember the location of the inherited class
11189 identifier when doing xrefs.
11190 (register_fields): Added test on first operand of `init' before
11191 testing it TREE_CODE.
11192 (method_header): Store the location of the class identifier in the
11193 class decl when doing xrefs.
11194 (finish_method_declaration): Don't combine first/last method line
11195 when doing xref.
11196 (java_check_regular_methods): Warning check on not overriding
11197 methods with default access on other packages move before check on
11198 static methods. Initialization of `aflags' also moved up.
11199 (resolve_expression_name): Call static_ref_err to report the error.
11200 (static_ref_err): New function, implemented.
11201 (resolve_field_access): Returned simplified static field access
11202 when doing xrefs.
11203 (resolve_qualified_expression_name): Check for illegal use of
11204 static fields in a non static context. Call static_ref_err to
11205 report error in various places.
11206 (java_complete_tree): Do not fold initialized static fields when
11207 doing xrefs.
11208 (java_complete_lhs): Likewise.
11209
11210 1999-04-29 Anthony Green <green@cygnus.com>
11211
11212 * expr.c (generate_name): Use ASM_GENERATE_INTERNAL_LABEL to
11213 create internal labels.
11214 (lookup_label): Ditto.
11215
11216 1999-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
11217
11218 * class.c (layout_class_method): Generate <clinit>'s rtl for
11219 interfaces.
11220 * decl.c (complete_start_java_method): Don't call _Jv_InitClass
11221 for interfaces' <clinit>.
11222 * expr.c (lookup_field): Search for fields in interfaces.
11223 (expand_invoke): Fixed indentation.
11224 (expand_java_field_op): Likewise. Use IS_CLINIT.
11225 * parse.h (JPRIMITIVE_TYPE_OR_VOID_P): Macro removed.
11226 (IS_CLINIT): New macro.
11227 * parse.y (type_declaration:): Call maybe_generate_clinit after an
11228 interface was parsed.
11229 (maybe_generate_clinit): Don't generate if the current class is an
11230 interface with only fields of primitive types.
11231 (reset_method_name): Use IS_CLINIT.
11232 (java_complete_expand_method): Expand <clinit> when it exists for
11233 interfaces. Use IS_CLINIT.
11234 (resolve_expression_name): Use DECL_CONTEXT instead of
11235 current_class to build static field references.
11236 (java_complete_lhs): Use IS__CLINIT. Don't use SAVE_EXPR on
11237 ARRAY_REF when doing xreferencing.
11238 (check_final_assignment): Fixed typo in leading comment. Use
11239 IS_CLINIT.
11240 (patch_array_ref): Don't fully expand array references when
11241 xreferencing.
11242 (patch_return): Use IS_CLINIT.
11243 (patch_throw_statement): Likewise.
11244
11245 1999-04-22 Tom Tromey <tromey@cygnus.com>
11246
11247 * Make-lang.in (JAVA_SRCS): Added check-init.c.
11248
11249 1999-04-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
11250
11251 * decl.c (predef_filenames, predef_filenames_size): New globals
11252 (init_decl_processing): predef_filenames and predef_filenames_size
11253 initialized.
11254 * java-tree.h (predef_filenames, predef_filenames_size): Declared
11255 extern.
11256 * jcf-parse.c (predefined_filename_p): New function.
11257 (yyparse): Check that files on the command line are specified only
11258 once and issue a warning otherwise.
11259 * parse.h (JPRIMITIVE_TYPE_OR_VOID_P): New macro.
11260 * parse.y (source_end_java_method): Nullify NOP method bodies, to
11261 avoid a gcc warning with -W -Wall turned on.
11262 (java_expand_classes): Abort if errors were encountered.
11263 (java_complete_lhs): If the cross reference flag is set, wrap
11264 field DECL node around a WFL when resolving expression name.
11265
11266 1999-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
11267
11268 * lang.c (lang_decode_option): Fixed returned value when parsing
11269 `-fxref=...' and `-Wall'.
11270 * parse.y (source_end_java_method): Do not generate code when
11271 flag_emit_xref is set.
11272 (resolve_expression_name): Do not build static field access when
11273 flag_emit_xref is set.
11274 (resolve_field_access): No special treatment on `length' when
11275 flag_emit_xref is set. Do not build qualified static field access
11276 when flag_emit_xref is set.
11277 (patch_invoke): Keep the method DECL as operand 0 of the CALL_EXPR
11278 when flag_emit_xref is set.
11279 (patch_assignment): Do not generate array store runtime check when
11280 flag_emit_xref is set.
11281 * xref.c (xref_flag_value): Fixed function declaration
11282 indentation.
11283 (xset_set_data): New function.
11284 * xref.h (xref_set_data): Added prototype for new function.
11285 (typedef struct xref_flag_table): New field data.
11286 (XREF_GET_DATA): New macro.
11287
11288 1999-04-19 Tom Tromey <tromey@cygnus.com>
11289
11290 * xref.h (enum): Removed trailing comma.
11291
11292 * parse.y (resolve_qualified_expression_name): Added missing
11293 `break'.
11294
11295 1999-04-15 Anthony Green <green@cygnus.com>
11296
11297 * gjavah.c: New prototypes for java_float_finite and
11298 java_double_finite.
11299
11300 1999-04-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
11301
11302 * parse.y (patch_unaryop): Fixed ++/-- operator check on array
11303 references.
11304
11305 1999-04-06 Jeffrey A Law (law@cygnus.com)
11306
11307 * Makefile.in (TREE_H): Add tree-check.h.
11308 (RTL_H): Add genrtl.h.
11309
11310 1999-04-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
11311
11312 * parse.y (patch_assignment): Added ArrayStoreException runtime
11313 check.
11314
11315 1999-04-06 Per Bothner <bothner@cygnus.com>
11316
11317 * expr.c (pop_type_0): New function.
11318 (pop_type): Use pop_type_0.
11319 * java-tree.h (pop_type_0): New declaration.
11320 * verify.c (verify_jvm_instructions): Check return instructions.
11321
11322 * parse.y (patch_binop): Don't fold if non-constant and emiting
11323 class files.
11324
11325 1999-04-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11326
11327 * Makefile.in (gjavah.o): Depend on $(JAVA_TREE_H).
11328
11329 * gjavah.c: Include math.h earlier. Include tree.h/java-tree.h.
11330 (main_jcf): Don't define.
11331 (process_file): Don't set `main_jcf'.
11332
11333 * java-tree.h (main_jcf): Don't declare.
11334
11335 * jcf-parse.c (main_jcf): Add static definition.
11336
11337 * lang.c (main_jcf): Don't define.
11338
11339 1999-04-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11340
11341 * class.c (add_method_1): Cast the argument of `bzero' to PTR.
11342
11343 * decl.c (copy_lang_decl): Likewise for `bcopy'.
11344
11345 * jcf-depend.c: Include "config.h", not <config.h>.
11346
11347 * jcf-parse.c (jcf_figure_file_type): Cast the arguments of
11348 `bcopy' to PTR.
11349
11350 * jcf-path.c: Include "config.h", not <config.h>.
11351
11352 * lex.c: Don't include various system header files.
11353 (java_init_lex): Cast the argument of `bzero' to PTR
11354
11355 * parse-scan.y (java_push_parser_context): Likewise.
11356
11357 * parse.y (java_push_parser_context): Likewise.
11358 (patch_bc_statement): Match format specifier to variable argument.
11359
11360 * xref.c: Don't include <stdio.h>.
11361
11362 1999-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
11363
11364 * parse.y (struct parser_ctxt *ctxp): Now global.
11365 (declare_local_variables): Use WFL compound value for the
11366 declaration source line value, when doing cross-referencing.
11367
11368 1999-03-31 Tom Tromey <tromey@cygnus.com>
11369
11370 * gjavah.c (print_field_info): Allow constants of other types.
11371 (print_include): Generate include when new name is proper prefix
11372 of already printed name.
11373 (add_namelet): Likewise.
11374 (cxx_keyword_subst): New function.
11375 (print_method_info): Use it.
11376 (print_field_name): New function.
11377 (get_field_name): New function.
11378 (print_field_info): Use get_field_name and print_field_name.
11379
11380 1999-03-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11381
11382 * Makefile.in (keyword.h): Generate using gperf language 'C', not
11383 'KR-C', so gperf uses the `const' keyword on strings.
11384
11385 * keyword.gperf (java_keyword): Const-ify a char*.
11386
11387 1999-03-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
11388
11389 * parse.y (patch_bc_statement): Fixed identation and a bogus
11390 `printf' format.
11391
11392 1999-03-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
11393
11394 * parse.y (patch_assignment): Allow static variables in other
11395 classes to be assigned.
11396
11397 1999-03-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11398
11399 * class.c (maybe_add_interface): Remove unused variable
11400 `interface_binfo'.
11401 (make_class_data): Use = for assignment, not ==. Likewise.
11402 (emit_register_classes): Remove unused variable `decl'.
11403
11404 * lex.c: Fix comment so as not to contain an embedded `/*'.
11405
11406 * verify.c (verify_jvm_instructions): Remove unused variable
11407 `self_type'.
11408
11409 1999-03-27 Per Bothner <bothner@cygnus.com>
11410
11411 * parse.y (complete_loop_body): Rename to finish_loop_body.
11412 (complete_labeled_statement): Rename to finish_labeled_statement.
11413 (complete_for_loop): Rename to finish_for_loop.
11414 (complete_method_declaration): Rename to finish_method_declaration.
11415
11416 * java-tree.h (continue_identifier_node): New global node.
11417 * decl.c: Define and initialize continue_identifier_node.
11418 * parse.y (generate_labeled_block): Remove - no longer needed.
11419 (build_loop_body): Use continue_identifier_node for continue block.
11420 (finish_labeled_statement): Also do pop_labeled_block actions.
11421 (java_complete_lhs): POP_LOOP even if error.
11422 (build_labeled_block): Special handling for continue_identifier_node.
11423 (patch_loop_statement): Re-organize.
11424 (patch_bc_statement): Re-write.
11425
11426 1999-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
11427
11428 * parse.h (EXPR_WFL_GET_LINECOL): Set a line and column count
11429 using a WFL compound value.
11430 * parse.y (xref.h): Include.
11431 (maybe_create_class_interface_decl): Set DECL_SOURCE_LINE to the
11432 WFL compound value.
11433 (register_fields): Set WFL compound value to lineno if doing
11434 xrefs.
11435 (java_complete_expand_method): Call expand_xref if flag_emit_xref
11436 is set.
11437 * xref.c (system.h, jcf.h, parse.h, obstack.h): Include.
11438 * xref.h (expand_xref): Prototype renamed from xref_generate.
11439
11440 1999-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
11441
11442 * parse.h (BLOCK_CHAIN_DECL): New use GET_CURRENT_BLOCK.
11443 (GET_CURRENT_BLOCK): New macro.
11444 * parse.y (current_static_block): New global variable.
11445 (method_body:): Define action.
11446 (complete_method_declaration): Set current_function_decl to NULL
11447 when work on the current method is done.
11448 (declare_local_variables): Use GET_CURRENT_BLOCK.
11449 (java_method_add_stmt): Likewise.
11450 (java_complete_expand_method): Disable the use of `this' when
11451 expanding <clinit>.
11452 (enter_a_block): If no current method exist, use
11453 current_static_block to link static initializer blocks.
11454 (exit_block): Rewritten to use current_static_block when no current
11455 method decl exists.
11456 (lookup_name_in_blocks): Use GET_CURRENT_BLOCK.
11457 (patch_return): Forbid the use of `return' in static initializers.
11458 (patch_throw_statement): Fixed indentation. Issue specific error
11459 for uncaught thrown checked exception in static initializer
11460 blocks. Removed FIXME.
11461
11462 1999-03-25 Zack Weinberg <zack@rabi.columbia.edu>
11463
11464 * java/Make-lang.in: Remove all references to gcj.o/gcj.c.
11465 Link gcj from gcc.o.
11466
11467 1999-03-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
11468
11469 * parse.y (find_applicable_accessible_methods_list): When dealing
11470 with interface: ensure that a given interface or java.lang.Object
11471 are searched only once.
11472
11473 1999-03-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11474
11475 * gjavah.c (print_c_decl): Remove unused argument `flags'.
11476
11477 * jcf-dump.c (print_access_flags): Add braces around if-else.
11478
11479 * jvspec.c (lang_specific_driver): Wrap variable `len' in macro
11480 COMBINE_INPUTS.
11481
11482 * lex.c (build_wfl_node): Add static prototype.
11483
11484 * lex.h (build_wfl_node): Remove static prototype.
11485
11486 * parse.y: Include lex.c early enough to declare everything needed.
11487 Ensure calls to `build_wfl_node' pass the proper arguments.
11488 (create_class): Remove unused variable `super_decl'.
11489 (get_printable_method_name): Initialize variable `name'.
11490
11491 1999-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
11492
11493 * Changelog: Fixed 1999-03-22 typos.
11494 * lang.c (lang_decode_option): Fixed typo in error string in the
11495 XARG section.
11496
11497 1999-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
11498
11499 * Makefile.in (JAVA_OBJS): Added entry xref.o.
11500 (xref.o): New rule.
11501 * java-tree.h (flag_emit_xref): Declared extern.
11502 * lang.c (xref.h): Included.
11503 (flag_emit_xref): New global variable.
11504 (lang_decode_option): Added support for -fxref.
11505 * xref.c: Created.
11506 * xref.h: Likewise.
11507
11508 1999-03-21 Manfred Hollstein <manfred@s-direktnet.de>
11509
11510 * Make-lang.in ($(GCJ)$(exeext)): Add intl.o to list of files to be
11511 linked with.
11512
11513 1999-03-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11514
11515 * Makefile.in (jcf-dump.o): Depend on $(CONFIG_H)
11516 $(srcdir)/../system.h and $(JAVA_TREE_H).
11517 (jcf-io.o): Depend on $(JAVA_TREE_H).
11518 (mangle.o): Likewise.
11519
11520 * check-init.c (check_cond_init): Add static prototype.
11521
11522 * class.c (build_java_method_type, hashUtf8String,
11523 make_field_value, get_dispatch_vector, get_dispatch_table,
11524 append_gpp_mangled_type, mangle_static_field): Likewise.
11525 (strLengthUtf8): Hide unused definition.
11526 (hashUtf8String): Const-ify.
11527 (make_field_value): Un-ANSI-fy.
11528
11529 * constants.c: Move inclusion of jcf.h above java-tree.h.
11530 (set_constant_entry, find_class_or_string_constant,
11531 find_name_and_type_constant, get_tag_node,
11532 build_constant_data_ref): Add static prototype.
11533
11534 * decl.c (push_jvm_slot, builtin_function,
11535 lookup_name_current_level): Likewise.
11536 (builtin_function): Const-ify.
11537
11538 * except.c (expand_start_java_handler, expand_end_java_handler):
11539 Add static prototype.
11540
11541 * expr.c (flush_quick_stack, push_value, pop_value,
11542 java_stack_swap, java_stack_dup, build_java_athrow,
11543 build_java_jsr, build_java_ret, expand_java_multianewarray,
11544 expand_java_arraystore, expand_java_arrayload,
11545 expand_java_array_length, build_java_monitor, expand_java_pushc,
11546 expand_java_return, expand_java_NEW, expand_java_INSTANCEOF,
11547 expand_java_CHECKCAST, expand_iinc, expand_java_binop, note_label,
11548 expand_compare, expand_test, expand_cond, expand_java_goto,
11549 expand_java_call, expand_java_ret, pop_arguments, expand_invoke,
11550 expand_java_field_op, java_push_constant_from_pool): Likewise.
11551
11552 (decode_newarray_type, expand_iinc): Un-ANSI-fy.
11553 (build_java_arraynull_check): Mark parameters `node' and `type'
11554 with ATTRIBUTE_UNUSED.
11555 (note_label): Likewise for parameter `current_pc'.
11556 (expand_java_call, expand_java_ret): Hide unused definition.
11557
11558 * java-tree.h (make_class, build_constants_constructor,
11559 java_set_exception_lang_code, pop_labeled_block, emit_handlers,
11560 init_outgoing_cpool, register_class, emit_register_classes,
11561 java_layout_seen_class_methods): Prototype.
11562 (unicode_mangling_length): Const-ify.
11563 (append_gpp_mangled_name, append_gpp_mangled_classtype,
11564 emit_unicode_mangled_name, format_int, format_uint,
11565 jcf_trim_old_input, jcf_print_utf8, jcf_print_char,
11566 jcf_print_utf8_replace, open_class): Prototype.
11567
11568 * jcf-dump.c: Include "config.h", not <config.h>. Don't include
11569 <stdio.h>. Include tree.h/java-tree.h.
11570 (utf8_equal_string usage, process_class): Add static prototype.
11571 (open_class): Don't prototype this here.
11572 (utf8_equal_string): Match arguments to format specifiers.
11573 (HANDLE_CODE_ATTRIBUTE, BRANCH, JSR, RET, LOOKUP_SWITCH,
11574 TABLE_SWITCH, disassemble_method): Likewise.
11575
11576 * jcf-io.c: Include tree.h/java-tree.h.
11577 (open_class, find_classfile, jcf_print_utf8,
11578 jcf_print_utf8_replace): Const-ify.
11579
11580 * jcf-parse.c (parse_zip_file_entries, process_zip_dir,
11581 parse_class_file): Add static prototype.
11582 (find_in_current_zip): Match definition to existing static
11583 prototype.
11584
11585 * jcf-write.c: Include jcf.h before tree.h/java-tree.h.
11586 (alloc_chunk, append_chunk, append_chunk_copy, gen_jcf_label,
11587 finish_jcf_block, define_jcf_label, get_jcf_label_here,
11588 put_linenumber, localvar_alloc, localvar_free, get_access_flags,
11589 write_chunks, adjust_typed_op, generate_bytecode_conditional,
11590 generate_bytecode_return, perform_relocations, init_jcf_state,
11591 init_jcf_method, release_jcf_state, generate_classfile):
11592 Add static prototype.
11593 (emit_unop): Mark parameter `type' with ATTRIBUTE_UNUSED.
11594 (make_class_file_name): Const-ify.
11595
11596 * jcf.h (find_classfile): Const-ify.
11597
11598 * jv-scan.c (reset_report): Remove prototype.
11599
11600 * jvgenmain.c: Include jcf.h/tree.h/java-tree.h.
11601 (error): Rewrite to allow varargs.
11602
11603 * lang.c (lang_f_options): Const-ify.
11604
11605 * lex.c (java_parse_escape_sequence): Add static prototype.
11606 (java_allocate_new_line): Match definition to existing static
11607 prototype.
11608
11609 * mangle.c Include tree.h/java-tree.h.
11610 (unicode_mangling_length, emit_unicode_mangled_name,
11611 append_gpp_mangled_name, append_gpp_mangled_classtype): Const-ify.
11612
11613 * parse.h (jdep_code): Remove trailing comma in enumeration.
11614 (java_get_line_col): Move prototype outside of !JC1_LITE test.
11615 (reset_report): Add prototype.
11616
11617 * verify.c (push_pending_label, merge_types): Add static
11618 prototypes.
11619
11620 * zipfile.h (opendir_in_zip, open_in_zip): Prototype.
11621
11622 1999-03-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
11623
11624 * parse.y (find_applicable_accessible_methods_list): Extend the
11625 search to superinterfaces when relevant.
11626 (search_applicable_methods_list): New function.
11627
11628 1999-03-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
11629
11630 * class.c (unmangle_classname): Implemented stricter testing
11631 before setting the QUALIFIED_P flag on an identifier.
11632
11633 1999-03-16 Per Bothner <bothner@cygnus.com>
11634
11635 * parse.y (java_complete_lhs): Call force_evaluation_order
11636 after patch_newarray.
11637 (patch_binop): Don't call fold if there are side effects.
11638
11639 1999-03-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
11640
11641 * parse.y (java_stabilize_reference): Use save_expr instead of
11642 building a SAVE_EXPR node.
11643 (java_complete_lhs): Patch the resulting string of the `+='
11644 operator (if necessary) and complete the RHS after having built
11645 the cast.
11646
11647 1999-03-15 Per Bothner <bothner@cygnus.com>
11648
11649 * class.c (make_class): Don't set CLASS_P here (because
11650 this function is also called by build_java_array_type).
11651 (push_class): Set CLASS_P here instead.
11652 * parse.h (TYPE_CLASS_P): Check for TYPE_ARRAY_P is redundant.
11653
11654 * jcf-dump.c (print_access_flags): Take extra parameter to indicate
11655 context. If the context is class, perfer "super" over "synchronized".
11656 * jcf-write.c (generate_classfile): Don't add ACC_SUPER if interface.
11657
11658 * parse.y (create_class): Don't call parser_check_super here;
11659 it is not robust. Always wait until later.
11660
11661 * parse.y (method_header): For interfaces, set ACC_ABSTRACT (to
11662 match what JDK 1.2 does), but don't set ACC_PUBLIC.
11663
11664 1999-03-13 Per Bothner <bothner@cygnus.com>
11665
11666 * lex.c (java_read_char): UNGET invalid non-initial utf8 character.
11667 * lex.h (UNGETC): Change misleading macro.
11668
11669 1999-03-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
11670
11671 * parse.y (java_stabilize_reference): Return NODE when patching a
11672 COMPOUND_EXPR.
11673 (java_complete_lhs): Put parenthesis around truth values.
11674
11675 1999-03-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
11676
11677 * class.c (layout_class_method): Don't make rtl for interface
11678 methods.
11679 * parse.h (GET_TYPE_NAME): New macro.
11680 * parse.y (if_then_statement:): Fixed indentation.
11681 (if_then_else_statement:): Likewise.
11682 (for_statement:): Fixed spacing.
11683 (try_statement:): Fixed indentation.
11684 (create_interface): Don't force interfaces to be abstract.
11685 (method_header): Abstract methods are OK in interfaces.
11686 (declare_local_variables): Fixed typo in comment.
11687 (java_complete_expand_method): Fixed indentation.
11688 (resolve_qualified_expression_name): Use GET_TYPE_NAME to report
11689 non accessible fields.
11690 (java_stabilize_reference): New function.
11691 (java_complete_lhs): Fixed indentation. Use
11692 java_stabilize_reference in compound assignment. Insert the
11693 cast. If not processing `+' fix string constants before processing
11694 binop.
11695
11696 1999-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11697
11698 * constants.c (find_class_or_string_constant): Cast variable `j'
11699 to a `jword' when comparing against one.
11700
11701 * expr.c (java_lang_expand_expr): Remove unused variables
11702 `has_finally_p' and `op0'.
11703
11704 * gjavah.c (print_field_info): Cast a value to jint when comparing
11705 against one. Likewise for a jlong.
11706 (add_namelet): Likewise cast a `sizeof' to an int when comparing
11707 against a signed quantity.
11708
11709 * jcf-dump.c (print_signature_type): Remove unused variable `digit'.
11710 (print_signature): Don't needlessly dereference variable `str'
11711
11712 * jcf-reader.c (get_attribute): Mark variables `max_stack' and
11713 `max_locals' with ATTRIBUTE_UNUSED.
11714 (jcf_parse_class): Likewise for variable `index'.
11715
11716 * parse.h (reverse_jdep_list): Remove static prototype.
11717
11718 * parse.y (build_jump_to_finally): Remove prototype and definition.
11719 (reverse_jdep_list): Add static prototype.
11720
11721 * typeck.c (convert_ieee_real_to_integer): Remove unused variables
11722 `assignment' and `expr_decl'.
11723
11724 * verify.c (verify_jvm_instructions): Remove unused label `bad_ldc'.
11725
11726 1999-03-12 Andrew Haley <aph@cygnus.com>
11727
11728 * jcf-path.c (add_entry): alloca len+2 rather than len+1 bytes;
11729 we'll need a directory separator and a null character.
11730
11731 1999-03-10 Per Bothner <bothner@cygnus.com>
11732
11733 * jcf-write.c (generate_bytecode_insns): Handle __builtin_fmod, for %.
11734
11735 Tue Mar 9 11:52:08 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
11736
11737 * parse.y (method_header): Don't set ACC_ABSTRACT flags on
11738 interfaces.
11739
11740 1999-03-05 Per Bothner <bothner@cygnus.com>
11741
11742 * lex.c (java_parse_end_comment): Take extra parameter (next char).
11743
11744 * class.c (build_utf8_ref): Fix possible name class/ambiguity.
11745
11746 * class.c (layout_class_method): A static method in a base class
11747 is never overridden, so treat it like it doesn't exist.
11748 However, do complain about private non-static method overriding
11749 public static method.
11750
11751 * parse.y: Don't set unused INITIALIZED_P flag.
11752 * java-tree.h (INITIALIZED_P): Removed no-longer needed flag.
11753
11754 * parse.y (find_expr_with_wfl): Optimize tail-calls.
11755 (build_array_from_name): Re-order &index[string] to &string[index].
11756
11757 * parse.y (java_complete_lhs): Don't call patch_assignment if rhs is
11758 error_mark (it might catch more errors, but it is more likely to lose).
11759
11760 1999-03-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11761
11762 * Makefile.in (jcf-parse.o): Depend on $(PARSE_H).
11763 (parse-scan.o): Depend on toplev.h.
11764
11765 * class.c (make_method_value): Add prototype. Make it static.
11766 Remove unused second argument, caller changed.
11767
11768 * expr.c (java_lang_expand_expr): Remove unused variable
11769 `return_label'.
11770
11771 * java-tree.h: Don't prototype find_in_current_zip.
11772 Add prototypes for verify_constant_pool, start_java_method,
11773 end_java_method, give_name_to_locals, expand_byte_code,
11774 open_in_zip, set_constant_value, find_constant1, find_constant2,
11775 find_utf8_constant, find_string_constant, find_class_constant,
11776 find_fieldref_index, find_methodref_index, write_constant_pool,
11777 count_constant_pool_bytes and encode_newarray_type.
11778
11779 * jcf-dump.c: Remove unused variable `LONG_temp'.
11780
11781 * jcf-parse.c: Include parse.h.
11782 (jcf_parse_source): Remove unused parameter, all callers changed.
11783 (jcf_figure_file_type): Add static prototype.
11784 (find_in_current_zip): Likewise. Also remove unused parameter,
11785 all callers changed.
11786 (read_class): Initialize variable `saved_pos'.
11787
11788 * jcf-reader.c (jcf_parse_preamble): Mark variables
11789 `minor_version' and `major_version' with ATTRIBUTE_UNUSED.
11790
11791 * lex.c (java_is_eol): Wrap prototype and definition in !JC1_LITE.
11792 (java_init_lex): Wrap variable `java_lang_imported' in !JC1_LITE.
11793 (java_parse_doc_section): Initialize variable `seen_star'.
11794 (java_lex): Wrap variable `number_beginning' in !JC1_LITE.
11795 (java_lex_error): Mark parameters `msg' and `forward' with
11796 ATTRIBUTE_UNUSED.
11797 (java_get_line_col): Mark parameters `filename' and `line' with
11798 ATTRIBUTE_UNUSED.
11799
11800 * parse-scan.y: Include toplev.h.
11801 (yyerror): Mark parameter `msg' with ATTRIBUTE_UNUSED.
11802
11803 * parse.h: use `struct JCF', not plain `JCF'.
11804 (java_parser_context_save_global, java_expand_classes
11805 java_parser_context_restore_global, java_parse): Add prototypes.
11806
11807 * typeck.c (convert_ieee_real_to_integer): Remove unused variable
11808 `node'.
11809
11810 1999-02-24 Per Bothner <bothner@deneb.cygnus.com>
11811
11812 * check-init.c (check_init): COPYN takes word count, not bit count.
11813
11814 1999-02-26 Per Bothner <bothner@cygnus.com>
11815
11816 * typeck.c (convert_ieee_real_to_integer): Use save_expr instead of
11817 explicit build_decl. (Avoids crash in reload when optimizing.)
11818
11819 1999-02-25 Per Bothner <bothner@cygnus.com>
11820
11821 * decl.c (complete_start_java_method): Handle synchronized method
11822 even when compiling from bytecode.
11823
11824 1999-02-26 Tom Tromey <tromey@cygnus.com>
11825
11826 * gjavah.c (add_class_decl): Only generate `#include' if outer
11827 class is not the name of the class we are processing. Correctly
11828 append `.h' in #include.
11829 (process_file): Clean up newlines around generated `#include's.
11830 (decode_signature_piece): Correctly handle inner classes.
11831 (struct include): New structure.
11832 (all_includes): New global.
11833 (print_include): New function.
11834 (add_class_decl): Use it.
11835 (process_file): Likewise.
11836 (add_class_decl): Generate include for java-array.h if array
11837 seen.
11838 (process_file): Don't generate java-array.h include.
11839
11840 * gjavah.c (add_namelet): Check for standard package names here.
11841 (add_class_decl): Don't check for standard package names here.
11842
11843 1999-02-25 Tom Tromey <tromey@cygnus.com>
11844
11845 * parse.y (read_import_dir): Use `|=', not `+=', to set `found'.
11846 When reading a zip file, only use strncmp if both strings are
11847 bigger than the buffer length. Initialize `k' when looping
11848 through zip file.
11849
11850 1999-02-24 Tom Tromey <tromey@cygnus.com>
11851
11852 * gjavah.c (struct namelet): New structure.
11853 (add_namelet): New function.
11854 (print_namelet): New function.
11855 (print_class_decls): Use add_namelet and print_namelet to generate
11856 namespaces and not classes.
11857 (method_printed): New global.
11858 (HANDLE_END_METHOD): Examine method_printed.
11859 (print_method_info): Set method_printed when required. Print
11860 error if function to be ignored is marked virtual. Handle $finit$
11861 method.
11862 (METHOD_IS_FINAL): New macro.
11863 (print_field_info): Use it.
11864 (HANDLE_METHOD): Clear method_printed.
11865 (method_pass): New global.
11866 (HANDLE_END_FIELD): Call add_class_decl on the first pass.
11867 (process_file): Do two passes over both fields and methods.
11868 (HANDLE_METHOD): Examine method_pass.
11869 (root): New global.
11870 (add_class_decl): New function.
11871 (print_class_decls): Don't scan over entire constant pool.
11872
11873 1999-02-23 Tom Tromey <tromey@cygnus.com>
11874
11875 * jvspec.c (lang_specific_driver): Recognize -fsyntax-only and
11876 disable linking in that case.
11877
11878 1999-02-20 Tom Tromey <tromey@cygnus.com>
11879
11880 * jcf.h (UTF8_GET): Mask first byte of 3-byte encoding with 0x0f,
11881 not 0x1f.
11882
11883 1999-02-21 Per Bothner <bothner@cygnus.com>
11884
11885 * decl.c (build_result_decl), java-tree.h: New method.
11886 (complete_start_java_method): Handle synchronized methods.
11887 Don't build DECL_RESULT here. (Ordering dependency problem.)
11888 (start_java_method): Call build_result_decl here instead ...
11889 * parse.y (java_complete_expand_method): ... and here.
11890 (expand_start_java_method): Don't call complete_start_java_method here.
11891 (java_complete_expand_method): Call it here instead.
11892 * parse.h (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Moved to ..
11893 * java-tree.h: ... here.
11894
11895 * expr.c (force_evaluation_order): Fix typo, don't handle ARRAY_REF.
11896 * parse.y (java_complete_lhs): Don't call force_evaluation_order
11897 for ARRAY_REF - it doesn't work when array bounds are checked.
11898 (patch_array_ref): Handle it here instead.
11899
11900 * jcf-write.c (generate_classfile): Emit "Exceptions" attribute.
11901
11902 1999-02-19 Per Bothner <bothner@cygnus.com>
11903
11904 Force left-to-right evaluation of binary operations etc.
11905 * expr.c (force_evaluation_order), java-tree.h: New function.
11906 * parse.y (java_complete_lhs): Pass binary operations, procedure
11907 calls, and ARRAY_REFs to force_evaluation_order.
11908 (various): Set TREE_SIDE_EFFECTS more carefully.
11909
11910 Tolerate random (non-UTF8) encoding in comments without complaining.
11911 * lex.c (java_read_char): Return 0xFFFE if bad UTF8 encoding.
11912 (java_is_eol): Handle '\r' followed by '\n' instead of vice versa.
11913
11914 * parse.y (resolve_qualified_expression_name): Handle error_mark.
11915 (java_complete_node case EXPR_WITH_FILE_LOCATION): Likewise.
11916
11917 * parse.y (java_complete_lhs): Ignore an empty statement in a
11918 COMPOUND_EXPR. Don't complain about empty statement after return.
11919
11920 1999-02-19 Per Bothner <bothner@cygnus.com>
11921
11922 * parse.y (obtain_incomplete_type): Don't wrap unknown types
11923 in TREE_LIST - just chain the POINTER_TYPEs together.
11924 (resolve_class): If type already resolved, return decl.
11925 After resolving, update TREE_TYPE(class_type), and name (if array).
11926 * parse.h (do_resolve_class), parse.y: Make non-static.
11927 * class.c (maybe_layout_super_class): Take this_class argument.
11928 Do do_resolve_class if necessary.
11929 (layout_class, layout_class_methods): Adjust calls appropriately.
11930 * parse.h (JDEP_TO_RESOLVE, JDEP_RESOLVED_DECL, JDEP_RESOLVED,
11931 JDEP_RESOLVED_P): Redefined for new TREE_LIST-less convention.
11932 * typeck.c (build_java_array_type): Don't call layout_class.
11933
11934 1999-02-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
11935
11936 * parse.y (check_pkg_class_access): Allow private class access
11937 within the same package.
11938 (strip_out_static_field_access_decl): New function.
11939 (patch_unaryop): Call strip_out_static_field_access_decl on ++/--
11940 operator argument before testing its nature.
11941
11942 1999-02-03 Per Bothner <bothner@cygnus.com>
11943
11944 * java-tree.def (FINALLY_EXPR): Removed. (Now uses TRY_FINALLY_EXPR.)
11945 (TRY_EXPR): Simplify - it no longer has a finally clause.
11946 * check-init.c (check_init): Handle TRY_FINALLY_EXPR.
11947 Simpler handling of TRY_EXPR, which no longer has a finally clause.
11948 * expr.c (java_lang_expand_expr): Likewise.
11949 * java-tree.h (CATCH_EXPR_GET_EXPR): Removed - no longer needed.
11950 * parse.h (java_get_catch_block), parse.y: Removed - no longer needed.
11951 * parse.y (java_complete_lhs): Add support for TRY_FIANLLY_EXPR.
11952 (build_try_statement): Remove finally parameter and handling.
11953 (build_try_finally_statement): New function.
11954 (patch_try_statement): No longer need to support finally clause.
11955 (try_statement): Update grammar action rules.
11956 * jcf-write.c (generate_bytecode_insns): Handle TRY_FINALLY_EXPR.
11957 Simpler handling of TRY_EXPR, which no longer has a finally clause.
11958
11959 1998-11-26 Andrew Haley <aph@viagra.cygnus.co.uk>
11960
11961 * jcf-parse.c (get_constant): Add braces around computation of 'd'
11962 when REAL_ARITHMETIC is not defined. [Oct 26 fix got overwritten -PB]
11963
11964 1999-02-17 Andrew Haley <aph@cygnus.com>
11965
11966 * class.c (build_utf8_ref): Back out broken patch which was
11967 intended to to output signatures using '.' as a separator.
11968
11969 * class.c (make_class_data): Output signatures using '.' as a
11970 separator, rather than '/'.
11971 (mangled_classname): Likewise.
11972 (make_field_value): Likewise.
11973 (make_method_value): Likewise.
11974 * constants.c (alloc_class_constant): Likewise.
11975 * expr.c (build_invokeinterface): Likewise.
11976
11977 1999-02-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
11978
11979 * parse.y (valid_builtin_assignconv_identity_widening_p): Got rid
11980 of an ancient workaround.
11981
11982 1999-02-10 Jeffrey A Law (law@cygnus.com)
11983
11984 * jvspec.c (xmalloc): Kill the prototype. It does not belong
11985 here anymore.
11986
11987 1999-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
11988
11989 * lex.c (yylex): Encode \0 as UTF8.
11990
11991 1999-02-10 Tom Tromey <tromey@cygnus.com>
11992
11993 * jvspec.c (lang_specific_driver): Use libgcj, not libjava.
11994 * Makefile.in (jcf-path.o): Define LIBGCJ_ZIP_FILE.
11995 (libgcj_zip): Renamed.
11996 * jcf-path.c (add_entry): Use LIBGCJ_ZIP_FILE, not
11997 LIBJAVA_ZIP_FILE.
11998 (jcf_path_init): Use LIBGCJ_ZIP_FILE.
11999
12000 * jvspec.c (THREAD_NAME): Renamed -lqthreads to -lgcjcoop.
12001 (GC_NAME): Renamed -lgc to -lgcjgc.
12002
12003 1999-02-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
12004
12005 * lex.c (java_lang_cloneable): Initialize.
12006 * parse.y (java_lang_cloneable): New static variable.
12007 (qualify_ambiguous_name): Take CONVERT_EXPR into account when
12008 doing one more qualification round.
12009 (valid_ref_assignconv_cast_p): Reject null source or
12010 destination. Allow an array to be cast into java.lang.Cloneable.
12011 (patch_cast): Swapped two first arguments to first call to
12012 valid_ref_assignconv_cast_p.
12013
12014 1999-02-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
12015
12016 * parse.h: DECL_P renamed JDECL_P.
12017 * parse.y: DECL_P replaced by JDECL_P.
12018 (build_array_from_name): Always use pointer's type.
12019 (patch_bc_statement): Extra code to search continue target in a
12020 for loop. Fixed comments. Continue target is current loop when
12021 unlabeled.
12022
12023 1999-02-05 Andrew Haley <aph@cygnus.com>
12024
12025 * class.c (make_class_data): The superclass of an interface should
12026 be null, not class Object.
12027
12028 * lex.c (java_lex): Sign extend hex literals.
12029
12030 1999-02-04 Andrew Haley <aph@cygnus.com>
12031
12032 * class.c (build_utf8_ref): Output signatures using '.' as a
12033 separator, rather than '/'.
12034 (make_class_data): Likewise.
12035
12036 1999-02-03 Marc Espie <Marc.Espie@liafa.jussieu.fr>
12037
12038 * Make-lang.in ($(GCJ)(exeext)): Remove choose-temp.o, pexecute.o and
12039 mkstemp.o. Get them from libiberty now.
12040
12041 1999-02-02 Jeffrey A Law (law@cygnus.com)
12042
12043 * jcf-io.c: Do not include sys/stat.h or sys/wait.h
12044
12045 1999-02-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12046
12047 * jvspec.c (xmalloc): Fix the prototype to match the one obtained
12048 from libiberty.h
12049
12050 1999-02-02 Per Bothner <bothner@cygnus.com>
12051
12052 Optimize: `return (a ? b : c)' as: `if (a) return b; else return c;'.
12053 * jcf-write.c (generate_bytecode_return): New function.
12054 (generate_bytecode_insns): Use it, for RETURN_EXPR.
12055
12056 * jcf-write.c (generate_bytecode_insns): For REAL_CST that is 0 or 1,
12057 generate special [fd]const_[01] instructions.
12058
12059 * jcf-parse.c (yyparse): Don't emit_register_classes if -fsyntax-only.
12060
12061 * verify.c (verify_jvm_instructions): Do INVALIDATE_PC after
12062 handling OPCODE_lookupswitch or OPCODE_tableswitch.
12063
12064 1999-02-01 Per Bothner <bothner@cygnus.com>
12065
12066 * parse.y (patch_method_invocation): Handle calling static methods,
12067 even in the form EXPR.METHOD(ARGS), not just TYPE.METHOD(ARGS).
12068
12069 * parse.y (java_complete_lhs): Don't complain about unreachable
12070 exit condition in a do-while statement.
12071
12072 1999-01-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
12073
12074 * lex.c (java_read_char): Fixed utf8 decoding.
12075 (java_unicode_2_utf8): Fixed utf8 encoding in the 0x800-0xffff
12076 range.
12077 * parse.y (valid_builtin_assignconv_identity_widening_p): Fixed
12078 comments. Local variable `all_primitive' is gone. Broadened
12079 acceptance of `0' to floating point targets. `long' can now be
12080 widened to `double' or `float'.
12081 (valid_method_invocation_conversion_p): Added leading
12082 comment. Fixed tabulation.
12083 (build_string_concatenation): Optimize out left or right empty
12084 string constants.
12085
12086 1999-01-28 Per Bothner <bothner@cygnus.com>
12087
12088 * jcf-write.c (localvar_alloc): Only emit entry for
12089 LocalVariableTable if debug_info_level > DINFO_LEVEL_TERSE.
12090 (generate_bytecode_insns): Only call put_linenumber if
12091 debug_info_level > DINFO_LEVEL_NONE.
12092 * jvspec.c (lang_specific_driver): If no -O* or -g* option
12093 is specified, add -g1 (for compatibility wih javac).
12094
12095 1999-01-28 Hans-Peter Nilsson <hp@axis.se>
12096
12097 * java/Makefile.in: Add missing dependencies for jcf-dump.o,
12098 gjavah.o, check-init.o, jv-scan.o
12099
12100 1999-02-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12101
12102 * Makefile.in (gjavah.o): Depend on $(CONFIG_H) and system.h.
12103
12104 * gjavah.c: Include config.h and system.h.
12105
12106 * javaop.h (inline): Don't define, its handled by system.h.
12107 (WORD_TO_FLOAT, WORDS_TO_LONG, WORDS_TO_DOUBLE): Change these
12108 from `inline' to `static inline'.
12109
12110 * jcf.h (inline): Don't define, its handled by system.h.
12111
12112 * lex.c (inline): Likewise.
12113
12114 1999-01-31 Zack Weinberg <zack@rabi.columbia.edu>
12115
12116 * lang-specs.h: Map -Qn to -fno-ident.
12117
12118 1999-01-29 Richard Henderson <rth@cygnus.com>
12119
12120 * check-init.c (check_init): Fix CLEANUP_POINT_EXPR typo.
12121
12122 1999-01-29 Tom Tromey <tromey@cygnus.com>
12123
12124 * parse.h (BUILD_APPEND): If ARG is a non-String object reference,
12125 then cast it to Object before calling `append' method.
12126
12127 1999-01-28 Per Bothner <bothner@cygnus.com>
12128
12129 * check-init.c (check_bool2_init, check_bool_init, check_init):
12130 Handle TRUTH_AND_EXPR, TRUTH_OR_EXPR, and TRUTH_XOR_EXPR.
12131 * jcf-write.c (generate_bytecode_insns): Likewise.
12132
12133 1999-01-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
12134
12135 * jcf-parse.c (jcf_parse): Don't parse the same class file twice.
12136 * parse.y (patch_cast): Allow a boolean to be cast into a
12137 boolean.
12138
12139 1999-01-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
12140
12141 * parse.y: (class_declaration:): Fixed indentation.
12142 (class_member_declaration:): Extra `;' after field declaration now
12143 accepted.
12144 (interface_declaration:): Removed debug messages in error reports.
12145 (patch_binop): Nodes created and returned inherit the orignal
12146 node's COMPOUND_ASSIGN_P flag value.
12147 (patch_cast): Fix cast from char to floating point.
12148
12149 1999-01-25 Andrew Haley <aph@cygnus.com>
12150
12151 * except.c, java-except.h (expand_resume_after_catch): new
12152 function.
12153 * expr.c (java_lang_expand_expr): call expand_resume_after_catch
12154 to branch back to main flow of control after a catch block.
12155
12156 1999-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12157
12158 * Makefile.in (parse.o): Depend on $(CONFIG_H) and
12159 $(srcdir)/../system.h.
12160 (class.o): Depend on $(PARSE_H) and $(srcdir)/../output.h.
12161 (jcf-parse.o): Depend on $(srcdir)/../toplev.h.
12162 (jcf-write.o): Likewise.
12163 (jv-scan.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
12164 (mangle.o): Depend on $(srcdir)/../toplev.h.
12165 (parse-scan.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
12166 (zextract.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
12167
12168 * class.c: Include output.h and parse.h.
12169 (mangled_classname): Add the `const' keyword to a char*.
12170 (find_named_method): Hide unused function definition.
12171 (build_utf8_ref): Change type of variable `c' to unsigned char.
12172 Use ISALPHA/ISDIGIT instead of isalpha/isdigit.
12173 (build_class_ref): Add the `const' keyword to a char*.
12174 (layout_class_method): Remove unused variable `buf'.
12175
12176 * decl.c (find_local_variable): Remove unused variable `rtl'.
12177 (pushdecl): Likewise for variables `different_binding_level' and
12178 `oldglobal'.
12179 (pushlevel): Mark parameter `unused' with ATTRIBUTE_UNUSED.
12180 (maybe_build_cleanup): Likewise for parameter `decl'.
12181
12182 * except.c (expand_start_java_handler): Mark parameter `range'
12183 with ATTRIBUTE_UNUSED.
12184
12185 * expr.c: Include except.h.
12186 (pop_type): Remove unused variable `i'.
12187 (pop_value): Likewise for variables `n_words' and `i'.
12188 (expand_java_arrayload): Likewise for variable `convert'.
12189 (java_lang_expand_expr): Likewise for variables `op0', `type',
12190 `mode', `unsignedp', `node' and `elements'.
12191 (expand_byte_code): Likewise for variables `prev_eh_ranges' and
12192 `eh_ranges'.
12193 (process_jvm_instruction): Add a `const' qualifier to a char*.
12194
12195 * gjavah.c (output_directory): Add the `const' keyword to a char*.
12196 (temp_directory): Likewise.
12197 (print_c_decl): Likewise.
12198 (print_method_info): Likewise.
12199 (decode_signature_piece): Likewise.
12200 (print_mangled_classname): Likewise.
12201
12202 * java-except.h: Provide prototypes for maybe_start_try,
12203 maybe_end_try and add_handler.
12204
12205 * java-tree.h (mangled_classname): Add the `const' keyword to a char*.
12206 (parse_error_context): Likewise. Also add ATTRIBUTE_PRINTF_2.
12207 (pushdecl_top_level, alloc_class_constant, unicode_mangling_length,
12208 init_expr_processing, push_super_field, init_class_processing,
12209 can_widen_reference_to, class_depth, verify_jvm_instructions,
12210 maybe_pushlevels, maybe_poplevels, process_jvm_instruction,
12211 set_local_type, merge_type_state, push_type, load_type_state,
12212 add_interface, find_in_current_zip, append_gpp_mangled_classtype,
12213 emit_unicode_mangled_name): Add prototypes.
12214
12215 * jcf-dump.c (print_constant): Add the `const' keyword to a char*.
12216 (print_signature_type): Use ISDIGIT, not isdigit.
12217 (print_signature): Remove unused variable `j'.
12218
12219 * jcf-io.c (jcf_filbuf_from_stdio): Cast the result of `fread' to
12220 int when comparing against one.
12221
12222 * jcf-parse.c: Include toplev.h.
12223
12224 * jcf-write.c: Likewise. Don't include <string.h> or <sys/stat.h>.
12225 (localvar_free): Remove unused variable `i'.
12226 (generate_bytecode_conditional): Likewise for variable `kind'.
12227
12228 * jv-scan.c: Include config.h and system.h. Remove redundant
12229 OS header and gansidecl.h includes.
12230 (warning): Add the `const' keyword to a char*. Also add
12231 ATTRIBUTE_PRINTF_1 to the prototype. Check ANSI_PROTOTYPES, not
12232 __STDC__, when determining whether to use ANSI-isms.
12233 (fatal): Likewise. Also add ATTRIBUTE_UNUSED.
12234 (xmalloc): Don't redundantly prototype here.
12235 (main): Remove unused parameter `envp'. Also fix the arguments
12236 passed to function `fatal' to match the format specifier.
12237
12238 * lang.c (java_tree_code_name): Add the `const' keyword to a char*.
12239
12240 * mangle.c: Include toplev.h.
12241 (emit_unicode_mangled_name): Declare parameter `len'.
12242
12243 * parse.y (parse_warning_context): Add the `const' keyword to a
12244 char*. Also add ATTRIBUTE_PRINTF_2 to the prototype. Check
12245 `ANSI_PROTOTYPES' not `__STDC__' for whether to use ANSI-isms.
12246 (issue_warning_error_from_context): Add the `const' keyword to
12247 a char*.
12248 (parse_error_context): Likewise. Also check `ANSI_PROTOTYPES'
12249 not `__STDC__' for whether to use ANSI-isms.
12250
12251 * typeck.c (incomplete_type_error): Mark parameters `value' and
12252 `type' with ATTRIBUTE_UNUSED.
12253 (parse_signature_type): Use ISDIGIT, not isdigit.
12254
12255 * verify.c (check_pending_block): Add the `const' keyword to a char*.
12256 (verify_jvm_instructions): Likewise. Remove unused variables
12257 `field_name' and `default_val'.
12258
12259 * zextract.c: Include config.h and system.h. Remove redundant
12260 OS header includes.
12261
12262 * zipfile.h: Prototype `read_zip_archive'.
12263
12264 1999-01-21 Andrew Haley <aph@cygnus.com>
12265
12266 * typeck.c (convert): Allow conversions to void type: some
12267 optimizations in gcc do this.
12268
12269 1999-01-21 Andrew Haley <aph@cygnus.com>
12270
12271 * typeck.c (convert_ieee_real_to_integer): New function.
12272 (convert): When not using fast-math and using hardware fp, convert
12273 an IEEE NaN to zero.
12274
12275 1999-01-18 Andrew Haley <aph@cygnus.com>
12276
12277 * parse.y (patch_binop): Do a type conversion from signed to
12278 unsigned and then back to signed when a ">>>" is found.
12279
12280 1999-01-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
12281
12282 * java-tree.h: (check_for_initialization): Added prototype.
12283 * lex.c (java_parse_doc_section): `\n' breaks the `*/' string.
12284 * parse.y (do_resolve_class): Removed unused locals.
12285 (read_import_dir): Likewise.
12286 (resolve_qualified_expression_name): Array creation
12287 expressions are valid primary expressions.
12288 (qualify_ambiguous_name): Likewise.
12289 (patch_synchronized_statement): Removed unused local.
12290
12291 1999-01-17 Jeffrey A Law (law@cygnus.com)
12292
12293 * Makefile.in (zextract.o): Add dependencies.
12294
12295 * Makefile.in: Do not put ^Ls at the start of a line.
12296
12297 1999-01-15 Per Bothner <bothner@cygnus.com>
12298
12299 * expr.c (process_jvm_instruction): Coerce to correct Throwable
12300 sub-type the result of the call that gets the exception value.
12301
12302 * parse.y (java_complete_expand_methods): If flags_syntax_only,
12303 don't call finish_class.
12304
12305 * parse.y (java_check_regular_methods): If METHOD_PRIVATE,
12306 clear found before continuing.
12307
12308 * verify.c (verify_jvm_instructions): On an array load, allow
12309 and handle top of stack to be TYPE_NULL.
12310
12311 * gjavah.c (generate_access): Translate Java package private or
12312 protected access to C++ public, but with a comment.
12313
12314 1999-01-13 Andrew Haley <aph@cygnus.com>
12315
12316 * expr.c (generate_name): Name prefix changed to avoid clashes
12317 with assembler temp labels.
12318
12319 * parse.y (patch_synchronized_statement): Set TREE_SIDE_EFFECTS on
12320 MODIFY_EXPR. Without this, code for the assignment may not be
12321 generated at all and the synchronized statement will read an
12322 uninitialized variable.
12323
12324 1999-01-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
12325
12326 * class.c (maybe_layout_super_class): Fixed returned value.
12327 * lex.c: Added 1999 to the copyright.
12328 (java_init_lex): Initialize java_lang_imported.
12329 * lex.h: Added 1999 to the copyright.
12330 * parse.h: Added 1999 to the copyright.
12331 (REGISTER_IMPORT): Fixed typo in trailing macro.
12332 (CURRENT_OSB): New macro.
12333 (struct parser_ctxt): New fields osb_depth, osb_limit.
12334 * parse.y (java_lang_id): New global variable.
12335 (type_import_on_demand_declaration): Don't import java.lang.* twice.
12336 (array_creation_expression:): Use CURRENT_OSB.
12337 (dims:): Uses a stack to keep track of array dimensions.
12338 (cast_expression:): Use CURRENT_OSB.
12339 (find_expr_with_wfl): Return NULL if node found doesn't meet the
12340 conditions.
12341 (register_fields): Fixed typos in comment.
12342 (check_method_redefinition): Fixed comment indentation.
12343 (java_check_regular_methods): Set saved found wfl to NULL after
12344 having reinstalled it in the previously found DECL_NAME.
12345
12346 1999-01-10 Richard Henderson <rth@cygnus.com>
12347
12348 * gjavah.c (java_float_finite): Use a union to do type punning.
12349 (java_double_finite): Likewise.
12350
12351 1999-01-09 Per Bothner <bothner@cygnus.com>
12352
12353 * parse.y (build_new_array_init): Don't set EXPR_WFL_LINECOL
12354 on CONSTRUCTOR (since that trashes TREE_CST_RTL).
12355 (patch_new_array_init): Clear TREE_CONSTANT also if INDIRECT_REF.
12356 (register_fields): Set TREE_STATIC on NEW_ARRAY_INIT, not on
12357 CONSTRUCTOR (which causes expand_expr to call output_constant_def).
12358 * expr.c (java_lang_expand_expr): Check TREE_STATIC of NEW_ARRAY_INIT.
12359
12360 1999-01-08 Per Bothner <bothner@cygnus.com>
12361
12362 * check-init.c (check_init): If compiling to native, we don't
12363 see THROW_EXPR. Instead, look for a call to throw_node (_Jv_Throw).
12364
12365 1999-01-08 Tom Tromey <tromey@cygnus.com>
12366
12367 * parse-scan.y (variable_declarator_id): Set or increment
12368 bracket_count.
12369 (bracket_count): New global.
12370 (formal_parameter): Handle case where bracket pairs trail variable
12371 declarator id.
12372
12373 1999-01-07 Andrew Haley <aph@viagra.cygnus.co.uk>
12374
12375 * jcf-parse.c (yyparse): variable len changed from a char to an
12376 int to prevent overflow.
12377
12378 1999-01-06 Per Bothner <bothner@cygnus.com>
12379
12380 * java-tree.h: Declare read_class.
12381 * jcf-parse.c (read_class): New function.
12382 (load_class): Now just call read_class.
12383
12384 * java-tree.h (java_parse_abort_on_error): Only return if new errors.
12385 * jcf-parse.c (parse_source_file): Declare save_error_count,
12386 which is needed by java_parse_abort_on_error macro,
12387 * parse.y (java_layout_classes, java_expand_classes): Likewise.
12388
12389 * parse.y (register_fields): Set TREE_STATIC flag of NEW_ARRAY_INIT
12390 constructor, if initializing a static field.
12391 (patch_new_array_init): Set TREE_CONSTANT if it is.
12392 * expr.c (java_lang_expand_expr): For a static array constructor
12393 of primitive elements, allocate the array itself statically.
12394 Disabled until we can set the vtable field statically.
12395
12396 * check-init.c: New file. Checks for definite assignment.
12397 * Makefile.in (JAVA_OBJS): Add check-init.o.
12398 * parse.y (java_complete_expand_method): Call check_for_initialization.
12399 * parse.h (BLOCK_EXPR_DECLS, BLOCK_EXPR_BODY): Moved to java-tree.h.
12400
12401 1999-01-06 Graham <grahams@rcp.co.uk>
12402
12403 * parse.y : include system.h instead of including
12404 standard headers directly with the exception of <dirent.h>.
12405
12406 1999-01-06 Per Bothner <bothner@cygnus.com>
12407
12408 * lex.h: Moved static function declarations to lex.c,
12409 to shut up some -Wall warnings.
12410 * lex.c: Static function declarations moved here.
12411 * jcf-dump.c: Small fixes to shut up -Wall warnings.
12412
12413 1999-01-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12414
12415 * Make-lang.in ($(GCJ).o): Depend on prefix.h.
12416
12417 1998-12-22 Per Bothner <bothner@cygnus.com>
12418
12419 * expr.c (process_jvm_instruction): Do load_type_state after JSR.
12420 * verify.c (verify_jvm_instructions): Fix off-by-one error.
12421
12422 * jcf-write.c (CHECK_PUT): Add (void) cast to avoid -Wall warnings.
12423 (localvar_alloc): Change return type to void,
12424 (emit_unop): Remove unused variable size.
12425
12426 * jcf-write.c (struct jcf_block): Add new union.
12427 (PENDING_CLEANUP_PC, PENDING_EXIT_PC, UNDEFINED_PC): New macros.
12428 (call_cleanups): New functions.
12429 (struct jcf_partial): New fields num_finalizers and return_value_decl.
12430 (generate_bytecode_insns): Support CLEANUP_POINT_EXPR and
12431 WITH_CLEANUP_EXPR. Handle cleanups in RETURN_EXPR and EXIT_BLOCK_EXPR.
12432 * lang.c (lang_init): Call using_eh_for_cleanups.
12433 * parse.y (java_complete_lhs): For SYNCHRONIZED_EXPR, defer
12434 completing operands to patch_synchronized_statement.
12435 Support CLEANUP_POINT_EXPR, WITH_CLEANUP_EXPR.
12436 (patch_synchronized_statement): Re-write suing CLEANUP_POINT_EXPR and
12437 WITH_CLEANUP_EXPR instead of TRY_EXPR.
12438
12439 1998-12-20 John F. Carr <jfc@mit.edu>
12440
12441 * Make-lang.in: Comment out control-Ls; they upset some makes.
12442
12443 1998-12-18 Tom Tromey <tromey@cygnus.com>
12444
12445 * parse.y (check_class_interface_creation): Use DIR_SEPARATOR
12446 consistently.
12447
12448 1998-12-17 Tom Tromey <tromey@cygnus.com>
12449
12450 * parse.y (DIR_SEPARATOR): New define.
12451 (check_class_interface_creation): Use it.
12452
12453 * parse-scan.y (report_main_declaration): Recognize
12454 `java.lang.String' in argument to main.
12455
12456 1998-12-16 Per Bothner <bothner@cygnus.com>
12457
12458 * parse.y (create_interface): Remove bogus test.
12459
12460 1998-12-16 Per Bothner <bothner@cygnus.com>
12461
12462 * jcf-parse.c (get_constant): Set TREE_TYPE for string constants.
12463 (HANDLE_CONSTANTVALUE): If flag_emit_class_files, call get_constant.
12464
12465 1998-12-16 Tom Tromey <tromey@cygnus.com>
12466
12467 * parse-scan.y (qualified_name): Use correct sprintf format.
12468
12469 1998-12-15 Tom Tromey <tromey@cygnus.com>
12470
12471 * gjavah.c (print_field_info): Changed how most negative number is
12472 printed.
12473
12474 1998-12-14 Per Bothner <bothner@cygnus.com>
12475
12476 * parse.y (fold_constant_for_init): New function.
12477 (resolve_expression_name): Don't replace static final
12478 constant-initialized fields by its value.
12479 (java_complete_lhs): New. Same as java_complete_tree, except does
12480 not replace static final constant-initialized fields by their values.
12481 (register_fields): If there is an initializer, set DECL_INITIAL and
12482 MODIFY_EXPR_FROM_INITIALIZATION_P.
12483 (java_complete_tree): For MODIFY_EXPR, use java_complete_lhs for lhs.
12484 Only call patch_initialized_static_field if
12485 MODIFY_EXPR_FROM_INITIALIZATION_P.
12486 (patch_initialized_static_field): If not valid constant, clear
12487 DECL_INITIAL.
12488
12489 * parse.y (lookup_field_wrapper): Fix thinko.
12490
12491 * parse.y (java_complete_tree): In EXPR_WITH_FILE_LOCATION,
12492 set and restore global lineno.
12493
12494 1998-12-14 Tom Tromey <tromey@cygnus.com>
12495
12496 * gjavah.c (print_field_info): If value to print is the smallest
12497 value of its size, then print as hex to avoid later warnings from
12498 C++ compiler.
12499
12500 1998-12-14 Tom Tromey <tromey@cygnus.com>
12501
12502 * gjavah.c (decompile_method): Decompile `return null'.
12503 (process_file): Generate `#pragma interface'.
12504 (method_declared): New global.
12505 (print_method_info): Set it.
12506 (HANDLE_CODE_ATTRIBUTE): Only print it method_declared set.
12507 (print_method_info): Handle abstract methods.
12508
12509 1998-12-13 Per Bothner <bothner@cygnus.com>
12510
12511 * parse.y (patch_method_invocation): If class_decl is null
12512 (e.g. an array type), use original type.
12513
12514 * parse.y (check_thrown_exceptions): Temporary hack to suppress
12515 errors about uncaught exception from clone (of array, specifically).
12516
12517 1998-12-13 Tom Tromey <tromey@cygnus.com>
12518
12519 * gjavah.c (decompile_method): Handle all types of `return'
12520 opcode. Decompile `return this' and `return'.
12521 (method_access): New global.
12522 (print_method_info): Set it.
12523 (decompile_method): Don't decompile a synchronized method.
12524
12525 1998-12-13 Tom Tromey <tromey@cygnus.com>
12526
12527 * jcf-reader.c (jcf_parse_one_method): Recognize
12528 HANDLE_END_METHOD.
12529 * gjavah.c (HANDLE_END_METHOD): New macro.
12530 (HANDLE_CODE_ATTRIBUTE): New macro.
12531 (decompile_method): New function.
12532 (print_method_info): Don't print `;\n' at end of function decl.
12533 Include java-opcodes.h.
12534 (decompiled): New global.
12535
12536 1998-12-12 Per Bothner <bothner@cygnus.com>
12537
12538 * class.c (build_class_ref): Handle PRIMTYPE.class if
12539 flag_emit_class_files.
12540 * expr.c (expand_java_field_op): Don't optimize java.lang.XXX.TYPE
12541 if flag_emit_class_files.
12542 * parse.y (java_complete_tree): Pre-liminary support for
12543 COMPONENT_REF - only to handle PRIMCLASS.TYPE.
12544
12545 * parse.y (patch_synchronized_statement): Don't call monitorexit
12546 unless block CAN_COMPLETE_NORMALLY. Propagate that flag properly.
12547
12548 * java-tree.h (DECL_LOCAL_STATIC_VALUE): Removed - no longer used.
12549
12550 * zipfile.h (opendir_in_zip): New declaration.
12551 * jcf-io.c (saw_java_source): Moved to jcf-parse.c.
12552 (opendir_in_zip): New function, using code from open_in_zip.
12553 (open_in_zip): Call opendir_in_zip.
12554 (find_class): Remove no-longer-used do_class_file parameter,
12555 but add source_ok parameter. Change logic so if we find a .java file,
12556 we don't look for .class in later classpath emtries.
12557 * jcf-parse.c (load_class): Pass saw_java_source to find_class.
12558 (jcf_figure_file_type): Only call open_in_zip if correct magic number.
12559 * gjavah.c: Update call to find_class.
12560 * jcf-dump.c: Likewise.
12561
12562 * jcf-write.c (put_linenumber): Handle duplicate line numbers.
12563 (generate_bytecode_insns): For EXPR_WITH_FILE_LOCATION, do
12564 nothing if body is empty_stmt_node.
12565 Various little fixes so SP gets correctly adjusted.
12566 For NEW_ARRAY_INIT, handle IGNORE_TARGET.
12567 For CALL_EXPR, test if static first.
12568 (generate_classfile): Ignore fields that are DECL_ARTIFICIAL,
12569 such as the ones we create for Object and Class.
12570 Set and restore current_function_decl.
12571 * parse.y: Check/set IS_AN_IMPORT_ON_DEMAND_P in read_import_dir.
12572 (note_possible_classname): New function.
12573 (read_import_entry): Removed. Merged with read_import_dir.
12574 (read_import_dir): Don't call find_class - that only gives us
12575 the first classpath entry having the needed package.
12576 Use the struct buffer data structure from buffer.h.
12577 (read_import_dir, find_in_imports_on_demand): The remembered
12578 class names now use '.' (not '/') as package separator.
12579
12580 * parse.y (java_complete_expand_methods): Call write_classfile
12581 here, and not in java_expand_classes (which only gets first class).
12582
12583 1998-12-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
12584
12585 * parse.y (<type_declaration>): Do maybe_generate_clinit last.
12586 (register_fields): If a static fields has an initializer, just
12587 chain it on ctxp->static_initialized, and handle later.
12588 (java_complete_expand_methods): Force <clinit> first.
12589 (resolve_expression_name, resolve_field_access): Just get DECL_INITIAL
12590 - it's already been completed.
12591 (patch_initialized_static_field): New function.
12592 (java_complete_field): Call it.
12593
12594 1998-12-12 Per Bothner <bothner@cygnus.com>
12595
12596 * expr.c (encode_newarray_type, build_new_array): New functions.
12597 * java-tree.h: Declare build_new_array.
12598 * jcf-write.c (patch_newarray): Use build_new_array.
12599
12600 * expr.c (java_lang_expand_exp): Support NEW_ARRAY_INIT.
12601 * jcf-write.c (generate_bytecode_insns): Support NEW_ARRAY_INIT.
12602
12603 * parse.y (patch_new_array_init): Re-organize.
12604 Now is passed the actual array (pointer) type of the value.
12605 Set the type of the CONSTRUCTOR to be an ARRAY_TYPE.
12606 (patch_array_constructor): Removed - merged into patch_new_array_init.
12607 (java_complete_tree): Update patch_new_array_init.
12608
12609 * jcf-write.c (find_constant_index): New function.
12610 (generate_bytecode_insns): Use find_constant_index.
12611 (generate_classfile): Use find_constant_index for ConstantValue.
12612
12613 1998-12-11 Tom Tromey <tromey@cygnus.com>
12614
12615 * expr.c (invoke_build_dtable): Renamed dtable -> vtable.
12616 * decl.c (init_decl_processing): Renamed dtable -> vtable.
12617 * class.c (make_class_data): Renamed dtable -> vtable, and
12618 dtable_method_count -> vtable_method_count.
12619
12620 1998-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
12621
12622 * decl.c (long_zero_node, float_zero_node, double_zero_node): New
12623 global variables, initialized.
12624 * java-tree.h (long_zero_node, float_zero_node, double_zero_node):
12625 Declared new global variables.
12626 * lex.c (java_lex): Return long_zero_node, float_zero_node,
12627 double_zero_node, integer_zero_node upon direct matching.
12628 * parse.y (purify_type_name): Added function prototype.
12629 (duplicate_declaration_error_p): Consider new_type as potentially
12630 being a incomplete type. Use purify_type_name on type string.
12631 (method_header): saved_type: unused variable removed. Don't figure
12632 return type if method name is invalid.
12633 (java_complete_tree): Set CAN_COMPLETE_NORMALLY after `node' was
12634 processed by patch_unaryop.
12635 (patch_unaryop): Fixed typo in comment. Re-convert pre/post
12636 increment/decrement node into its original type after binary
12637 numeric promotion on its operands.
12638
12639 1998-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
12640
12641 * parse.y (array_initializer:): Array init operand is NULL_TREE
12642 instead of a TREE_LIST of NULL_TREEs when parsing `{}'. `{,}' is
12643 now an error. Fixed indentation problems.
12644 (patch_string): Handle error_mark_node as an argument.
12645 (patch_new_array_init): Fixed indentation problems.
12646 (array_constructor_check_entry): Removed check on null wfl_value.
12647 Return an error if wfl_value's walk returns an error.
12648
12649 1998-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
12650
12651 * java-tree.def (NEW_ARRAY_INIT): New Java tree code.
12652 * lex.c (java_lex): Remember column position before advancing one
12653 token. Retain location information on OCB_TK.
12654 * lex.h (typedef struct java_lc): Added new field.
12655 * parse.h (GET_SKIP_TYPE): New macro.
12656 (QUAL_DECL_TYPE): Redefined using GET_SKIP_TYPE.
12657 * parse.y (build_new_array_init, patch_new_array_init,
12658 patch_array_constructor, maybe_build_array_element_wfl,
12659 array_constructor_check_entry): New function prototypes.
12660 (switch_block:): Tagged <node>.
12661 (OCB_TK): Tagged <operator>.
12662 (array_initializer:): Installed actions.
12663 (variable_initializer): Build location information on element if
12664 necessary.
12665 (switch_statement:): Fixed indentation typo.
12666 (switch_block:): Redefined default action.
12667 (java_complete_tree): Handle NEW_ARRAY_INIT in MODIFY_EXPR:.
12668 (patch_assignment): Removed duplicate code.
12669 (maybe_build_array_element_wfl, build_new_array_init,
12670 patch_new_array_init, patch_array_constructor,
12671 array_constructor_check_entry): New functions.
12672
12673 1998-12-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
12674
12675 * parse.y (array_initializer): Tagged <node>.
12676 (variable_initializer:): Use default rule.
12677 (array_initializer:): Defined actions.
12678 (variable_initializers:): Likewise.
12679 (resolve_qualified_expression_name): Use DECL_CONTEXT to build
12680 non-static field accesses.
12681 (patch_invoke): Fixed indentation typo.
12682 (java_complete_tree): Likewise.
12683 (build_labeled_block): Changed leading comment. Generate an error
12684 in case of duplicate loop labels.
12685 (patch_conditional_expr): Patch results of string concatenation
12686 operations.
12687
12688 1998-12-06 Per Bothner <bothner@cygnus.com>
12689
12690 * constants.c (find_methodref_index): When the class is an interface,
12691 generate CONSTANT_InterfaceMethodref instead of a CONSTANT_MethodRef.
12692
12693 * decl.c (finit_identifier_node): Use "$finit$", rather than
12694 "<finit>" (which Sun's verifier rejects).
12695 * parse.y (maybe_generate_finit): Leave out meaningless final flag.
12696 (generate_field_initialization_code): Removed.
12697 (fix_constructors) Don't add call to $finit$ here (wrong order).
12698 (patch_method_invocation): Add $finit$ call here.
12699
12700 * java-tree.h (CALL_USING_SUPER): New macro.
12701 * parse.y (patch_invoke): Remove im local variable.
12702 (patch_method_invocation, patch_invoke): Don't pass super parameter.
12703 (patch_invoke): Use CALL_USING_SUPER instead of from_super parameter.
12704 (resolve_qualified_expression_name): Maybe set CALL_USING_SUPER.
12705
12706 * jcf-write.c (get_access_flags): Fix typo ACC_PUBLIC -> ACC_FINAL.
12707
12708 * parse.y (java_complete_tree): Don't complain about unreachable
12709 statement if it is empty_stmt_node.
12710
12711 * jcf-write.c (find_constant_wide): New function.
12712 (push_long_const): Use find_constant_wide.
12713
12714 * jcf-write.c (generate_bytecode_insn): Fix bug in switch handling.
12715 (generate_bytecode_insn): Use correct dup variant for MODIFY_EXPR.
12716 Add "redundant" NOTE_PUSH/NOTE_POP uses so code_SP_max gets set.
12717 Emit invokeinterface when calling an interface method.
12718 Emit invokespecial also when calling super or private methods.
12719
12720 * jcf-write.c (generate_classfile): Emit ConstantValue attributes.
12721
12722 1998-12-06 Per Bothner <bothner@cygnus.com>
12723
12724 * jcf-dump.c (INVOKE): If invokeinterface, print number of args.
12725
12726 1998-12-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
12727
12728 * java-tree.h (java_layout_seen_class_methods): New function
12729 prototype.
12730 (LAYOUT_SEEN_CLASS_METHODS): Macro removed.
12731 * jcf-parse.c (parse_class_file): Call java_layout_seen_class_methods.
12732 * parse.h (PROMOTE_RECORD_IF_COMPLETE): New macro.
12733 * parse.y (method_declarator:): Defined action.
12734 (issue_warning_error_from_context): input_filename saved, set to
12735 the appropriate value and restored after java_error is called.
12736 (build_unresolved_array_type): Fixed comment.
12737 (register_fields): Use PROMOTE_RECORD_IF_COMPLETE.
12738 (method_header): Deal with return type the same way type are
12739 handled for fields and method's parameters and local variables
12740 types are handled.
12741 (check_method_redefinition): Removed extra CR.
12742 (declare_local_variables): Use PROMOTE_RECORD_IF_COMPLETE.
12743 (java_layout_seen_class_methods): New function.
12744 (java_layout_classes): Call java_layout_seen_class_methods.
12745
12746 1998-12-03 Per Bothner <bothner@cygnus.com>
12747
12748 * parse,y (patch_synchronized_statement): Set CAN_COMPLETE_NORMALLY.
12749
12750 1998-12-03 Per Bothner <bothner@cygnus.com>
12751
12752 * jcf-dump.c (main): Fix error message.
12753 * jcf-path.c (add_entry): Style fix.
12754
12755 1998-12-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
12756
12757 * class.c (layout_class_method): Call build_java_argument_signature
12758 on constructors too.
12759 * parse.y (check_method_redefinition): Use TYPE_ARGUMENT_SIGNATURE.
12760 (patch_method_invocation): Define a primary when resolving an
12761 expression name. Augmented comment on code checking illegal `this'
12762 usage. Loosened it test by accepting NEW_CLASS_EXPR.
12763
12764 1998-12-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
12765
12766 * class.c (layout_class_method): Don't report error on non-static
12767 overriding static if the method is private.
12768 * java-tree.h (finish_class): Prototype added.
12769 * lex.c (java_get_line_col): Handle col argument -2 value.
12770 * parse.h: All static method declarations moved to parse.y.
12771 * parse.y: Now contains all static method declarations previously
12772 found in parse.h.
12773 (find_expr_with_wfl, missing_return_error,
12774 unreachable_stmt_error): New functions.
12775 (java_get_real_method_name): Identify constructors bearing class
12776 names in source code compiled classes only.
12777 (java_complete_expand_methods): Call missing_return_error.
12778 (invocation_mode): Private methods invoked as static methods.
12779 (java_complete_tree): Call unreachable_stmt_error.
12780
12781 1998-12-01 Tom Tromey <tromey@cygnus.com>
12782
12783 * Makefile.in (+target): Removed.
12784 (+xmake_file): Likewise.
12785 (+tmake_file): Likewise.
12786 (.NOEXPORT): Removed duplicate.
12787
12788 1998-11-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12789
12790 * Makefile.in (jc1, jv-scan): Link with $(SUBDIR_OBSTACK).
12791
12792 * jv-scan.c: Fix xmalloc prototype. Provide an xmalloc definition.
12793
12794 * jvgenmain.c: Remove the xmalloc prototype, we get it from
12795 libiberty.h. Provide an xmalloc definition.
12796
12797 * jvspec.c: Remove the xmalloc prototype.
12798
12799 * parse-scan.y: Include config.h and system.h. Don't include
12800 OS headers or gansidecl.h. Don't prototype xmalloc/xstrdup.
12801 Provide an xstrdup definition.
12802
12803 1998-11-26 Alexandre Oliva <oliva@dcc.unicamp.br>
12804
12805 * jcf-path.c (add_entry): Recognize ".jar" too.
12806 * lang-specs.h: Likewise.
12807
12808 1998-11-26 Per Bothner <bothner@cygnus.com>
12809
12810 * jcf-write.c (generate_bytecode_insns): In Call_EXPR, handle
12811 soft_monitorenter_node, soft_monitorexit_node, throw_node.
12812
12813 * jcf-write.c (generate_bytecode_insns):
12814 Handle pre/post-increment/decrement of long.
12815
12816 * jcf-write.c (generate_bytecode_insns):
12817 Handle missing exception handler (finally for synchronized).
12818
12819 1998-11-25 Per Bothner <bothner@cygnus.com>
12820
12821 * java-tree.h (end_params_node): Declare global.
12822 * decl.c (end_params_node): New global.
12823 (init_decl_processing, start_java_method): Use end_params_node for
12824 end of list of parameter types. Follows correct gcc conventions.
12825 * expr.c (pop_argument_types, pop_arguments): Likewise.
12826 * lang.c (put_decl_node): Likewise.
12827 * typeck.c (various places): Likewise.
12828 * class.y (various places): Likewise.
12829 * parse.y (various places): Likewise.
12830
12831 * parse.y (java_complete_tree): Move CAN_COMPLETE_NORMALLY.
12832 (build_jump_to_finally): Add missing CAN_COMPLETE_NORMALLY.
12833
12834 * class.c: Add #include flags.h, remove no-longer needed declaration.
12835
12836 * class.c (layout_class_method): Remove commented-out code, re-format.
12837 Don't add vtable entry (or index) for private methods.
12838 * expr.c (expand_invoke): A private method is implicitly final.
12839 * class.c (make_class_data): If inlining or optimizing,
12840 skip private methods.
12841
12842 * class.c (finish_class): New function. Calls existing methods,
12843 but alls emits deferred inline functions.
12844 * jcf-parse.c (parse_class_file): Call finish_class.
12845 * parse.y (java_complete_expand_methods): Likewise.
12846
12847 * expr.c (build_java_binop): Explicit default, to silence -Wall.
12848
12849 * expr.c (CHECK_PC_IN_RANGE): Add void cast to kill warnings.
12850
12851 1998-11-25 Marc Espie <espie@quatramaran.ens.fr>
12852
12853 * jcf-write.c (generate_bytecode_conditional): Fix typo.
12854
12855 1998-11-24 Per Bothner <bothner@cygnus.com>
12856
12857 * (generate_classfile): Always write class access flag with
12858 ACC_SUPER set.
12859
12860 1998-11-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
12861
12862 * class.c (maybe_layout_super_class): New function.
12863 (layout_class): Reorganized. Loop on class methods dispatched into
12864 a new function. Call maybe_layout_super_class.
12865 (layout_class_methods, layout_class_method): New functions.
12866 * expr.c (expand_java_NEW): Call layout_class_methods on loaded
12867 class.
12868 (expand_invoke): Likewise.
12869 * java-tree.h (all_class_list): New global variable declared.
12870 (layout_class_methods, layout_class_method): New function
12871 prototypes.
12872 (LAYOUT_SEEN_CLASS_METHODS): New macro.
12873 * jcf-parse.c (all_class_list): New global variable.
12874 (load_class): Extended what class_or_name can be. Use parser
12875 context mechanism to save globals before calling jcf_parse.
12876 (jcf_parse_source): Don't parse twice if HAS_BEEN_ALREADY_PARSED_P
12877 is set on the file name.
12878 (jcf_parse): Layout class methods when Object is loaded, otherwise
12879 record class in all_class_list for delayed method layout.
12880 (parse_class_file): Use LAYOUT_SEEN_CLASS_METHODS.
12881 * lang.c (put_decl_node): Decode <init> into the decl context
12882 class name.
12883 * lex.c (java_allocate_new_line): Use xmalloc.
12884 * parse.h (INCOMPLETE_TYPE_P): Redefined to work with incomplete
12885 pointers, not TREE_LIST elements.
12886 (struct parser_ctxt): Fixed comment indentations, added comments
12887 and reordered some fields.
12888 (java_check_methods): Function prototype removed.
12889 * parse.y (java_push_parser_context): Use xmalloc.
12890 (java_parser_context_restore_global): Pop extra pushed ctxp only
12891 when there's nothing next.
12892 (maybe_create_class_interface_decl): Fixed comment, add new
12893 created class decl to all_class_list.
12894 (method_header): Use GET_REAL_TYPE on argument's types.
12895 (method_declarator): Use GET_REAL_TYPE, change type to the real
12896 type in TREE_LIST dependency node. Build argument list with the
12897 real type.
12898 (create_jdep_list): Use xmalloc. Removed allocation error message.
12899 (obtain_incomplete_type): Fixed leading comment. Broadened
12900 incoming argument meaning.
12901 (register_incomplete_type): Use xmalloc. Removed allocation error
12902 message.
12903 (safe_layout_class): Fixed leading comment.
12904 (jdep_resolve_class): Reversed if statement condition and switch
12905 if and else bodies.
12906 (resolve_and_layout): Fixed leading comment. Broadened incoming
12907 argument meaning.
12908 (complete_class_report_errors): New local variable name, for
12909 clarity. purify_type_name used for all error cases.
12910 (java_get_real_method_name): Stricter check on constructors.
12911 (java_check_regular_methods): Reverse methods list only if not
12912 already laid out. Layout artificial constructor.
12913 (java_check_methods): Deleted.
12914 (source_start_java_method): Obtain incomplete type for patchable
12915 method arguments.
12916 (java_layout_classes): Fixed leading comment. Use
12917 LAYOUT_SEEN_CLASS_METHODS, use a loop to check methods. Added else
12918 statement to layout operation, reuse LAYOUT_SEEN_CLASS_METHODS
12919 before returning. Fixed comments.
12920 (java_expand_classes): Check for errors up front.
12921 (patch_method_invocation): Class to search is resolved and laid
12922 out.
12923
12924 1998-11-24 Per Bothner <bothner@cygnus.com>
12925
12926 * expr.c (java_lang_expand_expr): Add missing emit_queue.
12927
12928 * javaop.h (int8): Removed - not used.
12929 (jbyte): Redefine portably with correct signedness.
12930
12931 * jcf-write.c (generate_bytecode_insns): Don't free sw_state.cases.
12932
12933 * jcf-write.c (generate_bytecode_insns): Fix typo
12934 OPCODE_getstatic to OPCODE_getfield.
12935
12936 * java-tree.def (CASE_EXPR, DEFAULT_EXPR): Kind is 'x', not '1'.
12937 * parse.y (java_complete_tree): For CASE_EXPR and DEFAULT_EXPR,
12938 set TREE_SIDE_EFFECTS (otherwise expand_expr may skip them).
12939
12940 1998-11-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
12941
12942 * jcf-parse.c (jcf_parse_source): Function returned type is
12943 void. Added prototype.
12944 (jcf_parse): Function returned type is void.
12945 (yyparse): Remove call to fclose on the last parsed file.
12946
12947 * java-tree.h (jcf_parse): Changed jcf_parse prototype.
12948
12949 1998-11-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
12950
12951 * class.c (unmangle_classname): Set QUALIFIED_P when appropriate.
12952 (layout_class): Cope with methods featuring WFL in decl names.
12953 * decl.c (unqualified_object_id_node): New global variable,
12954 initialized.
12955 (build_decl_no_layout): Removed.
12956 * expr.c (build_primtype_type_ref): Handle Double.
12957 (java_lang_expand_expr): Fixed indentations.
12958 * java-tree.h (CLASS_METHOD_CHECKED_P): Flag deleted.
12959 (flag_wall, flag_redundant, flag_not_overriding,
12960 flag_static_local_jdk1_1, unqualified_object_id_node): Global
12961 variable declarations.
12962 (build_decl_no_layout): Removed prototype.
12963 (java_get_real_method_name): Added prototype.
12964 (IS_UNCHECKED_EXPRESSION_P): Renamed IS_UNCHECKED_EXCEPTION_P.
12965 (java_parse_abort_on_error): Macro now just returns.
12966 * jcf-parse.c (jcf_parse_source): Check fclose returned
12967 value. Call emit_register_classes if java_report_errors returns
12968 zero.
12969 * lanc.c (flag_wall, flag_redundant, flag_not_overriding,
12970 flag_static_local_jdk1_1): New integer flags.
12971 (lang_decode_option): New flags set here.
12972 * parse.h (GET_REAL_TYPE, GET_METHOD_NAME): New macros.
12973 (OBSOLETE_MODIFIER_WARNING): Issue error message conditionally to
12974 the flag_redundant variable.
12975 (SET_TYPE_FOR_RESOLUTION): Consider Object being java.lang.Object
12976 when parsing java.lang.Object class.
12977 (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Added terminal
12978 NULL_TREE to build.
12979 (resolve_qualified_expression_name): Fixed indentation.
12980 (patch_array_ref): Changed prototype.
12981 (not_initialized_as_it_should_p): Prototype removed.
12982 (java_report_errors): Added function prototype.
12983 * parse.y (formal_parameter:): Changed error message for not yet
12984 supported final parameters.
12985 (class_type_list:): Set both PURPOSE and VALUE of created
12986 TREE_LIST to be class_type.
12987 (primary_no_new_array:): Handle class literals on primitive types.
12988 (parse_warning_context): Reinstalled correct force_error and
12989 do_warning flags setups.
12990 (java_report_errors): Changed prototype. Return java_error_count
12991 value.
12992 (variable_redefinition_error): Consider treating variable type as
12993 a fake pointer.
12994 (create_interface): Warn about redundant abstract modifier if
12995 flag_redundant is set. Changed error message.
12996 (lookup_field_wrapper): Save/restore globals before/after looking
12997 up field.
12998 (duplicate_declaration_error_p): Consider treating declaration
12999 type as a fake pointer.
13000 (register_fields): Extract real type from dependency node. Check
13001 for duplicate field declaration after type adjustment. Use
13002 DECL_INITIAL to store static final initialized values.
13003 (method_header): Extract real function type from dependency node.
13004 (check_abstract_method_header): Use GET_METHOD_NAME.
13005 (obtain_incomplete_type): Layout fake pointer type.
13006 (safe_layout_class): Don't try to check for methods before layout.
13007 (java_complete_class): Don't check for correct throws clause
13008 elements inheritance here.
13009 (resolve_and_layout): Broadened name parameter meaning.
13010 (reset_method_name): Use GET_METHOD_NAME.
13011 (java_get_real_method_name): New function.
13012 (java_check_regular_methods): Don't check methods in
13013 java.lang.Object. Verify lineage of throws clause elements. Use
13014 flag_no_overriding in warning report.
13015 (check_throws_clauses): Don't check if class was from
13016 bytecode. Use IS_UNCHECKED_EXCEPTION_P macro.
13017 (java_check_methods): Don't set CLASS_METHOD_CHECKED_P flag.
13018 (declare_local_variables): Use flag_static_local_jdk1_1 to report
13019 warning on unsupported final local variables. Use build_decl
13020 instead of build_decl_no_layout. Get real local variable type from
13021 dependency node.
13022 (source_start_java_method): Get real parameter type from
13023 dependency node. Call build_decl instead of build_decl_no_layout.
13024 (java_layout_classes): Reverse tree and layout type and class as
13025 required. Mark class as loaded when done.
13026 (resolve_field_access): Fixed indentation. Restricted condition
13027 leading to static field access code generation. Set field_type
13028 decl's TREE_TYPE if QUAL_DECL_TYPE not available.
13029 (resolve_qualified_expression_name): Initialize type_found to
13030 null. Handle static field resolved during qualification. Fixed
13031 layout on non primitive field decl types.
13032 (not_accessible_p): Fixed typo in comment.
13033 (patch_method_invocation): Resolve and layout class to search from
13034 type.
13035 (lookup_method_invoke): Keep integer constant 0 as is. Resolve and
13036 layout non primitive type, if necessary. Make method node only to
13037 report errors.
13038 (find_applicable_accessible_methods_list): Consider WFL'ed method
13039 decl names. Fixed indentation.
13040 (argument_types_convertible): Resolve and layout target type if
13041 necessary.
13042 (java_complete_tree): Fixed indentation problems. Rewrote
13043 CALL_EXPR thrown exceptions check. Re-installed further processing
13044 of the assignment in certain cases.
13045 (patch_assignment): Call maybe_build_primttype_type_ref to perform
13046 inlining on class literals.
13047 (valid_builtin_assignconv_identity_widening_p): Cope with constant
13048 0 literal.
13049 (valid_method_invocation_conversion_p): Likewise.
13050 (patch_string): Temporary disable forbidden use of `this' in
13051 explicit constructor invocations when doing string concatenation
13052 within their scope.
13053 (patch_unaryop): Added comment. Reinstalled code to disable
13054 further check on assignment operation with cast expression RHS.
13055 (patch_switch_statement): Fixed indentation.
13056 (build_try_statement): Call build_decl instead of
13057 build_decl_no_layout.
13058 (patch_synchronized_statement): Likewise.
13059 (patch_throw_statement): Use IS_UNCHECKED_EXCEPTION_P instead of
13060 IS_UNCHECKED_EXPRESSION_P.
13061 (check_thrown_exceptions_do): Changed leading comment. Resolve and
13062 layout argument exception type.
13063 (purge_unchecked_exceptions): Use IS_UNCHECKED_EXCEPTION_P instead
13064 of IS_UNCHECKED_EXPRESSION_P.
13065
13066 1998-11-18 Anthony Green <green@cygnus.com>
13067
13068 * jcf-parse.c (yyparse): Open class file in binary mode.
13069
13070 1998-11-15 Per Bothner <bothner@cygnus.com>
13071
13072 * jvgenmain.c: Need to #include "gansidecl.h" (to get PROTO).
13073
13074 * jcf-write.c (perform_relocations): Move check out one loop.
13075
13076 1998-11-15 Anthony Green <green@hoser.cygnus.com>
13077
13078 * Make-lang.in: Fix reference to srcdir.
13079 * jv-scan.c: Add missing xmalloc prototype.
13080 * jvgenmain.c: Ditto.
13081
13082 1998-11-15 Per Bothner <bothner@cygnus.com>
13083
13084 * decl.c (error_mark_node), java-tree.h: New global.
13085 * parse.y: Use empty_stmt_node instead of size_zero_node.
13086 (build_if_else_statement): If missing else, use empty_stmt_node.
13087
13088 * parse.y (not_initialized_as_it_should_p): Removed, with its callers.
13089 (java_complete_expand_method): Complain if return is missing.
13090 (java_check_regular_methods): Comment out incorrect error check.
13091 (not_accessible_p): Fix incorrect handling of protected methods.
13092 (patch_method_invocation): Pass correct context to not_accessible_p.
13093 (find_applicable_accessible_methods_list): Likewise.
13094 (qualify_ambiguous_name): If ARRAY_REF, it's an expression name.
13095 (java_complete_tree): For CASE_EXPR and DEFAULT_EXPR, set
13096 TREE_TYPE (to void_type_node); otherwise expand_expr crashes.
13097 (patch_if_else_statement): Fix setting of CAN_COMPLETE_NORMALLY.
13098
13099 * jcf-write.c (CHECK_OP, CHECK_PUT): Add some error checking.
13100 (push_int_const): Remove reundant NOTE_PUSH.
13101 (generate_bytecode_insns - case STRING_CST): Do NOTE_PUSH.
13102 (- case SWITCH_EXPR): Fix code generation bug.
13103 (- case PREDECREMENT_EXPR etc): Remove redundant NOTE_PUSH.
13104 (generate_classfile): More robust for abstract methods.
13105
13106 1998-11-15 Anthony Green <green@cygnus.com>
13107
13108 * Makefile.in: jv-scan and jvgenmain all require libiberty.
13109 * Make-lang.in: Ditto.
13110
13111 * jv-scan.c: Remove xmalloc and xstrdup definitions.
13112 * jvgenmain: Ditto.
13113
13114 1998-11-15 Per Bothner <bothner@cygnus.com>
13115
13116 * jcf-parse.c (HANDLE_EXCEPTIONS_ATTRIBUTE): New macro.
13117
13118 * jcf-io.c (find_class): Simpler/cleaner structure fixes a bug.
13119
13120 1998-11-14 Per Bothner <bothner@cygnus.com>
13121
13122 Allow uses of interface types to verify. This is not really
13123 type-safe, but it matches what Sun does, and is OK as long as
13124 there are appropriate run-time checks.
13125 * verify.c (merge_types): If merging two interface types,
13126 just set the result to java.lang.Object.
13127 * expr.c (pop_type): Any interface is matches by java.lang.Object.
13128
13129 1998-11-13 Tom Tromey <tromey@cygnus.com>
13130
13131 * gjavah.c (main): Handle --output-class-directory argument.
13132 * jvspec.c (lang_specific_driver): Translate `-d' into
13133 -foutput-class-dir.
13134 * jcf.h (jcf_write_base_directory): Declare.
13135 * lang.c (lang_decode_option): Recognize -foutput-class-dir.
13136 * lang-options.h: Mention -foutput-class-dir.
13137 * jcf-write.c (jcf_write_base_directory): New global.
13138 (make_class_file_name): Put generated .class file into `-d'
13139 directory, or into source directory if -d not given. Function now
13140 static.
13141 (write_classfile): Free class file name. Handle case where class
13142 file name is NULL.
13143 (DIR_SEPARATOR): New macro.
13144 Include <sys/stat.h>
13145
13146 * Makefile.in (prefix): New macro.
13147
13148 1998-11-12 Per Bothner <bothner@cygnus.com>
13149
13150 * parse.y (patch_invoke): Do less if flag_emit_class_files.
13151 * expr.c (build_known_method_ref): Don't check flag_emit_class_files
13152 here (done in patch_invoke instead).
13153 (case_identity): Moved here from parse.y.
13154
13155 * java-tree.h (CAN_COMPLETE_NORMALLY): New macro.
13156 * parse.y (java_complete_tree etc): Maybe set CAN_COMPLETE_NORMALLY.
13157 * parse.y (java_complete_tree): Re-order COMPOUND_EXPR in BLOCK
13158 so they can be efficiently scanned without recursion.
13159 Error it ! CAN_COMPLETE_NORMALLY first part of COMPOUND_EXPR.
13160 * expr.c (java_lang_expand_expr): Expand statements of COMPOUND_EXPR
13161 in BLOCK iteratively, rather than recursively.
13162
13163 * parse.y (do_unary_numeric_promotion): New function.
13164 (patch_unaryop, patch_binop, patch_array_ref): Use it.
13165
13166 * parse.y (patch_newarray): Various fixes.
13167
13168 Re-do handling of switch statements (for proper block scoping).
13169 * parse.y: Add just a single block for the enture switch block,
13170 but don't create any "case blocks".
13171 (group_of_labels): Rmeoved unneeded non-terminal.
13172 CASE_EXPR and DEFAULT_EXPR are added to current block.
13173 * expr.c (java_lang_expand_expr): Inline SWITCH_EXPR here.
13174 Now also need to handle CASE_EXPR and DEFAULT_EXPR.
13175 * java-tree.h (SWITCH_HAS_DEFAULT): New macro.
13176 * parse.y (wfl_operator, print_int_node): Make non-static.
13177 (java_complete_tree): CASE_EXPR and DEFAULT_EXPR are now processed
13178 as part of recursive scan of block.
13179 (java_expand_switch ): Removed - inlined into java_lang_expand_expr.
13180 (patch_switch_statement): Most tests move dinto java_complete_tree.
13181
13182 * parse.y: Make various production be non-typed (void).
13183 * parse.y (parse_error): Merged into issue_warning_error_from_context.
13184 * parse.y (add_stmt_to_compound): Don't create/change extra node.
13185 (patch_method_invocation_stmt): Renamed to patch_method_invocation.
13186
13187 * jcf-write.c (struct jcf_handler): New type.
13188 (struct jcf_switch_state): New type.
13189 (SWITCH_ALIGN_RELOC, BLOCK_START_RELOC): New relocation kinds.
13190 (alloc_handler, emit_unop, emit_reloc): New functions.
13191 (adjust_typed_op): Add extra parameter ("max type" offset).
13192 (emit_switch_reloc, emit_case-reloc): New function.
13193 (generate_bytecode_conditional): Handle REAL_TYPE comparisons.
13194 (generate_bytecode_insns): Support REAL_CST, switch statements,
13195 exception handling, method calls, object/array creation, and more.
13196
13197 * class.c: Remove some unused variables.
13198 * constants.c (find_string_constant): New function.
13199 (count_constant_pool_bytes): Fix to correctly handle wide constants.
13200 * decl.c (complete_start_java_method): Don't _Jv_InitClass
13201 if flag_emit_class_files.
13202
13203 1998-11-12 Tom Tromey <tromey@cygnus.com>
13204
13205 * jcf-io.c (find_class): Added explanatory comment.
13206
13207 * jcf-path.c (add_entry): Look for `.zip' at end of filename. Add
13208 trailing slash to `.zip' entries.
13209
13210 * jvspec.c (lang_specific_driver): Correctly handle case where
13211 GC_NAME not defined.
13212
13213 1998-11-11 Tom Tromey <tromey@cygnus.com>
13214
13215 * jvspec.c (GC_NAME): New define.
13216 (lang_specific_driver): Use GC_NAME. Add GC_NAME to command line
13217 if required.
13218 * Make-lang.in (jvspec.o): Define WITH_GC_<name>.
13219
13220 1998-11-11 Per Bothner <bothner@cygnus.com>
13221
13222 * jcf-dump.c (TABLE_SWITCH): Fix typos.
13223
13224 1998-11-11 Tom Tromey <tromey@cygnus.com>
13225
13226 * jcf-dump.c (main): Correctly recognize `--'-style long options.
13227
13228 1998-11-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
13229
13230 * class.c (is_compiled_class): Call safe_layout_class for class
13231 compiled from source.
13232 * conver.h (convert_to_integer, convert_to_real,
13233 convert_to_pointer): Added prototypes.
13234 * decl.c (init_decl_processing): Non longer push the decls of
13235 `methodtable', `constants', `Class', `Field', `dispatchTable'
13236 `jexception' and `Method'.
13237 * expr.c (build_invokeinterface): New function.
13238 (expand_invoke): static variable CLASS_IDENT now in
13239 build_invokeinterface. Use build_invokeinterface.
13240 (expand_java_field_op): Moved code to inline
13241 java.lang.PRIMTYPE.TYPE into a function.
13242 (build_primtype_type_ref): New function.
13243 * java-tree.def (INSTANCEOF_EXPR): New tree code.
13244 * java-tree.h (CLASS_METHOD_CHECKED_P, METHOD_DEPRECATED,
13245 FIELD_DEPRECATED, CLASS_DEPRECATED): New flag macros.
13246 (DECL_CONSTRUCTOR_P): Fixed typo in comment.
13247 (DECL_LOCAL_STATIC_VALUE): New macro.
13248 (build_invokeinterface, build_primtype_type_ref): New function
13249 prototypes.
13250 (java_parse_abort_on_error): Macro rewritten.
13251 * jcf-parse.c (current_method): Add comment to declaration.
13252 (parse_zip_file_entries, process_zip_dir, void parse_source_file):
13253 Function prototypes fixed.
13254 (jcf_parse_source): push/pop parser context. save/restore global.
13255 (parse_source_file): Fixed leading comment. Now take a
13256 IDENTIFIER_NODE as an argument. Doesn't check methods, layout
13257 classes and pop the parser context anymore.
13258 (yyparse): Push parser context, save globals, parse the source
13259 file, restore globals and pop the parser context when processing a
13260 source file.
13261 * jcf.h (VERBOSE_SKELETON): Replaces SOURCE_FRONTEND_DEBUG define.
13262 * lex.c (java_parse_doc_section): New function.
13263 (java_lex): Call java_parse_doc_section when appropriate. Build an
13264 operator around INSTANCEOF_TK.
13265 * lex.h (java_lineterminator, java_sprint_unicode,
13266 java_unicode_2_utf8, java_lex_error, java_store_unicode):
13267 Prototypes rewritten.
13268 (java_parse_escape_sequence, java_letter_or_digit_p,
13269 java_parse_doc_section, java_parse_end_comment, java_get_unicode,
13270 java_read_unicode, java_store_unicode, java_read_char,
13271 java_allocate_new_line, java_unget_unicode, java_sneak_unicode):
13272 Added function prototypes.
13273 * parse.h (VERBOSE_SKELETON): Replaces SOURCE_FRONTEND_DEBUG
13274 define.
13275 (JNULLP_TYPE_P, CHECK_METHODS, CHECK_DEPRECATED, REGISTER_IMPORT):
13276 New macros
13277 (struct parser_ctxt): New fields: deprecated,
13278 current_parsed_class_un, gclass_list.
13279 (fix_method_argument_names, issue_warning_error_from_context,
13280 resolve_package, lookup_package_type): New function prototypes.
13281 (resolve_expression_name): Fixed function prototype.
13282 (find_applicable_accessible_methods_list): Fixed indentation, added
13283 extra argument in prototype.
13284 (check_final_assignment, build_null_of_type, check_deprecation,
13285 check_method_redefinition, reset_method_name,
13286 java_check_regular_methods, java_check_abstract_methods,
13287 maybe_build_primttype_type_ref): New function prototype.
13288 * parse.y (conver.h): Include.
13289 (INSTANCEOF_TK): Tagged <operator>.
13290 (single_type_import_declaration): Use REGISTER_IMPORT macro.
13291 (relational_expression:): Build binop for instanceof.
13292 (java_push_parser_context): Remember ctxp->gclass_list across
13293 contexts.
13294 (java_pop_parser_context): Simply return if no context
13295 exists. Remember gclass_list across contexts.
13296 (issue_warning_error_from_context): New function.
13297 (parse_error_context): Don't setup ctxp->elc here. Call
13298 issue_warning_error_from_context instead.
13299 (parse_warning_context): Likewise.
13300 (maybe_create_class_interface_decl): Removed DECL_ARTIFICIAL
13301 setup. Link new class/interface to ctxp->gclass_list.
13302 (add_superinterfaces): Register interface as incomplete if not
13303 loaded.
13304 (create_class): Remember class unqualified name in
13305 ctxp->current_parsed_class_un. Check class deprecation.
13306 (register_fields): Check field deprecation. Remember static final
13307 field value in DECL_LOCAL_STATIC_VALUE. Changed comment in part
13308 processing INIT.
13309 (method_header): New local variable ORIG_ARG. Use unqualified
13310 current class name for check on constructor errors. Promote return
13311 type if of record type. Argument list fix moved in
13312 fix_method_argument_names, called here. Check method deprecation.
13313 (fix_method_argument_names): New function.
13314 (method_declarator): Promote record typed arguments.
13315 (safe_layout_class): Check class methods before layout.
13316 (java_complete_class): Compute field layout when patched.
13317 (do_resolve_class): Try to load class after having it renamed
13318 after the package name.
13319 (get_printable_method_name): Use DECL_CONTEXT.
13320 (reset_method_name): New function.
13321 (check_method_redefinition): Use reset_method_name.
13322 (java_check_regular_methods): New local variable
13323 SAVED_FOUND_WFL. Temporarily reinstall overriding/hiding method
13324 names for error report. Check for compile-time error when method
13325 found has default (package) access.
13326 (java_check_abstract_methods): Now takes an interface DECL node as
13327 an argument. Also reinstall real name on unchecked
13328 overriding/hiding methods for error report.
13329 (java_check_methods): Fixed leading comment. Get classes to verify
13330 from ctxp->gclass_list. Use CHECK_METHODS macro and set
13331 CLASS_METHOD_CHECKED_P on class verification.
13332 (lookup_java_method2): Get real method name if necessary.
13333 (find_in_imports): Don't check package class access here.
13334 (resolve_package, lookup_package_type): New functions.
13335 (java_layout_classes): Fixed leading comment. Take classes to be
13336 laid out from ctxp->gclass_list.
13337 (java_complete_expand_methods): Don't expand native and abstract
13338 methods.
13339 (java_expand_classes): New function.
13340 (resolve_expression_name): Use additional argument ORIG. Retrieve
13341 values of static final field of primitive types.
13342 (resolve_field_access): Handles static final field of promotive
13343 type.
13344 (resolve_qualified_expression_name): Handle STRING_CST as
13345 primaries and package name resolution. Check deprecation on found
13346 decls. Set where_found and type_found on non static field resolved
13347 during qualification. Layout non primitive field decl types.
13348 (check_deprecation): New function.
13349 (maybe_access_field): Simplified.
13350 (patch_method_invocation_stmt): Local variable CLASS_TYPE
13351 removed. Reverse method's argument when primary is a type. Don't
13352 use CLASS_TYPE to report problems, use IDENTIFIER_WFL
13353 instead. Include abstract class in the list of class searchable
13354 for constructors. Use DECL_CONTEXT of found method for access
13355 checks. Check method deprecation.
13356 (patch_invoke): Pay extra care to NEW_CLASS_EXPR type call when
13357 converting arguments. Handle INVOKE_INTERFACE.
13358 (lookup_method_invoke): Search constructor using existing
13359 infrastructure (don't rely on lookup_java_constructor anymore).
13360 (find_applicable_accessible_methods_list): Extra argument flag
13361 LC. Now include constructor in the search.
13362 (qualify_ambiguous_name): Conditional expression are primaries.
13363 (not_initialized_as_it_should_p): static final are always
13364 initialized.
13365 (java_complete_tree): Pass extra NULL argument to
13366 resolve_expression_name. Stricter test to carry on patching
13367 assignments. New case for INSTANCEOF_EXPR.
13368 (complete_function_arguments): Inline PRIMTYPE.TYPE read access.
13369 (check_final_assignment, maybe_build_primttype_type_ref): New
13370 functions.
13371 (patch_assignment): Detect resolved static finals and carry normal
13372 assignment error check on them. Inline PRIMTYPE.TYPE read access.
13373 (try_builtin_assignconv): Access constant 0 on all primitive
13374 types.
13375 (valid_builtin_assignconv_identity_widening_p): Accept identical
13376 types. Accept all promoted type on int type.
13377 (valid_ref_assignconv_cast_p): Accept a null pointer to be
13378 assigned to a reference.
13379 (valid_method_invocation_conversion_p): Accept to check null
13380 pointers.
13381 (build_binop): Merge declaration and initialization of local
13382 variable BINOP.
13383 (patch_binop): New case for INSTANCEOF_EXPR. NE_EXPR to accept all
13384 numeric types. Improved validity test for qualify operators on
13385 references.
13386 (patch_unaryop): Broadened rejection test for PREDECREMENT_EXPR
13387 and PREINCREMENT_EXPR. Also detect resolved static finals of a
13388 primitive type and issue the appropriate error message.
13389 (resolve_type_during_patch): Mark class loaded when resolved.
13390 (patch_cast): Allow null to be cased to reference types.
13391 (build_null_of_type): New function.
13392 (patch_array_ref): Handle array on references correctly.
13393 (patch_return): Removed unused local variable MODIFY. Force
13394 boolean to be returned as integers. Allows null to be returned by
13395 a function returning a reference.
13396 * typeck.c (convert_to_integer, convert_to_real,
13397 convert_to_pointer): Prototypes moved to convert.h
13398 (lookup_argument_method): Use method real name, if necessary.
13399
13400 1998-10-30 Tom Tromey <tromey@cygnus.com>
13401
13402 * class.c (build_class_ref): Changed name of primitive classes to
13403 start with `_Jv_'.
13404
13405 * class.c (make_class_data): Renamed fields: nmethods to
13406 method_count, method_count to dtable_method_count. Always set
13407 `state' field to 0.
13408 * decl.c (init_decl_processing): Likewise.
13409
13410 1998-10-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
13411
13412 * class.c (layout_class): Don't mangle <finit>, produce
13413 __finit<class> instead. Don't verify artificial methods.
13414 * decl.c (finit_identifier_node): New declared global.
13415 (init_decl_processing): finit_identifier_node initialized.
13416 * java-tree.def (CONDITIONAL_EXPR): New Java tree code.
13417 * java-tree.h (finit_identifier_node): Declared as extern.
13418 (struct lang_decl): New field called_constructor.
13419 (DECL_CONSTRUCTOR_CALLS): Access macro to called_constructor.
13420 (CLASS_HAS_FINIT_P): New macro.
13421 (CALL_CONSTRUCTOR_P): Leading comment changed. Macro now checks
13422 explicit constructor invocation.
13423 (CALL_EXPLICIT_CONSTRUCTOR_P, CALL_THIS_CONSTRUCTOR_P,
13424 CALL_SUPER_CONSTRUCTOR_P): New macros.
13425 (write_classfile): Added prototype.
13426 * jcf-parse.c (jcf_parse_source): Parse and remember for
13427 generation if the file was seen on the command line.
13428 (parse_source_file): Don't write the class file here.
13429 (yyparse): Loop on files rewritten. Set current_jcf.
13430 (parse_zip_file_entries): Parse class file only if it was found.
13431 * lang.c (init_parse): Don't open command line provided filename
13432 here.
13433 (lang_parse): Don't set main_jcf anymore.
13434 * parse.h (ABSTRAC_CHECK): Capitalized arguments.
13435 (JCONSTRUCTOR_CHECK): New macro.
13436 (JBSC_TYPE_P): New macro.
13437 (IN_TRY_BLOCK_P, EXCEPTIONS_P): Fixed leading comment.
13438 (COMPLETE_CHECK_OP_2): New macro.
13439 (struct parse_ctxt): New field explicit_constructor_p.
13440 (check_class_interface_creation): Fixed prototype indentation.
13441 (patch_method_invocation_stmt): Prototype reflects added argument.
13442 (patch_invoke): Likewise.
13443 (complete_method_declaration, build_super_invocation,
13444 verify_constructor_circularity,
13445 build_this_super_qualified_invocation, get_printable_method_name,
13446 patch_conditional_expr, maybe_generate_finit, fix_constructors,
13447 verify_constructor_super, create_artificial_method,
13448 start_artificial_method_body, end_artificial_method_body,
13449 generate_field_initialization_code): New function prototypes.
13450 * parse.y: Fixed leading comment
13451 (constructor_header:, constructor_body:, block_end:): Rules tagged
13452 <node>.
13453 (type_declaration:): Call maybe_generate_finit.
13454 (method_declaration:): Action for method_body: placed in new
13455 function complete_method_declaration, called here.
13456 (constructor_declaration:): Defined actions. Removed leading
13457 FIXME.
13458 (constructor_header:): New rule with action.
13459 (constructor_body:): Rule rewritten using block_begin: and
13460 block_end:. Defined actions.
13461 (constructor_declarator:, explicit_constructor_invocation:):
13462 Defined actions.
13463 (block:): Use new rules block_begin: block_end:.
13464 (block_begin:, block_end:): New rules and actions.
13465 (block_statements:): Fixed error message for explicit
13466 constructors.
13467 (method_invocation:): Call build_this_super_qualified_invocation
13468 if primary is `this' or `super' was seen.
13469 (conditional_expression:): Action defined.
13470 (extra_ctxp_pushed_p): New static global flag.
13471 (java_parser_context_save_global): Create parser context if
13472 necessary. Use extra_ctxp_pushed_p to remember it.
13473 (java_parser_context_restore_global): Pop extra parser context if
13474 one exists.
13475 (build_array_from_name): Array on primitive types are marked
13476 loaded.
13477 (register_fields): Restore new name in field initializer
13478 expression if type was altered. Non static fields initialized upon
13479 declaration marked initialized.
13480 (maybe_generate_finit): New function.
13481 (maybe_generate_clinit): Use create_artificial_method,
13482 start_artificial_method_body, end_artificial_method_body. Generate
13483 debug info for enclosed initialization statements.
13484 (method_header): Fixed leading comment. Check constructor
13485 flags. Detect constructor declarations and set DECL_CONSTRUCTOR_P
13486 accordingly.
13487 (complete_method_declaration, constructor_circularity_msg,
13488 verify_constructor_circularity): New functions.
13489 (get_printable_method_name): New function.
13490 (check_method_redefinition): Don't rename <finit> methods. Fix
13491 declared constructor names. Error message for
13492 constructors modified.
13493 (java_check_regular_methods): Local variable seen_constructor
13494 renamed saw_constructor. Skip verification on constructors. Create
13495 default constructor with create_artificial_method.
13496 (java_check_methods): Removed unnecessary empty line.
13497 (create_artificial_method, start_artificial_method_body,
13498 end_artificial_method_body): New functions.
13499 (java_layout_classes): Changed leading comment. Reverse fields
13500 list if necessary. Always layout java.lang.Object if being
13501 defined.
13502 (java_complete_expand_methods): Verify constructor circularity.
13503 (java_complete_expand_method): Call fix_constructor on
13504 constructors. Local variable no_ac_found removed. Restore
13505 bindings if method body expansion failed.
13506 (fix_constructors, verify_constructor_super,
13507 generate_field_initialization_code): New function.
13508 (java_expand_classes): Fixed leading comment. Write class file
13509 here.
13510 (resolve_expression_name): Check for illegal instance variable
13511 usage within the argument scope of an explicit constructor
13512 invocation.
13513 (resolve_qualified_expression_name): Pass extra from_super flag
13514 when invoking patch_method_invocation_stmt. New case for
13515 conditional expression when used as a primary. Check for error
13516 when acquiring super.
13517 (patch_method_invocation_stmt): Added extra argument super. New
13518 local variable is_static_flag. Set class_to_search according to
13519 the nature of the constructor invocation. Don't add `this'
13520 argument when expanding NEW_CLASS_EXPR. Check for illegal method
13521 invocation within the argument scope of explicit constructor
13522 invocation. Set is_static according to is_static_flag. Provide
13523 extra `super' argument to patch_invoke invocation.
13524 (patch_invoke): New argument from_super. Loop on arguments
13525 indentation fixed. Pass from_super to invocation_mode. New switch
13526 case INVOKE_SUPER. Fixed error message in switch default case.
13527 Don't use CALL_CONSTRUCTOR_P but rather a test on the tree node
13528 value.
13529 (invocation_mode): Return INVOKE_SUPER mode when appropriate.
13530 (lookup_method_invoke): Fixed prototypes in candidates list. Error
13531 message takes constructors into account.
13532 (find_applicable_accessible_methods_list): Fixed indentation.
13533 (qualify_ambiguous_name): Take explicit constructor invocation
13534 into account. Deal with a conditional expression as a primary to
13535 a method call.
13536 (java_complete_tree): Added local wfl_op3. New CONDITIONAL_EXPR
13537 case. Added extra argument to patch_method_invocation_stmt.
13538 Register calls made to explicit constructor `this'. Don't call
13539 save_expr in ARRAY_REF case when emitting class files. Check for
13540 illegal use of this when expanding explicit constructor invocation
13541 arguments.
13542 (complete_function_arguments): Set and reset parser context
13543 explicit_constructor_p field value when appropriate.
13544 (build_super_invocation, build_this_super_qualified_invocation):
13545 New functions.
13546 (patch_assignment): Fixed typo.
13547 (patch_unaryop): Check on final fields occurs only when a decl
13548 exits.
13549 (patch_return): Take constructors into account.
13550 (patch_conditional_expr): New function.
13551 * typeck.c (build_java_signature): Removed unnecessary empty line.
13552
13553 1998-10-28 Jeffrey A Law (law@cygnus.com)
13554
13555 * Makefile.in (jcf-dump, gcjh): Link in $(LIBS) too.
13556
13557 1998-10-28 Tom Tromey <tromey@cygnus.com>
13558
13559 * decl.c (init_decl_processing): Renamed fields.
13560 * class.c (make_class_data): Renamed bfsize, nfields, nsfields,
13561 interface_len, msize fields.
13562
13563 * class.c (make_class_data): Removed subclass_head and
13564 subclass_next fields.
13565 * decl.c (init_decl_processing): Removed subclass_head and
13566 subclass_next fields.
13567
13568 1998-10-28 Jeffrey A Law (law@cygnus.com)
13569
13570 * jcf-write.c (emit_load_or_store): Avoid implicit int arguments.
13571 * mangle.c (emit_unicode_mangled_name): Similarly.
13572
13573 1998-10-26 Nick Clifton <nickc@cygnus.com>
13574
13575 * jcf-parse.c (get_constant): Place braces around code to compute
13576 'd' when REAL_ARITHMETIC is not defined.
13577
13578 1998-10-25 H.J. Lu (hjl@gnu.org)
13579
13580 * Make-lang.in (jv-scan$(exeext)): Add stamp-objlist to
13581 dependency.
13582
13583 1998-10-23 Tom Tromey <tromey@cygnus.com>
13584
13585 * lang-specs.h: `.zip' files are input to jc1.
13586
13587 1998-10-22 Per Bothner <bothner@cygnus.com>
13588
13589 * jvspecs.c: Add (but don't enable) support for combining multiple
13590 .class and .java input filenames to a single jc1 invocation.
13591 Add support for -C flag (copile to .class files).
13592 Translate -classpath and -CLASSPATH arguments.
13593 * lang-specs.h: Don't set %2 spec.
13594
13595 1998-10-22 Tom Tromey <tromey@cygnus.com>
13596
13597 * jcf-path.c (add_entry): Don't add trailing separator if entry is
13598 a .zip file.
13599 (add_path): Don't add trailing separator to non-empty path
13600 elements.
13601
13602 * lang.c (lang_decode_option): Check for -fclasspath and
13603 -fCLASSPATH before examining other `-f' options.
13604
13605 * java-tree.h (finalize_identifier_node): Don't declare.
13606 * class.c (make_class_data): Don't push "final" field.
13607 * decl.c (init_decl_processing): Don't push "final" field.
13608 (finalize_identifier_node): Removed.
13609 (init_decl_processing): Don't set finalize_identifier_node.
13610
13611 * config-lang.in (stagestuff): Added jcf-dump and jv-scan.
13612
13613 1998-10-11 Anthony Green <green@cygnus.com>
13614
13615 * Make-lang.in (java): Depend on jcf-dump and jv-scan.
13616 (JV_SCAN_SOURCES): New macro.
13617 (JCF_DUMP_SOURCES): Likewise.
13618 (jcf-dump$(exeext)): New target.
13619 (jv-scan$(exeext)): New target.
13620
13621 1998-10-22 Tom Tromey <tromey@cygnus.com>
13622
13623 * Makefile.in (LEX): Removed.
13624 (LEXFLAGS): Likewise.
13625 (SET_BISON): New macro.
13626 (BISON): Removed.
13627 ($(PARSE_C)): Use SET_BISON. Run bison from srcdir to avoid
13628 spurious diffs in parse.c.
13629 ($(PARSE_SCAN_C)): Likewise.
13630 (PARSE_DIR): New macro.
13631 (PARSE_C): Use it.
13632 (PARSE_SCAN_C): Likewise.
13633 (PARSE_RELDIR): New macro.
13634
13635 * jcf-io.c (saw_java_source): Define here, not in jcf-parse.c.
13636
13637 * jcf-io.c (find_class): Use saw_java_source to determine when to
13638 look for `.java' file.
13639 * jcf-parse.c (saw_java_source): New global.
13640 (yyparse): Set it if `.java' file seen.
13641
13642 * Make-lang.in (JAVA_SRCS): Added jcf-path.c.
13643 (GCJH_SOURCES): Likewise.
13644 * Makefile.in (datadir): New macro.
13645 (libjava_zip): Likewise.
13646 (JAVA_OBJS): Added jcf-path.o.
13647 (../jcf-dump$(exeext)): Depend on and link with jcf-depend.o.
13648 (../gcjh$(exeext)): Likewise.
13649 (jcf-path.o): New target.
13650 * java-tree.h (fix_classpath): Removed decl.
13651 * jcf-parse.c (fix_classpath): Removed.
13652 (load_class): Don't call fix_classpath.
13653 * parse.y (read_import_dir): Don't call fix_classpath.
13654 * lex.h: Don't mention classpath.
13655 * lex.c (java_init_lex): Don't initialize classpath.
13656 * jcf-io.c (classpath): Removed global.
13657 (find_class): Use jcf_path iteration functions. Correctly search
13658 class path for .java file.
13659 (open_in_zip): New argument `is_system'.
13660 * jcf-dump.c (main): Call jcf_path_init. Recognize all new
13661 classpath-related options.
13662 * lang.c (lang_decode_option): Handle -fclasspath, -fCLASSPATH,
13663 and -I.
13664 (lang_init): Call jcf_path_init.
13665 * lang-options.h: Mention -I, -fclasspath, and -fCLASSPATH.
13666 * lang-specs.h: Handle -I. Minor cleanup to -M options.
13667 Correctly put braces around second string in each entry.
13668 * gjavah.c (main): Call jcf_path_init. Recognize all the new
13669 classpath-related options.
13670 (help): Updated for new options.
13671 * jcf.h: Declare functions from jcf-path.c. Don't mention
13672 `classpath' global.
13673 * jcf-path.c: New file.
13674
13675 * jcf-depend.c: Include jcf.h.
13676
13677 * jcf-write.c (localvar_alloc): Returns `void'.
13678 (localvar_free): Removed unused variable.
13679
13680 * lang.c (OBJECT_SUFFIX): Define if not already defined.
13681 (init_parse): Use OBJECT_SUFFIX, not ".o".
13682
13683 1998-10-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
13684
13685 * class.c (emit_register_classes): Renamed from
13686 emit_register_class.
13687 * java-tree.h (emit_register_classes): Prototype renamed from
13688 emit_register_class.
13689 * jcf-parse.c (yyparse): Call emit_register_classes once before
13690 returning.
13691 * parse.y (java_expand_classes): No longer register classes.
13692
13693 1998-10-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
13694
13695 * class.c (is_compiled_class): New local variable
13696 seen_in_zip. Identify classes found in currently compiled source
13697 file(s).
13698 * decl.c (complete_start_java_method): Fixed typo.
13699 * java-tree.h (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P,
13700 HAS_BEEN_ALREADY_PARSED_P, IS_A_COMMAND_LINE_FILENAME_P): New macros.
13701 (CLASS_P): Moved around.
13702 (java_parse_abort_on_error): Macro moved from jcf-parse.c
13703 * jcf-parse.c (java_parse_abort_on_error): Macro moved to
13704 java-parse.h
13705 (jcf_parse_source): Changed leading comment. Removed unnecessary
13706 fclose and CLASS_FROM_SOURCE_P marking.
13707 (parse_source_file): New local variables remember_for_generation
13708 and filename. Mark parsed file name identifier node. Removed block
13709 executed when parse_only was null. Set remember_for_generation.
13710 Use it as an argument to java_pop_parser_context.
13711 (yyparse): New local variables several_files, list, next node and
13712 current_file_list. Split ampersand separated file names into
13713 current_file_list. Iterate through the list and parse accordingly.
13714 * parse.h (java_pop_parser_context): New function prototype.
13715 * parse.y (ctxp_for_generation): New static global variable.
13716 (java_pop_parser_context): New argument generate. Link popped ctxp
13717 to ctxp_for_generation list accordingly.
13718 (java_complete_expand_methods): Fixed indentation.
13719 (java_expand_classes): New function.
13720
13721 1998-10-17 Per Bothner <bothner@cygnus.com>
13722
13723 * Makefile.in: Link with libiberty.a instead of memmove.o.
13724
13725 1998-10-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
13726
13727 * lex.c (setjmp.h): No longer included.
13728 * lex.h (setjmp.h): Included.
13729 * parse.h (SET_TYPE_FOR_RESOLUTION): New macro.
13730 (duplicate_declaration_error_p): Renamed from
13731 duplicate_declaration_error.
13732 (build_array_from_name): New function prototype.
13733 * parse.y (setjmp.h): No longer included.
13734 (variable_declarator_id): Define action.
13735 (build_array_from_name): New function.
13736 (duplicate_declaration_error_p): Renamed from
13737 duplicate_declaration_error. Fixed leading comment.
13738 (register_fields): Main `for' loop reorganized. Uses
13739 SET_TYPE_FOR_RESOLUTION and build_array_from_name.
13740 (method_declarator): Uses SET_TYPE_FOR_RESOLUTION and call
13741 build_array_from_name.
13742 (resolve_class): Set CLASS_LOADED_P on newly build array dimension
13743 types.
13744 (read_import_dir): Don't try to skip `.' and `..'.
13745 (declare_local_variables): Uses SET_TYPE_FOR_RESOLUTION and
13746 build_array_from_name. Main `for' loop reorganized.
13747 (resolve_qualified_expression_name): When building access to a
13748 field, use the type where the field was found, not its own type.
13749 (maybe_access_field): Use field DECL_CONTEXT if the type where the
13750 field was found is null.
13751 (qualify_ambiguous_name): Sweep through all successive array
13752 dimensions.
13753
13754 1998-10-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
13755
13756 * java-tree.h (pop_labeled_block, lang_printable_name,
13757 maybe_add_interface, set_super_info, get_access_flags_from_decl,
13758 interface_of_p, inherits_from_p, fix_classpath,
13759 complete_start_java_method, emit_handlers, init_outgoing_cpool,
13760 make_class_data, register_class, alloc_name_constant): New
13761 function prototypes.
13762 * lang.c (lang_decode_option): Set argc argument unused. Fixed
13763 indentation. Added cast to remove warning.
13764 (lang_printable_name): Set v argument unused.
13765 (lang_print_error): Added argument to lang_printable_name call.
13766 (java_dummy_print, print_lang_decl, print_lang_type,
13767 print_lang_identifier, lang_print_xnode): All argument marked
13768 unused.
13769 * lex.c (java_unget_unicode): Removed unnecessary argument.
13770 (java_allocate_new_line): Unused local variable is gone.
13771 (java_read_char): Added parenthesis in expressions to remove
13772 warnings. Added final return statement.
13773 (java_read_unicode): Added parenthesis in expression to remove
13774 warning.
13775 (java_parse_end_comment): Fixed java_unget_unicode invocation.
13776 (java_parse_escape_sequence): Likewise.
13777 (java_lex): Unused local variables are gone. Fixed
13778 java_unget_unicode invocation.
13779 * lex.h (set_float_handler): Prototype added when JC1_LITE not
13780 defined.
13781 * parse.h (ERROR_CANT_CONVERT_TO_BOOLEAN): Fixed
13782 lang_printable_name invocation in macro.
13783 (ERROR_CANT_CONVERT_TO_NUMERIC, ERROR_CAST_NEEDED_TO_INTEGRAL):
13784 Likewise.
13785 (duplicate_declaration_error): Suppressed unused argument in
13786 prototype.
13787 (identical_subpath_p): Function declaration is gone.
13788 (patch_invoke): Suppressed unused argument in prototype.
13789 (patch_cast, build_labeled_block, check_thrown_exceptions):
13790 Likewise.
13791 * parse.y (setjmp.h): Included
13792 (toplev.h): Likewise.
13793 (field_declaration:): Suppressed unused local
13794 (label_decl:): Fixed build_labeled_block invocation.
13795 (java_pop_parser_context): Put extra parenthesis around assignment
13796 in if.
13797 (yyerror): Suppressed unused local variables.
13798 (variable_redefinition_error): Fixed lang_printable_name
13799 invocation.
13800 (create_interface): Suppressed unused local variables.
13801 (create_class): Likewise.
13802 (duplicate_declaration_error): Suppressed unused argument. Fixed
13803 lang_printable_name invocation.
13804 (register_fields): Suppressed unused local variable. Fixed
13805 duplicate_declaration_error invocation.
13806 (method_header): Suppressed unused local variable.
13807 (method_declarator, parser_check_super): Likewise.
13808 (java_complete_class): Suppressed unused local variable. Fixed
13809 fatal error message.
13810 (complete_class_report_errors): Added default: in switch.
13811 (java_check_regular_methods): Fixed lang_printable_name
13812 invocations.
13813 (check_throws_clauses): Likewise.
13814 (java_check_abstract_methods): Suppressed unused local
13815 variable. Fixed lang_printable_name invocation.
13816 (read_import_entry): Added supplemental return statement.
13817 (read_import_dir): Suppressed unused local variables.
13818 (check_pkg_class_access, declare_local_variables): Likewise.
13819 (source_start_java_method): Suppressed unused extern variable
13820 declarations
13821 (expand_start_java_method): Suppressed unused extern and local
13822 variable declarations.
13823 (java_complete_expand_methods): Likewise.
13824 (java_complete_expand_method): Suppressed unused local variables.
13825 (make_qualified_name): Likewise.
13826 (resolve_qualified_expression_name): Added default: in
13827 switch. Fixed lang_printable_name invocation.
13828 (class_instance_creation_expression): Added parenthesis around
13829 expressions.
13830 (patch_method_invocation_stmt): Fixed lang_printable_name and
13831 patch_invoke invocations.
13832 (check_for_static_method_reference): Fixed lang_printable_name
13833 invocation.
13834 (patch_invoke): Suppressed unused arguments and local variables.
13835 (lookup_method_invoke): Suppressed unused local variables.
13836 (qualify_ambiguous_name): Added default: in switch.
13837 (identical_subpath_p): Function removed.
13838 (patch_assignment): Suppressed unused local variables. Suppressed
13839 unnecessary if statement. Fixed lang_printable_name invocations.
13840 (try_builtin_assignconv): Fixed lang_printable_name invocations.
13841 (valid_ref_assignconv_cast_p): Parenthesis around
13842 expression. Suppressed unused local variables.
13843 (build_binop): Suppressed unused local variables. fixed
13844 lang_printable_name invocations.
13845 (string_constant_concatenation): Suppressed unused local
13846 variables.
13847 (patch_unaryop): Fixed lang_printable_name invocation.
13848 (patch_cast): Suppressed unnecessary argument. Fixed
13849 lang_printable_name invocation.
13850 (patch_array_ref): Fixed lang_printable_name invocation.
13851 (patch_newarray, patch_return, patch_if_else_statement): Likewise.
13852 (build_labeled_block): Suppressed unused argument.
13853 (generate_labeled_block): Fixed build_labeled_block invocation.
13854 (build_loop_body): Suppressed unused local variables.
13855 (patch_loop_statement): Likewise.
13856 (patch_exit): Fixed lang_printable_name invocation.
13857 (patch_switch_statement): Likewise.
13858 (case_identity): First argument marked unused.
13859 (patch_try_statement): Fixed lang_printable_name invocations.
13860 (patch_synchronized_statement, patch_throw_statement): Likewise.
13861 (check_thrown_exceptions): Fixed check_thrown_exceptions and
13862 lang_printable_name invocations.
13863 (check_thrown_exceptions_do): Suppressed unused argument.
13864
13865 1998-10-14 Tom Tromey <tromey@cygnus.com>
13866
13867 * jcf-write.c (write_classfile): Add output class file as target.
13868 * lang-options.h: Added -MD, -MMD, -M, and -MM.
13869 * jcf.h: Added declarations for dependency-tracking functions.
13870 * lang-specs.h: Handle -M, -MM, MD, and -MMD.
13871 * lang.c (lang_decode_option): Recognize -MD and -MMD.
13872 (finish_parse): Call jcf_dependency_write.
13873 (dependency_tracking): New global.
13874 (DEPEND_SET_FILE): New define.
13875 (DEPEND_ENABLE): New define.
13876 (init_parse): Enable dependency tracking if required.
13877 Include "flags.h".
13878 * Makefile.in (JAVA_OBJS): Added jcf-depend.o.
13879 (../jcf-dump$(exeext)): Depend on and link with jcf-depend.o.
13880 (../gcjh$(exeext)): Likewise.
13881 (jcf-depend.o): New target.
13882 * Make-lang.in (JAVA_SRCS): Added jcf-depend.c.
13883 (GCJH_SOURCES): Likewise.
13884 * jcf-io.c (open_class): Call jcf_dependency_add_file. Added
13885 dep_name argument.
13886 (find_classfile): Added dep_name argument.
13887 (find_class): Compute name of dependency.
13888 (open_in_zip): Call jcf_dependency_add_file.
13889 * gjavah.c (output_file): No longer global.
13890 (usage): Don't mention "gjavah".
13891 (help): Likewise.
13892 (java_no_argument): Likewise.
13893 (version): Likewise.
13894 (main): Recognize and handle -M family of options.
13895 (print_mangled_classname): Return is void.
13896 (process_file): Handle case where output is suppressed.
13897 (HANDLE_END_FIELD): Likewise.
13898 (HANDLE_METHOD): Likewise.
13899 * jcf-depend.c: New file.
13900
13901 1998-10-13 Jeffrey A Law (law@cygnus.com)
13902
13903 * java-tree.def: Add missing newline at EOF.
13904
13905 1998-10-13 Tom Tromey <tromey@cygnus.com>
13906
13907 * jcf-dump.c (process_class): Use FATAL_EXIT_CODE, not -1.
13908 (main): Likewise. Exit with SUCCESS_EXIT_CODE at end of
13909 function.
13910 Include <config.h> and "system.h".
13911 (disassemble_method): Undefine RET to avoid clash with
13912 config/i386/i386.h.
13913
13914 1998-10-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
13915
13916 * decl.c (runtime_exception_type_node, error_exception_type_node):
13917 New global variables.
13918 (init_decl_processing): Initialized.
13919 * expr.c (java_lang_expand_expr): Set caught exception type to
13920 null if catch handler argument doesn't exit.
13921 * java-tree.def (SYNCHRONIZED_EXPR, THROW_EXPR): New Java specific
13922 tree codes.
13923 * java-tree.h (runtime_exception_type_node,
13924 error_exception_type_node): Global variables declared.
13925 (DECL_FUNCTION_THROWS): New macro.
13926 (DECL_FUNCTION_BODY): Modified comment.
13927 (DECL_SPECIFIC_COUNT): Likewise.
13928 (struct lang_decl): New field throws_list.
13929 (IS_UNCHECKED_EXPRESSION_P): New macro.
13930 * lex.c (java_lex): Generate location information for THROW_TK.
13931 * parse.h (PUSH_EXCEPTIONS, POP_EXCEPTIONS, IN_TRY_BLOCK_P,
13932 EXCEPTIONS_P): New macros.
13933 (enum jdep_code): New value JDEP_EXCEPTION.
13934 (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT,
13935 BUILD_ASSIGN_EXCEPTION_INFO, BUILD_THROW, SET_WFL_OPERATOR,
13936 PATCH_METHOD_RETURN_ERROR): New macros.
13937 (patch_method_invocation_stmt): Added new argument to prototype.
13938 (patch_synchronized_statement, patch_throw_statement,
13939 check_thrown_exceptions, check_thrown_exceptions_do,
13940 purge_unchecked_exceptions, check_throws_clauses): New function
13941 prototypes.
13942 * parse.y Fixed typo in keyword section.
13943 (throw:): Rule tagged <node>.
13944 (THROW_TK): Keyword tagged <operator>.
13945 (method_header:): Last argument to call to method_header passed
13946 from throws: rule.
13947 (throws:, class_type_list:, throw_statement:,
13948 synchronized_statement:, synchronized:): Defined actions.
13949 (method_header): New local variable current. Register exceptions
13950 from throws clause.
13951 (java_complete_tree): Complete and verify exceptions from throws
13952 clause.
13953 (complete_class_report_errors): Error message on exceptions not
13954 found
13955 (java_check_regular_methods): Fixed typo. Shortcut on private
13956 overriding methods. Changed error message on method
13957 redefinition. Check for throws clause compatibility.
13958 (check_throws_clauses): New function.
13959 (java_check_abstract_methods): Use DECL_NAME for wfl or current
13960 method. Changed error message on method redefinition.
13961 (currently_caught_type_list): New static variable.
13962 (java_complete_expand_methods): Purge unchecked exceptions from
13963 throws clause list. Call PUSH_EXCEPTIONS before walk and
13964 POP_EXCEPTIONS after.
13965 (resolve_qualified_expression_name): Pass new argument as NULL to
13966 patch_method_invocation_stmt.
13967 (patch_method_invocation_stmt): New argument ref_decl. Invoke
13968 PATCH_METHOD_RETURN_ERROR when returning with error. Reverse
13969 argument list when appropriate. Use new argument if non null to
13970 store selected method decl.
13971 (patch_invoke): Convert if necessary args of builtin types before
13972 forming CALL_EXPR. Argument list no longer reversed here.
13973 (invocation_mode): Treat final methods as static methods.
13974 (java_complete_tree): New cases for THROW_EXPR: and
13975 SYNCHRONIZED_EXPR:. Check thrown exceptions when completing
13976 function call.
13977 (complete_function_arguments): No more RECORD_TYPE
13978 conversion. Function parameter nodes no longer saved.
13979 (valid_ref_assignconv_cast_p): Avoid handling null type.
13980 (patch_binop): Fixed null constant reference handling.
13981 (build_try_statement): Use BUILD_ASSIGN_EXCEPTION_INFO and
13982 BUILD_THROW macros.
13983 (patch_try_statement): Fixed comments. Record caught types in
13984 list, push the list, expand try block and pop the list.
13985 (patch_synchronized_statement, patch_throw_statement,
13986 check_thrown_exceptions, check_thrown_exceptions_do,
13987 purge_unchecked_exceptions): New functions.
13988 * typeck.c (lookup_argument_method): Allow WFL in place of method
13989 DECL_NAME during method definition check
13990
13991 1998-10-09 Tom Tromey <tromey@cygnus.com>
13992
13993 * gjavah.c (decode_signature_piece): New function.
13994 (print_c_decl): Use it. Added `name_override' argument.
13995 (print_method_info): Use name_override argument to print_c_decl.
13996 (seen_fields): Removed.
13997 (print_field_info): Don't update seen_fields.
13998 (struct method_name): New structure.
13999 (method_name_list): New global.
14000 (print_method_info): Add new method to list of methods.
14001 (name_is_method_p): New function.
14002 (print_field_info): If field name has same name as method, then
14003 change field name.
14004 (process_file): Parse methods before fields.
14005 (field_pass): New global.
14006 (HANDLE_END_FIELD): Take field_pass into account.
14007
14008 1998-10-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14009
14010 * Makefile.in (keyword.h): Add -L KR-C -F ', 0' flags to gperf.
14011 (keyword.h): Regenerate using gperf 2.7.1 (19981006 egcs).
14012
14013 1998-10-03 Anthony Green <green@cygnus.com>
14014
14015 * jvspec.c: Fix bug in jvgenmain_spec patch.
14016
14017 1998-10-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
14018
14019 * Makefile.in (lang.o:): Install dependency on java-tree.def.
14020 * decl.c (soft_exceptioninfo_call_node): New global variable.
14021 (init_decl_processing): Fixed indentation. soft_badarrayindex_node
14022 takes extra integer argument. soft_exceptioninfo_call_node
14023 initialized.
14024 * except.c (java_set_exception_lang_code): New function
14025 (method_init_exceptions): Called here.
14026 (prepare_eh_table_type): New function.
14027 (expand_end_java_handler): Called here.
14028 * expr.c (build_java_throw_out_of_bounds_exception): Now features
14029 one argument. Modified generation of call to
14030 soft_badarrayindex_node to use new argument.
14031 (build_java_arrayaccess): Pass faulty index value to
14032 build_java_throw_out_of_bounds_exception.
14033 (generate_name): New function.
14034 (java_lang_expand_expr): New local variables node, current,
14035 has_finally_p. Expand TRY_EXPR node.
14036 (process_jvm_instruction): Replace top of the stack with thrown
14037 object reference when entering exception handler.
14038 * java-tree.def (TRY_EXPR, CATCH_EXPR, FINALLY_EXPR): New Java
14039 specific tree codes.
14040 * java-tree.h (soft_exceptioninfo_call_node): Declaration of new
14041 global.
14042 (DECL_SPECIFIC_COUNT): New macro.
14043 (prepare_eh_table_type, java_set_exception_lang_code,
14044 generate_name): New function declarations.
14045 (match_java_method): Declaration deleted.
14046 (FINALLY_EXPR_LABEL, FINALLY_EXPR_BLOCK, CATCH_EXPR_GET_EXPR): New
14047 macros.
14048 * lex.c (TRY_TK, CATCH_TK): Generate location information.
14049 * parse.h (redefinition_error, refine_accessible_methods_list,
14050 can_cast_to_p): Function declaration removed.
14051 (classitf_redefinition_error, variable_redefinition_error,
14052 parse_jdk1_1_error, find_applicable_accessible_methods_list,
14053 find_most_specific_methods_list, argument_types_convertible,
14054 enter_a_block, valid_builtin_assignconv_identity_widening_p,
14055 valid_cast_to_p, valid_method_invocation_conversion_p,
14056 try_reference_assignconv, add_stmt_to_compound,
14057 build_jump_to_finally, build_tree_list, patch_try_statement,
14058 java_get_catch_block): New function declarations.
14059 * parse.y (string_buffer_type): Global variable deleted.
14060 (group_of_labels, catches, catch_clause, catch_clause_parameter,
14061 finally): Rules tagged <node>.
14062 (TRY_TK, CATCH_TK): Token tagged <operator>.
14063 (class_body_declaration:, class_member_declaration:,
14064 formal_parameter:, explicit_constructor_invocation:,
14065 interface_member_declaration:, constant_declaration:,
14066 primary_no_new_array:, class_instance_creation_expression:,
14067 array_creation_expression:): Issue error on unsuported JDK1.1
14068 features.
14069 (try_statement:, catches:, finally:): Define actions.
14070 (catch_clause_parameter): New rule.
14071 (catch_clause:): Use new rule catch_clause_parameter.
14072 (parse_jdk1_1_error): New function.
14073 (redefinition_error): Renamed classitf_redefinition_error.
14074 (variable_redefinition_error): New function.
14075 (check_class_interface_creation): Call
14076 classitf_redefinition_error.
14077 (java_complete_tree): Added error message on JDEP_TYPE: case.
14078 (complete_class_report_errors): Fixed indentation.
14079 (declare_local_variables): Call variable_redefinition_error.
14080 (source_end_java_method): Call java_set_exception_lang_code and
14081 emit_handlers where appropriate.
14082 (java_method_add_stmt): Call add_stmt_to_block.
14083 (add_stmt_to_block): New function.
14084 (lookup_method_invoke): Fixed outside comment. new local variable
14085 candicates. Call find_applicable_accessible_methods_list and
14086 find_most_specific_methods_list when searching for a
14087 method. Modified error report to list possible candidates when
14088 applicable.
14089 (find_applicable_accessible_methods_list,
14090 find_most_specific_methods_list, argument_types_convertible): New
14091 function.
14092 (refine_accessible_methods_list): Function deleted.
14093 (java_complete_tree): Handle TRY_EXPR. ARRAY_REF handling: save
14094 expr (if applicable) before calling patch_array_ref.
14095 (build_expr_block): Fixed BLOCK_EXPR_BODY assignment.
14096 (enter_block): Fixed comment.
14097 (enter_a_block): New function.
14098 (patch_assignment): Reorganized. Call try_reference_assignconv for
14099 references. Call valid_cast_to_p instead of can_cast_to_p.
14100 (try_reference_assignconv,
14101 valid_builtin_assignconv_identity_widening_p): New functions.
14102 (valid_ref_assignconv_cast_p): Fixed inverted test on CLASS_FINAL.
14103 (valid_cast_to_p, valid_method_invocation_conversion_p): New
14104 functions.
14105 (build_string_concatenation): Don't resolve StringBuffer.
14106 (patch_cast): Fixed inverted arguments.
14107 (patch_array_ref): Code to save array expr deleted. Call
14108 valid_cast_to_p instead of can_cast_to_p.
14109 (generate_labeled_block): Call generate_name.
14110 (build_jump_to_finally, build_try_statement, java_get_catch_block,
14111 patch_try_statement): New functions.
14112 * typeck.c (match_java_method): Function deleted.
14113
14114 1998-10-02 Anthony Green <green@cygnus.com>
14115
14116 * jvspec.c: jvgenmain_spec uses different temporary file names.
14117
14118 1998-10-02 Anthony Green <green@cygnus.com>
14119
14120 * jvspec.c (lang_specific_driver): Fail if user specifies
14121 --main= when not linking.
14122
14123 1998-09-28 Tom Tromey <tromey@cygnus.com>
14124
14125 * class.c (make_class_data): Push value for `thread' field.
14126 * decl.c (init_decl_processing): Added `thread' field to class.
14127
14128 * class.c (add_field): Always make static fields externally
14129 visible.
14130
14131 1998-09-26 Anthony Green <green@cygnus.com>
14132
14133 * expr.c (build_java_athrow,
14134 build_java_throw_out_of_bounds_exception, expand_invoke,
14135 build_newarray, expand_java_multianewarray, build_java_monitor):
14136 Update comments to reflect _Jv_* function names.
14137
14138 1998-09-25 Per Bothner <bothner@cygnus.com>
14139
14140 * decl.c (complete_start_java_method): DECL_RESULT is always promoted.
14141 * decl.c (start_java_method): Handle PROMOTE_PROTOTYPES target macro.
14142 * parse.y (expand_start_java_method): Likewise.
14143
14144 1998-09-24 Per Bothner <bothner@cygnus.com>
14145
14146 * expr.c (pop_arguments): Handle PROMOTE_PROTOTYPES target macro.
14147
14148 * class.c (push_class): IDENTIFIER_SIGNATURE_TYPE is now POINTER_TYPE.
14149 (add_field): No longer need to convert from RECORD_TYPE to pointer,
14150 * expr.c: Remove no-longer-needed calls to promote_type.
14151 * decl.c (give_name_to_locals): Liekwise.
14152 * jcf-parse.c (get_class_constant): Compensate for new signatures.
14153 * parse.y: Add/remove promote_type calls as appropriate.
14154 * typeck.c (parse_signature_type): Returns POINTER_TYPE for objects.
14155 (parse_signature_string): Likewise.
14156 (build_java_array_type): Fix for now signature convenions.
14157
14158 * lex.c (java_lex): Fix (from Alex) for JC1_LITE problem.
14159
14160 1998-09-23 Tom Tromey <tromey@cygnus.com>
14161
14162 * class.c (init_class_processing): libjava function renamed to
14163 _Jv_RegisterClass.
14164
14165 1998-09-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
14166
14167 * expr.c (java_lang_expand_expr): New case for SWITCH_EXPR.
14168 * java-tree.def: Fixed DEFTREECODE third argument.
14169 (UNARY_PLUS_EXPR, NEW_ARRAY_EXPR, NEW_CLASS_EXPR, THIS_EXPR,
14170 CASE_EXPR, DEFAULT_EXPR): New tree codes for Java.
14171 * java-tree.h: (IS_CRAFTED_STRING_BUFFER_P): New macro.
14172 (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
14173 JAVA_THIS_EXPR): Now replaced by tree code definitions.
14174 (CALL_CONSTRUCTOR_P): Now uses NEW_CLASS_EXPR.
14175 * lang.c (java_tree_code_type, java_tree_code_length,
14176 java_tree_code_name): New arrays.
14177 (lang_init): Append Java tree node definitions to Gcc ones.
14178 * lex.c (expression_obstack): Declared as extern when JC1_LITE
14179 defined.
14180 (java_init_lex): Initialize wfl_append, wfl_string_buffer,
14181 wfl_to_string.
14182 (java_lex): Allow declaration of empty string constants. Retain
14183 location information on CASE_TK and DEFAULT_TK.
14184 * parse.h (JFLOAT_TYPE_P, JINTEGRAL_TYPE_P, JNUMERIC_TYPE_P,
14185 JPRIMITIVE_TYPE_P, JSTRING_TYPE_P, JSTRING_P, JREFERENCE_TYPE_P):
14186 Modified to be more robust.
14187 (BUILD_APPEND, BUILD_STRING_BUFFER): New macros.
14188 (build_new_invocation, try_builtin_assignconv,
14189 patch_switch_statement, string_constant_concatenation,
14190 build_string_concatenation, patch_string_cst, patch_string,
14191 java_expand_switch): New function declarations.
14192 * parse.y: Rules related to switch and EH tagged <node>.
14193 (label_id): Set to NULL_TREE
14194 (wfl_string_buffer, wfl_append, wfl_to_string): New static global
14195 tree nodes.
14196 (this_or_super:): Fixed indentation.
14197 (statement:, statement_nsi:, statement_without_trailing_substatement:,
14198 statement_expression:): Removed call to RULE on all sub-rules.
14199 (switch_expression:, switch_labels:): New rules.
14200 (switch_statement:, switch_block:, switch_block_statement_groups:,
14201 switch_block_statement_group:, switch_labels:, switch_label:):
14202 Defined actions.
14203 (throw_statement:, synchronized_statement:, try_statement:):
14204 Defined temporary actions.
14205 (class_instance_creation_expression:): Call
14206 build_new_invocation. Fixed indentation.
14207 (field_access): Fixed indentation.
14208 (method_invocation): Likewise.
14209 (make_qualified_primary): Use THIS_EXPR.
14210 (resolve_qualified_expression_name): Use NEW_CLASS_EXPR. When
14211 resolving from SUPER, set *type_found.
14212 (qualify_ambiguous_name): Use NEW_CLASS_EXPR.
14213 (java_complete_tree): Removed unused local variable `location'. Case
14214 for SWITCH_EXPR, sharing code with LOOP_EXPR. Use NEW_ARRAY_EXPR,
14215 NEW_CLASS_EXPR, UNARY_PLUS_EXPR and THIS_EXPR. New string handling
14216 on MODIFY_EXPR: and all binary operator tree code cases. Removed
14217 STRING_CST: case. default: checks for patchable strings.
14218 (complete_function_arguments): Transform string constant or
14219 crafted StringBuffer if necessary.
14220 (build_method_invocation): Fixed comments.
14221 (build_new_invocation): New function.
14222 (patch_assignment): Call try_builtin_assignconv to figure a valid
14223 assignment conversion between builtin types.
14224 (try_builtin_assignconv): New function.
14225 (build_binop): Use URSHIFT_EXPR directly to call build.
14226 (operator_string): Use UNARY_PLUS_EXPR.
14227 (patch_binop): Use UNARY_PLUS_EXPR. Handle string concatenation
14228 operator.
14229 (do_merge_string_cste, merge_string_cste,
14230 string_constant_concatenation, build_string_concatenation,
14231 patch_string, patch_string_cst): New function.
14232 (build_unary_op): Use UNARY_PLUS_EXPR and CONVERT_EXPR.
14233 (patch_unaryop): Likewise. New test of valid ++/-- operands.
14234 (build_newarray_node): Use NEW_ARRAY_EXPR.
14235 (build_this): Use THIS_EXPR.
14236 (build_return): Enable debug information on return statement.
14237 (build_if_else_statement): Likewise.
14238 (complete_labeled_statement): Fixed related comment.
14239 (build_loop_body): Fixed comment.
14240 (build_bc_statement): Enable debug information on break/continue
14241 statements.
14242 (patch_bc_statement): Fixed typos. Handle SWITCH statement
14243 context.
14244 (patch_switch_statement, case_identity, java_expand_switch): New
14245 functions.
14246
14247 1998-09-21 Per Bothner <bothner@cygnus.com>
14248
14249 * buffer.h (BUFFER_INIT): New macro.
14250 * jcf-write.c (struct jcf_partial): New type. Put global stuff here.
14251 Pass (struct jcf_partial *state) to most functions.
14252 (jcf_block, jcf_relocation): New types.
14253 Support labels, branches, conditionals, loops.
14254
14255 1998-09-21 Tom Tromey <tromey@cygnus.com>
14256
14257 * decl.c (INT_TYPE_SIZE): Define as BITS_PER_WORD if not defined.
14258
14259 1998-09-21 Per Bothner <bothner@cygnus.com>
14260
14261 * decl.c (integer_type_node): Make it have INT_TYPE_SIZE.
14262 * verify.c (verify_jvm_instructions): Use int_type_not (32 bits),
14263 not integer_type_node (INT_TYPE_SIZ bits).
14264
14265 * parse.y (patch_if_else_statement): Accept promoted_boolean_type_node.
14266
14267 * jcf-reader.c (get_attribute): New HANDLE_EXCEPTION_TABLE hook.
14268 * jcf-dump.c (print_exception_table): New function.
14269 (disassemble_method): Better handling of wide instructions.
14270 Make more robust for bad input.
14271
14272 1998-09-30 Jeffrey A Law (law@cygnus.com)
14273
14274 * jcf-write.c (OP2, OP4): Use "_i", not "_I" to avoid problems on
14275 FreeBSD.
14276
14277 1998-09-17 Jeffrey A Law (law@cygnus.com)
14278
14279 * Makefile.in (jcf-dump, jvgenmain): Link in memmove.o too.
14280
14281 1998-09-17 Tom Tromey <tromey@cygnus.com>
14282
14283 * Makefile.in ($(PARSE_H)): Removed target.
14284
14285 1998-09-17 Jeffrey A Law (law@cygnus.com)
14286
14287 * Makefile.in (JAVA_OBJS): Add memmove.o
14288 (memmove.o): New target & rules.
14289
14290 1998-09-15 Tom Tromey <tromey@cygnus.com>
14291
14292 * expr.c (expand_invoke): Don't generate a call to the class init
14293 code.
14294
14295 1998-09-14 Jeffrey A Law (law@cygnus.com)
14296
14297 * Makefile.in: Add many missing dependencies.
14298 * buffer.c, class.c, constants.c, decl.c: Use system.h and toplev.h
14299 as appropriate.
14300 * except.c, expr.c, jcf-io.c jcf-parse.c, jcf-write.c: Likewise.
14301 * jvgenmain.c lang.c mangle.c typeck.c verify.c: Likewise.
14302
14303 1998-09-11 Per Bothner <bothner@cygnus.com>
14304
14305 * decl.c (complete_start_java_method): If method is static (and
14306 not private) call _Jv_InitClass.
14307 * expr.c (expand_invoke): Don't call build_class_init.
14308
14309 * jvspec.c (jvgenmain_spec): Fix spec for generated .o file.
14310
14311 1998-09-10 Jeffrey A Law (law@cygnus.com)
14312
14313 * Make-lang.in (GCJ): Define before using.
14314
14315 1998-09-09 Jeffrey A Law (law@cygnus.com)
14316
14317 * gjavah.c (java_no_argument): Renamed from no_argument to avoid
14318 losing due to namespace pollution in GNU getopt.h
14319
14320 1998-09-09 Tom Tromey <tromey@cygnus.com>
14321
14322 * Make-lang.in (java.all.build): Don't mention jvgenmain or gcjh.
14323 (java.all.cross): Likewise.
14324 (java.rest.encap): Likewise.
14325
14326 1998-09-08 Jeffrey A Law (law@cygnus.com)
14327
14328 * gjavah.c (print_class_decls): Fix thinko in arglist
14329 * jcv-io.c (find_classfile): Similarly.
14330
14331 1998-09-07 Jeffrey A Law (law@cygnus.com)
14332
14333 * Makefile.in (INCLUDES): Update for recent toplevel gcc changes.
14334
14335 1998-09-05 Tom Tromey <tromey@cygnus.com>
14336
14337 * Make-lang.in (java.maintainer-clean): Don't remove parse.h.
14338 (java.mostlyclean): Remove parse.c and parse-scan.c, not parse.h.
14339 * Makefile.in (PARSE_C): New macro.
14340 (PARSE_H): Likewise.
14341 (PARSE_SCAN_C): Likewise.
14342 ($(PARSE_C)): Target renamed from parse.c.
14343 ($(PARSE_SCAN_C)): Target renamed from parse-scan.c.
14344 (clean): Remove parse-scan.c as well.
14345 (parse.o): Depend on $(PARSE_C).
14346
14347 1998-09-05 Anthony Green <green@cygnus.com>
14348
14349 * README, license.terms: Removed.
14350
14351 * Make-lang.in, Makefile.in, class.c, config-lang.in, constants.c,
14352 decl.c, except.c, expr.c, gjavah.c, java-except.h, java-tree.h,
14353 javaop.def, javaop.h, jcf-dump.c, jcf-io.c, jcf-parse.c,
14354 jcf-reader.c, jcf-write.c, jcf.h, jvgenmain.c, jvspec.c,
14355 keyword.gperf, keyword.h, lang-options.h, lang-specs.h, lang.c,
14356 lex.c, lex.h, mangle.c, parse-scan.y, parse.h, parse.y, typeck.c,
14357 verify.c, zextract.c, zipfile.h: Fixed copyright assignment,
14358 and Java trademark attribution.
14359
14360 1998-09-04 Tom Tromey <tromey@cygnus.com>
14361
14362 * Makefile.in: Use gcjh, not gjavah.
14363 * config-lang.in (stagestuff): Use gcjh, not gjavah.
14364 * Make-lang.in: Changed gjavah to gcjh everywhere.
14365
14366 1998-09-03 Per Bothner <bothner@cygnus.com>
14367
14368 * gjavah.c: Support new -prepend -add -append flags.
14369 (print_method_info): Method is not virtual if class is final.
14370
14371 1998-09-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
14372
14373 * jv-scan.c: Fixed copyright assignment.
14374 * keyword.gperf: Likewise.
14375 * keyword.h: Likewise.
14376 * lex.c: Fixed copyright assignment.
14377 (java_lex): Push unicode back when parsing '<'.
14378 * lex.h: Fixed copyright assignment.
14379 * parse-scan.y: Likewise.
14380 * parse.h: Fixed copyright assignment.
14381 (build_debugable_stmt, complete_for_loop): New function prototypes.
14382 * parse.y: Fixed copyright assignment.
14383 (for_statement:): Call complete_for_loop. Set EXIT_EXPR to be
14384 size_zero_node when completing a loop with no exit condition.
14385 (for_statement_nsi:): Define action.
14386 (for_init:, for_update:): Return size_zero_node when empty.
14387 (declare_local_variables): Call build_debugable_stmt.
14388 (build_debugable_stmt): New function.
14389 (build_loop_body): Build debugable statement around loop
14390 condition part.
14391 (complete_loop_body): Take into account the debugable statement
14392 around the EXIT_EXPR.
14393 (complete_loop_body): New function.
14394 (patch_exit_expr): Fixed condition inversion.
14395
14396 1998-09-02 Tom Tromey <tromey@cygnus.com>
14397
14398 * Make-lang.in (jvspec.o): Use GCC_THREAD_FILE to compute correct
14399 name of thread define.
14400 * jvspec.c (THREAD_NAME): New macro.
14401 (GCLIB): Likewise.
14402 (THREADLIB): Likewise.
14403 (lang_specific_driver): Recognize attempt to link with thread
14404 library or gc library. Recognize -ljava on command line so it
14405 isn't linked against more than once.
14406
14407 1998-09-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
14408
14409 * parse-scan.y (report_main_declaration): Name of the class
14410 containing `main' can be a qualified name.
14411
14412 1998-08-31 Tom Tromey <tromey@cygnus.com>
14413
14414 * config-lang.in: Changed gjavac to gjc everywhere.
14415 * Make-lang.in: Changed gjavac to gjc everywhere.
14416
14417 1998-08-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
14418
14419 * Make-lang.in (JAVA_TARGET_INDEPENDENT_BIN_TOOLS): New variable.
14420 (java.install-common:): Loop over JAVA_TARGET_INDEPENDENT_BIN_TOOLS
14421 and install the files.
14422 * Makefile.in (JAVA_OBJS_LITE): New variable.
14423 (compiler:): Now include jv-scan as a dependency.
14424 (../jv-scan$(exeext), parse-scan.c): New targets.
14425 (../jcf-dump$(exeext)): Was jcf-dump$(exeext) before.
14426 * config-lang.in (compilers): Removed gcj, gjavah from the list.
14427 * jcf-parse.c (parse_source_file): Call java_layout_classes and
14428 check for errors even if parse_only.
14429 * lex.c (java_init_lex): Reorganized and skip parts if JC1_LITE is
14430 defined.
14431 (yylex): New function. Uses java_lex body.
14432 (java_lex): Removed commented out statement. Remove local variable
14433 literal. Use SET_LVAL_NODE_TYPE and SET_LVAL_NODE where
14434 appropriate. Use macros FLOAT_TYPE_NODE, DOUBLE_TYPE_NODE,
14435 DCONST0, SET_FLOAT_HANDLER, SET_REAL_VALUE_ATOF,
14436 SET_LVAL_NODE_TYPE and GET_TYPE_PRECISION. Don't create STRING_CST
14437 if JC1_LITE is defined. Use BUILD_ID_WFL to build identifiers. Use
14438 SET_MODIFIER_CTX, SET_LVAL_NODE, BUILD_ID_WFL and GET_IDENTIFIER
14439 where appropriate.
14440 (java_lex_error): Empty if JC1_LITE is defined.
14441 (java_get_line_col): Return 0 if JC1_LITE is defined.
14442 * lex.h (JAVA_FLOAT_RANGE_ERROR, JAVA_INTEGRAL_RANGE_ERROR,
14443 SET_MODIFIER_CTX): Moved into the section containing the macros
14444 conditionally defined by JC1_LITE.
14445 (BUILD_OPERATOR,BUILD_OPERATOR2): Just return the TOKEN
14446 argument if JC1_LITE is defined.
14447 (HOST_BITS_PER_WIDE_INT, HOST_WIDE_INT, REAL_VALUE_ATOF,
14448 REAL_VALUE_ISINF, REAL_VALUE_ISNAN): Preset to values if JC1_LITE
14449 is defined.
14450 (DCONST0, SET_FLOAT_HANDLER, GET_IDENTIFIER, SET_REAL_VALUE_ATOF,
14451 FLOAT_TYPE, DOUBLE_TYPE, SET_MODIFIER_CTX, GET_TYPE_PRECISION,
14452 SET_LVAL_NODE, SET_LVAL_NODE_TYPE, BUILD_ID_WFL): New macros, set
14453 to different values according to JC1_LITE.
14454 * parse.h (int_fits_type_p, stabilize_reference): Prototype not
14455 declared if JC1_LITE set.
14456 (jdep_code, typedef struct _jdep, typedef struct _jdeplist): Not
14457 defined if JC1_LITE not set.
14458 (struct parser_ctx): Reorganized and skip the jc1 front end part
14459 if JC1_LITE set.
14460 (java_layout_classes): New function definition.
14461 (java_push_parser_context, java_init_lex, yyparse, yylex,
14462 yyerror): Prototype always declared. All other static function
14463 prototypes declared only if JC1_LITE is not set.
14464 * parse.y (yyparse, yylex, yyerror): No longer declared here. Now
14465 declared in parse.h.
14466 (java_layout_classes): New function.
14467 (java_complete_expand_methods): No longer layout the class here.
14468 * parse-scan.y: New file.
14469 * jv-scan.c: New file.
14470
14471 1998-08-25 Tom Tromey <tromey@cygnus.com>
14472
14473 * gjavah.c (main): Handle -friend option.
14474 (friend_specs): New global.
14475 (generate_access): Handle friend_specs.
14476 (process_file): Likewise.
14477 (MAX_FRIENDS): New macro.
14478 (friend_count): New global.
14479 (print_cxx_classname): Added `prefix' argument. Ignore arrays.
14480 Changed all callers.
14481
14482 1998-08-24 Per Bothner <bothner@cygnus.com>
14483
14484 * jcf-dump.c (process_class): Move JCF_FINISH use to main,
14485 (main): Handle processing all the entries of a named .zip archive.
14486 * jcf-io.c (jcf_trim_old_input): New function.
14487 * jcf.h (GET_u2_le,GET_u4_le,JCF_readu2_le,JCF_readu4_le): New macros.
14488
14489 1998-08-24 Per Bothner <bothner@cygnus.com>
14490
14491 * lang.c (flag_assume_compiled): Make default be on.
14492
14493 1998-08-21 Per Bothner <bothner@cygnus.com>
14494
14495 * jcf-dump.c: Add bunches of flags to control output more.
14496 (process_class): New function; support printing more than one class.
14497 (main): Support new --print-main and --javap flags.
14498 * jcf-reader.c (IGNORE_ATTRIBUTE): New hook.
14499 * jcf.h (CPOOL_INDEX_IN_RANGE): New macro.
14500
14501 1998-08-20 Per Bothner <bothner@cygnus.com>
14502
14503 Change mangling of dispatch table to match C++ vtable (w/thunks).
14504 * class.c (build_dtable_decl), java-tree.h: New function.
14505 (make_class_data): Call it.
14506 * decl.c (init_decl_processing): Likewise.
14507
14508 1998-08-19 Warren Levy <warrenl@cygnus.com>
14509
14510 * decl.c (init_decl_processing): Use _Jv_NewObjectArray, not
14511 soft_anewarray; adjust args passed.
14512 * expr.c (build_anewarray): Adjust args for soft_anewarray_node to
14513 match _Jv_NewObjectArray.
14514
14515 1998-08-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
14516
14517 * decl.c (push_labeled_block, pop_labeled_block): New functions.
14518 * expr.c (loopup_label): Call create_label_decl.
14519 (create_label_decl): New function.
14520 (java_lang_expand_expr): Call expand_start_bindings with argument
14521 set to zero.
14522 * java-tree.h Added space after PROTO in function declarations
14523 when necessary.
14524 (IS_FOR_LOOP_P, IS_BREAK_STMT_P): New macros.
14525 (create_label_decl, push_labeled_block): New function
14526 declarations.
14527 * lex.c (label_id): Initialize.
14528 (SUPER_TK, THIS_TK, RETURN_TK): Merged common actions in final
14529 switch.
14530 * parse.h Added space after PROTO in function declarations when
14531 necessary.
14532 (LOOP_EXPR_BODY_MAIN_BLOCK, LOOP_EXPR_BODY_UPDATE_BLOCK,
14533 LOOP_EXPR_BODY_CONDITION_EXPR, LOOP_EXPR_BODY_LABELED_BODY,
14534 LOOP_EXPR_BODY_BODY_EXPR, LOOP_HAS_LABEL_P, LOOP_HAS_LABEL_SKIP_P,
14535 PUSH_LABELED_BLOCK, POP_LABELED_BLOCK, PUSH_LOOP, POP_LOOP): New
14536 macros.
14537 (struct parser_ctxt): New fields current_loop,
14538 current_labeled_block.
14539 (build_if_else_statement, patch_if_else_statement,
14540 add_stmt_to_compound, patch_exit_expr, build_labeled_block,
14541 generate_labeled_block, complete_labeled_statement,
14542 build_bc_statement, patch_bc_statement, patch_loop_statement,
14543 build_new_loop, build_loop_body, complete_loop_body): New function
14544 declarations.
14545 * parse.y (java_warning_count): New global variable.
14546 (label_id): New static variable.
14547 (BREAK_TK, CONTINUE_TK): Token tagged <operator>.
14548 (block:): Return size_zero_node when block is empty.
14549 (empty_statement:): Return size_zero_node.
14550 (statement:): Implement supplemental action when for_statement: is
14551 reduced.
14552 (label_decl:): New rule.
14553 (labeled_statement:): Rewritten using label_decl. Actions
14554 implemented.
14555 (labeled_statement_nsi:): Likewise.
14556 (if_then_statement): Actions implemented.
14557 (while_expression): New rule.
14558 (while_statement:): Rewritten using while_expression. Actions
14559 implemented.
14560 (while_statement_nsi:): Likewise.
14561 (do_statement_begin:): New rule.
14562 (do_statement:): Rewritten using do_statement_begin. Actions
14563 implemented.
14564 (for_statement:): Rewritten using for_begin. Actions implemented.
14565 (for_statement_nsi:): Likewise.
14566 (for_header:, for_begin:): New rules.
14567 (for_init:): Actions implemented.
14568 (statement_expression_list:, break_statement:,
14569 continue_statement:): Likewise.
14570 (yyerror): Count number of issued warning(s).
14571 (java_report_errors): Report error(s) and/or warning(s).
14572 (java_complete_class): Use build_java_argument_signature to
14573 recompute completed method signature.
14574 (java_check_regular_methods): New locals method_wfl and aflags.
14575 Use method_wfl instead of lookup_cl during error reports. Fixed
14576 indentation and modified some error messages. Use
14577 lang_printable_name in method instead of the DECL_NAME. New code
14578 to issue warnings on methods not overriding corresponding methods
14579 private to a different package.
14580 (java_method_add_stmt): Call add_stmt_to_compound.
14581 (add_stmt_to_compound): New function.
14582 (java_complete_tree): Handle LABELED_BLOCK_EXPR, EXIT_BLOCK_EXPR,
14583 LOOP_EXPR, EXIT_EXPR and COND_EXPR.
14584 (build_if_else_statement, patch_if_else_statement,
14585 build_labeled_block, generate_labeled_block,
14586 complete_labeled_statement, build_new_loop, build_loop_body,
14587 complete_loop_body, patch_loop_statement, build_bc_statement,
14588 patch_bc_statement, patch_exit_expr): New functions.
14589 * typeck.c (build_java_signature): Build argument signature before
14590 enclosing it in between parenthesis.
14591
14592 1998-08-17 Warren Levy <warrenl@cygnus.com>
14593
14594 * Make-lang.in (JAVA_SRCS): Created for dependencies * Makefile.in
14595 (JAVA_OBJS): Added reminder comment
14596
14597 1998-08-13 Nick Clifton <nickc@cygnus.com>
14598
14599 * gjavah.c (D_NAN_MASK): Append LL to the constant to force it to
14600 be interpreted as a long long.
14601
14602 1998-08-13 Warren Levy <warrenl@cygnus.com>
14603
14604 * decl.c (init_decl_processing): Use _Jv_InitClass, not
14605 soft_initialise_class. Use _Jv_NewMultiArray, not
14606 soft_multianewarray. Use _Jv_ThrowBadArrayIndex, not
14607 soft_badarrayindex. Use _Jv_CheckCast, not soft_checkcast. Use
14608 _Jv_CheckArrayStore, not soft_checkarraystore. Use
14609 _Jv_LookupInterfaceMethod, not soft_lookupinterfacemethod.
14610
14611 1998-08-12 Per Bothner <bothner@cygnus.com>
14612
14613 * decl.c, java-tree.h (this_identifier_node, super_identifier_node,
14614 length_identifier_node): New global tree node constants.
14615 * parse.y (kw_super, kw_this, kw_length): Removed globals.
14616 Replace uses by super_identifier_node etc.
14617 * lex.c (kw_super, kw_this, kw_length): Don't initialize.
14618
14619 * parse.y (resolve_field_access): Don't special-case ".length" if
14620 flag_emit_class_files.
14621 (patch_array_ref): Leave as ARRAY_REF if flag_emit_class_files.
14622 * jcf-write.c (generate_bytecode_insns): Handle ARRAY_REF opcode
14623 and ARRAY.length.
14624
14625 1998-08-11 Per Bothner <bothner@cygnus.com>
14626
14627 * decl.c (init_decl_processing): Remove unused method_type_node fields.
14628 * class.c (make_method_value): Remove init for removed fields.
14629
14630 * class.c (layout_class): Use build_java_argument_signature.
14631 * java-tree.h (TYPE_ARGUMENT_SIGNATURE): New macro.
14632
14633 * typeck.c (push_java_argument_signature): Removed. Merged into ...
14634 (build_java_argument_signature): Use TYPE_ARGUMENT_SIGNATURE cache.
14635 (build_java_signature): Don't use push_java_argument_signature.
14636
14637 * typeck.c (lookup_argument_method): New function.
14638 * parse.y (java_check_regular_methods): Use lookup_argument_method
14639 instead of lookup_java_method2 followed by lookup_java_method.
14640
14641 * parse.y (check_method_redefinition): Minor optimization.
14642
14643 * jcf-write.c (generate_bytecode_insns): Handle RETURN_EXPR,
14644 MINUS_EXPR, MULT_EXPR, TRUNC_DIV_EXPR, and RDIV_EXPR.
14645
14646 1998-08-10 Tom Tromey <tromey@cygnus.com>
14647
14648 * Make-lang.in (jc1$(exeext)): Don't depend on c-common.o or
14649 c-pragma.o.
14650
14651 * gjavah.c (java_float_finite): Use K&R-style definition.
14652 (java_double_finite): Likewise.
14653 (generate_access): Now returns void. Changed all callers.
14654 (last_access_generated): Removed.
14655 (process_file): Only make a single pass over the .class file.
14656
14657 1998-07-29 Per Bothner <bothner@cygnus.com>
14658
14659 * class.c (get_dispatch_table): Add extra dummy vtable entry,
14660 for compatibility for G++ (with -fvtable-thunks).
14661 * expr.c (build_invokevirtual): Add one for extra dummy vtable entry.
14662
14663 * gjavah.c (process_file): Use public inheritance for super-class.
14664
14665 1998-07-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
14666
14667 * lex.c (java_init_lex): Initialize ctxp->package.
14668 * parse.h (struct parser_ctxt): package and package_len replaced
14669 by tree package, an identifier node. Field method_decl_list is
14670 gone. Fixed comments.
14671 (lookup_field_wrapper, merge_qualified_name, not_accessible,
14672 class_in_current_package): New function prototypes.
14673 * parse.y (array_type:): Set class loaded flag on primitive type
14674 arrays.
14675 (package_declaration:): Assign ctxp->package to the
14676 identifier node.
14677 (method_invocation:): Handle invocation of method qualified by
14678 `super'.
14679 (single_type_import_declaration:): Removed ambiguity check.
14680 (java_pop_parser_context): New local variable `next'. Reset and
14681 set IMPORT_CLASSFILE_NAME flags on current and previous import
14682 list.
14683 (java_accstring_lookup): Use new local macro COPY_RETURN.
14684 (lookup_field_wrapper): New function.
14685 (parser_qualified_classname): Use merge_qualified_name.
14686 (parser_check_super_interface): Broaden error message.
14687 (do_resolve_class): Check for qualified class name in the current
14688 compilation unit if appropriate.
14689 (process_imports): Check for already defined classes.
14690 (check_pkg_class_access): Got rid of call to
14691 get_access_flags_from_decl.
14692 (java_complete_expand_methods): Call safe_layout_class based on
14693 the current class size.
14694 (make_qualified_primary): Build a WFL qualification on primary if
14695 none exists.
14696 (merge_qualified_name): New function.
14697 (make_qualified_name): Use merge_qualified_name.
14698 (resolve_expression_name): Use safe_lookup_field.
14699 (resolve_field_access): Got rid of call to get_access_flags_from_decl.
14700 (resolve_qualified_expression_name): Likewise. Check on resolved
14701 element accessibility.
14702 (not_accessible_p, class_in_current_package): New functions.
14703 (maybe_access_field): Got rid of call to get_access_flags_from_decl.
14704 (patch_method_invocation_stmt): Merged common pieces. Check
14705 accessibility of invoked method.
14706 (check_for_static_method_reference): Add returned type in error
14707 message.
14708 (invocation_mode): Get rid of bogus check on PRIVATE methods.
14709 (refine_accessible_methods_list): Merged two conditions in test.
14710 (java_complete_class): Sanity check on stabilize_ref gone.
14711 * zextract.c (read_zip_archive): Cast lseek second argument to long.
14712
14713 1998-07-28 Per Bothner <bothner@cygnus.com>
14714
14715 * class.c (hashUtf8String): Fix - use new JavaSoft specification.
14716
14717 1998-07-24 Tom Tromey <tromey@cygnus.com>
14718
14719 * gjavah.c (F_NAN): Removed.
14720 (F_NAN_MASK): New macro.
14721 (F_POSITIVE_INFINITY): Removed.
14722 (F_NEGATIVE_INFINITY): Likewise.
14723 (java_float_finite): Rewrote.
14724 (D_NAN_MASK): Renamed.
14725 (java_double_finite): Rewrote.
14726 (D_POSITIVE_INFINITY): Removed.
14727 (D_NEGATIVE_INFINITY): Likewise.
14728
14729 * jcf-dump.c (print_constant): [CONSTANT_Double, CONSTANT_Float]
14730 If verbose, print underlying representation of value in hex.
14731
14732 1998-07-24 Per Bothner <bothner@cygnus.com>
14733
14734 * buffer.h, buffer.c: New files.
14735 * Makefile.in (JAVA_OBJS): Add buffer.o.
14736
14737 Support locals variables and writing their debug entries to .class.
14738 * jcf-write.c: Simplify some by user new buffer type.
14739 (vode_buffer_grow): Removed.
14740 (struct localvar_info): New type.
14741 (localsvars, localvartable): New buffers.
14742 (localvar_alloc, localvar_free): New functions.
14743 (generate_bytecode_insns): Handle local variables.
14744 (generate_classfile): Write LocalVariableTable attribute.
14745
14746 1998-07-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
14747
14748 * jcf-io.c (open_in_zip): Check the zipfile magic number.
14749 * zipfile.h (ZIPMAGIC): New macro.
14750
14751 1998-07-24 Tom Tromey <tromey@cygnus.com>
14752
14753 * Makefile.in (gjavah.o): Updated dependencies.
14754 (jcf-dump.o): Likewise.
14755 (all.indirect): Use ../gjavah.
14756 (../gjavah$(exeext)): Likewise.
14757 (clean): Don't remove gjavah.
14758 (clean): Remove parse.c, not java/parse.c.
14759 * Make-lang.in (java): Added gjavah.
14760 (gjavah$(exeext)): New target.
14761 (GJAVAH_SOURCES): New macro.
14762 (java.all.build): Added gjavah.
14763 (java.all.cross): Likewise.
14764 (java.rest.encap): Likewise.
14765 * config-lang.in (compilers, stagestuff): Added gjavah.
14766
14767 1998-07-23 Tom Tromey <tromey@cygnus.com>
14768
14769 * gjavah.c (java_float_finite): New function.
14770 (java_double_finite): Likewise.
14771 (F_POSITIVE_INFINITY): New macro.
14772 (F_NEGATIVE_INFINITY): Likewise.
14773 (F_NAN): Likewise.
14774 (D_POSITIVE_INFINITY): Likewise.
14775 (D_NEGATIVE_INFINITY): Likewise.
14776 (D_NAN): Likewise.
14777 (print_field_info): Use java_float_finite and java_double_finite.
14778
14779 1998-07-23 Per Bothner <bothner@cygnus.com>
14780
14781 * parse.y (method_header): Name "this" implicit argument.
14782
14783 1998-07-22 Per Bothner <bothner@cygnus.com>
14784
14785 * jcf-write.c: Write out LineNumberTable attribute in .class file.
14786 (linenumber_buffer, linenumber_ptr, linenumber_limit): New statics.
14787 (put_linenumber): New function.
14788 (generate_bytecode_insns, generate_classfile): Write line numbers.
14789
14790 1998-07-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
14791
14792 * java-tree.h (CALL_EXPR_FROM_PRIMARY_P): Changed in PRIMARY_P.
14793 (lookup_name, build_known_method_ref, build_class_init,
14794 build_invokevirtual, invoke_build_dtable, match_java_method,
14795 build_field_ref, pushdecl_force_head, build_java_binop,
14796 binary_numeric_promotion, build_decl_no_layout,
14797 build_java_arrayaccess, build_newarray, build_anewarray,
14798 build_java_array_length_access, build_java_arraynull_check): New
14799 extern function prototypes.
14800 (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
14801 JAVA_THIS_EXPR, CALL_CONSTRUCTOR_P): Macro definition moved in
14802 java-tree.h.
14803 * jcf-parse.c (init_outgoing_cpool): Set current_constant_pool_data_ref
14804 to NULL
14805 * jcf.h (jcf_out_of_synch): New extern function prototype.
14806 * parse.h: Static/global function implemented in parse.y
14807 prototyped and declarations moved at the end of the file.
14808 (DECL_P): Check that the argument isn't null.
14809 (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
14810 JAVA_THIS_EXPR): No longer defined here. See java-tree.h
14811 (QUAL_DECL_TYPE): New macro.
14812 (PARAMS): Macro definition removed.
14813 * parse.y: (yyparse, yyerror): Use PROTO instead of PARAMS.
14814 (return_statement:): Call build_return.
14815 (field_access:): Call make_qualified_primary in sub rule.
14816 (method_invocation:): Build method invocation and call
14817 make_qualified_primary when processing primaries.
14818 (java_complete_class): Set IDENTIFIER_SIGNATURE_TYPE by calling
14819 get_type_from_signature.
14820 (java_check_regular_method): Extra integer 0 argument when calling
14821 lookup_java_method2.
14822 (lookup_java_interface_method2): Extra method DECL argument when
14823 calling lookup_java_interface_method2.
14824 (java_method_add_stmt): Set TREE_SIDE_EFFECTS on newly created
14825 COMPOUND_EXPR node.
14826 (java_complete_expand_method): Layout current class iff not
14827 already done. Don't process interface's methods.
14828 (java_complete_expand_method): Use super class only if it
14829 exists. Use current class otherwise.
14830 (make_qualified_primary): New function.
14831 (resolve_expression_name): Process qualified expression or
14832 expression from primary the same way.
14833 (resolve_expression_name): Two last arguments to
14834 resolve_field_access are now NULL_TREEs.
14835 (resolve_field_access): New variable is_static. Local field must
14836 be DECLs. is_static computed on field DECLs only. Append code in
14837 where_found to the field access if necessary. Use QUAL_DECL_TYPE
14838 to initialize field_type.
14839 (resolve_qualified_expression_name): New local variable,
14840 previous_call_static and is_static. Handle primaries with function
14841 calls, casts, array references and `this'. `super' now handled as
14842 `(super_class)this'. Use is_static to clarify boolean expressions.
14843 Added code to handle case where a proper handle is required to
14844 access a field. Use QUAL_DECL_TYPE where applicable.
14845 (maybe_access_field): New function.
14846 (patch_method_invocation_stmt): New arguments primary, where,
14847 is_static. Branch of the test on CALL_EXPR_FROM_PRIMARY_P
14848 deleted. Use `where' as a type to search from if specified. Check
14849 for static method reference where forbidden. Append primary or
14850 current_this to the argument list if not calling constructor nor
14851 static methods.
14852 (check_for_static_method_reference): New function.
14853 (patch_invoke): Layout the class on which new is done if
14854 necessary.
14855 (lookup_method_invoke): Changed format to report errors on
14856 methods.
14857 (qualify_ambiguous_name): New local variable this_found. Now
14858 handle things from primaries. Method call are considered
14859 expression names.
14860 (identical_subpath_p): NULL_TREE arguments to breakdown_qualified
14861 changed into NULLs.
14862 (not_initialized_as_it_should_p): Comply with the new DECL_P.
14863 (java_complete_tree): New case fo RETURN_EXPR. Process function
14864 call arguments in separate function.
14865 (complete_function_arguments): New function.
14866 (build_method_invocation): Don't use CALL_EXPR_FROM_PRIMARY_P
14867 anymore.
14868 (patch_assignment): Take the return function slot into account as
14869 a RHS. Distinguish assignment from a return.
14870 (valid_ref_assignconv_cast_p): Use build_java_argument_signature
14871 when checking methods in interfaces.
14872 (resolve_type_during_patch): NULL argument to unresolve_type_p
14873 instead of NULL_TREE.
14874 (patch_newarray): Fixed typo in comment.
14875 (buid_this): Build a WFL with `kw_this' instead of a FIELD_DECL.
14876 (build_return, patch_return): New functions.
14877 * typeck.c (lookup_java_constructor): Fixed typo in comment.
14878
14879 1998-07-21 Per Bothner <bothner@cygnus.com>
14880
14881 * constants.c (find_name_and_type_constant, find_fieldref_index,
14882 find_methodref_index): New methods.
14883 * expr.c (build_invoke_non_interface): If flag_emit_class_files,
14884 just return given method. Also, rename to build_known_method_ref.
14885 (expand_invoke): Rename call to build_invoke_non_interface.
14886 * java-tree.h, parse.h: Update prototype.
14887 * parse.y, decl.c, jcf-parse.c: Suppress calls to back-end functions
14888 (such as expand_expr_stmt) if flag_emit_class_files.
14889 * jcf-write.c (RESERVE, OP1, OP2, OP4, NOTE_PUSH, NOTE_POP,
14890 STACK_TARGET, IGNORE_TARGET): New macros.
14891 (code_buffer, code_ptr, code_limit, code_S, code_SP_max): New globals.
14892 (generate_bytecode_insn): New function to generate method's bytecode.
14893 (generate_classfile): Node generate Code attribute for a method.
14894 (code_buffer_grow, push_constant1, push_constant2, push_int_const,
14895 push_long_const, field_op, adjust_typed_op, maybe_wide):
14896 New functions used by generate_bytecode_insn.
14897
14898 * typeck.c (signature_include_return): Remove variable.
14899 (push_java_argument_signature, build_java_argument_signature): New.
14900 (build_java_signature): Use push_java_argument_signature.
14901 * parse.y: Use build_java_argument_signature instead of fiddling
14902 with signature_include_return.
14903
14904 1998-07-17 Tom Tromey <tromey@cygnus.com>
14905
14906 * gjavah.c (print_c_decl): Always generate JArray<>* for array
14907 types.
14908
14909 * Makefile.in (all.indirect): Added gjavah$(exeext).
14910 (gjavah$(exeext)): Added $(exeext).
14911 (clean): Likewise.
14912
14913 1998-07-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
14914
14915 * class.c (layout_class): Call to java_layout_parsed_class replace
14916 by safe_layout_class.
14917 * expr.c (build_java_array_length_access): Removed static storage
14918 class in the function definition.
14919 (build_java_arraynull_check): Likewise.
14920 Also fixed typos in two comments.
14921 * lex.c (java_init_lex): Initialize static global kw_length.
14922 (java_lex): Use BUILD_OPERATOR on RETURN_TK.
14923 * lex.h (JAVA_FLOAT_RANGE_ERROR): Add extra argument to
14924 java_lex_error.
14925 (JAVA_INTEGRAL_RANGE_ERROR): Likewise.
14926 * parse.h (resolve_no_layout): New static function declaration.
14927 (get_identifier_in_static): Declaration removed.
14928 (java_layout_parsed_class): Function name declaration changed to
14929 safe_layout_class.
14930 (build_newarray_node, patch_newarray, resolve_type_during_patch,
14931 not_initialized_as_it_should_p, build_this): New static function
14932 declarations.
14933 (pushdecl_force_head, build_java_binop, int_fits_type_p,
14934 binary_numeric_promotion, stabilize_reference,
14935 build_decl_no_layout, build_java_arrayaccess): Extern function
14936 declarations moved into their own section.
14937 (build_newarray, build_anewarray, build_java_array_length_access,
14938 build_java_arraynull_check): New extern function declarations.
14939 (UNARY_PLUS_EXPR): Macro renamed into JAVA_UNARY_PLUS_EXPR.
14940 (JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR, JAVA_THIS_EXPR): New
14941 fake tree codes.
14942 (CALL_CONSTRUCTOR_P): New macro.
14943 * parse.y (kw_length): New static global tree node.
14944 (return_statement): Tagged <node>.
14945 (RETURN_TK): Tagged <operator>.
14946 (variable_declarator_id:): Build variable declaration with an
14947 empty initialization value if a syntax error was found in the
14948 initialization part of the variable declaration.
14949 (statement_without_trailing_substatement:): return_statement: now
14950 uses the default rule.
14951 (return_statement:): Temporarily fixed to return NULL_TREE.
14952 (primary_no_new_array:): Call build_this when THIS_TK was parsed.
14953 (class_instance_creation_expression:): Class creation rules now
14954 call build_method_invocation upon reduction.
14955 (array_creation_expression:): Rules call build_newarray_node upon
14956 reduction.
14957 (dim_exprs:): Build a list of dimension expressions.
14958 (dim_expr:): Store location of the OSB_TK in the dimension
14959 expression node.
14960 (method_invocation:): Added a new error rule.
14961 (build_unresolved_array_type): WFL argument may also be an array
14962 on a primitive type. Name of the argument changed to reflect this.
14963 (method_declarator): Insert argument type at the beginning of the
14964 argument type list and later reverse the list.
14965 (unresolved_type_p): Argument 'returned' may be optionally
14966 NULL_TREE.
14967 (java_layout_class_from_source): Function renamed
14968 safe_layout_class.
14969 (resolve_and_layout): Now call resolve_no_layout and
14970 safe_layout_class.
14971 (resolve_no_layout): New function.
14972 (purify_type_name): New function.
14973 (complete_class_report_errors): Call purify_type_name during error
14974 report on a type not found.
14975 (process_imports): error_found local variable doesn't need to be
14976 initialized to zero.
14977 (declare_local_variables): New local type_wfl. Fixed typo in error
14978 message. type_wfl assigned to unresolved type and used to register
14979 incomplete type. Build a WFL around the variable initialization
14980 statement so that debug info can be generated on it.
14981 (source_start_java_method): Reverse argument list after they've
14982 been processed.
14983 (current_this): New static global variable.
14984 (java_complete_expand_methods): Set current_this when appropriate.
14985 (resolve_expression_name): Build correct static and non static
14986 field access bearing a simple name.
14987 (resolve_field_access): Resolve the length field of arrays. Handle
14988 f.m() cases.
14989 (patch_method_invocation_stmt): Set the type of the method
14990 invocation to error_mark_node. This value is later overridden by a
14991 valid type, if any. Don't handle qualified constructor invocation
14992 as qualified method invocation. Call lookup_method_invoke with its
14993 new flag. It's no longer necessary to access the selected method
14994 as the value of a tree list. Handle constructor invocation.
14995 (patch_invoke): Reverse argument list when invoking non interface
14996 methods. Insert call to new as the first argument of the
14997 constructor.
14998 (invocation_mode): Return a INVOKE_STATIC is the invoked method is
14999 defined within a final class. Return INVOKE_STATIC if the invoked
15000 method is a constructor.
15001 (lookup_method_invoke): New lc argument is a flag to indicate a
15002 constructor lookup. Now handle constructor lookup. Choose the most
15003 specific method in case several were matching the invocation
15004 requirements. Return a method decl instead of a tree list featuring
15005 one single method decl element.
15006 (refine_accessible_methods_list): New lc flag argument to
15007 indicate that a constructor is being looked up.
15008 (not_initialized_as_it_should_p): New function.
15009 (java_complete_tree): Now process fake tree codes
15010 JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR and JAVA_THIS_EXPR. Call
15011 save_expr on resolved function call arguments. Case on
15012 UNARY_PLUS_EXPR changed into a case on JAVA_UNARY_PLUS_EXPR.
15013 (patch_assignment): LHS can be a field access expression. When
15014 dealing with reference, lhs_type is the promoted type of the
15015 rhs_type, not the RHS. Use not_initialized_as_it_should_p where
15016 applicable.
15017 (operator_string): JAVA_UNARY_PLUS_EXPR replaces UNARY_PLUS_EXPR.
15018 (patch_binop): Use not_initialized_as_it_should_p where
15019 applicable.
15020 (build_unaryop): JAVA_UNARY_PLUS_EXPR replaces UNARY_PLUS_EXPR.
15021 (patch_unaryop): Likewise. And use not_initialized_as_it_should_p
15022 where applicable.
15023 (resolve_type_during_patch): New function.
15024 (patch_cast): Call resolve_type_during_patch to resolve type and
15025 report error accordingly.
15026 (patch_array_ref): Use not_initialized_as_it_should_p where
15027 applicable. Array base expression is saved before being
15028 used. Promote the type of an array elements if it contains non
15029 builtin types.
15030 (build_newarray_node, patch_newarray, build_this): New functions.
15031
15032 1998-07-16 Tom Tromey <tromey@cygnus.com>
15033
15034 * gjavah.c (print_c_decl): UTF8_GET increments pointer; don't
15035 increment it in `for' statement.
15036 (print_field_info): If number is inf or nan, don't print it.
15037 (print_method_info): If method name is `delete', just ignore it.
15038 (print_c_decl): Special-case jstringArray.
15039
15040 * gjavah.c (help): New function.
15041 (no_argument): New function.
15042 (usage): Changed text.
15043 (main): Rewrote argument handling. Now handles -v, --help,
15044 --version.
15045 (version): New function.
15046 (found_error): New global.
15047 (main): Return found_error.
15048 (generate_access): Set found_error.
15049 (print_c_decl): Likewise.
15050
15051 1998-07-15 Tom Tromey <tromey@cygnus.com>
15052
15053 * gjavah.c (print_c_decl): Don't print "," when examining field.
15054 Skip type name when looking at "[L" types.
15055 (process_file): Now static.
15056 (generate_access): Now returns int.
15057 (last_access_generated): New global.
15058 (process_file): Clear last_access_generated; make multiple passes
15059 over the class.
15060 (print_field_info): Just return if generate_access returns true.
15061 (print_method_info): Likewise. Also, allow <init> functions to
15062 pass through.
15063 (print_c_decl): Added is_init argument. Print constructors
15064 properly.
15065 (print_cxx_classname): Use UTF8_GET to extract characters from
15066 string.
15067 (print_base_classname): New function.
15068 (print_class_decls): New function.
15069 (process_file): Use it.
15070 (utf8_cmp): New function.
15071
15072 1998-07-13 Nick Clifton <nickc@cygnus.com>
15073
15074 * lang-options.h: Format changed to match changes in gcc/toplev.c
15075 to implement a --help option.
15076
15077 1998-07-10 Brendan Kehoe <brendan@cygnus.com>
15078
15079 * decl.c (init_decl_processing): Revert change to dtable_type.
15080
15081 1998-07-09 Per Bothner <bothner@cygnus.com>
15082
15083 * java-tree.h (CLASS_P): Changed DECL_LANG_FLAG_7 -> TYPE_LANG_FLAG_4.
15084
15085 1998-07-08 Brendan Kehoe <brendan@cygnus.com>
15086
15087 * decl.c (init_decl_processing): Set CLASS_LOADED_P on dtable_type.
15088
15089 * lang.c (lang_init): Default flag_exceptions to 1, without
15090 checking to see if it's 2 first.
15091
15092 1998-07-08 Jeffrey A Law (law@cygnus.com)
15093
15094 * constants.c: Include "system.h".
15095 * decl.c: Likewise.
15096 * lang.c (flag_new_exceptions): Get via extern now.
15097 (lang_init_options): New functions. Turn on flag_new_exceptions.
15098
15099 1998-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
15100
15101 * lex.c (java_lex): Return 0 when we see an invalid character in
15102 the input.
15103
15104 * lex.c (java_read_char): Specify extra argument when calling
15105 java_lex_error.
15106 (java_read_unicode, java_parse_end_comment,
15107 java_parse_escape_sequence): Likewise,
15108 (java_lex): Specify extra argument when calling
15109 java_lex_error. Test that IDs are beginning with a legal character
15110 for IDs. Handle invalid characters with an error message and a
15111 call to java_lex_error.
15112 (java_lex_error): Adjust column position by new argument
15113 `forward'. Issue an error even if in the middle of reporting an
15114 other error.
15115
15116 1998-07-07 Brendan Kehoe <brendan@cygnus.com>
15117
15118 * jcf-io.c (find_class): Zero out BUFFER before we use it, since
15119 we don't explicitly put a null pointer when we're copying it.
15120
15121 1998-07-07 Tom Tromey <tromey@cygnus.com>
15122
15123 * gjavah.c (print_cxx_classname): New function.
15124 (super_class_name): Likewise.
15125 (print_super_fields): Removed.
15126 (in_super): Removed.
15127 (print_field_info): Never generate #defines.
15128 (print_c_decl): Changed generated types to match JNI. No longer
15129 print class name before method name.
15130 (print_method_info): Print "static" before static methods.
15131 Print "virtual" before non-final methods.
15132 (usage): Use exit(1), not exit(-1).
15133 (main): Likewise.
15134 (print_field_info): Use %.17g to print a double.
15135 (last_access): New globals.
15136 (process_file): Initialize last_access.
15137 (usage): Now static.
15138 (ACC_VISIBILITY): New define.
15139 (generate_access): New function.
15140 (print_field_info): Call it.
15141 (print_method_info): Likewise. Also, generate information for all
15142 methods, not just native methods. Return void.
15143 (print_c_decl): Return void.
15144 (print_field_info): Return void.
15145
15146 1998-07-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
15147
15148 * Makefile.in (JAVABISONFLAGS): Specific flag for bison when
15149 processing the jc1 grammar file. Prefix bison functions and
15150 variables with java_.
15151 (parse.c): Dependencies on parse.h and lex.h
15152 * expr.c (build_java_arrayaccess): Function now global.
15153 * java-tree.h: Comment reorganized to carry on previous
15154 classification effort.
15155 (RESOLVE_EXPRESSION_NAME_P, RESOLVE_PACKAGE_NAME_P,
15156 RESOLVE_TYPE_NAME_P): New flags on WFLs.
15157 * jcf-parse.c (parse_source_file): java_parse_source_file renamed
15158 java_parse (new prefix java_ generated by bison).
15159 (java_layout_parsed_class, java_register_parsed_class): Function
15160 call removed.
15161 (yyparse): Removed unnecessary call to init_outgoing_cpool.
15162 * lex.c (static tree wfl_op): Variable deleted.
15163 (java_init_lex): Initialize kw_super and kw_this. Initialize more
15164 ctxp fields to NULL_TREE.
15165 (java_lex): No longer create WFL for operators. Filename caching
15166 mechanism deleted. Call BUILD_OPERATOR for `.', '(', '['. Strings
15167 created as STRING_CST and later expanded. Removed extra argument
15168 to BUILD_OPERATOR and BUILD_OPERATOR2. Build operators for THIS
15169 and SUPER.
15170 (build_wfl_node): Removed code in comments.
15171 * lex.h (BUILD_OPERATOR, BUILD_OPERATOR2): No longer build a WFL but
15172 store token and location data in the current bison token.
15173 * parse.h: Removed pre-processor based symbol prefixes hack. Moved
15174 static/extern function declaration at the beginning of the file.
15175 (struct qualification): Data structure definition deleted.
15176 (RESOLVE_CHAIN_REMAINDER): Macro definition deleted.
15177 (qualify_ambiguous_name): Function declaration modified. Function
15178 now returns nothing.
15179 (build_array_ref, patch_array_ref, make_qualified_name,
15180 resolve_qualified_expression_name, maybe_generate_clinit,
15181 resolve_field_access): New static function declarations.
15182 (build_java_arrayaccess): New extern function declaration.
15183 (enum { RESOLVE_EXPRESION_NAME...}): Enum deleted.
15184 (CALL_EXPR_PRIMARY): Macro deleted.
15185 (EXPR_WFL_QUALIFICATION, QUAL_WFL, QUAL_RESOLUTION): New macros.
15186 (struct parser_ctxt): Field initialized_final
15187 removed. non_static_initialized, static_initialized: New fields.
15188 * parse.y (static tree kw_super, static tree kw_this): New global
15189 static.
15190 (%union): tree wfl field of operator member replaced by int
15191 location. WFLs are non longer created for operators.
15192 (OSB_TK, DOT_TK, THIS_TK, SUPER_TK): Tagged <operator>.
15193 (qualified_name:): Now calls make_qualified_name to build the
15194 identifier.
15195 (type_declaration:): Consider generating <clinit> when class
15196 parsing completed.
15197 (variable_declarator:): Directly build an assignment node when the
15198 variable is initialized when declared.
15199 (this_or_super:): Build a WFL and set current location when THIS
15200 or SUPER are parsed.
15201 (expression_statement:): Wrap statement around a WFL.
15202 (primary_no_new_array:): Fixed typo. Changed value returned by
15203 THIS_TK because of its new type (temporary).
15204 (dim_exprs:): Temporary fix because of OSB_TK's new type.
15205 (field_access:): Build qualified name with SUPER.
15206 (method_invocation:): Fixed returned value because of SUPER's new
15207 type.
15208 (array_access:): Use OSB_TK location information.
15209 (post_increment_expression:, post_decrement_expression:,
15210 unary_expression:, pre_increment_expression:,
15211 pre_decrement_expression:, unary_expression_not_plus_minus:,
15212 cast_expression:, multiplicative_expression:,
15213 additive_expression:, shift_expression:, relational_expression:,
15214 equality_expression:, and_expression:, exclusive_or_expression:,
15215 inclusive_or_expression:, conditional_and_expression:,
15216 conditional_or_expression:, assignment:): Use new location/token
15217 information available on operators.
15218 (create_class): Set super_decl_type to NULL_TREE when processing
15219 java.lang.Object.
15220 (register_fields): Field initialization is now a MODIFY_EXPR
15221 node. Chain initialization code to the matching lists (according
15222 to the field declaration modifiers).
15223 (maybe_generate_clinit): New function.
15224 (method_header): Don't set method's DECL_NAME to a WFL when adding
15225 methods to java.lang.Object.
15226 (resolve_and_layout): Now can return NULL_TREE if the type
15227 resolution fails. Otherwise, return the class DECL instead of its
15228 TYPE.
15229 (check_method_redefinition): Don't patch method DECL_NAME if it
15230 belongs to java.lang.Object.
15231 (process_imports): Simply assign error_found to the value returned
15232 by check_pkg_class_access.
15233 (declare_local_variables): Don't use their init statements (if
15234 any) when parsing error were previously found. Reuse MODIFY_EXPR
15235 build during parsing as an init statement.
15236 (java_method_add_stmt): Now return the current method body.
15237 (java_layout_parsed_class, java_register_parsed_class): Functions
15238 removed.
15239 (java_complete_expand_methods): Initialize the constant pool on a
15240 per class basis. Layout the classes before expanding their method
15241 bodies. Don't try expand artificial constructor code if error were
15242 found. Make the classes data and register them if no error were
15243 found.
15244 (java_complete_expand_method): Retrieve an artificial constructor
15245 argument list before entering its body. Assign the top block to
15246 the artificial constructor function body and set types of declared
15247 blocks and compound statements to void. Walk method body if not an
15248 artificial constructor.
15249 (make_qualified_name, cut_identifier_in_qualified): New functions.
15250 (resolve_expression_name): Fixed comments. Save/restore the
15251 current class CLASS_LOADED_P flag value. Build non qualified
15252 static field access and handle qualified expression names.
15253 (resolve_field_access, resolve_qualified_expression_name): New
15254 functions.
15255 (patch_method_invocation_stmt): Use the new expression resolution
15256 scheme, calling resolve_field_access when the function call is
15257 resolved as an expression.
15258 (qualify_ambiguous_name): Function rewritten to work on qualified
15259 expression produced by make_qualified_name.
15260 (java_complete_tree): Promote type when function's argument are
15261 RECORD_TYPEs. While processing the MODIFY_EXPR case: don't patch
15262 the assignment to discover further errors if RHS is a expression
15263 name that fails to evaluate. Declare LHS initialized even though
15264 the assignment failed. Don't use the location variable and removed
15265 extra argument in patch function calls. Now handle the ARRAY_REF
15266 case and build internal string representation when STRING_CSTs are
15267 walked.
15268 (build_method_invocation): Don't wrap function call around a WFL.
15269 (build_assignment): Likewise. Use the operator location
15270 information.
15271 (patch_assignment): Handle array access LHSs. Handle error
15272 provenance, resulting in a better error report.
15273 (build_binop): Use op_location from operator as binop location
15274 information.
15275 (build_unaryop, build_incdec, build_cast): Likewise.
15276 (patch_binop): Extract location information from the node. Fixed
15277 typo in error message.
15278 (patch_unary_op): Extract location information from the node.
15279 (build_array_ref, patch_array_ref): New functions.
15280
15281 1998-07-01 Tom Tromey <tromey@cygnus.com>
15282
15283 * expr.c (expand_java_INSTANCEOF): Changed calling convention to
15284 match _Jv_IsInstanceOf.
15285 * decl.c (init_decl_processing): Use _Jv_NewArray, not
15286 soft_newarray. Use _Jv_IsInstanceOf, not soft_instanceof.
15287
15288 1998-06-30 Tom Tromey <tromey@cygnus.com>
15289
15290 * decl.c (init_decl_processing): Functions are now named
15291 _Jv_MonitorEnter and _Jv_MonitorExit, and return jint.
15292
15293 1998-06-29 Per Bothner <bothner@cygnus.com>
15294
15295 * java-tree.h (load_class): Add prototype.
15296 * class.c (is_compiled_class): Add missing arg to load_class.
15297 * expr.c (expand_java_NEW): Call load_class.
15298 * parse.y (process_import): Removed bogus use of void return value.
15299
15300 1998-06-25 Per Bothner <bothner@cygnus.com>
15301
15302 * decl.c, java-tree.h (soft_athrow_node): Renamed to soft_node.
15303 Function name is "_Jv_Throw" instead of "soft_athrow".
15304 * decl.c, java-tree.h (soft_new_node): Renamed to alloc_object_node.
15305 Function name is "_Jv_AllocObject" instead of "soft_new".
15306 Takes an extra parameter (object size).
15307 * expr.c: Update calls.
15308
15309 1998-06-24 Per Bothner <bothner@cygnus.com>
15310
15311 * lex.c (java_get_line_col): Handle end-of-file.
15312 * except.c (expand_end_java_handler): Handle null type (i.e. finally).
15313
15314 1998-06-24 Andrew MacLeod <amacleod@cygnus.com>
15315
15316 * lang.c (lang_init): Make -fexceptions the default.
15317 * except.c (maybe_start_try, maybe_end_try): Don't do anything if
15318 exception handling is not turned on.
15319
15320 1998-06-23 Andrew MacLeod <amacleod@cygnus.com>
15321
15322 * lang.c (flag_new_exceptions): Make this this default.
15323 * decl.c (end_java_method): Call emit_handlers.
15324 * except.c (method_init_exceptions): Set language code and version.
15325 (expand_start_java_handler): Enable exception, and call
15326 expand_eh_region_start.
15327 (expand_end_java_handler): Enable exception, and set up catch blocks.
15328 (emit_handlers): New routine to generate the saved handlers.
15329 * java-except.h (emit_handlers): Add prototype.
15330
15331 1998-06-12 Per Bothner <bothner@cygnus.com>
15332
15333 We used to have three different representations of the constant pool:
15334 the CPool structure, the tree_constant_pool, and the constructures
15335 used to build the Class object (which may need class and string
15336 constants) in compiled code. None were appropriate for compiling
15337 to .class files, so I did a major overhaul.
15338
15339 First, the tree_constant_pool array was removed. Things were
15340 modified to the CPool structure in the JCF could be used.
15341 Second, a "capacity" field was added to the CPool, and functions
15342 written to search for a matching constant, adding one if not found.
15343 The code that generated the Class object was changed to use a CPool.
15344 The actual TREE_LISTs used to build the CONSTRUCTORs used for
15345 the static Class object are now only in build_constants_constructor.
15346 Finally, I wrote code which can generate a .class file (including its
15347 constant pool) from the RECORD_TYPE of a class. This is a big step
15348 on the way to compiling Java source into .class files.
15349
15350 * jcf-write.c: New file. Writes out a RECORD_TYPE as a .class file.
15351 * Makefile.in (JAVA_OBJS): Added jcf-write.o.
15352
15353 * java-tree.h (CPOOL_UTF, CONSTANT_ResolvedFlag,
15354 CONSTANT_ResolvedString, CONSTANT_ResolvedClass): New macros.
15355 (NAME_AND_TYPE_NAME, NAME_AND_TYPE_SIGNATURE, COMPONENT_REF_NAME,
15356 COMPONENT_REF_NAME_AND_TYPE, COMPONENT_REF_SIGNATURE): Redefined.
15357 (COMPONENT_REF_CLASS): Replaced by COMPONENT_REF_CLASS_INDEX.
15358 (lang_type): Removed constant_pool field.
15359 * jcf.h (CPool): Renamed size to count. Added field capacity.
15360 (CPOO_COUNT, CPOOL_UINT, CPOOL_USHORT1, CPOOL_USHORT2,
15361 CPOOL_FINISH, CPOOL_INIT, CPOOL_REINIT): New macros.
15362 Rewrite some of the old JCF_XXX in terms of CPOOL_XXX macros.
15363
15364 * constants.c (current_constant_pool_tags, current_constant_pool_data,
15365 current_constant_pool_length), java-tree.h: Replaced by outgoing_cpool.
15366 * constants.c (build_constants_constructor): Use new outgoing_cpool.
15367 (set_constant_entry, find_constant1, find_constant2,
15368 find_class_constant, count_constant_pool_bytes, write_constant_pool,
15369 find_utf8_constant, find_class_or_string_constant): New functions.
15370
15371 * jcf-parse.c (load_class): Don't save/restore tree-constant_pool.
15372 (get_constant): Use current_jcf.cpool instead of tree_constant_pool.
15373 (give_name_to_class, get_class_constant): Likewise.
15374 * jcf-parse.c, java-tree.h (tree_constant_pool): Removed.
15375 (get_name_and_type_constant, get_ref_constant): Removed.
15376 * parse.h (parser_ctxt): Remove field tree_constant_pool.
15377 * parse.y: Don't save/restore tree_constant_pool.
15378 * verify.c (verify_jvm_instructions): Update for new approach.
15379 * expr.c (expand_invoke, expand_java_field_op): Likewise.
15380
15381 * lang-options.h: Added -femit-class-file, -femit-class-files.
15382 * lang.c (flag_emit_class_files), java-tree.h: New flag.
15383 (lang_f_options): Added "emit-class-file(s)".
15384
15385 * expr.c (build_java_arrayaccess): Generate more efficient array
15386 bounds checking, by using unsigned compare.
15387
15388 * expr.c (expand_invoke): Re-arrange error checks to make more robust.
15389
15390 1998-06-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
15391
15392 * parse.h: New comment on the handling of unresolved type
15393 identifiers. JDEPs are now part of the jdep_code enum.
15394 (typedef struct jdep): Now use enum jdep_code or int, depending on
15395 availability. Both are narrowed down to an 8 bits bitfield.
15396 (CALL_EXPR_PRIMARY): Fixed comment.
15397
15398 1998-06-10 Tom Tromey <tromey@cygnus.com>
15399
15400 * Make-lang.in (java): Added gjavac and jvgenmain.
15401 (java.start.encap): Depend on gjavac.
15402 (java.rest.encap): Depend on jvgenmain.
15403
15404 * Make-lang.in (JAVA_INSTALL_NAME): Name is gjavac, not c++.
15405 (JAVA_CROSS_NAME): Likewise.
15406 (java.all.build): Depend on jvgenmain and gjavac.
15407 (java.all.cross): Depend on jvgenmain and gjavac-cross.
15408 (jvgenmain$(exeext)): New target.
15409 (java.install-common): Wrote.
15410 * config-lang.in (compilers, stagestuff): Added gjavac and
15411 jvgenmain.
15412
15413 1998-06-10 Dave Brolley <brolley@cygnus.com>
15414
15415 * lang.c (lang_decode_option): New argc/argv interface.
15416
15417 1998-06-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
15418
15419 * ChangeLog: Fixed entries not compliant with the Gnu Coding Standard.
15420 * decl.c (build_decl_no_layout): New function.
15421 * expr.c (java_lang_expand_expr): Layout declarations found in
15422 blocks before they're pushed.
15423 * jcf-parse.c (load_class): Save current line when parsing class
15424 file.
15425 (parse_source_file): Register class before expanding their
15426 methods.
15427 * lang.c (put_decl_node): Produce `null' when `void *' is
15428 processed.
15429 * lex.c (static tree wfl_op): New static global, for error report
15430 on casts.
15431 (java_init_lex): wfl_operator and wfl_op initialized
15432 here. Filename caching added for wfl_op. Return wfl_op when `(' is
15433 parsed.
15434 * parse.h (build_unaryop, build_incdec, patch_unaryop, build_cast,
15435 patch_cast, valid_ref_assignconv_cast_p, can_cast_to_p,
15436 build_unresolved_array_type): New static function definitions.
15437 (build_decl_no_layout): New extern function declared.
15438 (OBSOLETE_MODIFIER_WARNING): Report error only if the WFL of the
15439 faulty modifier exists.
15440 (TYPE_INTERFACE_P, TYPE_CLASS_P): New macros.
15441 (ERROR_CAST_NEEDED_TO_INTEGRAL): Error message tuned.
15442 (UNARY_PLUS_EXPR): New fake operator.
15443 (struct parser_ctxt): New field osb_number.
15444 * parse.y (static tree wfl_operator): New static WFL for operator
15445 bound error messages.
15446 (DECR_TK, INCR_TK): Moved.
15447 (OP_TK): Tagged <operator>.
15448 (array_type:): Now call build_unresolved_array_type.
15449 (dim_expr:): Count the number of '[' seen.
15450 (post_increment_expression, post_decrement_expression,
15451 pre_increment_expression, pre_decrement_expression,
15452 unary_expression_not_plus_minus, unary_expression:): Actions are
15453 now building the corresponding unary expressions.
15454 (cast_expression:): Actions are now building cast expressions.
15455 (build_unresolved_array_type): New function.
15456 (create_interface): Reset the number of declared interfaces.
15457 (create_class): Likewise.
15458 (method_header): Methods declared within the scope of an interface
15459 are now implicitly set public and abstract.
15460 (java_complete_class): Variable's and parameter's type are patched
15461 with a promoted type.
15462 (declare_local_variables): Resolved non builtin types are promoted
15463 before being used to build a variable decl. Removed type patch
15464 posted on variable initialization statement.
15465 (source_start_java_method): Use build_decl_no_layout to build the
15466 decl of a parameter of incomplete type.
15467 (java_register_parsed_class): Process interfaces too. Call
15468 rest_of_decl_compilation on each processed class declarations.
15469 (java_complete_expand_methods): Don't attempt to expand things in
15470 interfaces.
15471 (java_complete_tree): Process CONVERT_EXPR, even though it always
15472 has a type. Propagate error_mark_node to node's type too. Promote
15473 method's call argument type and return error_mark_node if
15474 argument's completion didn't work. MODIFY_EXPR can have a WFL as a
15475 RHS. Fixed bug in the handling of bogus RHS of a fixed type. Now
15476 handle unary operator nodes.
15477 (build_assignment): Added comment.
15478 (print_int_node): New function.
15479 (patch_assignment): New second argument. New error handling. Use
15480 print_int_node. Handle references. Use can_cast_to_p to issue
15481 different error message according to the context and check upon
15482 the initialization of the RHS.
15483 (can_cast_to_p, valid_ref_assignconv_cast_p): New functions.
15484 (operator_string): Handle more operators.
15485 (patch_binop): No longer use a function static
15486 wfl_operator. Improved error message on shift distance.
15487 (build_unaryop, build_incdec, build_cast, patch_unaryop,
15488 patch_cast): New functions.
15489
15490 1998-06-05 Per Bothner <bothner@cygnus.com>
15491
15492 * jvspec.c: New file.
15493 * Make-lang.in: New rules to build gjavac from jvspec.c and ../gcc.c.
15494
15495 * java-tree.h (identifier_subst): Add declaration.
15496
15497 1998-06-04 Tom Tromey <tromey@cygnus.com>
15498
15499 * jvgenmain.c (main): Generate call to JvRunMain.
15500
15501 * class.c (make_class_data): Push value for "sync_info" field.
15502 * decl.c (init_decl_processing): Push "sync_info" field.
15503
15504 1998-06-03 Per Bothner <bothner@cygnus.com>
15505
15506 * typeck.c (build_java_array_type): Set TYPE_NAME to actual
15507 Java (source) name, not signature.
15508 Set TYPE_ALIGN to (at least) that of element_type.
15509
15510 1998-06-02 Per Bothner <bothner@cygnus.com>
15511
15512 * class.c: Moved classname-mangling-rekated code to ...
15513 * mangle.c: ... this new file.
15514 * jvgenmain.c: New program (needs mangle.c) to generate main program.
15515 * Makefile.in: Update for above changes.
15516
15517 1998-06-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
15518
15519 * expr.c (truthvalue_conversion): Convert integer and floating
15520 point value to their truth value.
15521 * lex.c (java_lex): Handle the `null' literal.
15522 * parse.h (JREFERENCE_TYPE_P, DECL_P): New macros.
15523 (ERROR_CANT_CONVERT_TO_BOOLEAN, ERROR_CANT_CONVERT_TO_NUMERIC,
15524 ERROR_CAST_NEEDED_TO_INTEGRAL, ERROR_VARIABLE_NOT_INITIALIZED):
15525 New macros.
15526
15527 * parse.y: Reorganization/documentation on token declaration.
15528 (binop_lookup[]): New added new tree codes.
15529 (relational_expression): Build corresponding binary operators.
15530 (equality_expression, conditional_and_expression,
15531 conditional_or_expression): Likewise.
15532 (java_complete_class): Fix crash in debug message.
15533 (java_complete_tree): Check initialization of method call
15534 arguments. Further bogus node evaluation to detect more error
15535 during assignments. Handles more binary operators.
15536 (patch_assignment): Use DECL_P.
15537 (build_binop): Fix crash when using URSHIFT_EXPR, a Java only tree
15538 code.
15539 (operator_string): Handle more case. Compacted source.
15540 (patch_binop): Changed function comment. Checking for
15541 uninitialized first operand takes the compound assignment into
15542 account and uses DECL_P. Checking for uninitialized second operand
15543 delayed to routine's end. Use macros to issue type bound error
15544 messages and issue messages on both operands if their types are
15545 different. Force fixed type into node. Handle all binary
15546 operators.
15547
15548 1998-05-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
15549
15550 * java-tree.h (COMPOUND_ASSIGN_P, INITIALIZED_P): New macros.
15551 * lex.c (java_lex): Use BUILD_OPERATOR and BUILD_OPERATOR2 to
15552 build operator node and return tokens.
15553 * lex.h (BUILD_OPERATOR, BUILD_OPERATOR2): New macros.
15554 * parse.h (java_complete_tree): Changed returned type in prototype.
15555 (build_method_invocation, build_assignment, patch_assignment,
15556 patch_binop): New static function declarations.
15557 (JFLOAT_TYPE_P, JNUMERIC_TYPE_P, JPRIMITIVE_TYPE_P, JSTRING_P,
15558 BUILD_EXPR_WFL): New macros.
15559 * parse.y (enum tree_code binop_lookup[]): New static for token to
15560 TREE_CODE lookup.
15561 (%union): Parser union has new sub-structure `operator'.
15562 (ASSIGN_TK, MULT_ASSIGN_TK, DIV_ASSIGN_TK, REM_ASSIGN_TK,
15563 PLUS_ASSIGN_TK, MINUS_ASSIGN_TK, LS_ASSIGN_TK, SRS_ASSIGN_TK,
15564 ZRS_ASSIGN_TK, AND_ASSIGN_TK, XOR_ASSIGN_TK, OR_ASSIGN_TK,
15565 ASSIGN_ANY_TK): Tokens tagged `operator'.
15566 (EQ_TK, GTE_TK, ZRS_TK, SRS_TK, GT_TK, LTE_TK, LS_TK, BOOL_AND_TK,
15567 AND_TK, BOOL_OR_TK, OR_TK, INCR_TK, PLUS_TK, DECR_TK, MINUS_TK,
15568 MULT_TK, DIV_TK, XOR_TK, REM_TK, NEQ_TK, NEG_TK, REL_QM_TK,
15569 REL_CL_TK, NOT_TK, LT_TK): Tokens tagged `operator'.
15570 (assignment_operator:): Rule tagged `operator'.
15571 (expression_statement:): Re-installed default rule.
15572 (method_invocation:): Sub rules call build_method_invocation.
15573 (postfix_expression:): Don't attempt to resolve name here. Just
15574 return an ID.
15575 (multiplicative_expression:): Sub-rules build corresponding binop
15576 expression node.
15577 (additive_expression:, shift_expression:, and_expression:,
15578 exclusive_or_expression:, inclusive_or_expression:): Likewise.
15579 (assignment:): Sub rule invoke build_assignment.
15580 (assignment_operator:): Default rules on sub rules.
15581 (force_error): Added documentation on this variable.
15582 (declare_local_variables): Build initialization calling
15583 build_assignment.
15584 (expand_start_java_method): Removed unused rtx declaration. Mark
15585 arguments as already initialized.
15586 (java_method_add_stmt): Type of built COMPOUND_EXPR set to NULL.
15587 (java_complete_expand_methods): Don't process next method if
15588 completion of the previous one triggered errors.
15589 (java_complete_expand_method): Call source_end_java_method if no
15590 error were found during completion.
15591 (resolve_expression_name): Use IDENTIFIER_LOCAL_VALUE to retrieve
15592 locals declaratilon. Handle names found within a class. Return
15593 error_mark_node when things aren't found.
15594 (patch_method_invocation_stmt): Return error_mark_node on failures.
15595 (patch_invoke): Removed unused local. Return the correct node.
15596 (java_complete_tree): Now returns a value. The BLOCK section binds
15597 local identifiers and the type of a BLOCK is now void. Assign the
15598 result of operand completion on COMPOUND_EXPR. Assign the
15599 encapsulated node of a WFL to the result of its completion, except
15600 when the node is an identifier. Now handle MODIFY_EXPR and several
15601 binary operators. Return error_mark_node on errors.
15602 (build_method_invocation, build_assignment, patch_assignment,
15603 build_binop, operator_string, patch_binop): New functions.
15604 * typeck.c (binary_numeric_promotion): New function.
15605
15606 1998-05-21 Per Bothner <bothner@cygnus.com>
15607
15608 * class.c (identifier_subst): New convenience wrapper for ident_subst.
15609 Replace most uses of ident_subst by identifier_subst.
15610
15611 * class.c (push_class_static_dummy_field): Removed function.
15612 (build_class_ref): Find Class object decl by looking up "CNAME.class",
15613 instead of looking got "class" static field. Create that decl here.
15614 (class_identifier_node): Removed; no longer needed.
15615 (init_class_processing): Don't init class_identifier_node.
15616 * jcf-parse.c (jcf_parse): Don't call push_class_static_dummy_field.
15617 Do nreverse 0 times (instead of twice) for Object and Class.
15618 * parse.y (java_layout_parsed_class): No push_class_static_dummy_field.
15619
15620 1998-05-20 Per Bothner <bothner@cygnus.com>
15621
15622 * jcf-parse.c (parse_class-file): Set lino to smallest line number,
15623 while initializing linenumber_count and linenumber_table.
15624 Do it before init_function_start (which calls emit_line_note).
15625 * expr.c (expand_byte_code): Don't need to clear lineno here.
15626
15627 1998-05-18 Tom Tromey <tromey@cygnus.com>
15628
15629 * class.c (append_gpp_mangled_type): If `qualifications' is >=9,
15630 then mangle number as _N_.
15631
15632 * class.c (mangle_class_field): New function.
15633 (build_class_ref): Set assembler name of class reference using
15634 mangle_class_field.
15635 (push_class_static_dummy_field): Likewise.
15636
15637 1998-05-17 Michael Tiemann <tiemann@cygnus.com>
15638
15639 * parse.y (source_start_java_method): Use TREE_SET_CODE instead
15640 of assigning to TREE_CODE. The latter method exploits a feature
15641 of GCC that is not ANSI compliant.
15642
15643 1998-05-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
15644
15645 * decl.c (pushdecl_force_head): New function.
15646 (pushlevel): Removed conditional printf.
15647 (complete_start_java_method): Don't enter local variable scope if
15648 function is compiled from source code.
15649 * expr.c: parse.h now included
15650 (java_lang_expand_expr): New function.
15651 * jcf-io.c (find_class): Use SOURCE_FRONTEND_DEBUG instead of
15652 printf. Terminate buffer when doing directories.
15653 * jcf-parse.c (parse_source_file): Call lang_init_source before
15654 parsing and before code generation.
15655 * jcf.h (SOURCE_FRONTEND_DEBUG): Macro redefined to conditionally
15656 use printf if the macro is defined.
15657 * lang.c (lang_init): Install lang_expand_expr hook on
15658 java_lang_expand_expr.
15659 (java_dummy_print): New function.
15660 (lang_init_source): New function.
15661 * lex.c (java_lex): Remember location of an opening brace at the
15662 second nesting level.
15663 (java_is_eol): Unget character seen after a CR if it is EOF.
15664 * parse.h: Now includes lex.h
15665 (SOURCE_FRONTEND_DEBUG): Macro redefined to conditionally use
15666 printf if the macro is defined.
15667 (expand_start_java_method, build_expr_block, enter_block,
15668 exit_block, lookup_name_in_blocks, maybe_absorb_scoping_blocks):
15669 New static function declarations.
15670 (pushdecl_force_head): New extern function declaration.
15671 (INCOMPLETE_TYPE_P): New macro.
15672 (JDEP_PARM, JDEP_TYPE): New entries in JDEPs enum.
15673 (BLOCK_CHAIN_DECL, BLOCK_EXPR_DECLS, BLOCK_EXPR_BODY,
15674 BLOCK_EXPR_ORIGIN): New macros.
15675 (DECL_SOURCE_LINE_MERGE, DECL_SOURCE_LINE_FIRST,
15676 DECL_SOURCE_LINE_LAST): New macros.
15677 (struct parser_ctxt): Removed field current_method_decl, redundant
15678 with the field current_function_decl. Added fields
15679 first_ccb_indent1 and pending_block.
15680 * parse.y (method_body, literal, INT_LIT_TK, FP_LIT_TK,
15681 BOOL_LIT_TK, CHAR_LIT_TK, STRING_LIT_TK, NULL_TK, VOID_TK): Rules
15682 tagged <node>
15683 (SOURCE_FRONTEND_DEBUG): Used as macro accepting varargs.
15684 (compilation_unit:): Cosmetic on sub rule.
15685 (type_declaration:): Cosmetic on sub rules. Added an error rule.
15686 (variable_initializer:): Installed default rule on expression:.
15687 (method_declaration:): method_header: starts a new
15688 method. method_body: installs the function body, absorbs blocks
15689 emitted for temporary variable scopings, pops function's body block
15690 and merges function's last statement lineno in DECL_SOURCE_LINE.
15691 (method_body:): Installed default rules.
15692 (block:): Call enter_block when an opening brace is seen. Absorb
15693 scoping blocks and call exit_block when a closing brace is seen.
15694 (block_statement:): Cosmetic changes.
15695 (method_invocation:): Create WFL around CALL_EXPR node.
15696 (patch_stage): Added comment around definition.
15697 (method_header): Try to use first_ccb_indent1 as the first line of
15698 the method, so BP debug info are emitted at the first opening
15699 brace of the function. If the function has no body, use the
15700 location of the function's name. Override currently defined method
15701 name with the matching WFL so we can point redefinition errors
15702 using the location where the function's name was declared.
15703 (check_abstract_method_header): Interprets DECL_NAME as an
15704 identifier or as a WFL, accordingly.
15705 (java_complete_class): New cases for JDEP_TYPE and JDEP_PARM.
15706 (check_method_redefinition): Use DECL_NAME as a WFL. Extract
15707 location and name information out of it and reinstall DECL_NAME to
15708 its original identifier node value.
15709 (lookup_cl): Use DECL_SOURCE_LINE_FIRST (first line of the
15710 function's source code).
15711 (read_import_dir): Test the value returned by find_class and issue
15712 a fatal accordingly.
15713 (declare_local_variables): Push a new block for the scope of the
15714 new variable(s) if code has been already generated at that nesting
15715 level. Pinpoint redefinition errors using the variable id
15716 WFLs. Generate initialization code if necessary. If the variable
15717 type is incomplete, register a patch on its decl.
15718 (source_start_java_method): Rewritten. Define a new block for the
15719 function's parameters. Build parameter decl out of function's
15720 arguments and register them for a patch if their types are
15721 incomplete.
15722 (expand_start_java_method): Includes the part of
15723 source_start_java_method that was pushing the parameter decls and
15724 completing the method start code.
15725 (source_end_java_method): Removed call the expand_end_bindings and
15726 poplevel (already taken care of). Reinstall function's arguments
15727 and get function's last line of code before calling
15728 expand_function_end.
15729 (java_method_add_stmt): New comment before the function's
15730 code. Complement the second operand of the current COMPOUND_EXPR
15731 if necessary.
15732 (java_complete_expand_methods): Don't generate debug info on line
15733 zero when expanding a generated constructor.
15734 (java_complete_expand_method): Set start and end line numbers for
15735 a artificially generated constructor to one and manually call
15736 enter_block and exit_block when defining it. For all methods:
15737 expand function's start calling the new expand_start_java_method
15738 and invoke java_complete_tree on the effective method's body, if
15739 any.
15740 (resolve_expression_name): Now use lookup_name_in_blocks to search
15741 local variable decls and print out an error when variables are
15742 undefined.
15743 (patch_method_invocation_stmt): Inserted comment before the
15744 function's code.
15745 (lookup_method_invoke): Chain method's arguments using chainon
15746 with the current arg list as a second argument. Inserted missing
15747 IDENTIFIER_POINTER when reporting an error on methods not found.
15748 (refine_accessible_methods_list): Don't retain constructors.
15749 (patch_arguments): Function removed.
15750 (java_complete_tree): Inserted comment before the function's
15751 code. New case for BLOCKs. Moved the WFL case a bit
15752 further. Complete function's arguments.
15753 (build_expr_block, enter_block, exit_block, lookup_name_in_blocks,
15754 maybe_absorb_scoping_blocks): New functions.
15755
15756 1998-04-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
15757
15758 * jcf-io.c (find_class): Reset jcf->java_source after JCF_ZERO, if
15759 previously set.
15760 * jcf-parse.c (parse_source_file, java_error_count): New forward
15761 and extern declarations.
15762 (java_parse_abort_on_error): Macro moved.
15763 (jcf_parse_source): fatal called if fopen fails. Now calls
15764 parse_source_file.
15765 (parse_source_file): New parse_only parameter. Reflects the
15766 elimination of the second pass.
15767 (yyparse): parse_source_file called with argument set to 0.
15768 * jcf.h (JCF_ZERO): Sets java_source to zero.
15769 * lex.c (java_init_lex): pass argument is gone. Function modified
15770 to be called once during the analysis of a file.
15771 (java_unget_unicode): Fixed typo in fatal message.
15772 (java_get_line_col): Likewise.
15773 (java_lval): Likewise. String literals no longer built during
15774 second pass.
15775 * lex.h (JAVA_COLUMN_DELTA): Take the tabulation character into
15776 account.
15777 * parse.h (MODIFIER_WFL): New macro.
15778 (parse_check_super, parser_check_super_interface): Now return int.
15779 (parser_chain_incomplete_item, not_builtin_p,
15780 complete_method_decl): Declarations removed.
15781 (build_method_invocation_stmt, build_invoke): Renamed using the
15782 `patch' instead of `build'
15783 (register-incomplete_type, obtain_incomplete_type,
15784 java_complete_tree, java_complete_expand_method,
15785 unresolved_type_p, create_jdep_list): New function declarations.
15786 (IC_TYPE, IC_DEPEND, DEPEND_DECL, DEPEND_WFL, BEGIN_ONLY_PASS,
15787 END_ONLY_PASS, ELSE_ONLY_PASS): Macro deleted.
15788 (jdep): New typedef on new struct _jdep.
15789 (JDEP_DECL, JDEP_DECL_WFL, JDEP_KIND, JDEP_SOLV, JDEP_WFL,
15790 JDEP_MISC, JDEP_APPLY_PATCH, JDEP_GET_PATCH, JDEP_CHAIN,
15791 JDEP_TO_REVOLVE, JDEP_RESOLVED_DECL, JDEP_RESOLVED,
15792 JDEP_RESOLVED_P): New macros.
15793 (JDEP_NO_PATCH, JDEP_SUPER, JDEP_FIELD, JDEP_METHOD,
15794 JDEP_METHOD_RETURN, JDEP_METHOD_END, JDEP_INTERFACE,
15795 JDEP_VARIABLE): New enum values and jdep kinds.
15796 (jdeplist): New typedef on struct _jdeplist.
15797 (CLASSD_FIRST, CLASSD_LAST, CLASSD_CHAIN, JDEP_INSERT): New
15798 macros.
15799 (CALL_EXPR_PRIMARY): New macro.
15800 (struct parser_ctxt): Fields java_pass, current_method_decl,
15801 method_decl_list deleted. New field jdeplist.
15802 (INCOMPLETE_P): Macro deleted.
15803 * parse.y (single_type_import_declaration:): Removed pass switch.
15804 (type_import_on_demand_declaration): Likewise.
15805 (field_declaration:): Removed pass switch on all sub rules.
15806 (class_declaration:): Call the complete_class_decl removed on
15807 class_body rules.
15808 (method_declaration:): Removed second pass switch. No longer chain
15809 methods decl when method_header reduced.
15810 (method_header:): Sub rules no longer depend on pass switch.
15811 (method_declarator:): Likewise.
15812 (method_body:): Likewise.
15813 (abstract_method_declaration:): Likewise.
15814 (block_statement:): Likewise.
15815 (local_variable_declaration:): Likewise.
15816 (argument_list:): Likewise.
15817 (method_invocation:): Likewise. Call to build_method_invocation_stmt
15818 removed. Partial CLASS_EXPR tree node built instead.
15819 (postfix_expression:): Removed pass switch on all sub rules.
15820 (java_pop_parser_context): Free classd_list content.
15821 (yyerror): Call obstrack_grow0 to finalize error message.
15822 (check_class_interface_creation): Comment modified to reflect new
15823 returned value meaning. Removed second pass switch. Return 1 if an
15824 error was found, 0 otherwise. Adjust pointer on filename if a
15825 leading path separator was found.
15826 (maybe_create_class_interface_decl): Removed first pass switch
15827 when linking the class decl to the class_list. Install a new
15828 jdep_list for the class.
15829 (add_superinterfaces): List of unresolved interfaces is
15830 gone. Unresolved interfaces are directly added to the current
15831 dependencies list.
15832 (create_interface): Second pass shortcut removed.
15833 ctpx->modifier_ctx access through MODIFIER_WFL.
15834 (create_class): Second pass shortcut removed. Call to
15835 register_incomplete_type replaces the call to
15836 parser_chain_incomplete_item.
15837 (complete_class_decl): Function removed.
15838 (duplicate_declaration_error): New way of retrieving redeclared
15839 item type.
15840 (register_fields): Call to lookup_modifier_cl replaced by
15841 MODIFIER_WFL. New way of handling unresolved type, using
15842 unresolved_type_p and obtain_incomplete_type.
15843 register_incomplete_type replaces call to parser_chain_incomplete_item.
15844 (patch_stage): New static global variable.
15845 (method_header): New way of handling unresolved type, using
15846 unresolved_type_p and obtain_incomplete_type. patch_stage used to
15847 indicates that the method decl needs to be patched.
15848 (check_abstract_method_header): Call to lookup_modifier_cl
15849 replaced by MODIFIER_WFL.
15850 (method_declarator): Incomplete argument type are registered
15851 calling register_incomplete_type. Patch on the declared method is
15852 issued in that case.
15853 (unresolved_type_p): New function.
15854 (parser_check_super_interface): New comment to reflect function's
15855 modified returned type (int). Function and has a new argument
15856 this_wfl. Call to parse_error_context uses this_wfl instead of
15857 relying on lookup_cl.
15858 (parser_check_super): Comment reflects function's new returned
15859 type (int). Function returns nonzero value on error.
15860 (create_jdep_list, reverse_jdep_list, obtain_incomplete_type,
15861 register_incomplete_type, jdep_resolve_class): New functions to
15862 handle incomplete types in declarations.
15863 (java_complete_class): Rewritten to work with the new incomplete
15864 type handling scheme.
15865 (complete_class_report_errors): Likewise.
15866 (complete_method_decl): Removed: it jobs is now handled by
15867 java_complete_class.
15868 (do_resolve_class): Class loaded in not already loaded and not
15869 found in Java source code.
15870 (java_check_regular_methods, java_check_abstract_methods): Don't
15871 call complete_method_decl anymore.
15872 (lookup_modifier_cl, not_builtin_p): Functions deleted.
15873 (read_import_dir): Got rid of the pass number dependency.
15874 (declare_local_variables): New handling of unresolved types (patch
15875 issued).
15876 (source_start_java_method): New parameter level. Function called
15877 with level set to 1 when argument types are potentially
15878 unresolved. Called to complete the job with level set to 2 once
15879 types are complete.
15880 (source_end_java_method): Call to permanent_allocation
15881 removed. Waiting to be replaced by a more suitable obstack
15882 management.
15883 (java_complete_expand_methods, java_complete_expand_method,
15884 java_expand_finals): New functions.
15885 (build_method_invocation_stmt): Renamed
15886 patch_method_invocation_stmt. Extracts function call expression
15887 (wfl) and arguments (args) from CALL_EXPR tree operands.
15888 (build_invoke): Renamed patch_invoke. Fixed typo in fatal
15889 call. Patch the function and argument operand of the CALL_EXPR
15890 tree argument.
15891 (patch_argument, java_complete_tree): New functions.
15892
15893 1998-04-20 Per Bothner <bothner@cygnus.com>
15894
15895 Recover from missing fields and methods (i.e. error instead of fatal).
15896 * decl.c, java-tree.h (TYPE_identifier_node): New global constant.
15897 * expr.c (expand_invoke): Recover from missing method.
15898 (expand_java_field_op): Recover from missing field.
15899 Inline references to java.lang.{Integer,Char,...}.TYPE.
15900 * typeck.c (get_type_from_signature), java-tree.h: New function.
15901 * class.c (add_method): Use get_type_from_signature.
15902 (build_class_ref): Handle a class that was not found.
15903 * typeck.c (convert): Handle conversion to pointers (for convenience).
15904 * verify.c (verify_jvm_instructions): Use get_type_from_signature
15905 instead of lookup_field to handle missing fields.
15906
15907 * jcf-parse.c (process_zip_dir): Set java_source.
15908
15909 1998-04-20 Brendan Kehoe <brendan@cygnus.com>
15910
15911 * jcf-parse.c (set_source_filename): Use TYPE_NAME, not DECL_NAME.
15912
15913 1998-04-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
15914
15915 * jcf-parse.c (load_class): Don't change input_filename before
15916 calling jcf_parse_source (but still do it before calling
15917 jcf_parse).
15918 (jcf_parse_source): Assign input_filename after having saved the
15919 parser context.
15920 * lex.c (java_init_lex): Chain a WFL node to the import on demand
15921 list. ctxp->modifier_ctx zeroed according to its new
15922 definition. ctxp->filename initialized. Removed
15923 JAVA_MODIFIER_CTX_UNMARK.
15924 (java_unget_unicode): Update the character based column position.
15925 (java_allocate_new_line): ref_count not used anymore. Always free
15926 ctxp->p_line. Initialize c_line->char_col to 0.
15927 (java_get_unicode): Update the character based column position.
15928 (java_lex): Use ctxp->elc to store current position in source
15929 file, at the beginning of the parsed token. Set modifier_ctx entry
15930 corresponding to the parse modifier to a WFL node. Return a WFL
15931 node when an identifier is parsed.
15932 (java_lex_error): Now uses ctxp->elc to store current position in
15933 source.
15934 (build_wfl_node, java_is_eol, java_get_line_col): New functions.
15935 * lex.h (build_wfl_node): New function definitions.
15936 (struct java_line): ref_count and next fields are gone. New field
15937 char_col.
15938 (JAVA_LINE_CHECK, JAVA_LINE_MARK, JAVA_LINE_CHAIN,
15939 JAVA_LINE_UNMARK, ID_NAME, ID_CL): Macro definitions deleted.
15940 (JAVA_COLUMN_DELTA): New macro.
15941 (java_lc): New typedef on new struct _java_lc.
15942 * parse.h (lookup_cl, lookup_modifier_cl): Changed returned types.
15943 (parse_error_context, parse_warning_context): Changed prototypes.
15944 (java_get_line_col): Added as an available global function.
15945 (JAVA_MODIFIER_CTX_UNMARK): Macro removed.
15946 (IC_DECL): Replaced by macro IC_TYPE
15947 (DEPEND_WFL): New macro.
15948 (THIS_MODIFIER_ONLY): Now works with WFL and only remembers the first
15949 wrong modifier.
15950 (exit_java_complete_class): Removed a commented out statement.
15951 (struct parser_ctxt): Added comments on fields. modifier_ctx is
15952 now an array of tree nodes. Deleted fields line_list and
15953 e_line. New field elc, to replace e_line.
15954 * parse.y (array_type:): Build WFL node.
15955 (qualified_name:): Build a single WFL node out of two. Retain
15956 the location information of the first node in the resulting node.
15957 (package_declaration:): Use package name as a WFL node
15958 (single_type_import_declaration:): Use imported name as a WFL node.
15959 (type_import_on_demand_declaration:): Use root of the imported
15960 packages as a WFL node.
15961 (field_declaration:): Removed unused local variable cl.
15962 (method_declaration:): Don't call JAVA_MODIFIER_CTX_UNMARK.
15963 (yyerror): New static elc. Removed static error_line, error_pos.
15964 New local code_from_source. Save ctxp->elc into elc at the first
15965 pass. Call java_get_line_col to get a string of the line where
15966 the error occurred.
15967 (debug_line): Removed static function.
15968 (parse_error_context, parse_warning_context): Parameter cl is now
15969 a WFL node. Use its value to initialize ctxp->elc.
15970 (redefinition_error): Parameter cl is now a WFL node.
15971 (parse_add_interface): New parameter wfl. No longer call
15972 lookup_cl, use wfl instead.
15973 (check_class_interface_creation): Parameter cl is now a WFL node.
15974 (maybe_create_class_interface_decl): Likewise.
15975 (add_superinterfaces): New function.
15976 (create_interface): Removed local cl, node, super_decl,
15977 super_decl_type. Function now uses id as a WFL node. Better
15978 warning/error report on obsolete or forbidden mix of
15979 modifiers. Now calls add_superinterfaces to register interfaces.
15980 (create_class): Removed local cl, node. Local variable id is used
15981 as a WFL node. Better error report on forbidden modifier
15982 mix. Uses add_superinterfaces to register interfaces.
15983 (find_field): Argument cl is now a WFL node. Now store the WFL
15984 node of a fields that needs to be checked for their
15985 initialization.
15986 (method_header): Local variable node non longer used. Local
15987 variable id replaces cl.
15988 (check_modifiers_consistency): Local variable cl is now a WFL
15989 node.
15990 (method_declarator): Local variable cl replaced by parameter id.
15991 (parser_qualified_name): Now uses parameter name as a WFL node.
15992 (parser_check_super_interface): New parameter wfl, for achieve
15993 greater accuracy during error reports.
15994 (parser_chain_incomplete_item): New parameter named location. Used,
15995 along the decl, to construct the incomplete item node.
15996 (java_complete_class): resolve_class now uses WFL node extracted
15997 from the incomplete item node. Macro IC_TYPE replaces TREE_PURPOSE
15998 where appropriate.
15999 (complete_method_decl): Unresolved function's argument types are WFL.
16000 (resolve_class): Parameter cl is now a WFL node.
16001 (resolve_and_layout): Likewise.
16002 (do_resolve_class): Likewise. Try first to use cl and then do the
16003 lookup on the decl when calling check_pkg_class_access.
16004 (complete_class_report_errors): Use IC_TYPE in place of
16005 TREE_PURPOSE where appropriate. Use DEPEND_WFL on dependency
16006 instead of doing a lookup over the decl.
16007 (java_check_final): Use WFL info from field tree list.
16008 (lookup_cl): Rewritten and returns a statically defined WFL node.
16009 (lookup_modifier_cl): Now uses information from WFL nodes.
16010 (process_imports): Likewise.
16011 (read_import_dir): name and cl arguments replaced by a single WFL
16012 node. Function modified accordingly.
16013 (find_in_imports_on_demand): Now uses WFL node.
16014 (check_pkg_class_access): cl argument is now a WFL node.
16015 (declare_local_variables): Fixed to use WFL nodes.
16016 (resolve_expression_name): Likewise.
16017 (build_method_invocation_stmt): name_combo argument renamed
16018 wfl. Function modified to use WFL nodes.
16019 (build_invoke): cl used as a WFL node when calling build_expr_wfl.
16020 (lookup_method_invoke): cl is now a WFL node. Added missing
16021 IDENTIFIER_POINTER to class type decl name.
16022
16023 1998-04-14 Dave Brolley <brolley@cygnus.com>
16024
16025 * lang.c (init_parse): Now returns char* containing the filename.
16026
16027 1998-04-10 Per Bothner <bothner@cygnus.com>
16028
16029 * class.c (layout_class): Mangle repeated arg types to match cc1plus.
16030
16031 * decl.c, java-tree.h (integer_four_node): New INTEGER_CST node.
16032 * class.c (make_class_data): If flag_assume_compiled, initial class
16033 state is CSTATE_PREPARED; make superclass and interfaces direct
16034 references, rather than constant pool indexes.
16035
16036 1998-04-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
16037
16038 * parser.y: Include flags.h. Removed debug variable pl.
16039 (method_declaration:): Uses ctxp->parser_ccb_indent instead of pl.
16040 (block:): Likewise.
16041 (labeled_statement_nsi:): Generate debug info when reducing
16042 expression_statement:.
16043 (check_pkg_class_access): get_access_flags_from_decl invocation
16044 fixed for new CLASS_* flags location.
16045 (source_end_java_method): Save/restore parser context when
16046 entering/leaving this routine. Restore lineno to its right value
16047 before calling expand_end_bindings.
16048 (build_method_invocation_stmt): build_invoke called with the
16049 current line information.
16050 (build_invoke): New argument cl. Wrap the function call around a
16051 wfl node.
16052 (refine_accessible_methods_list): Changed comment, removed
16053 unnecessary code.
16054 * parse.h: Fixed typo in comments.
16055 (CLASS_OR_INTERFACE): Handle the new CLASS_* flags location.
16056 (JAVA_MAYBE_GENERATE_DEBUG_INFO): New macro.
16057 (struct parser_ctxt): New fields ccb_indent, last_ccb_indent1,
16058 parser_ccb_indent.
16059 * lex.c (java_lex): Record the last closing curly bracket of a
16060 function.
16061 * jcf-parse.c (jcf_parse_source): Now calls
16062 java_check_methods. Clarified comment, fixed typo.
16063
16064 1998-04-09 Dave Brolley <brolley@cygnus.com>
16065
16066 * lang.c (init_parse): Expose for non USE_CPPLIB builds.
16067 (finish_parse): Expose for non USE_CPPLIB builds.
16068
16069 1998-04-08 Jeffrey A Law (law@cygnus.com)
16070
16071 * lang.c (lang_print_xnode): New function.
16072
16073 1998-04-03 Per Bothner <bothner@cygnus.com>
16074
16075 * decl.c (class_dtable_decl), java-tree.h: New tree node.
16076 * class.c (get_dispatch_vector, get_dispatch_table): New functions
16077 used to build a class's dispatch table.
16078 (make_class_data): Generate dispatch table if flag_assume_compiled.
16079 Set dtable of class object to address of class_dtable_decl.
16080
16081 * decl.c (int_decl_processing): Make soft_badarrayindex_node
16082 be volatile and have side effects - generates better code.
16083
16084 * class.c, expr.c, parse.y: CLASS_INTERFACE, CLASS_FINAL, etc:
16085 These flags were defined for TYPE_DECLs, but used on RECORD_TYPEs.
16086
16087 * expr.c (expand_invoke): If class is final, method is
16088 effectively final, so can call it directly.
16089
16090 * java-tree.h (TYPE_NVIRTUALS, TYPE_VTABLE): New macros.
16091
16092 * Makefile.in, Make-lang.in: Add missing $(exeext)s.
16093
16094 1998-03-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
16095
16096 * parse.y (build_method_invocation_stmt): Removed extra argument
16097 to build_invoke.
16098
16099 1998-03-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
16100
16101 * expr.c (dtable_indent): Now static global.
16102 (expand_invoke): Now call invoke_build_dtable and
16103 build_invokevirtual.
16104 (invoke_build_dtable, build_invokevirtual): New functions.
16105 * jcf-io.c (find_class): Defer issuing a warning by setting
16106 jcf->outofsynch to 1.
16107 * jcf-parse.c (jcf_out_of_synch): New function.
16108 (load_class): Test this_jcf.outofsynch flag and call
16109 jcf_out_of_synch accordingly.
16110 * jcf.h: (typedef struct JCF): New flag outofsynch. Fixed typo in
16111 comment indentation.
16112 * lex.c (java_get_unicode): Fixed code indentation.
16113 (java_lex): Create string literal. Fixed typo. Removed several
16114 premature obstack_free.
16115 * parse.h: New enums for name resolution and invocation mode.
16116 (struct qualification): New data structure.
16117 (RESOLVE_CHAIN_REMAINDER, BUILD_PTR_FROM_NAME): New macros.
16118 (do_resolve_class, build_method_invocation_stmt,
16119 breakdown_qualified, qualify_ambiguous_name, resolve_and_layout,
16120 debug_line, identical_subpath_p, invocation_mode,
16121 refine_accessible_methods_list, build_invoke,
16122 lookup_method_invoke): New functions declared.
16123 (build_invokevirtual, invoke_build_dtable, match_java_method,
16124 build_field_ref, jcf_out_of_synch): New references to external
16125 functions.
16126 (struct parse_ctxt): Removed artificial_constructor field.
16127 * parse.y: (array_type:): Type defined for this rule.
16128 (class_type:): Installed default rule for interface_type:.
16129 (array_type:): Now build Java array type.
16130 (qualified_name:): Now use obstack_grow0.
16131 (method_declaration:): Skip the artificial constructor added to
16132 the list, if any.
16133 (abstract_method_declaration:): Execute the code only during pass 1.
16134 (block:): Installed default rule in block_statements:.
16135 (block_statement:): Add the statement to the method during pass 2.
16136 (statement_expression): Installed default rule for
16137 method_invocation:.
16138 (argument_list:): Added code to build the argument list.
16139 (method_invocation:): Added call to create the method invocation
16140 node.
16141 (yyerror): Now use obstack_grow0. Removed bogus obstack_free.
16142 (debug_line): New function for debug.
16143 (complete_class_decl): No longer do something during pass 1.
16144 (method_header): Use BUILD_PTR_FROM_NAME.
16145 (parser_qualified_classname): Use obstack_grow0. Removed bogus
16146 obstack_free.
16147 (parser_chain_incomplete_item): Use BUILD_PTR_FROM_NAME. Modified
16148 function's main comment.
16149 (java_complete_class): Set CLASS_LOADED_P on all fixed incomplete
16150 classes.
16151 (complete_method_decl): Use BUILD_PTR_FROM_NAME and promote types.
16152 (resolve_class): Now works with arrays.
16153 (do_resolve_class, resolve_and_layout): New functions.
16154 (java_check_regular_methods): Reverse method list before and after
16155 having processed it. No longer set ctxp->artificial_constructor.
16156 (read_import_dir): Test jcf->outofsynch and call jcf_out_of_synch
16157 accordingly. Fixed typo in issued error message. Now use
16158 obstack_grow0.
16159 (find_in_imports_on_demand): Now use obstack_grow0.
16160 (declare_local_variables): Use BUILD_PTR_FROM_NAME.
16161 (source_end_java_method): Call expand_expr_stmt instead of
16162 expand_expr. Calls it before calling expand_function_end.
16163 (java_method_add_stmt): Do nothing if errors were found during
16164 parsing.
16165 (java_layout_parsed_class): Set CLASS_LOADED_P and fixed typo.
16166 (build_method_invocation_stmt, build_invoke, invocation_mode,
16167 lookup_method_invoke, refine_accessible_methods_list,
16168 qualify_ambiguous_name, breakdown_qualified, identical_subpath_p):
16169 New functions.
16170 * typeck.c (build_java_signature): Properly end method signature
16171 if return type skipped.
16172 (match_java_method): New function.
16173
16174 1998-03-16 Per Bothner <bothner@cygnus.com>
16175
16176 * jcf-io.c (find_classfile): If USE_JCF_STDIO, fopen in binary mode.
16177
16178 1998-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
16179
16180 * expr.c (build_invoke_non_interface): New function.
16181 (methods_ident, ncode_ident): Now static globals.
16182 (expand_invoke): Use build_invoke_non_interface.
16183 * java-tree.h (struct lang_decl): New field function_decl_body.
16184 (DECL_FUNCTION_BODY): New macro.
16185 * jcf-parse.c (jcf_parse_source): Deeper check before setting
16186 CLASS_FROM_SOURCE_P.
16187 (parse_source_file): Fixed typos. Call java_layout_parsed_class
16188 before starting pass 2. Call to java_generate_parsed_class replaced
16189 by java_register_parsed_class.
16190 * lex.c: Fixed typo in header. Some line width related formating.
16191 * lex.h: Some line width related formating.
16192 * parse.h (source_end_java_method, resolve_expression_name,
16193 complete_class_decl, maybe_create_class_interface_decl,
16194 check_class_interface_creation): New static function declarations.
16195 (java_layout_parsed_class, java_method_add_stmt): New function
16196 declarations.
16197 (struct parser_ctxt): Field mark_class_generate removed. New
16198 fields class_list and artificial_constructor.
16199 * parse.y: Fixed typo in header.
16200 (class_declaration:): Call complete_class_decl when class body
16201 parsed.
16202 (method_declaration:): Call source_end_java_method in pass 2 when
16203 the method body is defined.
16204 (postfix_expression:): Do expression name resolution on sub-rule
16205 name during pass 2.
16206 (create_class, create_interface): Merged common pieces.
16207 (check_class_interface_creation, maybe_create_class_interface_decl):
16208 New functions.
16209 (complete_class_decl): New function.
16210 (register_fields): Fixed line width related typo.
16211 (method_header): Correctly skip first argument when fixing
16212 argument line. Changed the loop.
16213 (java_check_circular_reference): Now use ctxp->class_list.
16214 (java_complete_class): Removed start/stop marking.
16215 (java_check_regular_methods): Now takes a class decl as an
16216 argument. Add default constructor if none were encountered.
16217 (java_check_methods): Now use ctxp->class_list. Changed call to
16218 java_check_regular_methods.
16219 (source_start_java_method): Set DECL_ARG_TYPE for each function
16220 arguments.
16221 (source_end_java_method, java_method_add_stmt): New functions.
16222 (java_generate_parsed_class): No longer exists.
16223 (java_layout_parsed_class, java_register_parsed_class): New functions.
16224 (resolve_expression_name): New function.
16225
16226 1998-02-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
16227
16228 * jcf-parse.c: (parse_source_file): Check on errors after init lex.
16229 * lex.c: (java_init_lex): Defer ctxp->java_pass initialization
16230 until pass initializations are done. Call read_import_dir with
16231 pass set to 0.
16232 * parse.h: (lookup_modifier_cl): New function declared.
16233 (INTERFACE_FIELD_MODIFIERS): New macro.
16234 (OBSOLETE_MODIFIER_WARNING): New macro.
16235 * parse.y: (register_fields): Class type and current field name in
16236 local variables. Check modifier(s) if adding field(s) to an interface.
16237 (check_abstract_method_header): Now use OBSOLETE_MODIFIER_WARNING
16238 and report errors using the faulty modifier line context.
16239 (lookup_modifier_cl): New function.
16240 (read_import_dir): Detect and report default import processing
16241 failure.
16242
16243 1998-02-11 Brendan Kehoe <brendan@cygnus.com>
16244
16245 Add a pair of -fassume-compiled/-fno-assume-compiled options.
16246 * class.c (is_compiled_class): Return 1 after making sure it
16247 qualifies as loaded, if FLAG_ASSUME_COMPILED is set.
16248 * lang-options.h: Add -fassume-compiled/-fno-assume-compiled.
16249 * java-tree.h (flag_assume_compiled): Add decl.
16250 * lang.c (lang_f_options): Add the flag.
16251 (flag_assume_compiled): Add decl, default to 0.
16252
16253 1998-02-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
16254
16255 * class.c (class_depth): Call to load_class uses extra VERBOSE arg.
16256 (is_compiled_class): Likewise.
16257 (layout_class): Likewise.
16258 (layout_class): Detect and lay out classes defined in source code.
16259 (interface_of_p, add_interface_do, may_add_interface): New
16260 function.
16261 (add_interface): Now use add_interface_do.
16262 (add_method_1): New function.
16263 (add_method): Now use add_method_1.
16264 (pushlevel): Debug message conditional to SOURCE_FRONTEND_DEBUG.
16265 (complete_start_java_method): New function.
16266 (start_java_mehod): Now call complete_start_java_method.
16267 * expr.c (lookup_field): Call to load_class uses extra VERBOSE arg.
16268 (expand_invoke): Likewise and fixed typo.
16269 *gjava.c: (print_super_field): Use new argument to find_class
16270 DO_CLASS_FILE.
16271 (main): Likewise.
16272 *java-tree.h: (CLASS_FROM_SOURCE_P): New flag on RECORD_TYPE.
16273 (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P, IS_A_CLASSFILE_NAME,
16274 QUALIFIED_P, IS_AN_IMPORT_ON_DEMAND_P): New flags on
16275 IDENTIFIER_NODE.
16276 (CLASS_COMPLETE_P): New flag on TYPE_DECL.
16277 (add_method_1, push_class): New prototypes.
16278 *jcf-dump.c: find_class now uses new DO_CLASS_FILE argument.
16279 *jcf-io.c: (open_in_zip): jcf now stores a pointer to the Zip
16280 directory where the class was found.
16281 (find_class): New argument DO_CLASS_FILE. Function find_class
16282 modified accordingly.
16283 *jcf-parse.c: (fix_class_path): New function.
16284 (load_class): Use new VERBOSE argument. load_class now finds and
16285 loads/parses .class/.java files. Save read_state of current_jcf
16286 if necessary.
16287 (java_parser_abort_on_error): New macro.
16288 (jcf_parse_source, parse_source_file): New function.
16289 (jcf_parse): Fixed typo.
16290 (yyparse): Call parse_source_file () only.
16291 (process_zip_dir): Fixed typo, fix zdir->filename_length when
16292 writing the real class name back in the zip directory entry.
16293 (find_in_current_zip): IDENTIFIER_CLASS_VALUE may be null.
16294 (jcf_figure_file_type): Fixed bogus alloc and bcopy.
16295 *jcf.h: (typedef struct JCF): New fields java_source and zipd.
16296 (find_class): Prototype fixed.
16297 *lex.c: Added 1998 time stamp.
16298 Removed all static global variables, moved into the parser
16299 context data structure.. Now include unistd.h if SEEK_SET not
16300 defined.
16301 (java_init_lex): Rewritten.
16302 (java_sneak_unicode): Modified current unicode access in current line.
16303 (java_unget_unicode): Likewise.
16304 (java_allocate_new_line): New allocation management.
16305 (java_read_char): Modified access and storage of unget_utf8_value.
16306 New way of processing current unicode.
16307 (java_store_unicode, java_read_unicode): Fixed typo in declaration.
16308 (java_get_unicode): Now use the parser context.
16309 (java_lineterminator): Likewise.
16310 (java_lex): Now used java_lval argument (pointer to YYSTYPE), part
16311 of the reentrant parser implementation. Function now use the
16312 parser context data structure and java_lval. Fixed production of
16313 the float and double constant "out of range" error message. Fixed
16314 obstack use. Return integer value when hitting a modifier. Now
16315 return type for TRUE, FALSE and other predefined types. Return
16316 identifier as a TREE_LIST list containing the current line context
16317 as the TREE_VALUE sub-node.
16318 (java_unicode_2_utf8): Fixed typo in declaration.
16319 (java_lex_error): Now use the parser context data structure.
16320 *lex.h: Added 1998 time stamp.
16321 (struct java_line): New fields ref_count and next.
16322 (JAVA_LINE_CHECK, JAVA_LINE_MARK, JAVA_LINE_CHAIN,
16323 JAVA_LINE_UNMARK, ID_NAME, ID_CL): New macros.
16324 (JAVA_FLOAT_RANGE_ERROR, JAVA_INTEGRAL_RANGE_ERROR, UNGETC): Fixed.
16325 *parse.h: Added 1998 time stamp.
16326 (java_parse_source_file): Renamed from parse_source_file.
16327 (YYERROR_NOW, YYNOT_TWICE): Fixed.
16328 (CLASS_MODIFIERS, FIELD_MODIFIERS, METHOD_MODIFIERS,
16329 INTERFACE_MODIFIER, INTERFACE_METHOD_MODIFIERS,
16330 JAVA_MODIFIER_CTX_UNMARK, IC_DECL, IC_DEPEND, DEPEND_DECL,
16331 THIS_MODIFIER_ONLY, ABSTRACT_CHECK, BEGIN_ONLY_PASS,
16332 END_ONLY_PASS, ELSE_ONLY_PASS, exit_java_complete_class,
16333 CLASS_OR_INTERFACE, INCOMPLETE_P): New macros.
16334 (struct parser_ctxt): New data structure to keep the parser context.
16335 *parse.y: Added 1998 time stamp, got rid of static global variables.
16336 (java_error_count, ctxp): New global variables.
16337 (%union): New value field.
16338 (numeric_type, integral_type): Rules removed.
16339 (primitive_type): Rule defined to handle integral, float, double and
16340 boolean types.
16341 (qualified_name, package_declaration,
16342 single_type_import_declaration, type_import_on_demand_declaration,
16343 modifiers, class_declaration, super, interfaces,
16344 interface_type_list, class_body, field_declaration,
16345 field_declaration, variable_declarators, variable_declarator,
16346 variable_declarator_id, method_declaration, method_header,
16347 formal_parameter_list, formal_parameter, method_body, block,
16348 static, interface_declaration, extends_interfaces,
16349 abstract_method_declaration, local_variable_declarators): Rules now
16350 define actions.
16351 (force_error, do_warning): New global statics.
16352 (push_parser_context, parser_context_save_global,
16353 parser_context_restore_global, pop_parser_context): New functions.
16354 (yyerror): Now uses the global parser context. Fixed use of obstack.
16355 (parse_error, parse_error_context, parse_warning_context,
16356 java_accstring_lookup, redefinition_error, check_modifiers,
16357 parser_add_interface, create_interface, create_class, find_field,
16358 duplicate_declaration_error, register_fields, method_header,
16359 check_modifiers_consistency, check_abstract_method_header,
16360 method_declarator, parser_qualified_classname,
16361 parser_check_super_interface, parser_check_super,
16362 parser_chain_incomplete_item, java_check_circular_reference,
16363 layout_class_from_source, java_complete_class,
16364 complete_method_decl, resolve_class, complete_class_report_errors,
16365 java_check_final, check_method_redefinition,
16366 java_check_regular_methods, java_check_abstract_methods,
16367 java_check_methods, lookup_java_interface_method2,
16368 lookup_java_method2, lookup_cl, find_name_in_single_imports,
16369 process_imports, find_in_imports, read_import_entry,
16370 read_import_dir, find_in_imports_on_demand,
16371 check_pkg_class_access, not_builtin_p, declare_local_variables,
16372 source_start_java_method, java_generate_parsed_class): New
16373 functions.
16374 *typeck.c: (signature_include_return): New global variable.
16375 (build_java_signature): Use SIGNATURE_INCLUDE_RETURN figure whether
16376 to add the function returned type in the signature.
16377
16378 1998-02-09 Brendan Kehoe <brendan@cygnus.com>
16379
16380 * jcf-io.c (open_in_zip): Use strncmp and LEN.
16381
16382 1998-01-29 Dave Brolley <brolley@cygnus.com>
16383
16384 * Make-lang.in (java.info): Added.
16385 (java.install-info): Added
16386
16387 1998-01-27 Brendan Kehoe <brendan@cygnus.com>
16388
16389 * Makefile.in (clean): Also remove java/parse.c.
16390
16391 1998-01-26 Brendan Kehoe <brendan@cygnus.com>
16392
16393 Add a pair of -fbounds-check/-fno-bounds-check options.
16394 * lang.c (lang_decode_option): Add code to grok arguments.
16395 (flag_bounds_check): Add decl.
16396 (lang_f_options): New array w/ the option in it.
16397 * java-tree.h (flag_bounds_check): Add decl.
16398 * lang-options.h: New file.
16399 * expr.c (build_java_arrayaccess): Use flag_bounds_check instead
16400 of a static macro value.
16401 (JAVA_ARRAY_EXCEPTION): Delete macro.
16402
16403 1998-01-23 Per Bothner <bothner@cygnus.com>
16404
16405 * typeck.c (build_java_array_type): Fix two bugs in previous change.
16406 * expr.c (build_anewarray): Add missing promote_type.
16407
16408 1998-01-22 Per Bothner <bothner@cygnus.com>
16409
16410 Add array types with known length to optimize bounds checking.
16411 * typeck.c (build_java_array_type): Take length parameter.
16412 (java_array_type_length, build_prim_array_type): New functions.
16413 * java-tree.h: Update for new functions.
16414 * expr.c, typeck.c, verify.c: Update build_java_array_type calls.
16415 * class.c: Use build_prim_array_type.
16416 * expr.c (can_widen_reference_to): Handle known-length array types.
16417 (verify_jvm_instructions): Keep track of integer push instructions
16418 followed by newarray/anewarray, so we can build known-length arrays.
16419 (JAVA_ARRAY_DATA_OFFSET): Replace by ...
16420 (java_array_data_offset): New function.
16421 (build_java_array_length_access): New function. Optimize if constant.
16422 (build_java_arrayaccess): Constant fold bounds check.
16423 (expand_java_newarray, expand_java_anewarray): Replaced by ...
16424 (build_newarray, build_anewarray): New functions.
16425 (ARRAY_NEW_NUM, ARRAY_NEW_PTR): Use build_{a,}newarray.
16426 * verify.c (merge_types): Handle known-lengh array types.
16427
16428 1998-01-19 Per Bothner <bothner@cygnus.com>
16429
16430 * expr.c (expand_byte_code): Fix performace bug, which caused
16431 searching linenumber_table to be linear rather than constant.
16432
16433 1997-12-12 Per Bothner <bothner@cygnus.com>
16434
16435 * Makefile.in (BISON, BISONFLAGS): Add missing macros.
16436
16437 * decl.c, java-tree.h (soft_fmod_node): New global.
16438 * decl.c (init_decl_processing): Define __builtin_fmod.
16439 * expr.c (build_java_binop): Implement TRUNC_MOD_EXPR for REAL_TYPE
16440 using __builtin_fmod.
16441
16442 1997-12-04 Alexandre Petit-Bianco <apbianco@cygnus.com>
16443
16444 * keyword.h: New file, output of keyword.gperf as processed by
16445 gperf.
16446 * lex.c (java_lex_init): Initialize java_error_flag.
16447 * parse.c (YYERROR_NOW): Uses java_error_flag.
16448 * parse.y: New static java_error_flag. Useless definition of
16449 buffer_error gone.
16450 * parse.y (java_error): Portable error recovery using
16451 java_error_flag (not yet completely tuned).
16452
16453 1997-12-04 Brendan Kehoe <brendan@lisa.cygnus.com>
16454
16455 * Makefile.in (parse.c): Use $(srcdir) for parse.y.
16456
16457 1997-12-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
16458
16459 * Makefile.in: (JAVA_OBJS): New object jcf-parse.o.
16460 (parse.c, lex.c, keyword.h): New rules for Java source code
16461 front-end.
16462 * parse.c: Renamed into jcf-parse.c.
16463 * jcf-parse.c (yyparse): Invoke the parser to process Java source code.
16464 * keyword.gperf: New file, Java keywords.
16465 * parse.y: New file, Java language grammar.
16466 * parse.h: New file, Java language grammar definitions.
16467 * lex.c: New file, Java language lexer.
16468 * lex.h: New file, Java language lexer definitions.
16469
16470 1997-12-03 Per Bothner <bothner@cygnus.com>
16471
16472 * decl.c (clinit_identifier_node), java-tree.h: New global.
16473 * java-tree.h (IS_METHOD_INIT_P, IS_METHOD_CLINIT_P): Removed.
16474 * verify.c (verify_jvm_instructions): Inline use of removed macros.
16475 * expr.c (expand_java_field_op): Check for invalid assignment
16476 to final field.
16477
16478 * jcf-reader.c (get_attribute): Test for wrong attribute length.
16479
16480 1997-10-27 Per Bothner <bothner@cygnus.com>
16481
16482 * verify.c (verify_jvm_instructions): When processing a handler,
16483 attempt to set the current_subr to the right value.
16484 (More complicated code combines Sep 17 and Oct 22 versions.)
16485
16486 1997-10-24 Per Bothner <bothner@cygnus.com>
16487
16488 * class.c (push_class): Figure out (guess) name of source file.
16489 * parse.c (set_source_filename): Set DECL_SOURCE_FILE of class decl.
16490 (give_name_to_class): Don't guess source name; use DECL_SOURCE_FILE.
16491 (parse_class_file): Change return type from int to void.
16492 Call debug_start_source_file/debug_end_source_file.
16493
16494 * expr.c (build_java_binop): Fix masking 2nd operand.
16495 * decl.c (init_decl_processing): Set sizetype first.
16496
16497 1997-10-22 Per Bothner <bothner@cygnus.com>
16498
16499 * verify.c (verify_jvm_instructions): Don't set current_subr to NULL.
16500 (Revert Sep 17 change.)
16501
16502 1997-10-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
16503
16504 * parse.c (process_zip_dir): Skip ZIP entries not bearing the
16505 .class extension in their name and fix thing so we don't process
16506 them parse_zip_file_entries().
16507 (parse_zip_file_entries): Cleaned unused local variables.
16508
16509 1997-10-20 Per Bothner <bothner@cygnus.com>
16510
16511 * expr.c (can_widen_reference_to): Allows equal array element types.
16512 (expand_byte_code): PRE_RET must expand OPERAND_VALUE (to get index).
16513 * jcf-dump.c (RET): Get (and print) index.
16514
16515 * verify.c (verify_jvm_instructions case OPCODE_anewarray):
16516 Promote element type to POINTER_TYPE.
16517
16518 1997-10-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
16519
16520 * jcf-reader.c, parse.c: (parse_zip_file, process_zip_dir,
16521 find_in_current_zip, jcf_figure_file_type): Moved from
16522 jcf-reader.c to parse.c.
16523 * zextract.c: (read_zip_archive): takes file_comment_length possible
16524 field into account.
16525
16526 1997-10-20 Per Bothner <bothner@cygnus.com>
16527
16528 * verify.c (verify_jvm_instructions): Var can also be promoted to int.
16529
16530 * verify.c (merge_types): Handle array types even better ...
16531
16532 1997-10-17 Per Bothner <bothner@cygnus.com>
16533
16534 * expr.c (java_stack_pop): Fix use of NULL_TREE for TYPE_SECOND.
16535
16536 * java-tree.h (PUSH_FIELD): Set DECL_ARTIFICIAL.
16537 * class.c (make_class_data): Don't build fields_decl if no fields.
16538 When building fields_decl, skip if DECL_ARTIFICIAL.
16539
16540 * expr.c (java_stack_swap): Update stack_type_map.
16541 * verify.c (merge_types): Handle array types better.
16542
16543 1997-10-15 Per Bothner <bothner@cygnus.com>
16544
16545 * class.c (add_field): Don't promote short integral fields to
16546 int any more (unless JAVA_PROMOTE_TO_INT), since Kaffe doesn't.
16547 * expr.c (push_value): Promote and convert short integral values.
16548
16549 * decl.c, java-tree.h (integer_two_node): New constant node.
16550 * verify.c (merge_types): Check for TYPE_RETURN_ADDR.
16551
16552 1997-10-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
16553
16554 * class.c (append_gpp_mangled_type): Use function argument
16555 unpromoted type to generate mangled name.
16556
16557 1997-10-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
16558
16559 * constants.c (build_constant_data_ref): Now uses current_class
16560 instead of main_class.
16561 (build_constants_constructor): Now uses current_class instead of
16562 main_class.
16563 * zipfile.h: (struct ZipFileCache): Now defined here. Declaration
16564 of the global variable SeepZipFiles done here.
16565 * zextract.c (read_zip_archive): extra_field optional field taken
16566 into account while computing the position of the class file in the
16567 archive.
16568 * verify.c (verify_jvm_instructions): Use current_jcf to search
16569 the constant pool.
16570 * parse.c (load_class): First search for the class to load in the
16571 current zip file. Saves current_jcf (restored before returning
16572 from that function). Don't call JCF_FINISH in the class was found
16573 in the current ZIP file.
16574 (jcf_parse): If the class was found in the current ZIP file, save
16575 its tree_constant_pool (for later reuse).
16576 (parse_class_file): New function. Process each method defined in
16577 the current class and record the class as to be later registered.
16578 (yyparse): Rewritten. Figure the type of the current file and switch
16579 accordingly.
16580 * lang.c: New global variable current_jcf.
16581 (lang_init): Removed compiling_from_source test (done later, in
16582 yyparse). Removed call the jcf_parse ().
16583 * jcf.h (JCF_ZIP, JCF_CLASS, JCF_SOURCE): New defined values.
16584 (typedef struct JCF): New fields seen_in_zip (to mark a class found
16585 in the current ZIP file) and zip_offset (offset to the class data in
16586 the current zip file).
16587 * jcf-reader.c: zipfile.h included.
16588 localToFile: New ZipFileCache static global variable
16589 (parse_zip_file_entries): New function. Browse the current ZIP
16590 file directory and process each class found.
16591 (process_zip_dir): New function. Register each class found in the
16592 ZIP file directory. The class aren't parsed but a valid JCF is
16593 link to each of them.
16594 (find_in_current_zip): New function. Search for a class in the
16595 current ZIP file directory. If found, prepare the class so that it
16596 can be loaded.
16597 (jcf_figure_file_type): New function. Examine the file structure
16598 to figure a class file, a ZIP file. If none of these categories are
16599 matched, a source file is assumed.
16600 * jcf-io.c: Removed definition of ZipFileCache (moved in zipfile.h).
16601 SeenZipFile: New global variable.
16602 (open_in_zip): Use zipmember's length to accelerate the search for
16603 a member. If zipmember was NULL and zip file successfully read,
16604 return 0.
16605 * java-tree.h: New global variable current_jcf declared. Added
16606 declaration for current_constant_pool_tags, current_constant_pool_data,
16607 current_constant_pool_length, current_constant_pool_data_ref.
16608 (struct lang_type): Augmented with two fields. struct JCF *jcf (to
16609 store the JCF of classes seen in a zip file) and tree *constant_pool
16610 (to save a loaded class constant pool). current_class declared here.
16611 * expr.c (expand_invoke): Use current_jcf instead of main_jcf to
16612 retrieve method_ref_constant.
16613 (PUSHC): java_push_constant_from_pool now uses current_jcf.
16614 (OBJECT): get_class_constant now uses current_jcf.
16615 (ARRAY_NEW_PTR): get_class_constant now uses current_jcf.
16616 (ARRAY_NEW_MULTI): get_class_constant now uses current_jcf.
16617 (expand_invoke): Now uses current_class instead of main_class
16618 (build_class_init): Now uses current_class instead of main_class
16619 * class.c: New static global variable registered_class.
16620 (register_class): New function.
16621 (emit_register_class): Modified to use registered_class instead of
16622 main_class
16623 (is_compiled_class): Now take into account class seen in the archive.
16624
16625 1997-10-06 Per Bothner <bothner@cygnus.com>
16626
16627 * except.h: Renamed to: java-except.h.
16628 * parse.c, except.c, expr.c, verify.c: Update #include accordingly.
16629 * except.c: Add semi-working (commented out) implementation.
16630
16631 * expr.c (expand_iinc): Add needed flush_quick_stack.
16632 * parse.c (set_source_filename): New function.
16633 (give_name_to_class): Set input_filename from package.classname.java.
16634
16635 * jcf-io.c (find_class): Don't look first in ".".
16636
16637 1997-10-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
16638
16639 * zextract.c (read_zip_archive): Now takes into account the
16640 extra_field field.
16641 * expr.c (can_widen_reference_to): Modified to handle sub-interfaces.
16642
16643 1997-09-20 Per Bothner <bothner@cygnus.com>
16644
16645 * constants.c, java-tree.h (build_internal_class_name): New function.
16646 (alloc_class_constant): Re-implement using build_internal_class_name.
16647 * class.c (make_class_data): Likewise.
16648 * class.c (hashUtf8String): Make hash algorithm match String.hashCode.
16649
16650 1997-09-17 Per Bothner <bothner@cygnus.com>
16651
16652 * verify.c (verify_jvm_instructions): Temporarily set current_subr
16653 to NULL before pushing an exception handler target.
16654
16655 * expr.c (flush_quick_stack): Save from low stack indexes to high.
16656 (java_stack_swap, java_stack_dup): Re-write to be safe from
16657 clobbering registers.
16658 (build_class_init): New function.
16659
16660 1997-09-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
16661
16662 * typeck.c (build_java_array_type): Temporary use
16663 permanent_obstack to create the array 'length' field.
16664 * expr.c (lookup_label): Temporay use permanent_obstack to create
16665 label if not found.
16666 * class.c (push_super_field): Tempory use permanent_obstack.
16667
16668 1997-09-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
16669
16670 * typeck.c (type_for_mode): Now handles double_type_node and
16671 float_type_node.
16672 * verify.c (verify_jvm_instructions): The instruction following
16673 the wide bytecode is checked. OPCODE_ret added to the list of
16674 wide.
16675
16676 1997-09-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
16677
16678 * class.c (make_class): Temporary use permanent_obstack. Set the
16679 class CLASS_P field to 1.
16680 (push_class): Temporary use permanent_obstack.
16681 (set_super_info): Temporary use permanent_obstack.
16682 (add_method): Temporary use permanent_obstack, set
16683 METHOD_TRANSIENT().
16684 (add_field): Temporary use permanent_obstack. Sets
16685 FIELD_VOLATILE() and FIELD_TRANSIENT().
16686 (build_class_ref): Temporary use permanent_obstack if the class
16687 isn't compiled.
16688 (build_static_field_ref): Temporary use permanent_obstack when
16689 creating field's rtl.
16690 (get_access_flags_from_decl): Handle ACC_VOLATILE, ACC_TRANSIENT,
16691 ACC_SYNCHRONIZED, ACC_NATIVE, ACC_ABSTRACT flags for methods
16692 and fields. Function finalized, as far as flag handling.
16693 (push_class_static_dummy_field): Temporary use permanent_obstack.
16694 (emit_register_class): Force generation of class registration at
16695 -O3 or deeper.
16696 * decl.c (end_java_method): Call permanent_allocation() before
16697 returning.
16698 * expr.c (can_widen_reference_to): Added comment to interface
16699 handling, fixed typo.
16700 (lookup_field): Now uses CLASS_P() to correct FIXME
16701 (expand_invoke): Verification on public && !static &&
16702 !abstract moved into soft_lookupinterfacemethod (kaffe).
16703 Use Object class dtable if objectref is an array when expanding
16704 invokeinterface.
16705 (java_push_constant_from_pool): Temporary use permanent_obstack
16706 for CONSTANT_string
16707 * parse.c (get_ref_constant): Temporary use permanent_obstack to
16708 create constant references.
16709 (get_constant): Temporary use permanent_obstack to create constant.
16710 (load_class): Temporary use permanent_obstack to load class.
16711 (jcf_parse): Temporary use permanent_obstack to perform class
16712 layout.
16713 * typeck.c: (parse_signature_string): Temporary use permanent_obstack.
16714 (build_java_signature): Temporary use permanent_obstack.
16715 * verify.c: (verify_jvm_instruction): removed unnecessary verification
16716 on ACC_SUPER flag.
16717 * java-tree.h (METHOD_NATIVE, METHOD_TRANSIENT): Defined.
16718 (FIELD_VOLATILE, FIELD_TRANSIENT): Defined.
16719 (CLASS_P): Defined
16720
16721 1997-09-11 Per Bothner <bothner@cygnus.com>
16722
16723 * class.c (append_gpp_mangled_type): Fix typo.
16724 (emit_register_class): Use main_class to get class object, rather
16725 than looking for no-longer-existing static decl starting with _CL.
16726 * typeck.c (parse_signature_type): Promote array element type
16727 if it is a RECORD_TYPE.
16728
16729 1997-09-10 Per Bothner <bothner@cygnus.com>
16730
16731 * class.c (push_class_static_dummy_field): New function.
16732 (mangle_static_field): New. Do G++-style mangling of static fields.
16733 (layout_class): Mandle static fields here, not in add_field.
16734 (build_class_ref): The class object is now a dummy static field.
16735 * decl.c (find_local_variable): Look for best, instead of first match.
16736 * expr.c (push_type): Always promote_type, not just for RECORD_TYPE.
16737 (build_java_athrow): Don't check here if exception is Throwable.
16738 * java-tree.h (TYPE_UNSET): Renamed to TYPE_UNKNOWN.
16739 (TYPE_USED): Removed. No longer used ...
16740 * parse.c (jcf_parse): Call push_class_static_dummy_field.
16741 * verify.c (push_pending_label): New function.
16742 (push_pending_block): Renamed to check_pending_block.
16743 (merge_types): Remove unneeded suuport for TYPE_UNUSED.
16744 (verify_jvm_instructions): Only reset prev_eh_ranges (to force
16745 re-checking possible handlers) after a store (less wasted work).
16746 Check for null handler (finally) before calling add_handler.
16747 Various changes to (finally?) correctly handle try/finally.
16748
16749 1997-09-09 Brendan Kehoe <brendan@lisa.cygnus.com>
16750
16751 * class.c: Include stdio.h.
16752
16753 1997-09-04 Per Bothner <bothner@cygnus.com>
16754
16755 * expr.c (expand_invoke): Use COMPOUND_EXPR (and TREE_SIDE_EFFECTS)
16756 to make sure class is initialized before static/special invoke.
16757
16758 * verify.c (verify_jvm_instructions): On a store instruction,
16759 call find_local_variable to force pre-allocation of decl and rtx.
16760 * decl.c (push_jvm_slot): Set DECL_REGISTER on stack slots.
16761
16762 1997-09-03 Per Bothner <bothner@cygnus.com>
16763
16764 * class.c (build_class_ref): Strip off "promoted_" if need be.
16765 (make_field_value): Call build_java_signature when needed.
16766 (layout_class): Don't make_function_rtl if METHOD_ABSTRACT.
16767 * expr.c (build_java_athrow): Don't push_value of exception.
16768 (build_java_binop): Implement COMPARE_L_EXPR and COMPARE_G_EXPR to
16769 match specification of [fd]cmp[lg] for NaNs.
16770 (expand_byte_code): Add support for exception handler ranges.
16771 * except.c: Add skeleton for EH code-generation.
16772 * verify.c (merge_types): Treat all promoted integral types as equal.
16773 * constants.c (build_constants_constructor): To force creation of
16774 current_constant_pool_data_ref, call build_constant_data_ref.
16775
16776 * javaop.def (lload): Fix typo.
16777 * jcf-dump.c (main): Clear filename to prevent possibly-bad free.
16778
16779 1997-09-02 Brendan Kehoe <brendan@lisa.cygnus.com>
16780
16781 * parse.c: Don't include function.h.
16782
16783 1997-08-27 Per Bothner <bothner@cygnus.com>
16784
16785 * except.[ch]: New files.
16786 * Makefile.in (JAVA_OBJS): Add except.o
16787 * expr.c: Temporary warning about unimplemented exceptions.
16788 * verify.c: Verify exception handlers.
16789
16790 * jcf-dump.c (disassemble_method): Print exception table.
16791
16792 1997-08-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
16793
16794 * expr.c (verify_jvm_instructions): Started a thorough
16795 verification of invoke* bytecodes.
16796 (expand_byte_code): flush quick stack if PC is the target of a
16797 branch. and undef RET (conflicting with config/i386/i386.h).
16798 (expand_java_arrayload): Fixed bogus cast, when Boolean type is
16799 used.
16800 (expand_invoke): Now handles invokeinterface and do more
16801 verification according to the bytecode.
16802 (lookup_field): Don't try to load the class if processing
16803 dtable_type.
16804 (can_widen_reference_to): Now handles interfaces.
16805 * decl.c (init_decl_processing): New global variable
16806 soft_lookupinterfacemethod_node, declared in java-tree.h.
16807 Call set_super_info on string_type_node.
16808 * java-tree.h (CLASS_INTERFACE, CLASS_ABSTRACT, CLASS_SUPER): Now
16809 defined.
16810 * class.c (set_super_info): Fills the CLASS_* flags according to
16811 access_flags.
16812 (get_access_flags_from_decl): Handles all class flags.
16813
16814 1997-08-26 Per Bothner <bothner@cygnus.com>
16815
16816 * class.c (add_method): Zero out newly-allocated DECL_LANG_SPECIFIC.
16817 * parse.c (yyparse): Check for abstract method, and missing code.
16818 * expr.c (expand_byte_code): Change interface.
16819 * lang.c (put_decl_node): Print promoted types prettier.
16820 * verify.c (verify_jvm_instruction): Change interface.
16821 Partial support for scanning exception table.
16822 For load instructions, handle promoted integral types.
16823
16824 1997-08-21 Per Bothner <bothner@cygnus.com>
16825
16826 * verify.c: New file, with contents moved from expr.c.
16827 * expr.c: Bunch of stuff (mostly verification) moved to verify.c.
16828 * typeck.c (is_array_type_p): Moved here from expr.c.
16829 * java-tree.h: Add some now-needed function declarations.
16830 * Makefile.in (JAVA_OBJS): Added verify.o.
16831
16832 1997-08-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
16833
16834 * class.c (add_method): Sets the METHOD_SYNCHRONIZED flag, sets the
16835 METHOD_ABSTRACT flag.
16836
16837 * java-tree.h (METHOD_SYNCHRONIZED): Set to DECL_LANG_FLAG_4.
16838 (IS_METHOD_CLINIT_P, IS_METHOD_INIT_P): New macros.
16839 (METHOD_ABSTRACT): Set to DECL_LANG_FLAG_5
16840
16841 * decl.c (soft_monitorenter_node, soft_monitorexit_node): New global
16842 variables.
16843 (start_java_method): Hook for SYNCHRONIZED methods.
16844
16845 * expr.c (build_java_jsr, build_java_ret): New functions
16846 (JSR,PRE): New macros
16847 (PRE_TABLE_SWITCH, PRE_LOOKUP_SWITCH): Fixed and secured.
16848 (verify_jvm_instructions): tableswitch, lookupswitch,
16849 monitorenter, monitorexit, goto_w: verified.
16850 (LOOKUP_SWITCH, TABLE_SWITCH): Fixed generation of default: label
16851 (build_java_monitor): New function.
16852 (MONITOR_OPERATION): Modified to call build_java_monitor()
16853 (verify_jvm_instructions): Started a thorough verification of
16854 invoke* bytecodes.
16855
16856 1997-08-19 Per Bothner <bothner@cygnus.com>
16857
16858 Support verification of jsr/ret subroutines (used for try/finally).
16859 * decl.c (return_address_type_node): New type node.
16860 * java-tree.h (LABEL_RETURN_LABEL, LABEL_RETURN_TYPE_STATE,
16861 RETURN_MAP_ADJUSTED, LABEL_RETURN_LABELS, LABEL_IN_SUBR,
16862 LABEL_SUBR_START, LABEL_SUBR_CONTEXT, BCODE_VERIFIED): New macros.
16863 (TYPE_UNSET, TYPE_SECOND, TYPE_NULL, TYPE_RETURN_ADDR, TYPE_UNUSED,
16864 TYPE_USED): New macros for special types in type_map.
16865
16866 * java-tree.h (BCODE_JUMP_TARGET): Renamed to BCODE_TARGET.
16867 (BCODE_BACKWARDS_TARGET, CODE_FORWARDS_TARGET): Replaced by
16868 BCODE_JUMP_TARGET.
16869 * expr.c (expand_byte_code): Fix logic to warn of unused instructions.
16870
16871 * expr.c (can_widen_reference_to): New function.
16872 (pop_type): Use it.
16873 (merge_type_state): Support handling start of subroutine.
16874 (push_pending_block): Return char* error message, instead of calling
16875 fatal on an error. Also handle subroutines.
16876 (verify_jvm_instructions): Handle errors from push_poending_block.
16877 Support jsr and ret instructions.
16878
16879 1997-08-19 Per Bothner <bothner@cygnus.com>
16880
16881 * jcf-io.c (find_classfile): Fix thinko.
16882 * jcf-dump.c: Add CONVERT2 (to match changed javaop.def).
16883
16884 1997-08-12 Jason Merrill <jason@yorick.cygnus.com>
16885
16886 * Makefile.in (BISON): Remove.
16887
16888 1997-08-07 Per Bothner <bothner@cygnus.com>
16889
16890 * Makefile.in: Convert to autoconf.
16891 * config-lang.in (outputs): Added java/Makefile.
16892
16893 * Make-lang.in, lang-specs.h, config-lang.in, Makefile.in:
16894 Rename cc1java to jc1.
16895
16896 * lang.c (init_parse, finihs_parse): New functions #ifdef USE_CPPLIB.
16897 * Makefile.in (INTERNAL_CFLAGS): Add @extra_c_flags.
16898
16899 * class.c (class_depth): Do load_class if needed.
16900
16901 Mostly better verification.
16902 * decl.c (pushdecl): Set TYPE_STUB_DECL for a type.
16903 (init_decl_processing): Change return type of soft_checkcast.
16904 * expr.c (expand_java_CHECKCAST): Do push_value of the "casted" value.
16905 * lang.c (put_decl_string, put_decl_node, lang_printable_name,
16906 lang_print_error): New functions.
16907 (lang_init): Set global hook print_error_function to lang_print_error.
16908 * expr.c: In the type_map ptr_type_node is only used for null now.
16909 (pop_type, merge_types): Hence ptr_type_node matches any reference.
16910 (merge_types): Dererence pointer to record types before comparing.
16911 (decode_newarray_type, merge_types): On error just return NULL.
16912 (build_java_binop): Add preliminary implementation (with warning)
16913 for COMPARE_L_EXPR and COMPARE_G_EXPR (i.e. [fd]cmp[lg]).
16914 (lookup_label): Set DECL_IGNORED_P (for dwarf2out).
16915 (expand_compare, expand_java_goto, expand_java_call): Don't
16916 push_pending_block, since that only makes sense when verifying.
16917 (merge_type_state): Different return codes.
16918 (push_pending_block): A block may need to be verified more than once.
16919 (expand_byte_code): Warn about unused code at code generation time.
16920 (verify_jvm_instruction): Changed logic, since code may need to be
16921 re-verified if type-state has changed. Also, better error handling.
16922 Implement acmpeq, acmpne, pop, pop2, swap, checkcast, instanceof.
16923 Improve newarray, anewarray, ?aload, athrow,
16924 * java-tree.h (LABEL_CHANGED): New macro.
16925
16926 1997-08-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
16927
16928 * decl.c (soft_athrow_node): New global variable initialized.
16929 * javaop.def (i2b, i2c, i2s): Invoke CONVERT2
16930 * typeck.c (convert): Added support for REAL_TYPE.
16931 (convert_to_char): New function.
16932 (convert): Handle CHAR_TYPE.
16933 * expr.c (expand_java_arraystore): Modified because CHAR/BYTE/BOOLEAN/
16934 SHORT now expect INT but store as CHAR/BYTE/BOOLEAN/SHORT.
16935 (expand_java_arrayload): CHAR/BYTE/BOOLEAN/SHORT now convert result to
16936 promoted type.
16937 (verify_jvm_instructions): Added break a the end of bogus unop: label.
16938 (OPCODE_<b|c|s>astore): Pop an int operand from the type stack
16939 (OPCODE_<b|c|s>astore): Push the promoted type onto the stack
16940 (process_jvm_instruction): New macro CONVERT2 for i2c, i2s and i2b.
16941 (JAVA_ARRAY_LENGTH_OFFSET, JAVA_ARRAY_DATA_OFFSET): Modified
16942 to Use The Right Things.
16943 (pop_type): Accept CHAR/BYTE/BOOLEAN/SHORT promoted type as
16944 compatible with INT. BOOLEAN is made equivalent to BYTE.
16945 (OPCODE_athrow, OPCODE_aconst_null, OPCODE_ifnull,
16946 OPCODE_ifnonnull): Now supported.
16947 (build_java_athrow): New function.
16948
16949 1997-08-04 Per Bothner <bothner@cygnus.com>
16950
16951 Rename method name <init> to match G++ (and fix mangling).
16952 * class.c (layout_class): Replace method name of <init> by class name.
16953 (make_method_value): Do inverse renaming of constructor from <init>.
16954 * java-tree.h (DECL_CONSTRUCTOR_P): New macro.
16955 * typeck.c (lookup_java_constructor): New function.
16956 * expr.c (expand_invoke): If method_name is <init>, call
16957 lookup_java_constructor to find constructor.
16958
16959 * parse.c (get_constant): Handle CONSTANT_Float and CONSTANT_Double.
16960
16961 1997-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
16962
16963 * parse.c (get_class_constant): Modified to handle array "classes"
16964 * typeck.c (set_local_type): Bug fixed when filling type_map[] with
16965 wide type.
16966 (convert): Modified to handle real type.
16967 * java-tree.h (soft_badarrayindex_node, soft_anewarray_node,
16968 soft_multianewarray, soft_newarray_node, soft_throw_node): New global
16969 variables declared.
16970 * decl.c (soft_badarrayindex_node, soft_anewarray_node,
16971 soft_multianewarray, soft_newarray_node, soft_throw_node): New
16972 global variables initialized.
16973 (find_local_variable): Handles the case of a pointer
16974 (end_java_method): Restore the use of one more scope
16975 * expr.c (build_java_arraynull_check, build_java_arrayaccess,
16976 build_java_array_length_access, expand_java_arrayload,
16977 expand_java_arraystore, expand_java_array_length,
16978 expand_java_multianewarray, expand_java_anewarray,
16979 build_java_check_indexed_type, is_array_type_p,
16980 build_java_throw_out_of_bound_exception): New functions.
16981 (STORE_INTERNAL): Now forces type of the decl to be type of the value.
16982 (OPCODE_arraylength, OPCODE_newarray, OPCODE_<t>astore,
16983 OPCODE_<t>aload): Implemented code for verification.
16984 (ARRAY_STORE, ARRAY_LOAD, ARRAY_LENGTH, ARRAY_NEW_PTR, ARRAY_NEW_NUM
16985 ARRAY_NEW_MULTI): Macro defined.
16986 (CONVERT): Modified to invoke convert().
16987 (case OPCODE_aload2): Fixed index typo from 2 to 1.
16988
16989 1997-07-31 Per Bothner <bothner@cygnus.com>
16990
16991 * class.c (push_class): Set DECL_ARTIFICIAL (for dbxout.c).
16992 (build_class_ref, is_compiled_class): Handle pointer-to-record types.
16993 (make_class_data): Field name needs '/' as package prefix.
16994 * expr.c (type_stack_dup, java_stack_dup): Fix fencepost errors.
16995
16996 1997-07-25 Per Bothner <bothner@cygnus.com>
16997
16998 Implement debug information for local variables.
16999 * java-tree.h (DECL_CODE_LENGTH, DECL_ARG_SLOT_COUNT,
17000 DECL_LOCAL_SLOT_NUMBER, DECL_LOCAL_START_PC, DECL_LOCAL_END_PC,
17001 DECL_LOCAL_SLOT_CHAIN): New macros.
17002 (struct lang_decl_var): New type.
17003 * parse.c (give_name_to_locals): Move to decl.c.
17004 * decl.c (give_name_to_locals): Re-written to Do The Right Thing.
17005 (start_java_method): Re-write parameter handling.
17006 (pending_local_decls): New global variable.
17007 (push_jvm_slot, maybe_pushlevels, maybe_poplevels): New functions.
17008 (find_local_variable): Accept pc so we can skips decls not in range.
17009 (struct binding_level): Add end_pc field.
17010 * expr.c (expand_byte_code): Call maybe_pushlevels and maybe_poplevels.
17011 (various): Change so current pc gets passed to find_local_variable.
17012
17013 * decl.c (init_decl_processing): Re-arrange fields in
17014 class_type_node and and method_type_node to match kaffe 0.9.1.
17015 * class.c (make_method_value, make_class_data): Update
17016 initializations to match.
17017
17018 1997-07-16 Per Bothner <bothner@cygnus.com>
17019
17020 * class.c (unicode_mangling_length, emit_unicode_mangled_name,
17021 append_gpp_mangled_name, append_gpp_mangled_type): New functions.
17022 (push_super_field): New function.
17023 (make_class_data): Handle inheritance of class static initializer.
17024 (layout_class): New name mangling.
17025 * constants.c (build_constant_data_ref): Init type of data array
17026 to a one-element array.
17027 (build_constants_constructor): Set DECL_SIZE from complete array type.
17028 * decl.c: Rename class_type, object_type etc to class_type_node,
17029 object_type_node etc. Make former inherit from latter.
17030 * expr.c (expand_invoke): Add cast of function address.
17031 * java-tree.h (TYPE_ARRAY_ELEMENT, PUSH_SUPER_VALUE): New.
17032 * parse.c (yyparse): Don't call layout_class here.
17033 * typeck.c (build_java_array_type): Set TYPE_ARRAY_ELEMENT.
17034
17035 1997-06-14 Per Bothner <bothner@cygnus.com>
17036
17037 * decl.c, class.c: Update method type to match latest Kaffe snapshot.
17038 * constants.c (lookup_name_constant): Renamed to alloc_name_constant.
17039 (alloc_class_constant): New.
17040 * expr.c (expand_invoke): Make sure method's class is initialized.
17041 * class.c (interits_from_p, emit_register_class): New functions.
17042 * parse.c (yyparse): Call emit_register_class.
17043
17044 1997-06-09 Per Bothner <bothner@cygnus.com>
17045
17046 * constants.c: New file, to handle constant pool.
17047 * Makefile.in (JAVA_OBJS): Add constants.o.
17048 * decl.c (init_decl_processing): Update, fix, finish various structs.
17049 (pushdecl_top_level): New.
17050 * parse.c (layout_class): Moved to class.c.
17051 * expr.c (java_push_constant_from_pool): New function.
17052 * class.c (build_class_ref): Make work fully
17053 (make_class_data): Emit super-class, constant pool, interface vector.
17054
17055 1997-06-03 Per Bothner <bothner@cygnus.com>
17056
17057 java-tree.h (DECL_SIGNATURE, BCODE_EMITTED): Remove.
17058 (LABEL_VERIFIED, BCODE_EXCEPTION_TARGET, TYPE_ARRAY_P): New.
17059 * class.c (class_depth): New function.
17060 (lookup_named_class): Replaced by new function lookup_class.
17061 * decl.c (object_type_node, string_type_node): New.
17062 Remove various types that we no longer need.
17063 * expr.c (verify_jvm_instructions): New separate verifier pass.
17064 (push_type, pop_type): New functions for verifier.
17065 (type_stack_dup, pop_argument_types, merge_types): Likewise.
17066 (expand_byte_code): Simplify, since we assume already verified.
17067 (expand_invoke): Now mostly works.
17068 * javaop.def: Rename ldc1->ldc, ldc2->ldc_w, ldc2w->ldc2_w.
17069 * lang.c (main_class): Move to parse.c. Don't make_class yet.
17070 * parse.c: Wait to allocate class object until we know its name.
17071 (layout_class): Calculate DECL_VINDEX for each virtual method.
17072 * typeck.c (get_array_type): Rename to ...
17073 (build_java_array_type): ... and provide working implementation.
17074 (build_java_signature): New function - build Java signature of type.
17075 (set_java_signature): New function - cache signature with type.
17076 (lookup_java_method): New function.
17077
17078 1997-05-06 Per Bothner <bothner@deneb.cygnus.com>
17079
17080 * class.c (ident_subst): Take extra SUFFIX parameter.
17081 (add_field): Set DECL_ASSEMBLER_NAME of static fields; more.
17082 (set_constant_value, build_static_field_ref, is_compiled_class): New.
17083 (build_class_ref): Actually implement.
17084 * decl.c, java-tree.h: Renamed some xx_type to xx_type_node.
17085 * decl.c (builtin_function): New.
17086 (init_decl_processing): Update for current Kaffe. Declare some
17087 builtin Kaffe functions.
17088 * expr.c (build_address_of): New.
17089 (expand_java_NEW, expand_java_INSTANCEOF, expand_java_CHECKCAST):
17090 Renamed (from expand_java_new etc), and added working implementations.
17091 (build_field_ref): Now also handle static fields.
17092 (expand_invoke): Implement invokestatic, and start implement rest.
17093 * java-opcodes.h: Use javaop.def to avoid duplicated list.
17094 * javaop.def: Rename invokevirt -> invokevirtual.
17095 * lang.c (use_handles): Removed.
17096 * parse.c: Add support for ConstantValue attribute.
17097 Handle nested loading of a class. (JPOOL_UTF): New.
17098
17099 1997-03-11 Per Bothner <bothner@deneb.cygnus.com>
17100
17101 * expr.c (expand_java_pushc): Support #ifndef REAL_ARITHMETIC case.
17102
17103 1997-02-27 Per Bothner <bothner@deneb.cygnus.com>
17104
17105 * Make-lang.in (java.install-man): New empty rule.
17106 * typeck.c (set_local_type): New function.
17107 * expr.c (STORE_INTERNAL): Call find_local_variable,
17108 not find_stack_slot. Call set_local_type.
17109
17110 1997-02-12 Per Bothner <bothner@kalessin.cygnus.com>
17111
17112 * java-tree.h: Various new macros for constructing RECORD_TYPEs,
17113 and building RECORD_TYPE CONSTRUCTORs.
17114 Also support for creating Utf8Const objects from an INDETIFIER_NODE.
17115
17116 * lang.c (use_handles): Change the default to 0.
17117 * decl.c: Define and build class_type, field_type, utf8const_type.
17118 * class.c (make_class_data, make_field_value,
17119 get_access_flags_from_decl, build_class_ref, build_utf8_ref,
17120 hashUtf8String, strLengthUtf8, mangled_classname:
17121 Functions to build reflective data structures.
17122 * parse.c (yyparse): Call make_class_data.
17123
17124 * jcf-io.c (open_class, find_classfile): New functions.
17125 * jcf-dump.c: Support reading classfile from explicitly-named
17126 class file (without CLASSPATH searching).
17127
17128 1996-10-24 Per Bothner <bothner@deneb.cygnus.com>
17129
17130 * jcf-reader.c: Add parameter list to HANDLE_CONSTANT_Utf8.
17131 * parse.c (JPOOL_UTF_LENGTH, JPOOL_UTF_DATA, HANDLE_CONSTANT_Utf8):
17132 Override jcf-reader macros so CONSTANT_Utf8 becomes tree node here.
17133 (get_constant): Now trivial for CONSTANT_Utf8.
17134
17135 * jcf.h: Make NEW_CPOOL the default.
17136 * jcf.h, jcf-reader.c, parse.c: Remove support for !NEW_CPOOL.
17137
17138 1996-10-24 Per Bothner <bothner@deneb.cygnus.com>
17139
17140 New directory.