re PR java/17380 (Bad diagnostic and ICE on valid code...)
[gcc.git] / gcc / java / ChangeLog
1 2004-09-23 Tom Tromey <tromey@redhat.com>
2
3 PR java/17380:
4 * parse.y (not_accessible_p): Allow access to protected members
5 even when class is not static.
6
7 2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
8
9 * Make-lang.in: Revert the gcc-none.o change.
10
11 2004-09-22 Nathan Sidwell <nathan@codesourcery.com>
12
13 * parse.y (patch_anonymous_class): VEC_space returns true if there
14 is space.
15
16 2004-09-21 Matt Austern <austern@apple.com>
17
18 Fix bootstrap.
19 * gjavah.c (free_method_name_list): Fix function definition so
20 it's a proper C prototype.
21
22 2004-09-21 Tom Tromey <tromey@redhat.com>
23
24 PR java/17575:
25 * gjavah.c (free_method_name_list): New method.
26 (main): Call it.
27
28 2004-09-17 Jeffrey D. Oldham <oldham@codesourcery.com>
29 Zack Weinberg <zack@codesourcery.com>
30
31 * java-tree.def: Use tree_code_class enumeration constants
32 instead of code letters.
33 * java-gimplify.c, jcf-write.c, lang.c, parse.y: Update for
34 new tree-class enumeration constants.
35
36 2004-09-13 Tom Tromey <tromey@redhat.com>
37
38 PR java/17216:
39 * class.c (layout_class_method): Put synthetic methods into the
40 vtable.
41
42 2004-09-11 Andrew Pinski <apinski@apple.com>
43
44 * Make-lang.in (java/ggc-none.c): Change dependency
45 for ggc.h into $(GGC_H).
46
47 2004-09-11 Mohan Embar <gnustuff@thisiscool.com>
48
49 * Make-lang.in (java/win32-host.o): Add dependency on
50 coretypes.h.
51 * win32-host.c: Add includes for coretypes.h, jcf.h
52
53 2004-09-11 Mohan Embar <gnustuff@thisiscool.com>
54
55 * Make-lang.in (GCJH_OBJS): Change dependency from
56 ggc-none.o to java/ggc-none.o
57 (JCFDUMP_OBJS): Likewise.
58 (java/ggc-none.o): New target.
59
60 2004-08-25 Nathan Sidwell <nathan@codesourcery.com>
61
62 * boehm.c (get_boehm_type_descriptor): Adjust build_int_cst calls.
63 * class.c (build_utf8_ref, build_static_field_ref,
64 make_field_value, make_method_value, get_dispatch_table,
65 make_class_data, emit_symbol_table, emit_catch_table): Likewise.
66 * constants.c (get_tag_node, build_ref_from_constant_pool,
67 build_constants_constructor): Likewise.
68 * decl.c (java_init_decl_processing): Likewise.
69 * expr.c (build_java_array_length_access, build_newarray,
70 expand_java_multianewarray, expand_java_pushc, expand_iinc,
71 build_java_binop, build_field_ref, expand_java_add_case,
72 expand_java_call, build_known_method_ref, build_invokevirtual,
73 build_invokeinterface, build_jni_stub): Likewise.
74 * java-gimplify.c (java_gimplify_new_array_init): Likewise.
75 * jcf-parse.c (get_constant): Likewise.
76 * lex.c (do_java_lex): Likewise.
77 * parse.y (patch_binop, patch_unaryop, patch_cast,
78 build_newarray_node, patch_newarray): Likewise.
79 * resource.c (compile_resource_data): Likewise.
80 * typeck.c (build_prim_array_type): Likewise.
81
82 2004-08-24 Nathan Sidwell <nathan@codesourcery.com>
83
84 * decl.c (java_init_decl_processing): Adjust
85 initialize_sizetypes call.
86
87 2004-08-23 Nathan Sidwell <nathan@codesourcery.com>
88
89 * jv-scan.c (fancy_abort): Add.
90
91 2004-08-20 Nathan Sidwell <nathan@codesourcery.com>
92
93 * expr.c (build_java_arrayaccess): Use convert to change
94 len's type.
95
96 2004-08-19 Bryce McKinlay <mckinlay@redhat.com>
97
98 * class.c (make_local_function_alias): Allocate extra space for 'L'
99 in name buffer. Reported by Thomas Neumann.
100
101 2004-08-19 Nathan Sidwell <nathan@codesourcery.com>
102
103 * parse.h (JAVA_RADIX10_FLAG): Rename to ...
104 (JAVA_NOT_RADIX10_FLAG): ... here. Invert meaning.
105 * lex.c (do_java_lex): Adjust.
106 (error_if_numeric_overflow): Likewise.
107
108 2004-08-18 Andrew Pinski <apinski@apple.com>
109
110 * class.c (make_local_function_alias): Only make a new decl if we
111 support alias attribute on all decls.
112
113 2004-08-18 Bryce McKinlay <mckinlay@redhat.com>
114
115 * class.c (make_local_function_alias): New function. Create local
116 alias for public method DECL.
117 (make_method_value): Use make_local_function_alias.
118 * parse.y (craft_constructor): Don't special-case anonymous classes.
119 Always set ctor_name to init_identifier_node.
120 (lookup_method_invoke): Call layout_class_method when creating
121 anonymous class constructor.
122
123 2004-08-18 Richard Henderson <rth@redhat.com>
124
125 * java-gimplify.c (java_gimplify_expr): Move '2' handling into
126 default case. Treat '<' similarly. Update for
127 is_gimple_formal_tmp_var name change.
128
129 2004-08-17 Andrew Haley <aph@redhat.com>
130
131 * lang.c (lang_printable_name): Obey verbose flag.
132 * parse.y (constructor_circularity_msg): Set VERBOSE arg for
133 lang_printable_name().
134 (verify_constructor_circularity, get_printable_method_name,
135 check_abstract_method_definitions, java_check_regular_methods,
136 java_check_abstract_methods, check_inner_class_access,
137 fix_constructors, patch_method_invocation, patch_return):
138 Likewise.
139 * expr.c (pop_type_0): Likewise.
140
141 * java-tree.h (lang_printable_name_wls): Delete.
142
143 2004-08-16 Tom Tromey <tromey@redhat.com>
144
145 PR java/8473:
146 * parse.y (primary): Changed for initialized and uninitialized
147 array creations.
148 (array_access): Handle array_creation_initialized.
149 (array_creation_expression): Split into
150 array_creation_initialized and array_creation_uninitialized.
151
152 2004-08-16 Andrew Haley <aph@redhat.com>
153
154 * jcf-write.c (find_constant_index): Canonicalize NaNs when
155 generating bytecode.
156
157 2004-08-16 Elliot Lee <sopwith@redhat.com>
158
159 PR java/9677
160 * jcf-parse.c (java_parse_file): Handle filenames with embedded
161 spaces, and quoted filelists.
162
163 2004-08-15 Nathan Sidwell <nathan@codesourcery.com>
164
165 * boehm.c (get_boehm_type_descriptor): Use build_int_cst.
166 * class.c (build_utf8_ref, build_static_field_ref,
167 make_field_value, make_method_value, get_dispatch_table,
168 make_class_data, emit_symbol_table, emit_catch_table): Likewise.
169 * constants.c (get_tag_node, build_ref_from_constant_pool,
170 build_constants_constructor): Likewise.
171 * decl.c (java_init_decl_processing): Likewise.
172 * expr.c (build_java_array_length_access, build_newarray,
173 expand_java_multianewarray, expand_java_pushc, expand_iinc,
174 build_java_binop, build_field_ref, expand_java_add_case,
175 expand_java_call, build_known_method_ref, build_invokevirtual,
176 build_invokeinterface, build_jni_stub): Likewise.
177 * java-gimplify.c (java_gimplify_new_array_init): Likewise.
178 * jcf-parse.c (get_constant): Likewise.
179 * lex.c (do_java_lex): Likewise.
180 * parse.y (patch_binop, patch_unaryop, patch_cast,
181 build_null_of_type, patch_newarray): Likewise.
182 * resource.c (compile_resource_data): Likewise.
183 * typeck.c (build_prim_array_type): Likewise.
184
185 2004-08-10 Bryce McKinlay <mckinlay@redhat.com>
186
187 * java-gimplify.c (java_gimplify_new_array_init): Use create_tmp_var.
188 Don't create BLOCK here or call java_gimplify_block.
189
190 2004-08-09 H.J. Lu <hongjiu.lu@intel.com>
191
192 * java-tree.h (flag_deprecated): Removed.
193 * lang.opt (Wdeprecated): Use existing Var(warn_deprecated).
194 * parse.y (check_deprecation): Check warn_deprecated instead of
195 flag_deprecated.
196
197 2004-08-06 Kelley Cook <kcook@gcc.gnu.org>
198
199 * lang.c (flag_emit_class_files, flag_filelist_file, flag_redundant,
200 flag_use_divide_subroutine, flag_use_boehm_gc, flag_store_check,
201 flag_hash_synchronization, flag_assert, flag_jni, flag_newer,
202 flag_check_references, flag_extraneous_semicolon, flag_deprecated,
203 flag_force_classes_archive_check, flag_optimize_sci,
204 flag_indirect_dispatch): Remove explicit declarations.
205 * lang.opt: Add implicit declare/define/assign. Remove obsolete
206 final comment.
207
208 2004-08-05 Michael Chastain <mec.gnu@mindspring.com>
209
210 PR bootstrap/14893
211 * Make-lang.in (java.install-man): Install from either build
212 tree or source tree, whichever has the file first.
213
214 2004-08-05 Nathan Sidwell <nathan@codesourcery.com>
215
216 * jcf-parse.c (get_constant): Adjust force_fit_type call.
217 * lex.h (SET_LVAL_NODE_TYPE): Remove.
218 * lex.c (java_perform_atof): Use SET_LVAL_NODE directly.
219 (do_java_lex): Likewise. Adjust force_fit_type call.
220
221 2004-08-04 Roger Sayle <roger@eyesopen.com>
222 Andrew Haley <aph@redhat.com>
223
224 * typeck.c (convert_ieee_real_to_integer): Call fold on the range
225 checking trees as they're being built.
226 (convert): Call convert_ieee_real_to_integer if we're
227 converting a constant, even if we're writing a class file.
228
229 2004-08-02 Bryce McKinlay <mckinlay@redhat.com>
230
231 PR java/16701
232 * parse.y (fold_constant_for_init): Call resolve_field_access with
233 correct current_class context.
234
235 2004-08-01 Roger Sayle <roger@eyesopen.com>
236
237 * decl.c (update_aliases, initialize_local_variable): Replace calls
238 to build with calls to buildN.
239 * java-gimplify.c (java_gimplify_modify_expr): Likewise.
240 * java-tree.h (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Likewise.
241 * parse.h (BUILD_THROW): Likewise.
242 * parse.y (switch_expression, synchronized_statement,
243 catch_clause_parameter, array_creation_expression,
244 conditional_expression, make_qualified_name,
245 resolve_qualified_expression_name, patch_method_invocation,
246 patch_invoke, build_method_invocation, build_new_invocation,
247 build_assignment, patch_assignment, build_binop, patch_binop,
248 build_string_concatenation, build_incdec, patch_unaryop,
249 patch_cast, build_array_ref, build_newarray_node, patch_newarray,
250 patch_return, build_if_else_statement, build_labeled_block,
251 build_new_loop, build_loop_body, build_bc_statement,
252 build_assertion, encapsulate_with_try_catch, build_try_statement,
253 build_try_finally_statement, patch_synchronized_statement,
254 emit_test_initialization): Likewise, replace build with buildN.
255
256 2004-07-28 Eric Christopher <echristo@redhat.com>
257
258 * lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Delete.
259 (java_unsafe_for_reeval): Ditto.
260
261 2004-07-26 <hp@bitrange.com>
262
263 * parse.y (build_super_invocation): Adjust declaration order to
264 avoid declaration after statement.
265
266 2004-07-25 Bernardo Innocenti <bernie@develer.com>
267
268 * decl.c: Rename all identifiers named `class' to `cl'.
269
270 2004-07-25 Richard Henderson <rth@redhat.com>
271
272 * decl.c (build_result_decl): Set DECL_ARTIFICIAL and DECL_IGNORED_P.
273
274 2004-07-23 Mike Stump <mrs@apple.com>
275
276 * boehm.c (set_bit): Improve type safety wrt unsignedness.
277 * gjavah.c (throwable_p, decode_signature_piece,
278 print_full_cxx_name, print_include, add_namelet, add_class_decl,
279 process_file): Likewise.
280 * jcf-dump.c (main): Likewise.
281 * jcf-io.c (read_zip_member): Likewise.
282 * jcf-parse.c (HANDLE_CONSTANT_Utf8, get_constant,
283 give_name_to_class, get_class_constant): Likewise.
284 * jcf-write.c (find_constant_wide, push_long_const,
285 generate_classfile): Likewise.
286 * lex.c (java_new_lexer, java_read_char, cxx_keyword_p): Likewise.
287 * parse.y (read_import_dir): Likewise.
288 * typeck.c (parse_signature_type): Likewise.
289 * verify.c (verify_jvm_instructions): Likewise.
290 * zextract.c (find_zip_file_start, read_zip_archive): Likewise.
291
292 2004-07-23 Thomas Fitzsimmons <fitzsim@redhat.com>
293
294 * Make-lang.in: Replace rmic and rmiregistry references with
295 grmic and grmiregistry.
296 * gcj.texi: Likewise.
297
298 2004-07-20 Andrew Haley <aph@redhat.com>
299
300 PR java/16431.
301 * verify.c (verify_jvm_instructions): Comment change only.
302
303 * typeck.c (build_java_array_type): Add size field to array name.
304
305 * java-tree.h (LOCAL_SLOT_P): New.
306 (update_aliases): Add PC argument.
307 (pushdecl_function_level): New function.
308
309 * java-gimplify.c (java_gimplify_expr): Handle VAR_DECL,
310 MODIFY_EXPR, and SAVE_EXPR.
311 (java_gimplify_modify_expr): New function.
312
313 * expr.c (push_type_0): Call find_stack_slot() to create temporary.
314 (expand_iinc): Pass PC to update_aliases().
315 (STORE_INTERNAL): Likewise.
316 (process_jvm_instruction): Likewise.
317
318 * decl.c (base_decl_map): New variable.
319 (uniq): New variable.
320 (update_aliases): Rewrite with more thorough checking.
321 (debug_variable_p): New function.
322 (push_jvm_slot): Don't initialize local variable. Don't pushdecl.
323 (check_local_named_variable): Delete whole function.
324 (initialize_local_variable): New function.
325 (check_local_unnamed_variable): Add checks and comments.
326 (find_local_variable): Rewrite.
327 (java_replace_reference): New function.
328 (function_binding_level): New variable.
329 (pushdecl_function_level): New function.
330 (maybe_pushlevels): Set DECL_LOCAL_END_PC.
331 (maybe_pushlevels): Call pushdecl() on each of the new decls.
332 (start_java_method): Reset uniq. Create base_decl_map. Set
333 function_binding_level.
334 (end_java_method): Null unused fields to save memory.
335
336 2004-07-20 Nathan Sidwell <nathan@codesourcery.com>
337
338 * class.c (add_interface_do): Remove.
339 (set_super_info, interface_of_p, maybe_add_interface,
340 add_interface, make_class_data, layout_class,
341 add_miranda_methods): Adjust BINFO accessors and addition.
342 * expr.c (can_widen_reference_to, lookup_field): Adjust BINFO
343 accessors.
344 * jcf-write.c (generate_classfile): Likewise.
345 * parse.y (patch_anonymous_class, check_inner_circular_reference,
346 check_circular_reference, java_complete_class,
347 check_abstract_method_definitions,
348 java_check_abstract_method_definitions,
349 check_interface_throws_clauses, java_check_abstract_methods,
350 lookup_java_interface_method2,
351 find_applicable_accessible_methods_list): Adjust BINFO accessors
352 and addition.
353 * typeck.c (find_method_in_interfaces): Adjust BINFO accessors.
354
355 2004-07-18 Roger Sayle <roger@eyesopen.com>
356
357 * builtins.c (max_builtin, min_builtin,
358 java_build_function_call_expr): Replace calls to build with buildN.
359 * class.c (build_class_ref, build_static_field_ref,
360 get_dispatch_table, make_class_data, layout_class_method): Likewise.
361 * constants.c (build_ref_from_constant_pool): Likewise.
362 * decl.c (update_aliases, push_jvm_slot, poplevel, finish_method,
363 add_stmt_to_compound): Likewise.
364 * except.c (build_exception_object_ref, expand_end_java_handler):
365 Likewise.
366 * java-gimplify.c (java_gimplify_case_expr,
367 java_gimplify_default_expr, java_gimplify_block,
368 java_gimplify_new_array_init, java_gimplify_try_expr): Likewise.
369 * jcf-write.c (generate_bytecode_insns): Likewise.
370 * typeck.c (convert_ieee_real_to_integer): Likewise.
371
372 2004-07-17 Joseph S. Myers <jsm@polyomino.org.uk>
373
374 * java-tree.h (builtin_function): Declare.
375
376 2004-07-16 Steven Bosscher <stevenb@suse.de>
377
378 * parse.y (java_complete_expand_methods, java_expand_classes): Don't
379 abuse restore_line_number_status.
380
381 2004-07-15 Frank Ch. Eigler <fche@redhat.com>
382
383 g++/15861
384 * jcf-parse.c (java_emit_static_constructor): Specify default
385 priority.
386
387 2004-07-13 Per Bothner <per@bothner.com>
388
389 * java-tree.h (all_class_filename): Remove useless macro.
390 (enum java_tree_index): Remove JTI_ALL_CLASS_FILENAME constant.
391 (BUILD_FILENAME_IDENTIFIER_NODE): Remove useless macro.
392 * parse.y (java_parser_context_restore_global): Replace
393 BUILD_FILENAME_IDENTIFIER_NODE by plain get_identifier.
394 * jcf-parse.c (read_class, java_parse_file): Likewise.
395
396 2004-07-12 Bryce McKinlay <mckinlay@redhat.com>
397
398 PR java/16474
399 gjavah.c (print_field_info): Emit constant only if field is static.
400
401 2004-07-11 Roger Sayle <roger@eyesopen.com>
402
403 * expr.c (java_truthvalue_conversion, flush_quick_stack,
404 java_stack_swap, java_stack_dup, build_java_athrow, build_java_jsr,
405 build_java_ret, build_java_throw_out_of_bounds_exception,
406 build_java_array_length_access, java_check_reference,
407 build_java_arrayaccess, build_java_arraystore_check, build_newarray,
408 build_anewarray, expand_java_multianewarray, expand_java_arraystore,
409 expand_java_arrayload, build_java_monitor, expand_java_return,
410 expand_load_internal, expand_java_NEW, build_get_class,
411 build_instanceof, expand_java_CHECKCAST, expand_iinc,
412 build_java_soft_divmod, build_java_binop, build_field_ref,
413 expand_compare, expand_java_goto, expand_java_switch,
414 expand_java_add_case, build_class_init, build_known_method_ref,
415 invoke_build_dtable, build_invokevirtual, build_invokeinterface,
416 expand_invoke, build_jni_stub, expand_java_field_op,
417 java_expand_expr, expand_byte_code, STORE_INTERNAL,
418 force_evaluation_order, emit_init_test_initialization): Convert
419 calls to "build" into calls to the prefered "buildN" functions.
420
421 2004-07-11 Joseph S. Myers <jsm@polyomino.org.uk>
422
423 * java-tree.h (set_block): Remove.
424 * lang.c (java_clear_binding_stack): New.
425 (LANG_HOOKS_CLEAR_BINDING_STACK): Define.
426 * decl.c (struct binding_level): Remove this_block.
427 (clear_binding_level): Likewise.
428 (poplevel): Don't handle this_block.
429 (set_block): Remove.
430
431 2004-07-10 Bryce McKinlay <mckinlay@redhat.com>
432
433 * class.c (common_enclosing_context_p): Remove statement with no
434 side-effects.
435
436 2004-07-09 Bryce McKinlay <mckinlay@redhat.com>
437
438 PR java/8618
439 * parse.y (create_anonymous_class): Remove 'location' argument. Use
440 the WFL from TYPE_NAME to get line number for the decl. Fix comment.
441 (craft_constructor): Inherit access flags for implicit constructor
442 from the enclosing class.
443 (create_class): Fix comment typo.
444 (resolve_qualified_expression_name): Pass type of qualifier to
445 not_accessible_p, not the type in which target field was found.
446 (not_accessible_p): Handle inner classes. Expand protected
447 qualifier-subtype check to enclosing instances, but don't apply this
448 check to static members. Allow protected access to inner classes
449 of a subtype. Allow private access within common enclosing context.
450 (build_super_invocation): Get WFL line number info from current
451 class decl.
452 (build_incomplete_class_ref): Update for new create_anonymous_class
453 signature.
454 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Use
455 common_enclosing_instance_p.
456 * class.c (common_enclosing_context_p): New. Determine if types
457 share a common enclosing context, even across static contexts.
458 (common_enclosing_instance_p): Renamed from
459 common_enclosing_context_p. Determines if types share a common
460 non-static enclosing instance.
461 * java-tree.h (common_enclosing_instance_p): Declare.
462 * jcf-write.c (get_method_access_flags): New. Surpress private flag
463 for inner class constructors.
464 (generate_classfile): Use get_method_access_flags.
465
466 2004-07-09 Bryce McKinlay <mckinlay@redhat.com>
467
468 * class.c (interface_of_p): Check for null TYPE_BINFO.
469
470 2004-07-09 Nathan Sidwell <nathan@codesourcery.com>
471
472 * class.c (make_class): Do not create binfo here.
473 (set_super_info): Create it here.
474 * java-tree.h (CLASS_HAS_SUPER): Cope with lack of a binfo.
475
476 2004-07-08 Richard Henderson <rth@redhat.com>
477
478 * expr.c (case_identity, get_primitive_array_vtable,
479 java_expand_expr, emit_init_test_initialization): Remove.
480 * java-tree.h (java_expand_expr): Remove.
481 * lang.c (LANG_HOOKS_EXPAND_EXPR): Remove.
482
483 2004-07-07 Per Bothner <per@bothner.com>
484
485 * class.c (build_static_field_ref): Add a NOP_EXPR; otherwise we
486 get internal error due to mismatched types.
487
488 * gcj.texi (Invoking gij): Document new -verbose:class flag.
489
490 * gcj.texi (Linking): New node. Document -lgij usage.
491
492 2004-07-07 Nathan Sidwell <nathan@codesourcery.com>
493
494 * java-tree.h (CLASSTYPE_SPUER): Adjust BINFO macros.
495 (TYPE_NVIRTUALS, TYPE_VTABLE): Likewise.
496 * java/class.c (set_super_info, class_depth, interface_of_p,
497 maybe_add_interface, add_interface, make_class_data,
498 layout_class, add_miranda_methods): Adjust BINFO macros.
499 * expr.c (can_widen_reference_to, lookup_field): Likewise.
500 * jcf-write.c (generate_classfile): Likewise.
501 * parse.y (patch_anonymous_class,
502 check_inner_circular_reference, check_circular_reference,
503 java_complete_class, check_abstract_method_definitions,
504 java_check_abstract_method_definitions,
505 check_interface_throws_clauses, java_check_abstract_methods,
506 lookup_java_interface_method2,
507 find_applicable_accessible_methods_list): Likewise.
508 * typeck.c (find_method_in_interface): Likewise.
509 * verify.c (merge_types): Likewise.
510
511 2004-07-06 Nathan Sidwell <nathan@codesourcery.com>
512
513 * java-tree.h (CLASS_HAS_SUPER_FLAG): Use BINFO_FLAG_1.
514 * class.c (add_interface_do): Use BINFO_VIRTUAL_P.
515
516 2004-07-05 Nathan Sidwell <nathan@codesourcery.com>
517
518 * class.c (make_class): Use make_tree_binfo.
519 (set_super_info, add_interface_do): Likewise.
520 * java-tree.h (CLASS_HAS_SUPER_FLAG): Expect a BINFO.
521
522 2004-07-04 Ranjit Mathew <rmathew@hotmail.com>
523
524 * verify.c: Correct array element access formatting thinko.
525
526 2004-07-04 Ranjit Mathew <rmathew@hotmail.com>
527
528 * verify.c: Insert a short blurb at the start referring to the JVMS.
529 (merge_type_state): Remove redundant nested if statement.
530 (verify_jvm_instructions): Ensure current_subr is initialised to
531 NULL_TREE.
532 Minor formatting fixes all over the place.
533
534 2004-07-02 Richard Henderson <rth@redhat.com>
535
536 * jcf-write.c (generate_bytecode_insns <case SAVE_EXPR>): Rewrite.
537
538 2004-07-01 Richard Henderson <rth@redhat.com>
539
540 * class.c (registerClass_libfunc): Remove.
541 (init_class_processing): Don't set it.
542 (emit_register_classes): Take list_p parameter. Fill it in
543 with _Jv_RegisterClass calls.
544 * decl.c (java_init_decl_processing): Don't call
545 init_resource_processing.
546 * jcf-parse.c (java_emit_static_constructor): New.
547 (java_parse_file): Call it.
548 * resource.c (registerResource_libfunc): Remove.
549 (init_resource_processing): Remove.
550 (write_resource_constructor): Take list_p parameter. Fill it in
551 with _Jv_RegisterResource calls.
552 * java-tree.h: Update prototypes.
553
554 2004-06-29 Bryce McKinlay <mckinlay@redhat.com>
555
556 PR java/1262
557 * class.c (layout_class_method): Do not override package-private
558 method if its in a different package.
559 (split_qualified_name): Move here from parse.y. Rename from
560 breakdown_qualified. Add comment.
561 (in_same_package): Move here from parse.y. Add comment.
562 * java-tree.h (break_down_qualified, in_same_package): Declare.
563 (in_same_package): Likewise.
564 * parse.y (breakdown_qualified, in_same_package): Moved to class.c.
565 Callers updated.
566
567 2004-06-29 Andrew Haley <aph@redhat.com>
568
569 * except.c (expand_start_java_handler): Push a new binding level.
570 Don't build a TRY_CATCH_EXPR now, we'll do it later. Call
571 register_exception_range() to register where we'll do it.
572 (expand_end_java_handler): Remove old bogus code. Replace with
573 new logic that simply builds TRY_CATCH_EXPRs and inserts them at
574 the top of the expression we're curently building.
575 (maybe_end_try): Delete.
576 * decl.c (binding_level.exception_range): New field.
577 (clear_binding_level): Add field exception_range. Reformat.
578 (poplevel): Call expand_end_java_handler().
579 (poplevel): Call java_add_stmt only if functionbody is false.
580 (maybe_poplevels): Don't call maybe_end_try() from here.
581 (end_java_method): Clear no longer used trees in function decl.
582 (register_exception_range): New function.
583 * java-tree.h (register_exception_range, struct eh_range): Declare.
584
585 2004-06-28 Bryce McKinlay <mckinlay@redhat.com>
586
587 * jcf-write.c (get_classfile_modifiers): Formatting fixes.
588
589 2004-06-27 Ranjit Mathew <rmathew@hotmail.com>
590
591 Formatting fixes.
592 * expr.c (class_has_finalize_method): Fix method name indentation.
593 (expand_java_call): Remove K&R style parameter declaration.
594 (expand_invoke): Fix statement indentation.
595 (expand_java_field_op): Likewise.
596 * parse-scan.y: Fix typo.
597 (reset_report): Fix method name indentation.
598 * parse.y (unresolved_type_p, build_expr_block): Remove extra blank
599 line. Fix typos.
600 * verify.c (verify_jvm_instructions): Document parameters, insert
601 page break.
602 * lang.c (lang_init_source): Fix method name indentation.
603 * class.c (common_enclosing_context_p): Likewise.
604 (emit_symbol_table): Fix parameter list indentation.
605 * decl.c (add_stmt_to_compound, java_add_stmt): Remove K&R style
606 parameter declaration.
607 * constants.c: Fix copyright notice indentation.
608 * typeck.c (find_method_in_superclasses): Fix parameter list
609 indentation.
610 (find_method_in_interfaces): Likewise.
611 * zextract.c (makelong): Fix method name indentation.
612
613 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
614
615 PR java/15715.
616 * parse.y (create_interface): Set correct access modifiers for
617 interfaces.
618 * jcf-write.c (get_classfile_modifiers): New function.
619 (generate_classfile): Use get_classfile_modifiers, not
620 get_access_flags.
621
622 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
623
624 * parse.y (register_incomplete_type): Set JDEP_ENCLOSING for "super"
625 dependency to current parser context, not NULL_TREE, for top-level
626 classes.
627 (jdep_resolve_class): Enable member access check for all inner
628 class dependencies.
629
630 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
631
632 * parse.y (qualify_and_find): Pass type decl, not identifier, to
633 load_class.
634
635 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
636
637 PR java/15734
638 * expr.c (expand_java_field_op): Ensure that target class for static
639 field access has been loaded.
640
641 2004-06-26 Bryce McKinlay <mckinlay@redhat.com>
642 Ranjit Mathew <rmathew@hotmail.com>
643
644 PR java/1207, java/16178
645 * jcf-parse.c (load_class): Return immediately if passed a type decl
646 where CLASS_FROM_SOURCE_P is set. Remove FIXME.
647 * parse.y (do_resolve_class): Remove checks for CLASS_FROM_SOURCE_P
648 before calling load_class.
649 (qualify_and_find): Likewise.
650 (find_in_imports_on_demand): Likewise.
651 (find_applicable_accessible_methods_list): Likewise.
652
653 2004-06-24 Bryce McKinlay <mckinlay@redhat.com>
654
655 * parse.y (java_layout_seen_class_methods): Don't call load_class
656 on class defined by source parser.
657
658 2004-06-23 Bryce McKinlay <mckinlay@redhat.com>
659
660 * parse.y (set_nested_class_simple_name_value): Removed.
661 (java_complete_expand_class): Remove calls to
662 set_nested_class_simple_name_value.
663
664 2004-06-22 Andrew Haley <aph@redhat.com>
665 Ranjit Mathew <rmathew@hotmail.com>
666
667 Fixes PR java/16113.
668 * decl.c (force_poplevels): Remove call to expand_end_bindings.
669
670 2004-06-22 Ranjit Mathew <rmathew@hotmail.com>
671
672 * parse.y (create_class): Correct diagnostic message about
673 java.lang.Object extending anything else.
674
675 2004-06-21 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
676
677 * class.c (build_class_ref): Add new operand for COMPONENT_REF.
678 (build_static_field_ref): Likewise and add new operands for ARRAY_REF.
679 * constants.c (build_ref_from_constant_pool): Likewise.
680 * expr.c (build_java_array_length_access): Likewise.
681 (build_get_class, build_field_ref, build_known_method_ref): Likewise.
682 (invoke_build_dtable, build_invokevirtual): Likewise.
683 (build_invokeinterface, java_expand_expr): Likewise.
684 (emit_init_test_initialization): Likewise.
685 * java-gimplify.c (java_gimplify_new_array_init): Likewise.
686 * parse.y (make_qualifed_name, build_array_ref): Likewise.
687
688 2004-06-21 Andrew Haley <aph@redhat.com>
689
690 * java-gimplify.c (java_gimplify_block): set TREE_USED on the new
691 block.
692
693 2004-06-21 Joseph S. Myers <jsm@polyomino.org.uk>
694
695 * jcf.h (struct JCF): Change java_source, right_zip and finished
696 to unsigned int.
697 * lex.h (struct java_lexer): Change hit_eof, read_anything,
698 byte_swap and use_fallback to unsigned int.
699 * parse.h (struct _jdep): Change flag0 to unsigned int.
700
701 2004-06-17 Ranjit Mathew <rmathew@hotmail.com>
702
703 Fixes PR java/13948
704 * parse.y (java_layout_seen_class_methods): Ensure class is loaded
705 before trying to lay out its methods.
706 * jcf-parse.c (read_class): Track parsed files using canonical paths
707 obtained via lrealpath from libiberty.
708 (java_parse_file): Likewise.
709 (parse_source_file_1): Rename formal parameter to reflect its
710 modified purpose. Minor formatting fix.
711
712 2004-06-15 Paolo Bonzini <bonzini@gnu.org>
713
714 * class.c (emit_register_classes): Make the function uninlinable,
715 do not set current_function_cannot_inline.
716 * resource.c (write_resource_constructor): Do not reset
717 flag_inline_functions around rest_of_compilation.
718
719 2004-06-08 Andrew Pinski <pinskia@physics.uc.edu>
720
721 PR java/15769
722 * expr.c (java_truthvalue_conversion): Handle
723 UNEQ_EXPR, UNLE_EXPR, UNGE_EXPR, UNLT_EXPR, UNGT_EXPR,
724 ORDERED_EXPR, and UNORDERED_EXPR as comparison operators,
725 i.e. return the expression.
726
727 2004-06-03 Mark G. Adams <mark.g.adams@sympatico.ca>
728
729 * gjavah.c: Include version.h
730
731 2004-05-31 Bryce McKinlay <mckinlay@redhat.com>
732
733 * jcf-write.c (generate_bytecode_conditional): Correct handling
734 of unordered conditionals. Add comment.
735
736 2004-05-29 Ranjit Mathew <rmathew@hotmail.com>
737 Per Bothner <per@bothner.com>
738
739 * java-tree.h (DECL_LOCAL_FINAL_IUD): New macro to test if a
740 local variable was initialised upon declaration.
741 * parse.y (declare_local_variables): Set DECL_LOCAL_FINAL_IUD if
742 variable was final and initialised upon declaration.
743 * check-init.c (check_final_reassigned): Give error only if a blank
744 final is not definitely unassigned or if an initialised final is
745 reassigned.
746 (check_bool_init): Respect JLS2 16.1.7 requirements for boolean
747 assignment expressions. Remove case MODIFY_EXPR, label do_default.
748 (check_init): Perform initialised-variable-removing-optimisation
749 only on non-final local variables.
750
751 2004-05-28 Bryce McKinlay <mckinlay@redhat.com>
752
753 * jcf-write.c (generate_bytecode_conditional): Handle binops
754 UNLT_EXPR, UNLE_EXPR, UNGT_EXPR, UNGE_EXPR, UNEQ_EXPR,
755 and LTGT_EXPR.
756 (generate_bytecode_insns): Likewise.
757
758 2004-05-28 Bryce McKinlay <mckinlay@redhat.com>
759
760 * check-init.c (check_init): Handle binops UNLT_EXPR, UNLE_EXPR,
761 UNGT_EXPR, UNGE_EXPR, UNEQ_EXPR, and LTGT_EXPR.
762
763 2004-05-28 Bryce McKinlay <mckinlay@redhat.com>
764
765 * gcj.texi (Object allocation): Remove _Jv_AllocBytes.
766 (Mixing with C++): Document JvAllocBytes and RawDataManaged.
767
768 2004-05-26 Bryce McKinlay <mckinlay@redhat.com>
769
770 * decl.c (struct binding_level): Add GTY marker. Compile
771 binding_depth unconditionally.
772 (current_binding_level, free_binding_level, global_binding_level):
773 Likewise.
774 (clear_binding_level): Unconditionally set binding_depth.
775 (make_binding_level): Use ggc_alloc_cleared, not xmalloc.
776
777 2004-05-26 Bryce McKinlay <mckinlay@redhat.com>
778
779 * lex.c (java_new_lexer): Set 'encoding'.
780 (java_read_char): Improve error message for unrecognized characters.
781 * lex.h (struct java_lexer): New field 'encoding'.
782
783 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
784
785 * Make-lang.in: Link in $(LIBCPP) instead of mkdeps.o.
786
787 2004-05-21 Mark Wielaard <mark@klomp.org>
788
789 * gjavah.c (print_stub_or_jni): Mark functions only JNIEXPORT, not
790 extern.
791
792 2004-05-19 Paolo Bonzini <bonzini@gnu.org>
793
794 * typeck.c: Remove non-printable character 160.
795
796 2004-05-17 Ranjit Mathew <rmathew@hotmail.com>
797
798 * check-init.c: Correct minor typos.
799
800 2004-05-13 Diego Novillo <dnovillo@redhat.com>
801
802 * Make-lang.in, expr.c, java-gimplify.c: Rename
803 tree-simple.[ch] to tree-gimple.[ch].
804
805 2004-05-14 Ranjit Mathew <rmathew@hotmail.com>
806
807 * java-gimplify.c (java_gimplify_expr): Correct minor typos.
808
809 2004-05-13 Diego Novillo <dnovillo@redhat.com>
810
811 Merge from tree-ssa-20020619-branch. See
812 ChangeLog.tree-ssa for details.
813
814 * Make-lang.in, builtins.c, check-init.c, class.c,
815 constants.c, decl.c, except.c, expr.c, java-except.h,
816 java-tree.def, java-tree.h, jcf-parse.c, jcf-write.c,
817 lang.c, lang.opt, parse.y, resource.c: Merged.
818 * java-gimplify.c: New file.
819
820 2004-05-10 Andrew Haley <aph@redhat.com>
821
822 * parse.y (create_class): Set TYPE_VFIELD.
823 * decl.c (java_init_decl_processing): Likewise.
824
825 * expr.c (build_invokevirtual): Remove DECL_VINDEX offset adjustment.
826 * class.c (make_method_value): Replace DECL_VINDEX with call to
827 get_method_index().
828 (get_dispatch_vector): Likewise.
829 (layout_class_method): Likewise.
830 Replace set of DECL_VINDEX with call to set_method_index().
831 (set_method_index): New function.
832 (get_method_index): New function.
833 * java-tree.h (set_method_index): New function decl.
834 (get_method_index): New function decl.
835
836 2004-05-10 Andrew Pinski <pinskia@physics.uc.edu>
837
838 * parse.y (check_pkg_class_access): Add new argument
839 and use it when cl is NULL to call lookup_cl on it.
840 (parser_check_super_interface): Do not call lookup_cl.
841 Pass this_decl to check_pkg_class_access and NULL
842 instead of lookup_cl.
843 (parser_check_super): Update for change in
844 check_pkg_class_access.
845 (do_resolve_class): Likewise.
846 (process_imports): Likewise.
847 (find_in_imports_on_demand): Likewise.
848 (resolve_qualified_expression_name): Likewise.
849
850 2004-05-06 Ranjit Mathew <rmathew@hotmail.com>
851
852 Fixes PR java/9685, PR java/15073
853 * parse.y (accessibility_string): New method.
854 (not_accessible_field_error): Use accessibility_string()
855 instead of java_accstring_lookup().
856 (resolve_qualified_expression_name): Check with
857 check_pkg_class_access() before allowing access using
858 qualified names.
859 Fix comment typo.
860 Use check_pkg_class_access() instead of not_accessible_p()
861 for unqualified types.
862 (not_accessible_p): Use DECL_CONTEXT (member) instead of
863 REFERENCE for package-private access checking.
864 (patch_method_invocation): Use accessibility_string() instead
865 of java_accstring_lookup().
866
867 2004-04-30 Ranjit Mathew <rmathew@hotmail.com>
868
869 Fixes PR java/15133
870 * gjavah.c (struct method_name): Add member is_native.
871 (overloaded_jni_method_exists_p): Match candidate method only if
872 it is native.
873 (print_method_info): Initialise is_native flag from the method's
874 access flags.
875
876 2004-04-30 Roger Sayle <roger@eyesopen.com>
877
878 * builtins.c (java_builtins): Add acos, asin, ceil and floor.
879 (initialize_builtins): Likewise, define acos, asin, ceil and floor.
880
881 2004-04-22 Roger Sayle <roger@eyesopen.com>
882
883 * resource.c (write_resource_constructor): Guard call to possibly
884 NULL targetm.asm_out.constructor with targetm.have_ctors_dtors.
885
886 2004-04-19 Bryce McKinlay <mckinlay@redhat.com>
887
888 * class.c (make_class_data): Add new field aux_info.
889 * decl.c (java_init_decl_processing): Push type and decl for
890 `aux_info'.
891
892 2004-04-15 Bryce McKinlay <mckinlay@redhat.com>
893
894 * expr.c (expand_java_NEW): Don't use size argument for
895 _Jv_AllocObject calls.
896 * parse.y (patch_invoke): Likewise.
897
898 2004-04-12 Bryce McKinlay <mckinlay@redhat.com>
899
900 * expr.c (build_invokeinterface): Remove unused variables to
901 fix warnings.
902
903 2004-04-12 Bryce McKinlay <mckinlay@redhat.com>
904
905 * class.c (get_interface_method_index): New function. Return dispatch
906 index for interface method.
907 (make_method_value): For interface methods, set index field to
908 iface dispatch index, not DECL_VINDEX.
909 * expr.c (build_invokeinterface): Use get_interface_method_index.
910
911 2004-03-31 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
912
913 * jcf-write.c (generate_bytecode_insns): Use TYPE_UNSIGNED.
914
915 2004-03-31 Andrew Haley <aph@redhat.com>
916
917 PR java/14104
918 * jcf-io.c (opendir_in_zip): Tidy up error handling.
919
920 2004-03-30 Zack Weinberg <zack@codesourcery.com>
921
922 * builtins.c, expr.c, jcf.h, parse.h: Use new shorter
923 form of GTY markers.
924
925 2004-03-25 Marcus Meissner <meissner@suse.de>
926
927 PR java/14689:
928 * jcf-path.c (jcf_path_extdirs_arg): Add missing closedir.
929
930 2004-03-23 Tom Tromey <tromey@redhat.com>
931
932 PR java/14315:
933 * jcf-write.c (make_class_file_name): Don't report if mkdir
934 failed with EEXIST.
935
936 2004-03-23 Tom Tromey <tromey@redhat.com>
937
938 * gcj.texi (Extensions): Document GCJ_PROPERTIES.
939
940 2004-03-20 Kazu Hirata <kazu@cs.umass.edu>
941
942 * class.c, gjavah.c, lang.c: Fix comment typos.
943 * gcj.texi: Fix typos.
944
945 2004-03-19 Per Bothner <per@bothner.com>
946
947 * gcj.texi (Code Generation): Document new flags and assert defaults.
948
949 * class.c (assume_compiled_node_struct): Rename type to
950 class_flag_node_struct, as it is now also used for enable_assertions.
951 Rename assume_compiled_node typedef. Rename excludep field to value.
952 (find_assume_compiled_node): Rename function to find_class_flag_node.
953 Minor optimization - avoid needless strlen.
954 (add_assume_compiled): Some tweaking and optimization.
955 Rename and generalize to add_class_flag takem an extra parameter.
956 (add_assume_compled): New just calls add_class_flag.
957 (add_enable_assert, enable_assertions): New functions.
958 (enable_assert_tree): New static.
959 * java-tree.h (add_enable_assert, enable_assertions): New declarations.
960 * lang.opt (fenable-assertions, fenable-assertions=,
961 fdisable-assertions, fdisable-assertions=): New options.
962 * lang.c (java_handle_option): Handle new options.
963 * parse.y (build_incomplete_class_ref): Handle class$ in an inner
964 class in an interface - create helper class nested in outer interface.
965 (build_assertion): Short-circuit if enable_assertions is false.
966
967 2004-03-18 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
968
969 * java-tree.h: Changes throughout to add checking to macros
970 and numerous whitespace changes.
971 (VAR_OR_FIELD_CHECK): New macro.
972 * jcf-write.c (get_access_flags): Use FIELD_PUBLIC, METHOD_PUBLIC,
973 FIELD_FINAL, and METHOD_FINAL instead of CLASS_PUBLIC and CLASS_FINAL.
974
975 2004-03-16 Per Bothner <per@bothner.com>
976
977 * jcf-jump.c (options): New --print-constants option.
978 * gcj.texi (Invoking jcf-dump): Document --print-constants.
979
980 * jcf-dump.c (flag_print_constant_pool): Default to off.
981 (print_constant_terse_with_index): New helper function.
982 (various places): Check flag_print_constant_pool where missing.
983 (main): If verbose set flag_print_constant_pool.
984 (HANDLE_INNERCLASSES_ATTRIBUTE): Null inner class name is anonymous.
985
986 2004-03-15 Andrew Haley <aph@redhat.com>
987
988 PR java/14581
989 * parse.y (java_complete_lhs): Check that final variable has an
990 initializer.
991
992 2004-03-12 Andrew Haley <aph@redhat.com>
993
994 PR java/14551
995 * typeck.c (convert): Clear TREE_OVERFLOW after an integer
996 conversion.
997
998 2004-02-29 Roger Sayle <roger@eyesopen.com>
999
1000 * jcf-parse.c (java_parse_file): Handle the case that input_filename
1001 is NULL.
1002
1003 2004-02-27 Per Bothner <per@bothner.com>
1004
1005 * parse.y (build_assertion): Re-do 02-25 change following Jeff Sturm
1006 suggestion: Use build_incomplete_class_ref.
1007 This fixes PR java/13508, java/11714.
1008
1009 2004-02-27 Kazu Hirata <kazu@cs.umass.edu>
1010
1011 * java/parse.h: Update copyright.
1012
1013 2004-02-26 Andrew Haley <aph@redhat.com>
1014
1015 PR java/14231:
1016 * parse.y (check_interface_throws_clauses): Check for
1017 !METHOD_INVISIBLE (iface_method).
1018 * class.c (layout_class_methods): Check for CLASS_INTERFACE as
1019 well as CLASS_ABSTRACT.
1020
1021 2004-02-25 Per Bothner <per@bothner.com>
1022
1023 * parse.y (build_assertion): If we're in an inner class, create the
1024 class$ helper routine in the outer class.
1025
1026 2004-02-19 Richard Henderson <rth@redhat.com>
1027
1028 * parse.y (switch_label): Use make_node for DEFAULT_EXPR.
1029
1030 2004-02-16 Geoffrey Keating <geoffk@apple.com>
1031
1032 * Make-lang.in (java.install-man): Add extra dependencies.
1033
1034 2004-02-13 Geoffrey Keating <geoffk@apple.com>
1035
1036 * Make-lang.in: Install man pages under the same names
1037 (possibly transformed) as the program they document.
1038
1039 2004-02-10 Joseph S. Myers <jsm@polyomino.org.uk>
1040
1041 * gjavah.c: Include "intl.h".
1042 (error): New function.
1043 (main): Call gcc_init_libintl.
1044 (get_field_name, throwable_p, print_c_decl, print_full_cxx_name,
1045 print_stub_or_jni, process_file, main): Use error rather than
1046 fprintf.
1047 (print_method_info, usage, help, version, main): Mark strings for
1048 translation with _. Avoid splitting up sentences. Send
1049 information messages to stdout.
1050 * jcf-dump.c: Include "intl.h".
1051 (main): Call gcc_init_libintl.
1052 (process_class, usage, help, version, main, CHECK_PC_IN_RANGE):
1053 Mark error, usage and version messages for translation with _.
1054 Avoid splitting up sentences.
1055 * jv-scan.c: Include "intl.h".
1056 (fatal_error, warning): Change parameter s to msgid. Translate
1057 messages.
1058 (main): Call gcc_init_libintl.
1059 (usage, help, version): Mark error, usage and version messages for
1060 translation with _. Avoid splitting up sentences.
1061 * jvgenmain.c: Include "intl.h".
1062 (main): Call gcc_init_libintl.
1063 (usage, main): Mark error messages for translation with _.
1064 * Make-lang.in (GCJH_OBJS, JVSCAN_OBJS, JCFDUMP_OBJS,
1065 JVGENMAIN_OBJS): Add intl.o.
1066 (java/jcf-dump.o, java/gjavah.o, java/jv-scan.o,
1067 java/jvgenmain.o): Update dependencies.
1068
1069 2004-02-08 Per Bothner <per@bothner.com>
1070
1071 * parse.y (resolve_qualified_expression_name): In case of inaccessible
1072 class don't use not_accessible_field_error, which can get confused.
1073
1074 2004-02-05 Kelley Cook <kcook@gcc.gnu.org>
1075
1076 Make-lang.in (po-generated): Delete.
1077
1078 2004-02-05 Kazu Hirata <kazu@cs.umass.edu>
1079
1080 * Make-lang.in (java/decl.o, java/expr.o, java/parse.o):
1081 Depend on target.h.
1082 * decl.c: Include target.h.
1083 (start_java_method): Replace PROMOTE_PROTOTYPES with
1084 targetm.calls.promote_prototypes.
1085 * expr.c: Include target.h.
1086 (pop_arguments): Replace PROMOTE_PROTOTYPES with
1087 targetm.calls.promote_prototypes.
1088 * parse.y: Include target.h.
1089 (start_complete_expand_method): Replace PROMOTE_PROTOTYPES
1090 with targetm.calls.promote_prototypes.
1091
1092 2004-02-04 Kazu Hirata <kazu@cs.umass.edu>
1093
1094 * typeck.c: Update copyright.
1095
1096 2004-02-02 Tom Tromey <tromey@redhat.com>
1097
1098 * decl.c (java_init_decl_processing): Remove duplicate
1099 gnu/gcj/RawData.
1100
1101 2004-01-30 Kelley Cook <kcook@gcc.gnu.org>
1102
1103 * Make-lang.in (doc/gcj.dvi): Use $(abs_docdir).
1104
1105 2004-01-28 Andrew Pinski <pinskia@physics.uc.edu>
1106
1107 * expr.c (build_field_ref): Move variable
1108 definition up.
1109
1110 2004-01-28 Andrew Haley <aph@redhat.com>
1111
1112 * expr.c (build_field_ref): Widen field offset.
1113
1114 2004-01-27 Andrew Haley <aph@redhat.com>
1115
1116 java/13273
1117 * parse.y (check_interface_throws_clauses): Make sure class_decl
1118 has been loaded.
1119
1120 2004-01-22 Jeff Sturm <jsturm@one-point.com>
1121
1122 PR java/13733
1123 * parse.y (patch_assignment): Don't modify lhs_type for
1124 reference assignments.
1125
1126 2004-01-20 Kelley Cook <kcook@gcc.gnu.org>
1127
1128 * Make-lang.in: Replace $(docdir) with doc.
1129 (java.info, java.srcinfo, java.man, java.srcman): New rules.
1130 (java.install-man): Revamp rule.
1131
1132 2004-01-20 Kelley Cook <kcook@gcc.gnu.org>
1133
1134 * Make-lang.in (JAVA_INSTALL_NAME, JAVA_TARGET_INSTALL_NAME,
1135 GCJH_TARGET_INSTALL_NAME): Define via a immediate $(shell)
1136 instead of deferred backquote.
1137
1138 2004-01-16 Andrew Pinski <pinskia@physics.uc.edu>
1139
1140 * typeck.c (find_method_in_interfaces): Move variable
1141 definition up.
1142
1143 2004-01-16 Andrew Haley <aph@redhat.com>
1144
1145 PR java/13273:
1146 * typeck.c (shallow_find_method): New.
1147 (find_method_in_superclasses): New.
1148 (find_method_in_interfaces): New.
1149 (lookup_do): Rewrite.
1150 * java-tree.h (SEARCH_ONLY_INTERFACE): Delete.
1151
1152 * jcf-parse.c (read_class): Save and restore output_class.
1153 * decl.c (java_expand_body): Set output_class from fndecl.
1154
1155 2004-01-15 Michael Chastain <mec.gnu@mindspring.com>
1156
1157 * class.c (gen_indirect_dispatch_tables): Fix string length
1158 calculations.
1159
1160 2004-01-15 Kelley Cook <kcook@gcc.gnu.org>
1161
1162 * Make-lang.in (parse.c, parse-scan.c): Always build in doc directory.
1163 (java.srcextra): Copy above back to source directory if requested.
1164 (po-generated): Delete reference to $(parsedir).
1165 (java/parse.o, java/parse-scan.o): Delete reference to $(parsedir).
1166 Use implicit rule.
1167
1168 2004-01-14 Jan Hubicka <jh@suse.cz>
1169
1170 * lang.c (java_estimate_num_insns_1): Fix bug in MODIFY_EXPR cost
1171 estimation.
1172
1173 2004-01-09 Mark Mitchell <mark@codesourcery.com>
1174
1175 * java-tree.h (java_expand_expr): Change prototype.
1176 * expr.c (java_expand_expr): Add alt_rtl parameter.
1177
1178 2004-01-09 Andrew Haley <aph@redhat.com>
1179
1180 PR java/12755:
1181 * parse.y (java_fix_constructors): Set output_class.
1182 (java_reorder_fields): Likewise.
1183 (java_layout_classes): Likewise.
1184 (java_expand_classes): Generate indirect dispatch tables.
1185 (java_expand_classes): Set output_class.
1186 (java_finish_classes): Likewise.
1187 * lang.c (java_init): Turn on always_initialize_class_p if we're
1188 using indirect dis[atch.
1189 (java_decl_ok_for_sibcall): Use output_class, not current_class.
1190 (java_get_callee_fndecl): Use class local atable.
1191 * jcf-parse.c
1192 (always_initialize_class_p): Decl moved to java-tree.h.
1193 (HANDLE_CLASS_INFO): Set output_class.
1194 (read_class): Likewise.
1195 (parse_class_file): Call gen_indirect_dispatch_tables.
1196 (parse_zip_file_entries): Set output_class.
1197 (java_parse_file): Set output_class. Don't emit symbol tables.
1198 * java-tree.h (output_class): New.
1199 Remove global declarations for otable, atable, and ctable.
1200 (always_initialize_class_p): moved here from decl.c.
1201 (DECL_OWNER): New.
1202 (TYPE_ATABLE_METHODS, TYPE_ATABLE_SYMS_DECL, TYPE_ATABLE_DECL,
1203 TYPE_OTABLE_METHODS, TYPE_OTABLE_SYMS_DECL, TYPE_OTABLE_DECL,
1204 TYPE_CTABLE_DECL, TYPE_CATCH_CLASSES): New.
1205 (struct lang_type): Add otable_methods, otable_decl,
1206 otable_syms_decl, atable_methods, atable_decl, atable_syms_decl,
1207 ctable_decl, catch_classes, type_to_runtime_map.
1208 * expr.c (build_field_ref): Make otable, atable, and ctable class
1209 local rather than global.
1210 (build_known_method_ref): Likewise.
1211 (build_invokeinterface): Likewise.
1212 (java_expand_expr): Pass runtime type (rather than actual type) to
1213 expand_start_catch.
1214 * except.c (prepare_eh_table_type): Create TYPE_TO_RUNTIME_MAP for
1215 this class. Look up each class in that map to delete duplicates.
1216 (expand_end_java_handler): Pass runtime type (rather than actual
1217 type) to expand_start_catch.
1218 * decl.c: (always_initialize_class_p): Decl moved to java-tree.h.
1219 (do_nothing): New.
1220 (java_init_decl_processing): Rearrange things. Remove global
1221 declarations of otable, atable, and ctable.
1222 (java_init_decl_processing): Make lang_eh_runtime_type do_nothing.
1223 (java_expand_body): Set output_class.
1224 * constants.c (build_constant_data_ref): Use output_class, not
1225 current_class.
1226 (alloc_name_constant): Likewise.
1227 * class.c (gen_indirect_dispatch_tables): New.
1228 (build_class_ref): Generate hard reference to superclass, even if
1229 using indirect dispatch.
1230 (build_static_field_ref): Use class local atable.
1231 (make_class_data): Generate hard reference to superclass, even if
1232 using indirect dispatch.
1233 Generate symbolic references to interfaces when using indirect
1234 dispatch.
1235 (make_class_data): Emit otable, atable, and ctable.
1236 Make otable, atable, and ctable class local rather than global.
1237 (emit_catch_table): Make otable, atable, and ctable class local
1238 rather than global.
1239
1240 2003-12-25 Andrew Pinski <pinskia@physics.uc.edu>
1241
1242 * parse.y (catch_clause_parameter): Fix typo.
1243
1244 PR java/13404
1245 * parse.y: (catch_clause_parameter): Return early if $3, aka
1246 formal_parameter, is null.
1247
1248 2003-12-20 Kazu Hirata <kazu@cs.umass.edu>
1249
1250 * class.c: Remove uses of "register" specifier in
1251 declarations of arguments and local variables.
1252 * decl.c: Likewise.
1253 * expr.c: Likewise.
1254 * gjavah.c: Likewise.
1255 * jcf-dump.c: Likewise.
1256 * jcf-io.c: Likewise.
1257 * jcf-parse.c: Likewise.
1258 * jcf-write.c: Likewise.
1259 * keyword.h: Likewise.
1260 * parse.y: Likewise.
1261 * typeck.c: Likewise.
1262 * verify.c: Likewise.
1263
1264 2003-12-06 Kelley Cook <kcook@gcc.gnu.org>
1265
1266 * Make-lang.in (GCJ_CROSS_NAME): Delete.
1267 (java.install_common, java.install-man): Adjust for above.
1268 (java.uninstall): Likewise.
1269
1270 2003-12-03 Michael Koch <konqueror@gmx.de>
1271
1272 * class.c (make_class_data):
1273 Push field value to 'hack_signers' instead of 'signers'.
1274 * decl.c (java_init_decl_processing):
1275 Push field 'hack_signers' instead of 'signers'.
1276
1277 2003-12-03 Zack Weinberg <zack@codesourcery.com>
1278
1279 * lex.h: Check both HAVE_ICONV and HAVE_ICONV_H before
1280 including iconv.h.
1281
1282 2003-12-03 Ralph Loader <rcl@ihug.co.nz>
1283
1284 PR java/12374:
1285 * parse.y (qualify_ambiguous_name): Remove lots of broken
1286 field access processing - there's no need to do that here,
1287 because we have resolve_field_access. Remove
1288 RESOLVE_EXPRESSION_NAME_P as it isn't used anywhere else.
1289 * java-tree.h: Remove RESOLVE_EXPRESSION_NAME_P as it isn't
1290 used.
1291
1292 2003-12-01 Jeff Sturm <jsturm@one-point.com>
1293
1294 Fix PR java/13237
1295 * parse.y (java_complete_lhs): Save location prior to patching
1296 CALL_EXPR.
1297
1298 2003-11-25 Mohan Embar <gnustuff@thisiscool.com>
1299
1300 PR java/12548
1301 * resource.c (write_resource_constructor): Append
1302 "_resource" to constructor identifier name.
1303
1304 2003-11-25 Jeff Sturm <jsturm@one-point.com>
1305
1306 Fix PR java/13183.
1307 * constants.c (cpool_for_class): New function.
1308 (outgoing_cpool): Remove global variable.
1309 (alloc_name_constant): Use cpool_for_class.
1310 (build_constants_constructor): Likewise.
1311 * decl.c (java_expand_body): Set current_class.
1312 * java-tree.h (outgoing_cpool) Remove declaration.
1313 (init_outgoing_cpool): Likewise.
1314 * jcf-parse.c (init_outgoing_cpool): Remove function.
1315 (parse_class_file): Don't call init_outgoing_cpool.
1316 * parse.y (java_complete_expand_methods): Don't call
1317 init_outgoing_cpool. Don't save outgoing_cpool.
1318 (java_expand_classes): Don't restore outgoing_cpool.
1319 (java_finish_classes): Likewise.
1320
1321 2003-11-24 Mohan Embar <gnustuff@thisiscool.com>
1322
1323 * Make-lang.in: (java.install-common) Add
1324 symlink for $(target_noncanonical)-gcjh for
1325 native builds.
1326
1327 2003-11-20 Joseph S. Myers <jsm@polyomino.org.uk>
1328
1329 * Make-lang.in (java.extraclean): Delete.
1330
1331 2003-11-20 Joseph S. Myers <jsm@polyomino.org.uk>
1332
1333 * Make-lang.in (check-java): Add.
1334
1335 2003-11-19 Jeff Sturm <jsturm@one-point.com>
1336
1337 Fix PR java/13024.
1338 * except.c (prepare_eh_table_type): Allocate variable-sized
1339 buffer `buf' with alloca.
1340
1341 2003-11-17 Jeff Sturm <jsturm@one-point.com>
1342
1343 Fix PR java/12857.
1344
1345 decl.c (java_init_decl_processing): Don't initialize
1346 class_not_found_type_node, no_class_def_found_type_node.
1347
1348 java-tree.h (JTI_CLASS_NOT_FOUND_TYPE_NODE,
1349 JTI_NO_CLASS_DEF_FOUND_TYPE_NODE): Remove from java_tree_index.
1350 (class_not_found_type_node, no_class_def_found_type_node):
1351 Don't define.
1352
1353 parse.y (build_dot_class_method_invocation): Add this_class
1354 argument. Qualify method invocations to a different class.
1355 (create_new_parser_context): Initialize saved_data_ctx to 0.
1356 (java_parser_context_save_global): Initialize saved_data_ctx to 1.
1357 (build_dot_class_method): Don't load classes. Register
1358 incomplete types.
1359 (build_incomplete_class_ref): Special cases for interfaces
1360 and inner classes. Move build_dot_class_method call to here...
1361 (patch_incomplete_class_ref): ...from here. Pass current_class
1362 to build_dot_class_method_invocation.
1363 (build_assertion): Pass class_type to
1364 build_dot_class_method_invocation.
1365 (encapsulate_with_try_catch): Handle EXPR_WITH_FILE_LOCATION node.
1366
1367 2003-11-17 Jeff Sturm <jsturm@one-point.com>
1368
1369 Fix PR java/12739.
1370 * java-tree.h (BLOCK_EMPTY_P): Define.
1371 * parse.y (java_complete_lhs): Check for empty blocks
1372 in TRY_FINALLY_EXPR case.
1373
1374 2003-11-17 Andrew Haley <aph@redhat.com>
1375
1376 * java-tree.h (LOCAL_VAR_OUT_OF_SCOPE_P): New.
1377 (struct lang_decl_var:freed): New variable.
1378 * decl.c (poplevel): Mark local vars that have gone out of scope.
1379 (push_jvm_slot): Don't use the RTL of a var that has gone out of
1380 scope.
1381
1382 2003-11-16 Jason Merrill <jason@redhat.com>
1383
1384 * Make-lang.in (java.tags): Create TAGS.sub files in each directory
1385 and TAGS files that include them for each front end.
1386
1387 2003-11-15 Tom Tromey <tromey@redhat.com>
1388
1389 * gjavah.c (print_stub_or_jni): Pass `env' to FatalError.
1390
1391 2003-11-12 Jason Merrill <jason@redhat.com>
1392
1393 PR optimization/12547
1394 * lang.c (java_tree_inlining_walk_subtrees): Just walk
1395 BLOCK_EXPR_BODY directly.
1396
1397 2003-11-12 Andrew Haley <aph@redhat.com>
1398
1399 PR java/11045
1400 * parse.y (fold_constant_for_init): Check that we really do have a
1401 constant.
1402
1403 PR java/11533
1404 * lang.c (merge_init_test_initialization): Clear DECL_INITIAL for
1405 init_test_decls being inlined.
1406
1407 PR java/12890:
1408 * parse.y (do_resolve_class): Check return value from
1409 breakdown_qualified().
1410
1411 2003-11-11 Tom Tromey <tromey@redhat.com>
1412
1413 PR java/12915:
1414 * parse.y (merge_string_cste): Handle case where we have a
1415 pointer that happens to be zero, not null_pointer_node.
1416
1417 2003-11-10 Tom Tromey <tromey@redhat.com>
1418
1419 * jcf-parse.c (classify_zip_file): Correctly compare
1420 filename_length against length of manifest file's name.
1421
1422 2003-11-08 Tom Tromey <tromey@redhat.com>
1423
1424 PR java/12894:
1425 * jcf-parse.c (classify_zip_file): Only skip MANIFEST.MF file.
1426
1427 2003-11-06 Andrew Haley <aph@redhat.com>
1428
1429 * expr.c (java_stack_swap): Make sure destination stack slots are
1430 of the correct type.
1431
1432 2003-11-03 Kelley Cook <kcook@gcc.gnu.org>
1433
1434 * Make-lang.in (dvi): Move targets to $(docobjdir).
1435 (gcj.dvi): Simplify rule and adjust target.
1436 (gcj.info): Simplify rule.
1437 (gcj.pod): New intermediate rule.
1438 (gcjh.pod): Likewise.
1439 (jv-scan.pod): Likewise.
1440 (jcf-dump.pod): Likewise.
1441 (gij.pod): Likewise.
1442 (jv-convert.pod): Likewise.
1443 (rmic.pod): Likewise.
1444 (rmiregistry.pod): Likewise.
1445 (gcj.1): Delete.
1446 (gcjh.1): Delete.
1447 (jv-scan.1): Delete.
1448 (jcf-dump.1): Delete.
1449 (gij.1): Delete.
1450 (jv-convert.1): Delete.
1451 (rmic.1): Delete.
1452 (rmiregistry.1): Delete.
1453
1454 2003-11-02 Jeff Sturm <jsturm@one-point.com>
1455
1456 Fixes PR java/12866.
1457 * parse.y (resolve_qualified_expression_name): Move test
1458 for outer field access methods from here...
1459 (check_thrown_exceptions) ...to here.
1460
1461 2003-11-01 Kelley Cook <kcook@gcc.gnu.org>
1462
1463 * .cvsignore: Delete.
1464
1465 2003-10-28 Frank Ch. Eigler <fche@redhat.com>
1466
1467 * verify.c (verify_jvm_instructions): Don't warn about legal
1468 eh binding regions generated for example by jdk 1.4.1.
1469
1470 2003-10-24 David S. Miller <davem@redhat.com>
1471
1472 * jcf-parse.c (jcf_parse): Fix args to fatal_error().
1473
1474 2003-10-22 Andrew Haley <aph@redhat.com>
1475
1476 * lang.c (LANG_HOOKS_GET_CALLEE_FNDECL): New.
1477 (java_get_callee_fndecl): New.
1478
1479 * jcf-parse.c (java_parse_file): Call emit_catch_table().
1480
1481 * java-tree.h (ctable_decl): New.
1482 (catch_classes): New.
1483 (java_tree_index): Add JTI_CTABLE_DECL, JTI_CATCH_CLASSES.
1484
1485 * decl.c (java_init_decl_processing): Add catch_class_type.
1486 Add ctable_decl.
1487 Add catch_classes field.
1488
1489 * class.c (build_indirect_class_ref): Break out from
1490 build_class_ref.
1491 (make_field_value): Check flag_indirect_dispatch.
1492 (make_class_data): Ditto.
1493 Tidy uses of PUSH_FIELD_VALUE.
1494 Add field catch_classes.
1495 (make_catch_class_record): New.
1496
1497 * java-tree.h (PUSH_FIELD_VALUE): Tidy.
1498
1499 2003-10-22 Kazu Hirata <kazu@cs.umass.edu>
1500
1501 * jcf-write.c: Follow spelling conventions.
1502 * parse.y: Likewise.
1503
1504 2003-10-22 Kazu Hirata <kazu@cs.umass.edu>
1505
1506 * ChangeLog: Fix typos.
1507 * expr.c: Fix comment typos.
1508 * jcf-write.c: Likewise.
1509 * lang.c: Likewise.
1510 * lex.c: Likewise.
1511 * mangle.c: Likewise.
1512 * parse-scan.y: Likewise.
1513 * parse.y: Likewise.
1514
1515 2003-10-22 Tom Tromey <tromey@redhat.com>
1516
1517 * expr.c (expand_byte_code): Only warn about dead bytecode when
1518 extra_warnings is set.
1519
1520 2003-10-22 Bryce McKinlay <bryce@mckinlay.net.nz>
1521
1522 Fix for PR java/12586.
1523 * mangle.c (find_compression_record_match): Don't iterate through
1524 package namespace elements unless they all match compression_table
1525 entries.
1526
1527 2003-10-20 Kelley Cook <kcook@gcc.gnu.org>
1528
1529 * Make-lang.in (info): Honor $(parsedir) and $(docobjdir).
1530 (generate-manpages): Likewise.
1531 (java.maintainer-clean): Likewise.
1532 (gcj.info): Likewise.
1533 (gcj.1): Likewise.
1534 (gcjh.1): Likewise.
1535 (jv-scan.1): Likewise.
1536 (jcf-dump.1): Likewise.
1537 (gij.1): Likewise.
1538 (jv-convert.1): Likewise.
1539 (rmic.1): Likewise.
1540 (rmiregistry.1): Likewise.
1541 (java.install-man): Likewise.
1542 (parse-scan.o): Move and define complete compile line.
1543 (parse.o): Likewise.
1544 (jcf-tree-inline.o): Move.
1545
1546 2003-10-20 Mark Mitchell <mark@codesourcery.com>
1547
1548 * Make-lang.in (info): Update dependencies.
1549 (java.install-info): Remove.
1550 ($(srcdir)/java/gcj.info): Replace with ...
1551 ($(docobjdir)/gcj.info): ... this.
1552
1553 2003-10-14 Nathanael Nerode <neroden@gcc.gnu.org>
1554
1555 * Make-lang.in: Replace uses of $(target_alias) with
1556 $(target_noncanonical).
1557
1558 2003-10-09 Tom Tromey <tromey@redhat.com>
1559
1560 * decl.c (java_init_decl_processing): Declare signers field.
1561 * class.c (make_class_data): Set signers field.
1562
1563 2003-10-09 Jason Merrill <jason@redhat.com>
1564
1565 * parse.y (patch_assignment): Use make_node to create a BLOCK.
1566 * parse.h (BUILD_PTR_FROM_NAME): Use make_node to create a
1567 POINTER_TYPE.
1568
1569 2003-10-06 Mark Mitchell <mark@codesourcery.com>
1570
1571 * Make-lang.in (java.info): Replace with ...
1572 (info): ... this.
1573 (java.dvi): Replace with ...
1574 (dvi): ... this.
1575 (java.generated-manpages): Replace with ...
1576
1577 2003-10-03 Kelley Cook <kelleycook@wideopenwest.com>
1578
1579 * builtins.c, jcf.h, jvspec.c: Remove PARAMS macros.
1580
1581 2003-10-01 Andrew Haley <aph@redhat.com>
1582
1583 * jcf-parse.c (java_parse_file): Write otable and atable.
1584 * java-tree.h (atable_methods): New.
1585 (atable_decl): New.
1586 (atable_syms_decl): New.
1587 (enum java_tree_index): Add JTI_ATABLE_METHODS, JTI_ATABLE_DECL,
1588 JTI_ATABLE_SYMS_DECL. Rename JTI_METHOD_SYMBOL* to JTI_SYMBOL*.
1589 (symbol_*type): Rename method_symbol* to symbol*type.
1590 (emit_offset_symbol_table): Delete.
1591 (emit_symbol_table): New.
1592 (get_symbol_table_index): New.
1593 (atable_type): New.
1594 * expr.c (build_field_ref): Handle flag_indirect_dispatch.
1595 (build_known_method_ref): Likewise.
1596 (get_symbol_table_index): Rename from get_offset_table_index.
1597 Parameterize to allow re-use by differing types of symbol table.
1598 (build_invokevirtual): Pass table to get_offset_table_index.
1599 * decl.c (java_init_decl_processing): Push types and decls for
1600 atable and atable_syyms.
1601 * class.c (build_static_field_ref): Handle flag_indirect_dispatch.
1602 (make_class_data): Add new fields atable and atable_syms.
1603 (emit_symbol_table): Rename from emit_offset_symbol_table.
1604 Parameterize to allow re-use by different types of symbol table.
1605 (build_symbol_entry): Renamed from build_method_symbols_entry.
1606
1607 2003-09-30 Roger Sayle <roger@eyesopen.com>
1608
1609 * jcf-write.c (generate_bytecode_insns): Implement evaluate-once
1610 semantics for SAVE_EXPR, by caching the result in a temporary.
1611
1612 2003-09-28 Richard Henderson <rth@redhat.com>
1613
1614 * check-init.c (check_init): Save and restore input_location
1615 instead of file and line separately.
1616 * decl.c (java_expand_body): Likewise.
1617 * jcf-write.c (generate_bytecode_insns): Likewise.
1618 * parse.y (safe_layout_class): Likewise.
1619 * jcf-parse.c (read_class, parse_class_file): Likewise.
1620 (java_parse_file): Use %H for warning locator.
1621
1622 2003-09-28 Roger Sayle <roger@eyesopen.com>
1623
1624 * expr.c (java_check_reference): Use the semantics of COND_EXPRs
1625 with void-type branches instead of using a COMPOUND_EXPR.
1626
1627 2003-09-28 Jeff Sturm <jsturm@one-point.com>
1628
1629 * decl.c (java_optimize_inline, dump_function): Remove.
1630 * java-tree.h (java_optimize_inline): Remove declaration.
1631 * jcf-parse.c (java_parse_file): Assume flag_unit_at_a_time is set.
1632 * parse.y (source_end_java_method, java_expand_classes):
1633 Likewise. Remove dead code.
1634
1635 2003-09-27 Roger Sayle <roger@eyesopen.com>
1636
1637 * lang.c (java_init_options): Set flag_evaluation_order.
1638 * expr.c (force_evaluation_order): Don't attempt to force
1639 evaluation order of binary operations using save_expr.
1640 * parse.y (java_complete_lhs): No longer need to call
1641 force_evaluation_order when constructing binary operators.
1642
1643 2003-09-27 Alexandre Petit-Bianco <apbianco@redhat.com>
1644 Bryce McKinlay <bryce@mckinlay.net.nz>
1645
1646 PR java/1333:
1647 * parse.y (not_accessible_field_error): New function.
1648 (resolve_expression_name): Check field access permissions.
1649 (resolve_qualified_expression_name): Use
1650 not_accessible_field_error.
1651 (resolve_qualified_expression_name): Likewise.
1652
1653 2003-09-24 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1654
1655 * class.c (build_utf8_ref): Test for HAVE_GAS_SHF_MERGE value.
1656
1657 2003-09-23 Roger Sayle <roger@eyesopen.com>
1658
1659 * jcf-write.c (generate_bytecode_insns): Optimize binary operations
1660 with equal operands without side-effects.
1661
1662 2003-09-22 Jeff Sturm <jsturm@one-point.com>
1663
1664 * decl.c (java_init_decl_processing): Don't emit otable decls
1665 if flag_indirect_dispatch is not set.
1666
1667 2003-09-21 Richard Henderson <rth@redhat.com>
1668
1669 * class.c, decl.c, jcf-parse.c, jcf-write.c, parse.y,
1670 resource.c: Revert.
1671
1672 2003-09-21 Richard Henderson <rth@redhat.com>
1673
1674 * class.c, decl.c, jcf-parse.c, jcf-write.c, parse.y,
1675 resource.c: Update for DECL_SOURCE_LOCATION rename and change to const.
1676
1677 2003-09-20 Richard Henderson <rth@redhat.com>
1678
1679 * check-init.c, class.c, decl.c, expr.c: Use %J in diagnostics.
1680
1681 2003-09-18 Roger Sayle <roger@eyesopen.com>
1682
1683 * expr.c (java_truthvalue_conversion): Remove FFS_EXPR case.
1684 * check-init.c (check_init): Likewise.
1685
1686 2003-09-18 Roger Sayle <roger@eyesopen.com>
1687
1688 * jcf-write.c (generate_bytecode_insns): Add support for fconst_2.
1689
1690 2003-09-16 Andrew Haley <aph@redhat.com>
1691
1692 * jcf-write.c (generate_bytecode_insns): Add MIN_EXPR and MAX_EXPR.
1693
1694 2003-09-17 Ranjit Mathew <rmathew@hotmail.com>
1695
1696 Fixes PR java/9577
1697 * mangle.c (find_compression_record_match): Skip
1698 over a "6JArray" (the array template mangled string)
1699 IDENTIFIER_NODE.
1700 (mangle_array_type): Correct minor typo.
1701 (atms): Move definition to the beginning.
1702
1703 2003-09-16 Bryce McKinlay <bryce@mckinlay.net.nz>
1704
1705 * class.c (add_miranda_methods): Ensure super-interfaces are laid
1706 out. Fix for PR java/12254.
1707
1708 2003-09-11 Richard Henderson <rth@redhat.com>
1709
1710 * parse.y (source_end_java_method): Update for new
1711 cgraph_finalize_function argument.
1712
1713 2003-09-09 Richard Henderson <rth@redhat.com>
1714
1715 * parse.y (source_end_java_method): Update call to
1716 cgraph_finalize_function.
1717
1718 2003-09-03 Jeff Sturm <jsturm@one-point.com>
1719
1720 * decl.c (java_expand_body): New function.
1721 * expr.c (build_class_init): Set DECL_IGNORED_P.
1722 * java-tree.h (start_complete_expand_method,
1723 java_expand_body): Declare.
1724 * jcf-parse.c (cgraph.h): Include.
1725 (java_parse_file): Handle flag_unit_at_a_time.
1726 * lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING,
1727 LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION): Define.
1728 (java_estimate_num_insns): Use walk_tree_without_duplicates.
1729 (java_start_inlining): New function.
1730 * parse.h (java_finish_classes): Declare.
1731 * parse.y: Include cgraph.h.
1732 (block): Don't special-case empty block production.
1733 (craft_constructor): Set DECL_INLINE.
1734 (source_end_java_method): Handle flag_unit_at_a_time.
1735 Replace inline code with call to java_expand_body.
1736 (start_complete_expand_method): Remove static modifier.
1737 (java_expand_method_bodies): Patch function tree for
1738 class initialization and/or synchronization as needed.
1739 Don't begin RTL expansion yet.
1740 (java_expand_classes): Check flag_unit_at_a_time before
1741 calling finish_class.
1742 (java_finish_classes): New function.
1743 (java_complete_lhs): Ensure COMPOUND_EXPR has non-NULL type.
1744 (patch_assignment): Set DECL_CONTEXT on temporary variable.
1745 (emit_test_initialization): Set DECL_IGNORED_P.
1746
1747 2003-09-03 Roger Sayle <roger@eyesopen.com>
1748
1749 * builtins.c (enum builtin_type): Delete unused enumeration.
1750 * Make-lang.in (java/builtins.o): Remove built-types.def dependency.
1751
1752 2003-08-28 Tom Tromey <tromey@redhat.com>
1753
1754 * gcj.texi (Extensions): Document gcjlib URLs.
1755
1756 2003-08-20 Tom Tromey <tromey@redhat.com>
1757
1758 * gcj.texi (Extensions): Added xref.
1759 (libgcj Runtime Properties): Document
1760 gnu.gcj.runtime.VMClassLoader.library_control.
1761
1762 2003-08-20 Andrew Haley <aph@redhat.com>
1763
1764 * except.c (prepare_eh_table_type): Use new encoding for exception
1765 handlers when using -fno-assume-compiled.
1766
1767 2003-08-13 Tom Tromey <tromey@redhat.com>
1768
1769 * gcj.texi (Invoking gij): Document -X and -?.
1770
1771 2003-08-13 Mohan Embar <gnustuff@thisiscool.com>
1772
1773 * Make-lang.in: Added missing win32-host.o to JAVA_OBJS,
1774 GCJH_OBJS, JCFDUMP_OBJS
1775 * win32-host.c: Removed the unnecessary and broken dependency
1776 on jcf.h
1777
1778 2003-08-11 Tom Tromey <tromey@redhat.com>
1779
1780 * parse.y (java_check_regular_methods): Typo fixes. Call
1781 check_interface_throws_clauses. Use
1782 check_concrete_throws_clauses.
1783 (check_interface_throws_clauses): New function.
1784 (check_concrete_throws_clauses): New function.
1785 (hack_is_accessible_p): New function.
1786 (find_most_specific_methods_list): Added FIXME.
1787 * typeck.c (lookup_do): Use `flags' argument to decide what to
1788 do. Reimplemented.
1789 (lookup_argument_method_generic): New function.
1790 (lookup_argument_method2): Removed.
1791 * jcf.h (ACC_INVISIBLE): New define.
1792 * jcf-write.c (generate_classfile): Skip invisible methods.
1793 * class.c (add_miranda_methods): New function.
1794 (layout_class_methods): Use it.
1795 (get_access_flags_from_decl): Use ACC_INVISIBLE.
1796 * java-tree.h (METHOD_INVISIBLE): New define.
1797 (lang_decl_func) [invisible]: New field.
1798 (lookup_argument_method_generic): Declare.
1799 (SEARCH_INTERFACE): New define.
1800 (SEARCH_SUPER): Likewise.
1801 (SEARCH_ONLY_INTERFACE): Likewise.
1802 (SEARCH_VISIBLE): Likewise.
1803 (lookup_argument_method2): Removed declaration.
1804
1805 2003-08-05 Tom Tromey <tromey@redhat.com>
1806
1807 Fix for PR java/11600:
1808 * parse.y (java_complete_lhs): See whether we're calling a method
1809 on an array.
1810 (check_thrown_exceptions): Added `is_array_call' argument;
1811 fixed `clone' checking; updated all callers.
1812
1813 2003-08-05 Steven Bosscher <steven@gcc.gnu.org>
1814
1815 * java-tree.h (DECL_ESTIMATED_INSNS): Remove (moved to tree.h).
1816
1817 2003-08-03 Tom Tromey <tromey@redhat.com>
1818
1819 * java-tree.h (METHOD_TRANSIENT): Removed.
1820 * decl.c (pushdecl): Removed some dead code.
1821 * class.c (get_access_flags_from_decl): Can't have transient
1822 method.
1823 (add_method_1): Can't have a transient method.
1824
1825 2003-07-28 Andreas Jaeger <aj@suse.de>
1826
1827 * jvspec.c: Convert to ISO C90 prototypes.
1828
1829 2003-07-25 Nathan Sidwell <nathan@codesourcery.com>
1830
1831 * decl.c (force_poplevels): Fix warning call.
1832
1833 2003-07-25 Gabriel Dos Reis <gdr@integrable-solutions.net>
1834
1835 * expr.c (expand_java_field_op): Don't use xxx_with_decl
1836 (expand_java_field_op): Likewise.
1837 * class.c (layout_class_method): Likewise
1838 (emit_register_classes): Likewise.
1839 * decl.c (pushdecl): Likewise.
1840 (poplevel): Likewise.
1841 (force_poplevels): Likewise.
1842 (give_name_to_locals): Likewise.
1843 * check-init.c (check_for_initialization): Likewise.
1844
1845 2003-07-24 Jason Merrill <jason@redhat.com>
1846
1847 * java-tree.h: Move boolean_type_node et al to the back end.
1848
1849 2003-07-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1850
1851 * class.c java-tree.h jcf-write.c jvspec.c: Remove unnecessary
1852 casts.
1853
1854 2003-07-19 Neil Booth <neil@daikokuya.co.uk>
1855
1856 * lang.opt: Don't show -MD_ and -MDD_.
1857
1858 2003-07-18 Neil Booth <neil@daikokuya.co.uk>
1859
1860 * lang-options.h: Remove.
1861 * lang.opt: Add help text.
1862
1863 2003-07-15 Kazu Hirata <kazu@cs.umass.edu>
1864
1865 * expr.c: Remove the last argument to expand_assignment().
1866
1867 2003-07-09 Jan Hubicka <jh@suse.cz>
1868
1869 * java-tree.h (DECL_NUM_STMTS): Rename to...
1870 (DECL_ESTIMATED_INSNS): ... this.
1871 * lang.c (java_estimate_num_insns, java_estimate_num_insns_1):
1872 New static functions.
1873 (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS): Define.
1874 * parser.y (add_stmt_to_compound): Do not account statements.
1875
1876 2003-07-08 Mark Wielaard <mark@klomp.org>
1877
1878 * gcj.texi: CNI now expands to Compiled Native Interface.
1879
1880 2003-07-08 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
1881
1882 * Make-lang.in (java/gcj.dvi): Use PWD_COMMAND.
1883
1884 2003-07-07 Nathan Sidwell <nathan@codesourcery.com>
1885
1886 * expr.c (expand_byte_code): Adjist emit_line_note call.
1887
1888 2003-07-06 Neil Booth <neil@daikokuya.co.uk>
1889
1890 * lang.c (java_handle_option): Don't handle filenames.
1891
1892 2003-07-02 Zack Weinberg <zack@codesourcery.com>
1893
1894 * jcf-path.c: Don't default-define PATH_SEPARATOR nor
1895 DIR_SEPARATOR.
1896 Use FILENAME_CMP.
1897 * jcf-write.c: Don't default-define DIR_SEPARATOR.
1898 * jcf.h: Delete COMPARE_FILENAMES definition.
1899
1900 2003-07-02 Neil Booth <neil@daikokuya.co.uk>
1901
1902 * lang.c (java_init_options): Update prototype.
1903
1904 2003-07-01 Nathan Sidwell <nathan@codesourcery.com>
1905
1906 * decl.c (poplevel): Adjust define_label call.
1907
1908 2003-06-27 Zack Weinberg <zack@codesourcery.com>
1909
1910 * gjavah.c (flag_jni): Make non-static.
1911 * parse-scan.y (ctxp): Make non-static.
1912
1913 * class.c (build_method_symbols_entry)
1914 * expr.c (get_offset_table_index)
1915 * jcf-parse.c (jcf_parse):
1916 Mark the definition static, matching the forward declaration.
1917
1918 2003-06-26 Neil Booth <neil@daikokuya.co.uk>
1919
1920 * lang.c (java_handle_option): Don't check for missing arguments.
1921
1922 2003-06-20 Nathan Sidwell <nathan@codesourcery.com>
1923
1924 * class.c (push_class): Use a location_t to save place.
1925 (emit_register_classes): Set input_location. Adjust
1926 expand_function_end call.
1927 * resource.c (write_resource_constructor): Likewise.
1928 * decl.c (end_java_method): Adjust expand_function_end call.
1929 * parse.y (source_end_java_method): Likewise.
1930
1931 2003-06-17 Robert Abeles <rabeles@archaelogic.com>
1932
1933 * lang.c (java_handle_option): Likewise.
1934
1935 2003-06-16 Neil Booth <neil@daikokuya.co.uk>
1936
1937 * lang.c (java_handle_option): Special-casing of optional
1938 joined arguments no longer needed.
1939 * lang.opt: Update switches that take optional argument.
1940
1941 2003-06-15 Neil Booth <neil@daikokuya.co.uk>
1942
1943 * lang.opt: Declare Java.
1944 * lang.c (java_init_options): Update.
1945
1946 2003-06-15 Neil Booth <neil@daikokuya.co.uk>
1947
1948 * lang.c (version_flag): Rename to v_flag to avoid clash w/ toplev.h.
1949
1950 2003-06-14 Neil Booth <neil@daikokuya.co.uk>
1951
1952 * lang-specs.h: Rewrite -MD and -MMD to append an underscore.
1953 * lang.c (java_handle_option): -MD and -MMD have an underscore.
1954 * lang.opt: -MD and -MMD have an underscore.
1955
1956 2003-06-14 Nathan Sidwell <nathan@codesourcery.com>
1957
1958 * class.c (emit_register_classes): Adjust init_function_start
1959 call.
1960 * decl.c (complete_start_java_method): Likewise.
1961 * resource.c (write_resource_constructor): Likewise.
1962
1963 2003-06-14 Neil Booth <neil@daikokuya.co.uk>
1964
1965 * Make-lang.in: Update to use options.c and options.h.
1966 * lang.c: Include options.h not j-options.h.
1967 (java_handle_option): Abort on unrecognized option.
1968 (java_init_options): Request Java switches.
1969
1970 2003-06-11 Neil Booth <neil@daikokuya.co.uk>
1971
1972 * Make-lang.in: Handle mostlyclean.
1973
1974 2003-06-11 Tom Tromey <tromey@redhat.com>
1975
1976 * lang.c (java_handle_option): Update dependency_tracking for
1977 OPT_MF case.
1978
1979 * lang.c (java_handle_option): OPT_fbootclasspath_ can take an
1980 empty argument.
1981
1982 2003-06-10 Andrew Haley <aph@redhat.com>
1983
1984 * resource.c (write_resource_constructor): Use expand_expr to
1985 generate the address of the label attached to a resource.
1986 * Make-lang.in (java/resource.o): Add expr.h
1987
1988 2003-06-10 Andrew Haley <aph@redhat.com>
1989
1990 * lang.c (LANG_HOOKS_DECL_OK_FOR_SIBCALL): New.
1991 (java_decl_ok_for_sibcall): New.
1992
1993 2003-06-09 Neil Booth <neil@daikokuya.co.uk>
1994
1995 * Make-lang.in (JAVA_OBJS, java/lang.o): Update.
1996 (java/j-options.c, java/j-options.h): New.
1997 * java-tree.h (resource_name, compile_resource_file,
1998 compile_resource_data): Constify.
1999 * jcf-write.c (jcf_write_base_directory): Similarly.
2000 * jcf.h (jcf_write_base_directory): Similarly.
2001 * lang.c: Include j-options.h.
2002 (cl_options_count, cl_options, string_option, java_decode_option,
2003 lang_f_options, lang_W_options, LANG_HOOKS_DECODE_OPTION,
2004 process_option_with_no): Remove.
2005 (resource_name): Constify.
2006 (LANG_HOOKS_HANDLE_OPTION): Override.
2007 (java_handle_option): New.
2008 (java_init): Don't call jcf_path_init.
2009 (java_init_options): Call jcf_path_init.
2010 * lang.opt: New.
2011 * resource.c (compile_resource_data, compile_resource_file): Constify.
2012
2013 2003-06-09 Nathan Sidwell <nathan@codesourcery.com>
2014
2015 * java-tree.h (DECL_FUNCTION_LAST_LINE): New.
2016 (struct lang_decl_func): Add last_line field.
2017 * parse.h (DECL_SOURCE_LINE_MERGE, DECL_SOURCE_LINE_FIRST,
2018 DECL_SOURCE_LINE_LAST): Remove.
2019 * parse.y (missing_return_error, finish_method_declaration,
2020 lookup_cl, start_artificial_method_body, source_end_java_method,
2021 start_complete_expand_method): Adjust.
2022
2023 2003-06-08 Tom Tromey <tromey@redhat.com>
2024
2025 * jvspec.c (jvgenmain_spec): Added `*' after fassume-compiled and
2026 fno-assume-compiled.
2027
2028 2003-06-08 Roger Sayle <roger@eyesopen.com>
2029
2030 * builtins.c (define_builtin_type, builtin_types): Delete.
2031 (define_builtin): Rewritten to take just the built-in code,
2032 the function's name, type and fallback library function name.
2033 All built-ins used by Java are implicit and BUILT_IN_NORMAL.
2034 (initialize_builtins): Overhaul to define the GCC builtins
2035 used by gcj manually, providing the Java run-time's
2036 implementations as the fallback library function.
2037
2038 2003-06-08 Anthony Green <green@redhat.com>
2039
2040 * parse.y (patch_cast): Fix conversions from floating-point to
2041 integral types.
2042
2043 2003-06-08 Neil Booth <neil@daikokuya.co.uk>
2044
2045 * Make-lang.in: Update.
2046 * lang.c: Include opts.h. Define cl_options_count and cl_options.
2047
2048 2003-06-07 Neil Booth <neil@daikokuya.co.uk>
2049
2050 * lang.c (java_init_options): Update.
2051
2052 2003-06-05 Jan Hubicka <jh@suse.cz>
2053
2054 * Make-lang.in: Add support for stageprofile and stagefeedback
2055
2056 2003-05-31 Roger Sayle <roger@eyesopen.com>
2057
2058 * lang.c (java_init_options): Prescribe wrap-around two's
2059 complement arithmetic overflow by setting flag_wrapv.
2060
2061 2003-05-29 Roger Sayle <roger@eyesopen.com>
2062
2063 * builtins.c (cos_builtin, sin_builtin, sqrt_builtin): Delete.
2064 (builtin_record): Add an additional builtin_code field to
2065 record which GCC built-in corresponds to the Java function.
2066 (java_builtins): Add new entries for atan, atan2, exp, log,
2067 pow and tan.
2068 (max_builtin, min_builtin, abs_builtin): Perform constant
2069 folding on the resulting tree.
2070 (java_build_function_call_expr): Likewise, perform constant
2071 folding on the resulting tree.
2072 (initialize_builtins): The NULL creators are now allowed in
2073 the java_builtins table, which is now terminated by an entry
2074 with builtin_code == END_BUILTINS.
2075 (check_for_builtin): Likewise. If the matching creator is
2076 NULL, construct the call using java_build_function_call_expr
2077 directly with the decl for the corresponding builtin_code.
2078
2079 2003-05-23 Nathanael Nerode <neroden@gcc.gnu.org>
2080
2081 * win32-host.c: Normalize copyright boilerplate.
2082
2083 2003-05-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2084
2085 * parse.y (print_int_node): Use string concatentation on
2086 HOST_WIDE_INT_PRINT_* format specifier to collapse multiple
2087 function calls into one.
2088
2089 2003-05-13 Zack Weinberg <zack@codesourcery.com>
2090
2091 * jcf-parse.c, jcf-write.c, lex.c: Replace all calls to
2092 fatal_io_error with calls to fatal_error; add ": %m" to the end of
2093 all the affected error messages.
2094
2095 2003-05-13 Richard Henderson <rth@redhat.com>
2096
2097 * class.c (layout_class_method): Set DECL_EXTERNAL.
2098 * decl.c (java_mark_decl_local, java_mark_class_local): New.
2099 * java-tree.h (java_mark_class_local): Declare.
2100 * jcf-parse.c (parse_class_file): Use it.
2101 * parse.y (java_expand_classes): Likewise.
2102
2103 2003-05-04 Nathan Sidwell <nathan@codesourcery.com>
2104
2105 * Make-lang.in (java/parse.o, java/parse-scan.o): Depend on input.h.
2106 * lex.h: #include input.h.
2107 * jv-scan.c (input_filename): Remove.
2108
2109 2003-05-02 Tom Tromey <tromey@redhat.com>
2110
2111 PR java/10491:
2112 * gjavah.c (HANDLE_INNERCLASSES_ATTRIBUTE): New macro.
2113 (handle_inner_classes): New function.
2114
2115 2003-05-01 Tom Tromey <tromey@redhat.com>
2116
2117 PR java/10459:
2118 * parse.y (finish_for_loop): Do nothing if update expression is a
2119 EXPR_WFL_NODE wrapping nothing.
2120 (java_complete_lhs) <COMPOUND_EXPR>: Likewise.
2121
2122 2003-05-02 Nathan Sidwell <nathan@codesourcery.com>
2123
2124 * lex.h (input_lineno): Remove declaration.
2125 * parse-scan.y: #include input.h.
2126 (input_filename): Remove declaration.
2127 (input_location): Add definition.
2128 (input_line): Remove definition.
2129
2130 2003-05-01 Nathan Sidwell <nathan@codesourcery.com>
2131
2132 * lex.h (lineno): Rename to ...
2133 (input_line): ... here
2134 * parse-scan.y (lineno): Rename to ...
2135 (input_line): ... here.
2136 (reset_report): Rename lineno to input_line.
2137 * check-init.c (check_init): Likewise.
2138 * class.c (push_class): Likewise.
2139 * decl.c (complete_start_java_method, end_java_method): Likewise.
2140 * expr.c (expand_byte_code): Likewise.
2141 * jcf-parse.c (give_name_to_class, parse_class_file): Likewise.
2142 * jcf-write.c (generate_bytecode_insns): Likewise.
2143 * lex.c (java_init_lex, java_allocate_new_line,
2144 do_java_lex): Likewise.
2145 * parse.h (YYNOT_TWICE): Likewise.
2146 * parse.y (empty_statement, expression_statement,
2147 java_pop_parser_context, java_parser_context_save_global,
2148 yyerror, register_fields, method_header, safe_layout_class,
2149 find_in_imports_on_demand, create_artificial_method,
2150 source_end_java_method, start_complete_expand_method,
2151 build_thisn_assign, java_complete_lhs,
2152 maybe_absorb_scoping_block): Likewise.
2153
2154 2003-04-20 Mohan Embar <gnustuff@thisiscool.com>
2155
2156 * jcf-io.c (find_class): use DIR_SEPARATOR instead of
2157 '/' when computing java source filename
2158
2159 2003-04-13 Tom Tromey <tromey@redhat.com>
2160
2161 * gjavah.c (print_c_decl): Indentation fix.
2162
2163 2003-04-12 Zack Weinberg <zack@codesourcery.com>
2164
2165 * class.c (make_field_value, make_method_value, get_dispatch_table)
2166 (make_class_data, emit_offset_symbol_table)
2167 * constants.c (build_constants_constructor)
2168 * java-tree.h (START_RECORD_CONSTRUCTOR)
2169 * parse.y (maybe_build_array_element_wfl):
2170 Use build_constructor.
2171
2172 2003-04-10 Eric Blake <ebb9@email.byu.edu>
2173
2174 PR java/10253:
2175 * parse.y (string_convert_int_cst): Always use at least one digit
2176 in string conversion. Remove ASCII dependence.
2177 (merge_string_cste): Fix merging of 3-byte UTF-8 characters.
2178
2179 2003-03-16 Mohan Embar <gnustuff@thisiscool.com>
2180
2181 * Make-lang.in: added win32-host.c
2182 * jcf.h: defined macro JCF_OPEN_EXACT_CASE which
2183 resolves to open() on non-Win32 platforms and
2184 Win32-specific jcf_open_exact_case() on Win32
2185 * jcf-io.c (find_class): use JCF_OPEN_EXACT_CASE
2186 when trying .java and .class files
2187 * win32-host.c: added to repository. Defines
2188 Win32-specific jcf_open_exact_case()
2189
2190 2003-04-10 Andrew Haley <aph@redhat.com>
2191
2192 * jcf-write.c (struct jcf_partial): num_jsrs: new field.
2193 (maybe_free_localvar): Renamed from localvar_free.
2194 Add new arg, really.
2195 (generate_bytecode_insns): Set new variable, jsrs.
2196 Only free local vars if no jsr insns have been emittted.
2197 Call maybe_free_localvar, not localvar_free.
2198
2199 2003-03-30 Joseph S. Myers <jsm@polyomino.org.uk>
2200
2201 * gcj.texi: Remove @ at start of file.
2202
2203 2003-03-25 Tom Tromey <tromey@redhat.com>
2204
2205 * parse.y (create_interface): Call CHECK_DEPRECATED.
2206
2207 2003-03-23 Zack Weinberg <zack@codesourcery.com>
2208
2209 * Make-lang.in: Link jcf-dump against $(LDEXP_LIB).
2210
2211 2003-03-21 Zack Weinberg <zack@codesourcery.com>
2212
2213 * javaop.h (jfloat, jdouble): Make them structures mirroring
2214 the bit fields of IEEE float and double respectively.
2215 (JFLOAT_FINITE, JFLOAT_QNAN_MASK, JFLOAT_EXP_BIAS,
2216 JDOUBLE_FINITE, JDOUBLE_QNAN_MASK, JDOUBLE_EXP_BIAS): New.
2217 (union Word, union DWord): Delete.
2218 (WORD_TO_FLOAT, WORDS_TO_DOUBLE): Update to match.
2219
2220 * gjavah.c (java_float_finite, java_double_finite, F_NAN_MASK,
2221 D_NAN_MASK): Delete.
2222 (jni_print_float, jni_print_double): New. Generate
2223 hexadecimal floating constants.
2224 (print_field_info): Use jni_print_float/double.
2225
2226 * jcf-dump.c: Include math.h. Use ldexp/frexp to assemble
2227 finite floating point numbers for output; special case
2228 non-finite floats.
2229
2230 2003-03-19 Nathanael Nerode <neroden@gcc.gnu.org>
2231
2232 * lang.c (java_dump_tree): Change return type from 'int' to 'bool'.
2233 Replace 0 and 1 with true and false in return statements.
2234
2235 2003-03-19 Tom Tromey <tromey@redhat.com>
2236
2237 * lex.c (do_java_lex): Renamed from java_lex.
2238 (java_lex): New function.
2239 Include timevar.h.
2240
2241 2003-03-13 Tom Tromey <tromey@redhat.com>
2242
2243 * parse.y (resolve_inner_class): Error if qualifier is a primitive
2244 type.
2245
2246 2003-03-04 Andrew Haley <aph@redhat.com>
2247
2248 * gjavah.c (is_first_data_member): New global variable.
2249 (print_c_decl): If it's the first data member, align it as the
2250 superclass.
2251 (process_file): Set is_first_data_member.
2252
2253 2003-03-11 Tom Tromey <tromey@redhat.com>
2254
2255 * parse.y (resolve_field_access): Initialize class if field is
2256 found in another static field.
2257 * expr.c (build_class_init): Don't optimize out initialization of
2258 implemented interface.
2259
2260 2003-03-11 Andrew Haley <aph@redhat.com>
2261
2262 * jcf-io.c (caching_stat): Initialize origsep to remove compiler
2263 warning.
2264
2265 2003-03-10 Ranjit Mathew <rmathew@hotmail.com>
2266
2267 * jcf-io.c (caching_stat): Account for both DIR_SEPARATOR
2268 and DIR_SEPARATOR_2 for a target.
2269 Correct minor typos.
2270
2271 * jcf-write.c (make_class_file_name): Take both DIR_SEPARATOR
2272 and DIR_SEPARATOR_2 for a target into account.
2273
2274 2003-03-08 Neil Booth <neil@daikokuya.co.uk>
2275
2276 * lang.c (java_init): Update prototype, move code to java_post_options.
2277 (java_post_options): Similarly.
2278
2279 2003-03-05 Ranjit Mathew <rmathew@hotmail.com>
2280
2281 * jcf.h (COMPARE_FILENAMES): New macro similar to "strcmp" to
2282 compare file name components depending on the case-sensitivity
2283 or otherwise of the host file system.
2284
2285 * jcf-path.c (add_entry): Use COMPARE_FILENAMES instead of
2286 "strcmp" to compare file name components.
2287 Use IS_DIR_SEPARATOR instead of comparing directly against
2288 DIR_SEPARATOR.
2289 (jcf_path_extdirs_arg): Use IS_DIR_SEPARATOR instead of
2290 comparing directly against DIR_SEPARATOR.
2291
2292 2003-03-04 Tom Tromey <tromey@redhat.com>
2293
2294 * Make-lang.in (java.tags): New target.
2295
2296 2003-03-01 Roger Sayle <roger@eyesopen.com>
2297
2298 * java/builtins.c (builtin_type): Handle DEF_FUNCTION_TYPE_VAR_3.
2299 (initialize_builtins): Handle DEF_FUNCTION_TYPE_VAR_3.
2300
2301 2003-03-01 Tom Tromey <tromey@redhat.com>
2302
2303 * parse.y (jdep_resolve_class): Only check deprecation if we found
2304 a decl.
2305
2306 2003-02-28 Tom Tromey <tromey@redhat.com>
2307
2308 PR java/9695:
2309 * class.c (maybe_layout_super_class): Always pass a WFL to
2310 do_resolve_class.
2311 * parse.y (do_resolve_class): Updated comment to explain
2312 parameters.
2313
2314 2003-02-26 Tom Tromey <tromey@redhat.com>
2315
2316 * jcf-write.c (generate_classfile): Check whether class is
2317 deprecated before writing attribute count.
2318
2319 2003-02-25 Roger Sayle <roger@eyesopen.com>
2320
2321 * java/decl.c (java_init_decl_processing): Get soft_fmod_node from
2322 built_in_decls[BUILT_IN_FMOD] rather than define it ourselves.
2323
2324 2003-02-23 Tom Tromey <tromey@redhat.com>
2325
2326 * lang-options.h: Added -Wdeprecated.
2327 * gcj.texi (Warnings): Document -Wdeprecated.
2328 * java-tree.h (flag_deprecated): Declare.
2329 * lang.c (lang_W_options): Added deprecated.
2330 (flag_deprecated): New global.
2331 * chartables.h: Rebuilt.
2332 * gen-table.pl (process_one): Look at whitespace.
2333 (print_tables): Define LETTER_SPACE, LETTER_MASK.
2334 * parse.h (CLEAR_DEPRECATED): New macro.
2335 (CHECK_DEPRECATED_NO_RESET): New macro.
2336 * jcf-parse.c (handle_deprecated): New function.
2337 (HANDLE_DEPRECATED_ATTRIBUTE): New define.
2338 * jcf-reader.c (get_attribute): Handle Deprecated attribute.
2339 * parse.y (resolve_type_during_patch): Check deprecation.
2340 (jdep_resolve_class): Likewise.
2341 (process_imports): Likewise.
2342 (resolve_expression_name): Likewise.
2343 (check_deprecation): Strip arrays from decl. Check
2344 flag_deprecated.
2345 (patch_method_invocation): Also check the particular constructor
2346 for deprecation.
2347 (register_fields): Use CHECK_DEPRECATED_NO_RESET in loop.
2348 * jcf-write.c (append_deprecated_attribute): New function.
2349 (generate_classfile): Generate deprecated attribute when
2350 appropriate.
2351 * lex.c (java_parse_doc_section): Return type now void. Rewrote.
2352 (java_lex) [case '*']: Simplify logic.
2353 (java_start_char_p): Use LETTER_MASK.
2354 (java_part_char_p): Likewise.
2355 (java_space_char_p): New function.
2356
2357 2003-02-20 Nathan Sidwell <nathan@codesourcery.com>
2358
2359 Change base class access representation.
2360 * java/class.c (set_super_info): Don't set TREE_VIA_PUBLIC.
2361 (add_interface_do): Likewise.
2362
2363 2003-02-12 Ranjit Mathew <rmathew@hotmail.com>
2364
2365 * decl.c (java_init_decl_processing): Change
2366 soft_lookupjnimethod_node to reflect the change in
2367 signature of _Jv_LookupJNIMethod in libjava/jni.cc
2368 * expr.c (build_jni_stub): Calculate and pass the size
2369 on the stack of the arguments to a JNI function. Use
2370 new target macro MODIFY_JNI_METHOD_CALL to allow a
2371 target to modify the call to a JNI method.
2372
2373 2003-02-08 Roger Sayle <roger@eyesopen.com>
2374
2375 * jcf-io.c (java_or_class_file): Use libiberty's lbasename
2376 instead of basename to avoid compiler warnings on Tru64.
2377
2378 2003-02-04 Joseph S. Myers <jsm@polyomino.org.uk>
2379
2380 * gcj.texi: Update to GFDL 1.2.
2381
2382 2003-01-31 Andrew Haley <aph@redhat.com>
2383
2384 * parse.y (java_expand_classes): Scan the whole class list looking
2385 for access methods that haven't yet been expanded.
2386
2387 2003-01-31 Adrian Bunk <bunk@fs.tum.de>
2388
2389 Fix for java/4269:
2390
2391 * jv-scan.c: Use HAVE_LANGINFO_CODESET instead of HAVE_NL_LANGINFO
2392 to fix bootstrap on sparc-unknown-netbsdelf1.5.
2393 * jcf-parse.c: Likewise.
2394
2395 2003-01-31 Mark Wielaard <mark@klomp.org>
2396
2397 * gjavah.c (throwable_p): Allocate 1 more byte for string.
2398
2399 2003-01-31 Nathan Sidwell <nathan@codesourcery.com>
2400
2401 * class.c (make_class): Use BINFO_ELTS.
2402 (set_super_info): Likewse.
2403 (add_interface_do): Likewise.
2404
2405 2003-01-30 Tom Tromey <tromey@redhat.com>
2406
2407 * jcf-parse.c (read_class): Update identifier's class value if it
2408 changed during parsing.
2409
2410 2003-01-30 Loren James Rittle <ljrittle@acm.org>
2411
2412 * Make-lang.in (po-generated): Find the targets in $(parsedir).
2413 Propagate change to all other rules as required.
2414 (java/parse-scan.o): Add explicit dependency on
2415 $(parsedir)/java/parse-scan.c .
2416
2417 2003-01-29 Tom Tromey <tromey@redhat.com>
2418
2419 * parse.y (patch_assignment): Only transform the rhs of an
2420 assignment when compiling to native.
2421
2422 2003-01-28 Tom Tromey <tromey@redhat.com>
2423
2424 * jcf-write.c (generate_bytecode_conditional): Typo fixes.
2425
2426 2003-01-28 Tom Tromey <tromey@redhat.com>
2427
2428 * lex.c (java_lex): Don't include UEOF as part of token.
2429 (java_read_unicode): Error if \u sequence prematurely terminated.
2430
2431 2003-01-27 Tom Tromey <tromey@redhat.com>
2432
2433 * parse.y (java_check_regular_methods): Check for construct after
2434 checking types in throws clause.
2435
2436 2003-01-24 Tom Tromey <tromey@redhat.com>
2437
2438 * class.c (build_static_field_ref): Only a String or numeric field
2439 can fold to a constant.
2440
2441 2003-01-23 Tom Tromey <tromey@redhat.com>
2442
2443 * jcf-parse.c (parse_zip_file_entries): Overwrite trailing \0 of
2444 file name in resource buffer.
2445
2446 2003-01-23 Tom Tromey <tromey@redhat.com>
2447
2448 * expr.c (build_known_method_ref): Use method's context to find
2449 method table index.
2450
2451 2003-01-23 Tom Tromey <tromey@redhat.com>
2452
2453 * constants.c (set_constant_entry): Allocated cleared memory.
2454
2455 2003-01-22 Tom Tromey <tromey@redhat.com>
2456
2457 * java-tree.h: Don't use PARAMS.
2458 * resource.c: Add prototypes for all functions.
2459 (write_resource_constructor): Use `const char *' to avoid
2460 warning.
2461
2462 2003-01-22 Nathanael Nerode <neroden@gcc.gnu.org>
2463
2464 * jcf-parse.c (process_zip_dir): Remove unused variable.
2465
2466 2003-01-22 Tom Tromey <tromey@redhat.com>
2467
2468 * expr.c (build_invokeinterface): Abort if method's context is not
2469 an interface.
2470
2471 2003-01-22 Tom Tromey <tromey@redhat.com>
2472
2473 * gcj.texi (Input and output files): Mention non-class entries.
2474 * decl.c (java_init_decl_processing): Call
2475 init_resource_processing.
2476 * java-tree.h (compile_resource_data, write_resource_constructor,
2477 compile_resource_file, init_resource_processing): Declare.
2478 * config-lang.in (gtfiles): Added resource.c.
2479 * Make-lang.in (gt-java-resource.h): New target.
2480 (JAVA_OBJS): Added resource.o.
2481 (java/resource.o): New target.
2482 * resource.c: New file.
2483 * class.c (compile_resource_file): Moved to resource.c.
2484 (registerResource_libfunc): Likewise.
2485 (utf8_decl_list): Mark with GTY; now static.
2486 * jcf-parse.c (classify_zip_file): New function.
2487 (parse_zip_file_entries): Use it; compile .properties files.
2488 (process_zip_dir): Use classify_zip_file and compute_class_name.
2489 Don't write class name into zip directory.
2490 (java_parse_file): Call write_resource_constructor.
2491 (compute_class_name): New function.
2492 * jcf-io.c (read_zip_member): Reindented.
2493
2494 2003-01-21 Tom Tromey <tromey@redhat.com>
2495
2496 * class.c (supers_all_compiled): New function.
2497 (make_class_data): Use it.
2498
2499 2003-01-21 Tom Tromey <tromey@redhat.com>
2500
2501 * parse.y (method_header): Native method can't be strictfp.
2502 No method can be transient or volatile.
2503
2504 2003-01-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2505
2506 Make-lang.in (jvspec.o-warn): Add -Wno-error.
2507
2508 2003-01-18 Kazu Hirata <kazu@cs.umass.edu>
2509
2510 * check-init.c: Fix comment typos.
2511 * class.c: Likewise.
2512 * constants.c: Likewise.
2513 * decl.c: Likewise.
2514 * except.c: Likewise.
2515 * expr.c: Likewise.
2516 * java-except.h: Likewise.
2517 * java-tree.h: Likewise.
2518 * javaop.h: Likewise.
2519 * jcf-dump.c: Likewise.
2520 * jcf-io.c: Likewise.
2521 * jcf-parse.c: Likewise.
2522 * jcf-write.c: Likewise.
2523 * lang.c: Likewise.
2524 * mangle.c: Likewise.
2525 * typeck.c: Likewise.
2526 * verify.c: Likewise.
2527
2528 2003-01-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2529
2530 * Make-lang.in (java/jcf-write.o): Depend on $(TM_P_H).
2531 * jcf-write.c: Include "tm_p.h".
2532
2533 2003-01-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2534
2535 * jcf-io.c (caching_stat): Cast the 3rd arg of scandir to void*.
2536
2537 2003-01-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2538
2539 * builtins.c (java_build_function_call_expr): Renamed from
2540 build_function_call_expr. All callers changed.
2541
2542 * Make-lang.in (java/jcf-parse.o): Depend on $(TM_P_H).
2543 * jcf-parse.c: Include tm_p.h.
2544
2545 * jcf-write.c (generate_bytecode_insns): Avoid signed/unsigned
2546 warning.
2547
2548 2003-01-14 Tom Tromey <tromey@redhat.com>
2549
2550 * class.c (make_class_data): Check that super is compiled before
2551 building class reference to it.
2552
2553 2003-01-14 Andrew Haley <aph@redhat.com>
2554
2555 * decl.c (java_init_decl_processing): _Jv_NewMultiArray is a
2556 varargs function -- correct.
2557
2558 2003-01-14 Andrew Haley <aph@redhat.com>
2559
2560 * decl.c (java_init_decl_processing): Temporarily back out previous patch.
2561
2562 2003-01-14 Andrew Haley <aph@redhat.com>
2563
2564 * decl.c (java_init_decl_processing): _Jv_NewMultiArray is a
2565 varargs function -- correct.
2566
2567 * parse.y (patch_assignment): Copy the rhs of an assignment into a
2568 temporary if the RHS is a reference.
2569
2570 2003-01-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2571
2572 * Make-lang.in (keyword.h): Pass "-L ANSI-C" to gperf.
2573 * keyword.h: Regenerated.
2574
2575 * All Files: Convert to ISO C style function definitions.
2576
2577 2003-01-09 Nathanael Nerode <neroden@gcc.gnu.org>
2578
2579 * parse.y (check_pkg_class_access): ANSIfy definition.
2580
2581 2003-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2582
2583 * decl.c, parse-scan.y, parse.y: Don't cast return value of
2584 xmalloc et al.
2585
2586 * class.c, gjavah.c, parse.y, verify.c: Don't use PTR.
2587
2588 2003-01-09 Geoffrey Keating <geoffk@apple.com>
2589
2590 Merge from pch-branch:
2591
2592 2002-12-02 Geoffrey Keating <geoffk@apple.com>
2593
2594 * Make-lang.in (java/gjavah.o): Update dependencies.
2595 * gjavah.c: Include ggc.h.
2596
2597 2002-08-16 Geoffrey Keating <geoffk@redhat.com>
2598
2599 * Make-lang.in (GCJH_OBJS): Add ggc-none.o.
2600 (JCFDUMP_OBJS): Add ggc-none.o.
2601 (java/jcf-dump.o): Depend on GGC_H.
2602 * jcf-reader.c (jcf_parse_constant_pool): Use ggc_alloc to allocate
2603 CPool substructures.
2604 * jcf-parse.c (process_zip_dir): Use ggc_alloc to allocate JCFs.
2605 * jcf-dump.c: Include ggc.h.
2606
2607 2002-08-08 Geoffrey Keating <geoffk@redhat.com>
2608
2609 * jcf.h (union cpool_entry): New.
2610 (struct CPool): Use gengtype to mark. Change field 'data' to be
2611 an array of unions.
2612 (struct JCF): Use gengtype to mark.
2613 (CPOOL_UINT): Update for new cpool_entry type.
2614 (CPOOL_USHORT1): Likewise.
2615 (CPOOL_USHORT2): Likewise.
2616 (CPOOL_FINISH): Use GC to free cpool subfields.
2617 * parse.h (struct parser_ctxt): Mark field current_jcf.
2618 * lex.c (java_init_lex): Use GC to allocate struct JCF.
2619 * jcf-parse.c (HANDLE_CONSTANT_Utf8): Update for new cpool_entry type.
2620 (main_jcf): Use gengtype to mark.
2621 (ggc_mark_jcf): Delete.
2622 (get_constant): Update for new cpool_entry type.
2623 (give_name_to_class): Likewise.
2624 (get_class_constant): Likewise.
2625 (init_outgoing_cpool): Use GGC to allocate struct CPool.
2626 (java_parse_file): Use GGC to allocate struct JCF.
2627 (init_jcf_parse): Don't call ggc_add_root.
2628 * jcf-reader.c (jcf_parse_constant_pool): Update for new
2629 cpool_entry type.
2630 * java-tree.h (current_jcf): Use gengtype to mark.
2631 (CPOOL_UTF): Update for new cpool_entry type.
2632 (outgoing_cpool): Use gengtype to mark.
2633 (struct lang_type): GC struct JCF and struct CPool.
2634 * config-lang.in (gtfiles): Add jcf.h.
2635 * constants.c (find_tree_constant): New.
2636 (set_constant_entry): Allocate cpool subfields using GGC. Update
2637 for new cpool_entry type.
2638 (find_constant1): Update for new cpool_entry type.
2639 (find_constant2): Likewise.
2640 (find_utf8_constant): Use find_tree_constant.
2641 (find_class_or_string_constant): Remove unnecessary cast to jword.
2642 Update for new cpool_entry type.
2643 (count_constant_pool_bytes): Update for new cpool_entry type.
2644 (write_constant_pool): Likewise.
2645 (alloc_name_constant): Use find_tree_constant.
2646 (build_constants_constructor): Update for new cpool_entry type.
2647
2648 2002-08-08 Geoffrey Keating <geoffk@redhat.com>
2649
2650 * parse.y (mark_parser_ctxt): Delete.
2651 (goal): Don't use ggc_add_root.
2652 (create_new_parser_context): Use GC to allocate struct parser_ctxt.
2653 (java_pop_parser_context): Let GC free parser_ctxt.
2654 (java_parser_context_resume): Likewise.
2655 * parse.h (struct parser_ctxt): Use gengtype to mark.
2656 (ctxp): Likewise.
2657 (ctxp_for_generation): Likewise.
2658 * lex.h (struct java_lc_s): Mark for gengtype.
2659 (java_lexer): Rearrange for gengtype.
2660 * config-lang.in (gtfiles): Add lex.h, parse.h.
2661
2662 2003-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2663
2664 * All Files: Remove PARAMS macro.
2665
2666 * expr.c, gjavah.c, javaop.h, jcf-dump.c, jcf-io.c, jcf-reader.c,
2667 jcf-write.c, jcf.h, jv-scan.c: Don't rely on the `DEFUN', `AND' or
2668 `__STDC__' macros.
2669
2670 * jv-scan.c, parse.y: Remove VPARAMS, VA_OPEN, VA_FIXEDARG and
2671 VA_CLOSE.
2672
2673 2003-01-09 Christian Cornelssen <ccorn@cs.tu-berlin.de>
2674
2675 * Make-lang.in (java.install-common, java.uninstall,
2676 java.install-info, java.install-man): Prepend $(DESTDIR)
2677 to destination paths in all (un)installation commands.
2678 (java.install-common): Rewrite $(LN) command to support
2679 DESTDIR with "ln" as well as with "ln -s".
2680
2681 2003-01-08 Nathanael Nerode <neroden@gcc.gnu.org>
2682
2683 * java-tree.h: Protect against multiple inclusion.
2684
2685 2003-01-07 Tom Tromey <tromey@redhat.com>
2686
2687 * class.c (add_assume_compiled): Don't adjust parent if we're
2688 already at the root of tree.
2689
2690 2003-01-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2691
2692 * lang.c (dump_compound_expr): Prototype.
2693
2694 2003-01-03 Tom Tromey <tromey@redhat.com>
2695
2696 Fix for PR java/8712:
2697 * expr.c (build_instanceof): Build an NE_EXPR, not a COND_EXPR,
2698 when simply checking against `null'.
2699
2700 2003-01-03 Tom Tromey <tromey@redhat.com>
2701
2702 * gcj.texi (Standard Properties): Document http.proxyHost and
2703 http.proxyPort.
2704
2705 * gcj.texi (GNU Classpath Properties): Document new properties.
2706
2707 2003-01-02 Steven Bosscher <s.bosscher@student.tudelft.nl>
2708
2709 * java/jcf-reader.c, java/jvgenmain.c, java/keyword.gperf,
2710 java/lang-options.h, java/mangle.c, java/mangle_name.c,
2711 java/xref.c, java/zextract.c,java/zipfile.h: Fix copyright years.
2712
2713 2003-01-01 Steven Bosscher <s.bosscher@student.tudelft.nl>
2714
2715 * Make-lang.in, boehm.c, buffer.c,
2716 buffer.h, builtins.c, class.c,
2717 config-lang.in, constants.c,
2718 convert.h, decl.c, except.c,
2719 expr.c, java-except.h,
2720 java-tree.h, javaop.def,
2721 jcf-parse.c, jcf-write.c,
2722 jv-scan.c, jvgenmain.c,
2723 jvspec.c, keyword.gperf,
2724 keyword.h, lang-options.h,
2725 lang-specs.h, lang.c, lex.c,
2726 lex.h, mangle.c, mangle_name.c,
2727 parse-scan.y, parse.h, parse.y,
2728 typeck.c, verify.c, xref.c,
2729 xref.h: Replace "GNU CC" with
2730 "GCC" in the copyright header.
2731
2732 * check-init.c, gjavah.c, javaop.h,
2733 jcf-depend.c, jcf-dump.c, jcf-io.c,
2734 jcf-path.c, jcf-reader.c, jcf.h,
2735 zextract.c, zipfile.h: These files are
2736 "part of GCC". Also say "GCC" not "GNU CC".
2737
2738 2002-12-30 DJ Delorie <dj@redhat.com>
2739
2740 * Make-lang.in: Protect against texi2pod/pod2man failing.
2741
2742 2002-12-28 Joseph S. Myers <jsm@polyomino.org.uk>
2743
2744 * gcj.texi: Use @copying.
2745
2746 2002-12-27 Mark Mitchell <mark@codesourcery.com>
2747
2748 * gjavah.c (print_name_for_stub_or_jni): Adjust call to
2749 print_cxx_classname.
2750 (print_cxx_classname): Add add_scope parameter.
2751 (print_class_decls): Do not emit a semicolon after the extern
2752 "Java" block.
2753 (process_file): Adjust calls to print_cxx_classname.
2754
2755 2002-12-23 Joseph S. Myers <jsm@polyomino.org.uk>
2756
2757 * gcj.texi: Include Cover Texts in man page.
2758
2759 2002-12-23 Jeff Sturm <jsturm@one-point.com>
2760
2761 * class.c (build_static_field_ref): Check FIELD_FINAL.
2762
2763 * constants.c (alloc_class_constant): Use TYPE_CPOOL_DATA_REF
2764 instead of current_constant_pool_data_ref.
2765 * java-tree.h (current_constant_pool_data_ref): Undefine.
2766 (JTI_CURRENT_CONSTANT_POOL_DATA_REF): Remove.
2767 * jcf-parse.c (init_outgoing_cpool): Don't initialize
2768 current_constant_pool_data_ref.
2769
2770 * except.c (prepare_eh_table_type ): Use DECL_NAME of class type,
2771 not build_internal_class_name.
2772
2773 * parse.y (patch_incomplete_class_ref): Always emit `class$' method.
2774 Use it when class ref isn't certain to be compiled.
2775
2776 2002-12-23 Joseph S. Myers <jsm@polyomino.org.uk>
2777
2778 * gcj.texi: Include gcc-common.texi.
2779 * Make-lang.in ($(srcdir)/java/gcj.info, java/gcj.dvi): Depend on
2780 $(srcdir)/doc/include/gcc-common.texi.
2781
2782 2002-12-22 Anthony Green <green@redhat.com>
2783
2784 * gcj.texi (Limitations): Add note about org.xml.sax and
2785 org.w3c.dom.
2786
2787 2002-12-20 Tom Tromey <tromey@redhat.com>
2788
2789 * jcf-write.c (generate_bytecode_insns) [SWITCH_EXPR]: Handle case
2790 where minimum case value is Integer.MIN_VALUE.
2791 Fixes PR java/8955.
2792
2793 2002-12-18 Andrew Haley <aph@redhat.com>
2794
2795 * parse.y (patch_invoke): Force evaluation order when `check' is
2796 set. For PR libgcj/8945.
2797
2798 2002-12-16 Mark Mitchell <mark@codesourcery.com>
2799
2800 * gcj.texi: Change version number to 3.4.
2801
2802 2002-12-05 Ranjit Mathew <rmathew@hotmail.com>
2803 Andrew Haley <aph@redhat.com>
2804
2805 * parse.y (source_end_java_method): Remove custom encoding of line
2806 numbers for a function decl before passing it to the back end.
2807
2808 2002-12-03 Andrew Haley <aph@redhat.com>
2809
2810 * class.c (make_class_data): New field, "chain".
2811 * decl.c (java_init_decl_processing): Likewise.
2812
2813 2002-12-02 Tom Tromey <tromey@redhat.com>
2814
2815 For PR java/8740:
2816 * parse.y (do_resolve_class): Handle qualified name via
2817 recursion.
2818
2819 2002-11-30 Zack Weinberg <zack@codesourcery.com>
2820
2821 * boehm.c, buffer.c, builtins.c, check-init.c, class.c,
2822 constants.c, decl.c, except.c, expr.c, gjavah.c, jcf-depend.c,
2823 jcf-dump.c, jcf-io.c, jcf-parse.c, jcf-path.c, jcf-write.c,
2824 jv-scan.c, jvgenmain.c, jvspec.c, lang.c, mangle.c, mangle_name.c,
2825 parse-scan.y, parse.y, typeck.c, verify.c, xref.c, zextract.c:
2826 Include coretypes.h and tm.h.
2827 * Make-lang.in: Update dependencies.
2828
2829 2002-11-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2830
2831 * decl.c (java_init_decl_processing): Use `LL' on 64-bit constant.
2832
2833 2002-11-25 Diego Novillo <dnovillo@redhat.com>
2834
2835 * jcf-reader.c: Don't expand JCF_readu4 inside the
2836 expansion of JCF_SKIP.
2837
2838 2002-11-25 Diego Novillo <dnovillo@redhat.com>
2839
2840 * jcf-reader.c: Don't expand JCF_readu4 inside the
2841 expansion of JCF_SKIP.
2842
2843 2002-11-22 Tom Tromey <tromey@redhat.com>
2844
2845 * parse.y (patch_binop): Cast right hand side of shift expression
2846 to `int'. Fixes PR java/8676.
2847
2848 2002-11-22 Ranjit Mathew <rmathew@hotmail.com>
2849 Andrew Haley <aph@redhat.com>
2850
2851 * gcc/java/jcf-write.c (write_classfile): Remove target
2852 class file, if it exists, before renaming the temporary
2853 class file to it.
2854
2855 2002-11-19 Jason Thorpe <thorpej@wasabisystems.com>
2856
2857 * jvspec.c (lang_specific_spec_functions): New.
2858
2859 2002-11-18 Tom Tromey <tromey@redhat.com>
2860
2861 Fix for PR java/7912:
2862 * expr.c (can_widen_reference_to): Allow cast of array to
2863 Cloneable or Serializable.
2864 * java-tree.h (java_lang_cloneable_identifier_node): Declare.
2865 (java_io_serializable_identifier_node): Likewise.
2866 * parse.y (java_lang_cloneable, java_io_serializable): Removed.
2867 (valid_ref_assignconv_cast_p): Use new identifier nodes.
2868 * lex.c (java_init_lex): Don't initialize java_lang_cloneable and
2869 java_io_serializable.
2870 * decl.c (java_init_decl_processing): Initialize
2871 java_lang_cloneable_identifier_node and
2872 java_io_serializable_identifier_node.
2873 (java_lang_cloneable_identifier_node): New global.
2874 (java_io_serializable_identifier_node): Likewise.
2875
2876 2002-11-14 Jens-Michael Hoffmann <jensmh@gmx.de>
2877
2878 * buffer.c: Remove unnecessary casts.
2879 * check-init.c: Likewise.
2880 * class.c: Likewise.
2881 * constants.c: Likewise.
2882 * decl.c: Likewise.
2883 * except.c: Likewise.
2884 * gjavah.c: Likewise.
2885 * jcf-io.c: Likewise.
2886 * jcf-parse.c: Likewise.
2887 * jcf-path.c: Likewise.
2888 * jvspec.c: Likewise.
2889 * lang.c: Likewise.
2890 * lex.c: Likewise.
2891 * verify.c: Likewise.
2892
2893 2002-11-06 Tom Tromey <tromey@redhat.com>
2894
2895 * gjavah.c (print_stub_or_jni): Include JNIEXPORT and JNICALL in
2896 a JNI header.
2897
2898 2002-11-05 Tom Tromey <tromey@redhat.com>
2899
2900 Fix for PR java/6388.
2901 * lex.h (JAVA_INTEGRAL_RANGE_ERROR): Wrap in do...while.
2902 * java-tree.h (enum java_tree_index): New values
2903 JTI_DECIMAL_INT_MAX_NODE, JTI_DECIMAL_LONG_MAX_NODE.
2904 (decimal_int_max, decimal_long_max): New defines.
2905 * lex.c (yylex): Rewrote range checking. Sign extend literals.
2906 (error_if_numeric_overflow): Rewrote range checking.
2907 * decl.c (java_init_decl_processing): Initialize decimal_int_max,
2908 decimal_long_max.
2909
2910 2002-11-02 Tom Tromey <tromey@redhat.com>
2911
2912 * java-tree.h: Move JV_STATE_ERROR before JV_STATE_DONE.
2913
2914 * class.c (make_method_value): Put class name, not signature, into
2915 `throws' field. For PR java/8415.
2916
2917 2002-10-24 Tom Tromey <tromey@redhat.com>
2918
2919 * gcj.texi (Invoking gij): Document --showversion.
2920 (Standard Properties): java.library.path now set.
2921
2922 2002-10-23 Tom Tromey <tromey@redhat.com>
2923
2924 * gjavah.c (decode_signature_piece): In JNI mode, print
2925 `jobjectArray' when array depth is nonzero.
2926 Fixes PR java/8296.
2927
2928 2002-10-15 Andrew Haley <aph@redhat.com>
2929
2930 * parse.y (patch_invoke): Call force_evaluation_order on a static
2931 arg list.
2932 (resolve_qualified_expression_name): Call force_evaluation_order
2933 on a arg list that is part of a Qualified Expression Name.
2934
2935 * lang.c (dump_compound_expr): New.
2936 (java_dump_tree): New.
2937
2938 2002-10-20 Ranjit Mathew <rmathew@hotmail.com>
2939
2940 * gcj.texi: Added item describing the GCJ runtime property
2941 "gnu.gcj.progname".
2942
2943 2002-10-15 Richard Henderson <rth@redhat.com>
2944
2945 * jcf-parse.c (get_constant): Fix type warning.
2946
2947 2002-10-15 Andrew Haley <aph@redhat.com>
2948
2949 * java-tree.h (java_inlining_merge_static_initializers): Declare.
2950 (java_inlining_map_static_initializers): Declare.
2951
2952 2002-10-14 Andrew Haley <aph@redhat.com>
2953
2954 * tree-inline.c (remap_block): All local class initialization
2955 flags go in the outermost scope.
2956 (expand_call_inline): Call java_inlining_map_static_initializers.
2957 (expand_call_inline): Call java_inlining_merge_static_initializers.
2958 * java/lang.c (merge_init_test_initialization): New.
2959 (java_inlining_merge_static_initializers): New.
2960 (inline_init_test_initialization): New.
2961 (java_inlining_map_static_initializers): New.
2962
2963 2002-10-11 Mark Wielaard <mark@klomp.org>
2964
2965 * gcj.texi (Compatibility): Add Limitations and Extensions section.
2966
2967 2002-10-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2968
2969 * class.c (JAVA_TREEHASHHASH_H): Use htab_hash_pointer.
2970
2971 2002-10-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2972
2973 * parse.y (merge_string_cste): Add parentheses around & within |.
2974
2975 2002-10-08 Tom Tromey <tromey@redhat.com>
2976
2977 * parse.y (variable_declarator_id): Simplify error path for
2978 array declarator error. For PR java/8003.
2979
2980 2002-10-08 Zack Weinberg <zack@codesourcery.com>
2981
2982 * gjavah.c, jcf-dump.c, jv-scan.c: Globally replace GCCBUGURL with
2983 bug_report_url.
2984
2985 2002-10-08 Andrew Haley <aph@redhat.com>
2986
2987 * parse.y (attach_init_test_initialization_flags): Check for
2988 error_mark_node.
2989
2990 2002-10-07 Anthony Green <green@redhat.com>
2991
2992 * parse.y (merge_string_cste): Fix bug in string concatenation.
2993
2994 2002-10-03 Michael Koch <konqueror@gmx.de>
2995
2996 * gcj.texi (Standard properties):
2997 Change default of java.awt.toolkit to gnu.awt.gtk.GtkToolkit.
2998
2999 2002-10-02 Roger Sayle <roger@eyesopen.com>
3000
3001 PR optimization/6627
3002 * lang.c (java_init): If storing the vbit in function
3003 pointers, ensure that force_align_functions_log is atleast
3004 one to aid compatability with g++ vtables.
3005
3006 2002-10-01 Nathan Sidwell <nathan@codesourcery.com>
3007
3008 * jcf-dump.c (print_constant, case CONSTANT_float): Don't fall
3009 foul of type-based aliasing.
3010
3011 2002-09-30 Anthony Green <green@redhat.com>
3012
3013 * gcj.texi (Invoking jv-scan): Fix texinfo.
3014
3015 2002-09-28 Anthony Green <green@redhat.com>
3016
3017 * gcj.texi (Invoking jv-scan): Add --no-assert documentation.
3018 (Code Generation): Add -fno-assert documentation.
3019 * jv-scan.c (flag_assert): New global.
3020 (options): Add assert option.
3021 (help): Add --no-assert documentation.
3022 * parse-scan.y (flag_assert): New global.
3023 * lang.c (lang_f_options): Add -fassert/-fno-assert support.
3024 (flag_assert): New global.
3025 * java-tree.h (flag_assert): New global.
3026 * lex.c (java_lex): Obey flag_assert.
3027 * jvspec.c (jvgenmain_spec): Strip -fassert/-fno-assert when
3028 calling cc1.
3029
3030 2002-09-26 Andrew Haley <aph@redhat.com>
3031
3032 * expr.c (build_java_array_length_access): Check for null pointer.
3033 * expr.c (expand_java_arrayload): Likewise.
3034
3035 2002-09-21 Richard Henderson <rth@redhat.com>
3036
3037 * jcf-parse.c (get_constant): Decode from IEEE no matter
3038 what the target format.
3039
3040 2002-09-20 Kazu Hirata <kazu@cs.umass.edu>
3041
3042 * ChangeLog: Follow spelling conventions.
3043 * class.c: Likewise.
3044 * decl.c: Likewise.
3045 * expr.c: Likewise.
3046 * gjavah.c: Likewise.
3047 * java-tree.h: Likewise.
3048 * jcf-dump.c: Likewise.
3049 * jcf-parse.c: Likewise.
3050 * jvspec.c: Likewise.
3051 * lang.c: Likewise.
3052 * mangle.c: Likewise.
3053 * parse.y: Likewise.
3054
3055 2002-09-17 Tom Tromey <tromey@redhat.com>
3056
3057 * lex.c (java_read_unicode_collapsing_terminators): Handle case
3058 where \r appears at EOF. Fixes PR java/7950.
3059
3060 2002-09-16 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3061
3062 * jvspec.c (lang_specific_driver): Remove unused variable.
3063
3064 2002-09-16 Geoffrey Keating <geoffk@apple.com>
3065
3066 * java-tree.h (union lang_tree_node): Add chain_next option.
3067
3068 2002-09-16 Richard Henderson <rth@redhat.com>
3069
3070 * jcf-parse.c (get_constant): Runtime check for IEEE format;
3071 use new real.h interface.
3072 * jcf-write.c (find_constant_index): Use new real.h interface.
3073 * lex.c (IS_ZERO): Use REAL_VALUES_EQUAL.
3074
3075 2002-09-15 Kazu Hirata <kazu@cs.umass.edu>
3076
3077 * lang.c: Follow spelling conventions.
3078
3079 2002-09-11 Per Bothner <per@bothner.com>
3080
3081 * parse.y (fold_constant_for_init): If a VAR_DECL, convert numerical
3082 constant to the type of the field.
3083 (java_complete_tree): Remove now-redundant code.
3084
3085 * parse.y (fold_constant_for_init): 'null' is not a constant expr.
3086
3087 2002-09-03 Jesse Rosenstock <jmr@ugcs.caltech.edu>
3088
3089 For PR java/5794:
3090 * verify.c (verify_jvm_instructions) [OPCODE_jsr]: Only push the
3091 return label if a ret instruction for the jsr has been reached.
3092
3093 2002-09-09 Ranjit Mathew <rmathew@hotmail.com>
3094
3095 * parse.y (DIR_SEPARATOR): Don't define.
3096 (check_class_interface_creation): Use IS_DIR_SEPARATOR.
3097
3098 2002-08-28 Andrew Haley <aph@redhat.com>
3099
3100 * verify.c (verify_jvm_instructions): Allow exception handler
3101 inside code that is being protected, but generate a warning.
3102 * except.c (link_handler): Initialize `expanded' in new eh_range.
3103 (binding_depth, is_class_level, current_pc): Declare extern.
3104
3105 2002-09-01 Mark Wielaard <mark@klomp.org>
3106
3107 * gcj.texi: Add chapter about system properties.
3108 Fixed some typos.
3109
3110 2002-08-26 Tom Tromey <tromey@redhat.com>
3111
3112 * parse.y (try_builtin_assignconv): Allow narrowing primitive
3113 conversion if RHS_TYPE is byte, short, or char.
3114
3115 2002-08-22 Tom Tromey <tromey@redhat.com>
3116
3117 * gcj.texi (Invoking gij): Document -cp and -classpath.
3118
3119 2002-08-21 Tom Tromey <tromey@redhat.com>
3120
3121 * Make-lang.in (java/jcf-path.o): Use $(datadir), not
3122 $(prefix)/share. For PR libgcj/7633.
3123
3124 For PR java/6005 and PR java/7611:
3125 * lang.c (LANG_HOOKS_CAN_USE_BITFIELDS_P): New define.
3126 (java_can_use_bit_fields_p): New function.
3127
3128 2002-08-16 Tom Tromey <tromey@redhat.com>
3129
3130 * gcj.texi (Class Initialization): Mention class initialization of
3131 arrays.
3132
3133 2002-07-30 Andrew Haley <aph@cambridge.redhat.com>
3134
3135 * Make-lang.in (java-tree-inline.o): New.
3136 (JAVA_OBJS): Add java-tree-inline.o.
3137 * parse.y (source_end_java_method): Call java_optimize_inline.
3138 (java_expand_method_bodies): Save method's tree in
3139 DECL_SAVED_TREE.
3140 (add_stmt_to_compound): Keep track of the number of statments.
3141 * lang.c (java_init): Enable flag_inline_trees.
3142 (java_post_options): If flag_inline_functions is on, enable
3143 flag_inline_trees instread.
3144 (decl_constant_value): New.
3145 (java_tree_inlining_walk_subtrees): New.
3146 * java-tree.h (DECL_NUM_STMTS): New macro.
3147 (java_optimize_inline): Declare.
3148 * expr.c (java_expand_expr): Allow a BLOCK to return a value.
3149 Handle a LABEL_EXPR.
3150 * decl.c (build_result_decl): If we already have a DECL_RESULT
3151 don't make another.
3152 (dump_function): New.
3153 (java_optimize_inline): New.
3154 (dump_function): New.
3155
3156 2002-08-13 Jesse Rosenstock <jmr@fulcrummicro.com>
3157
3158 For PR java/7483:
3159 * parse.y (build_assertion): Invert return from
3160 desiredAssertionStatus.
3161
3162 2002-08-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3163
3164 * jcf-write.c (get_access_flags): Return correct access flags for
3165 private and protected inner classes.
3166
3167 2002-08-08 Nathan Sidwell <nathan@codesourcery.com>
3168
3169 * java/Make-lang.in (java.mostlyclean): Remove coverage files.
3170
3171 2002-08-05 Geoffrey Keating <geoffk@redhat.com>
3172
3173 * mangle_name.c: Don't include obstack.h twice.
3174 * xref.c: Don't include obstack.h.
3175
3176 2002-08-04 Geoffrey Keating <geoffk@redhat.com>
3177
3178 * class.c: (permanent_obstack): Delete declaration.
3179 * constants.c: (permanent_obstack): Delete declaration.
3180 * except.c: (permanent_obstack): Delete declaration.
3181 * expr.c: (permanent_obstack): Delete declaration.
3182 * jcf-parse.c: (permanent_obstack): Delete declaration.
3183 (saveable_obstack): Delete declaration.
3184 * parse.h: (permanent_obstack): Delete declaration.
3185 * typeck.c: (permanent_obstack): Delete declaration.
3186
3187 2002-08-04 Joseph S. Myers <jsm@polyomino.org.uk>
3188
3189 * gcj.texi (version-gcc): Increase to 3.3.
3190
3191 2002-07-22 Tom Tromey <tromey@redhat.com>
3192
3193 * lex.c (java_lex): Check for `e' or `E' after 0.
3194
3195 2002-07-21 Richard Henderson <rth@redhat.com>
3196
3197 * lang.c (java_unsafe_for_reeval): New.
3198 (LANG_HOOKS_UNSAFE_FOR_REEVAL): New.
3199
3200 2002-07-21 Neil Booth <neil@daikokuya.co.uk>
3201
3202 * jcf-path.c (GET_ENV_PATH_LIST): Remove.
3203 (jcf_path_init): Use GET_ENVIRONMENT.
3204
3205 2002-07-10 Roger Sayle <roger@eyesopen.com>
3206 Zack Weinberg <zack@codesourcery.com>
3207
3208 * builtins.c (initialize_builtins): Remove defines that
3209 handled C/C++ specific junk hereby removed from builtins.def.
3210
3211 2002-07-07 Neil Booth <neil@daikokuya.co.uk>
3212
3213 * lang.c (java_post_options): Update prototype.
3214
3215 2002-07-05 Roger Sayle <roger@eyesopen.com>
3216
3217 * builtins.c (initialize_builtins): Ignore the additional
3218 parameter to DEF_BUILTIN. Handle more C/C++ specific junk in
3219 the builtins.def file.
3220
3221 2002-07-01 Tom Tromey <tromey@redhat.com>
3222
3223 For PR libgcj/7073:
3224 * parse.y (patch_incomplete_class_ref): Handle VOID_TYPE
3225 specially.
3226
3227 2002-07-01 Roger Sayle <roger@eyesopen.com>
3228
3229 * java/decl.c (builtin_function): Accept additional parameter.
3230 (java_init_decl_processing): Pass an additional NULL_TREE
3231 argument to builtin_function.
3232
3233 2002-06-29 T.J. Mather <tjmather@maxmind.com>
3234
3235 * gcj.texi: Fixed gcj invocation example so that it compiles.
3236
3237 2002-06-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3238
3239 * lex.c (java_init_lex): Avoid incorrect hardcoded constant 11.
3240 * parse.y (mark_parser_ctxt): Likewise.
3241 (check_modifiers, declare_local_variables): Avoid incorrect
3242 hardcoded constant 10.
3243
3244 * lex.c (java_read_char): Avoid "comparison is always true"
3245 warning.
3246
3247 2002-06-25 Andreas Schwab <schwab@suse.de>
3248
3249 * expr.c (JSR): Avoid undefined operation on PC.
3250
3251 2002-06-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3252
3253 * decl.c (clear_binding_level): Const-ify.
3254
3255 2002-06-13 Akim Demaille <akim@epita.fr>
3256
3257 * parse.y (class_declaration, interface_declaration): Make sure
3258 all their rules have an action, in order to avoid meaningless `$$
3259 = $1' and their type clashes.
3260
3261 2002-06-11 Tom Tromey <tromey@redhat.com>
3262
3263 * jcf-write.c (generate_classfile): Use FIELD_SYNTHETIC.
3264 * parse-scan.y (statement_without_trailing_substatement): Added
3265 assert_statement.
3266 (assert_statement): New rule.
3267 * java-tree.h (struct lang_type) [assertions]: New field.
3268 (TYPE_USES_ASSERTIONS): New macro.
3269 (CLASS_USES_ASSERTIONS): Likewise.
3270 (FIELD_SYNTHETIC): New define.
3271 * lex.c (java_lval;): Added ASSERT_TK.
3272 * parse.y (ASSERT_TK): Added.
3273 (statement_without_trailing_substatement): Added assert_statement.
3274 (assert_statement): New rule.
3275 (build_assertion): New function.
3276 (maybe_generate_pre_expand_clinit): Create and initialize
3277 $assertionsDisabled.
3278 (lookup_package_type): Removed decl.
3279 * keyword.h: Rebuilt.
3280 * keyword.gperf (assert): New token.
3281
3282 2002-06-10 Akim Demaille <akim@epita.fr>
3283
3284 * parse.y (interface_type_list, class_member_declaration)
3285 (unary_expression_not_plus_minus): Remove duplicate %type.
3286 Whitespace changes.
3287
3288 2002-06-09 Tom Tromey <tromey@redhat.com>
3289
3290 * Make-lang.in (java/lang.o): Use LANGHOOKS_DEF_H.
3291
3292 * parse.y (method_header): Give error message in all cases.
3293 Fixes PR java/6865.
3294
3295 2002-06-10 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3296
3297 Don't use RTL inlining. Fix for PR java/6820.
3298 * lang.c (LANG_HOOKS_POST_OPTIONS): Define.
3299 (flag_really_inline): New.
3300 (java_decode_option): Set flag_really_inline if -finline-functions
3301 is seen.
3302 (java_post_options): New function. Turn off inlining unless
3303 flag_really_inline is set.
3304
3305 2002-06-10 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3306
3307 * gjavah.c (throwable_p): Accept argument as either a classname or
3308 signature fragment. Create null-terminated classname string for super
3309 when calling itself recursively.
3310 (decode_signature_piece): Skip first character from class name
3311 signature when calling throwable_p.
3312
3313 2002-06-08 H.J. Lu (hjl@gnu.org)
3314
3315 * jcf-path.c (jcf_path_init): Allocate 1 more byte for string.
3316
3317 2002-06-04 Tom Tromey <tromey@redhat.com>
3318
3319 * jcf-write.c (perform_relocations): Optmize a goto to a goto.
3320
3321 2002-06-04 Michael Koch <konqueror@gmx.de>
3322
3323 * gcj.texi (Input Options): Fixed typo.
3324
3325 2002-06-04 Zack Weinberg <zack@codesourcery.com>
3326
3327 * java-tree.h, class.c, expr.c, jcf-parse.c, parse.y,
3328 typeck.c, verify.c: Remove all #if JAVA_USE_HANDLES blocks,
3329 all mention of CLASS_TO_HANDLE_TYPE or HANDLE_TO_CLASS_TYPE,
3330 and all now-pointless local variables. Rename other local
3331 variables to reflect their not being handles.
3332
3333 * java-tree.h, jcf-dump.c, jcf-io.c: Remove all
3334 #if JCF_USE_STDIO blocks.
3335
3336 * parse.y: Add missing semicolon at end of rule.
3337
3338 2002-06-03 Geoffrey Keating <geoffk@redhat.com>
3339
3340 * check-init.c (attach_initialized_static_class): Delete, unused.
3341 * parse.y: Use htab_t instead of struct hashtable, update
3342 all uses.
3343 * java-tree.h: Include hashtab.h instead of hash.h.
3344 (struct lang_decl_func): Use htab_t, set up for gengtype.
3345 (struct init_test_hash_entry): Delete.
3346 (struct treetreehash_entry): New.
3347 (java_treetreehash_find): New
3348 (java_treetreehash_new): New prototype.
3349 (java_treetreehash_create): New prototype.
3350 (java_mark_tree): Delete prototype.
3351 (java_hash_hash_tree_node): Delete prototype.
3352 (java_hash_compare_tree_node): Delete prototype.
3353 (attach_initialized_static_class): Delete prototype.
3354 * expr.c (build_class_init): Update to use java_treetreehash
3355 functions.
3356 (java_expand_expr): Update to use htab_t.
3357 (emit_init_test_initialization): Likewise.
3358 * decl.c (java_mark_tree): Delete.
3359 * class.c (init_test_hash_newfunc): Delete.
3360 (java_hash_hash_tree_node): Delete.
3361 (java_hash_compare_tree_node): Delete.
3362 (add_method_1): Update to use java_treetreehash functions.
3363 (JAVA_TREEHASHHASH_H): New macro.
3364 (java_treetreehash_hash): New function.
3365 (java_treetreehash_compare): New function.
3366 (java_treetreehash_find): New function.
3367 (java_treetreehash_new): New function.
3368 (java_treetreehash_create): New function.
3369 * Make-lang.in (JAVA_TREE_H): Replace hash.h by HASHTAB_H.
3370
3371 * Make-lang.in (java/parse.o): Depend on debug.h.
3372 * java-tree.h (struct lang_identifier): Use gengtype.
3373 (union lang_tree_node): New.
3374 (struct lang_decl_func): Use gengtype.
3375 (struct lang_decl_var): Likewise.
3376 (struct lang_decl): Likewise.
3377 * parse.y: Include debug.h.
3378 * lang.c (LANG_HOOKS_MARK_TREE): Delete.
3379
3380 * lang.c (struct language_function): New dummy structure.
3381
3382 * java-tree.h (MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC): Set
3383 descriminator for DECL_LANG_SPECIFIC.
3384 (struct lang_decl_func): Rename from struct lang_decl.
3385 (enum lang_decl_desc): New.
3386 (struct lang_decl): Make it a union. Update all the accessor macros.
3387 (struct lang_type): Use gengtype.
3388 * class.c (add_method_1): Set descriminator for DECL_LANG_SPECIFIC.
3389 * decl.c (java_dup_lang_specific_decl): All lang_decl structures
3390 are now the same size.
3391 (lang_mark_tree): Use gengtype to mark TYPE_LANG_SPECIFIC;
3392 use discriminator to mark DECL_LANG_SPECIFIC.
3393
3394 * Make-lang.in (gt-java-builtins.h): New rule.
3395 (java/builtins.o): Add dependency on gt-<filename>.h.
3396 * builtins.c: Use gengtype for roots.
3397 (union string_or_tree): Use gengtype.
3398 (struct builtin_record): Use gengtype.
3399 * config-lang.in (gtfiles): Add builtins.c.
3400
3401 * Make-lang.in (gt-java-class.h, gt-java-constants.h,
3402 gt-java-decl.h, gt-java-expr.h, gt-java-jcf-parse.h,
3403 gt-java-jcf-write.h, gt-java-lang.h, gt-java-mangle.h,
3404 gt-java-parse.h, gtype-java.h): Add rules to generate.
3405 (parse.o): Add dependency on gt-java-parse.h, gt-java.h.
3406 (class.o): Add dependency on gt-*.h.
3407 (constants.o): Likewise.
3408 (decl.o): Likewise.
3409 (expr.o): Likewise.
3410 (jcf-parse.o): Likewise.
3411 (jcf-write.o): Likewise.
3412 (lang.o): Likewise.
3413 * config-lang.in (gtfiles): New.
3414 * class.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3415 * constants.c: Replace uses of ggc_add_* with GTY markers.
3416 Include gt-*.h.
3417 * decl.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3418 * expr.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3419 * java-tree.h: Replace uses of ggc_add_* with GTY markers.
3420 * jcf-parse.c: Replace uses of ggc_add_* with GTY markers.
3421 Include gt-*.h.
3422 * jcf-write.c: Replace uses of ggc_add_* with GTY markers.
3423 Include gt-*.h.
3424 * lang.c: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3425 * mangle.c: Replace uses of ggc_add_* with GTY markers. Include
3426 gt-*.h.
3427 * parse.y: Replace uses of ggc_add_* with GTY markers. Include gt-*.h.
3428 Include gtype-java.h.
3429
3430 2002-06-02 Tom Tromey <tromey@redhat.com>
3431
3432 Fix for PR java/5913:
3433 * parse.y (patch_binop): Call patch_string on op1.
3434
3435 2002-06-02 Tom Tromey <tromey@redhat.com>
3436
3437 Fix for PR java/1343, PR java/6336:
3438 * parse.y (make_nested_class_name): Remove extraneous `else'; fix
3439 formatting. Changed return type.
3440 (anonymous_class_counter): Moved to top of file.
3441 (maybe_make_nested_class_name): Append number to class name for
3442 function-local classes.
3443
3444 2002-05-28 Zack Weinberg <zack@codesourcery.com>
3445
3446 * decl.c, jcf-parse.c, parse.y, typeck.c: Include real.h.
3447 * Make-lang.in: Update dependency lists.
3448
3449 2002-05-18 Mark Mitchell <mark@codesourcery.com>
3450
3451 * gjavah.c (throwable_p): Do not free the name of the class after
3452 passing it to find_class.
3453 * java-tree.h (CLASS_BEING_LAIDOUT): Remove duplicate definition.
3454 * jcf-io.c (dirent.h): Include it.
3455 (fnmatch.h): Likewise.
3456 (compare_path): New function.
3457 (java_or_class_file): Likewise.
3458 (memoized_dirlist_entry): New type.
3459 (memoized_dirlist_lookup_eq): New function.
3460 (memoized_dirlists): New variable.
3461 (caching_stat): New function.
3462 (memoized_class_lookup_eq): New function.
3463 (memoized_class_lookups): Likewise.
3464 (find_class): Use memoized_class_lookups and caching_stat.
3465 * jcf.h (JCF_USE_SCANDIR): Define.
3466 * parse.y (java_expand_classes): Write the class files in reverse
3467 order.
3468
3469 2002-05-16 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
3470
3471 * Make-lang.in: Allow for PWDCMD to override hardcoded pwd.
3472
3473 2002-05-13 Mark Mitchell <mark@codesourcery.com>
3474
3475 * jcf-write.c (write_classfile): Unlink the temporary file if it
3476 cannot be renamed. Use concat to build up the name of the
3477 temporary file.
3478
3479 2002-05-08 Mark Mitchell <mark@codesourcery.com>
3480
3481 * jcf-write.c (write_classfile): Write the file to a
3482 temporary file and then rename it.
3483
3484 2002-05-07 Tom Tromey <tromey@redhat.com>
3485
3486 * gjavah.c (throwable_p): Use xstrdup, not strdup.
3487
3488 Fix for PR java/1200:
3489 * gjavah.c (throwable_p): New function.
3490 (decode_signature_piece): Use it. A `WeakReference' isn't the
3491 same as a `jweak'.
3492 Include hashtab.h.
3493 (gcjh_streq): New function.
3494
3495 2002-05-07 Andreas Jaeger <aj@suse.de>
3496
3497 * parse.y (finish_for_loop): Fix if statement.
3498
3499 2002-05-06 Tom Tromey <tromey@redhat.com>
3500
3501 Fix for PR java/5941:
3502 * parse.y (finish_for_loop): Set SUPPRESS_UNREACHABLE_ERROR for
3503 loop update expression.
3504 (java_complete_lhs): Use SUPPRESS_UNREACHABLE_ERROR.
3505 * java-tree.h (SUPPRESS_UNREACHABLE_ERROR): New macro.
3506
3507 2002-05-04 Mark Wielaard <mark@klomp.org>
3508
3509 For PR java/6519:
3510 * parse.y (build_string_concatenation): Return just op1 only when op2
3511 is null and op1 is a STRING_CST, otherwise always construct a
3512 StringBuffer.
3513
3514 2002-04-27 Tom Tromey <tromey@redhat.com>
3515
3516 For PR java/6382:
3517 * parse.y (string_convert_int_cst): New function.
3518 (merge_string_cste): Use it.
3519
3520 2002-04-25 Neil Booth <neil@daikokuya.demon.co.uk>
3521
3522 * java-tree.h (java_parse_file): Update.
3523 (java_set_yydebug): Remove.
3524 * jcf-parse.c (yydebug): Remove.
3525 (java_set_yydebug): Die.
3526 (java_parse_file): Update.
3527 * lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
3528
3529 2002-04-24 Tom Tromey <tromey@redhat.com>
3530
3531 For PR java/6425:
3532 * parse.y (qualify_ambiguous_name) [case CALL_EXPR]: Always choose
3533 EXPR_WFL_QUALIFICATION of qual_wfl.
3534
3535 2002-04-23 Per Bothner <per@bothner.com>
3536
3537 * expr.c (PRE_JSR): Call NOTE_LABEL for return address.
3538 * java-tree.h (BCODE_RETURN_TARGET): Removed - never set.
3539 (BCODE_TARGET): Remove BCODE_RETURN_TARGET.
3540
3541 2002-04-23 Tom Tromey <tromey@redhat.com>
3542
3543 For PR java/6314:
3544 * jvspec.c (lang_specific_driver): Use --resource, not -R. Also
3545 recognize `-fcompile-resource='.
3546 * gcj.texi (Invoking gcj): Use --resource, not -R. Expanded text
3547 a bit.
3548
3549 2002-04-22 Alexandre Petit-Bianco <apbianco@redhat.com>
3550
3551 * jcf-parse.c: (yyparse): Don't prepend "./" to relative
3552 paths. Fixes PR java/2791.
3553
3554 2002-04-19 Andrew Haley <aph@redhat.com>
3555
3556 * jcf-write.c (push_long_const): lo, hi: New variables.
3557 Use rshift_double to extract the high part of a 64-bit long.
3558 Use WORD_TO_INT to extract the low part.
3559
3560 * jcf-parse.c (get_constant): CONSTANT_Integer: Use an unsigned
3561 HOST_WIDE_INT for num. Use JPOOL_UINT to get it.
3562 CONSTANT_Double: Use JPOOL_UINT to get both halve of a double.
3563
3564 2002-04-18 Neil Booth <neil@daikokuya.demon.co.uk>
3565
3566 * typeck.c (incomplete_type_error): Remove.
3567
3568 2002-04-18 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3569
3570 * class.c (make_class_data): Set DECL_ALIGN on static class data,
3571 for hash synchronization.
3572 * expr.c (java_expand_expr): Set DECL_ALIGN on static array objects.
3573 * decl.c (java_init_decl_processing): Don't set TYPE_ALIGN for
3574 class_type_node.
3575
3576 2002-04-16 Mark Wielaard <mark@klomp.org>
3577
3578 * jcf-write.c (generate_bytecode_insns): Only write const_0 if not
3579 negative zero.
3580
3581 2002-04-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3582
3583 Fix for PR java/6294:
3584 * parse.h (INNER_INTERFACE_MODIFIERS): Allow ACC_PRIVATE for inner
3585 interfaces.
3586
3587 2002-04-15 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3588
3589 Fix for PR java/6085:
3590 * parse.y (patch_method_invocation): Always use build_access_to_thisn
3591 to get enclosing "this" argument for inner-class constructor
3592 invocation. Pass correct arguments to build_access_to_thisn.
3593
3594 2002-04-10 Andreas Jaeger <aj@suse.de>
3595
3596 * gcj.texi (Input Options): Fix extdirs patch.
3597
3598 2002-04-10 Anthony Green <green@redhat.com>
3599
3600 * jcf-path.c (jcf_path_init) : Clean up local extdirs declaration.
3601
3602 2002-04-09 Anthony Green <green@redhat.com>
3603
3604 * gcj.texi (Input Options): Add --extdirs documentation.
3605 * jcf-dump.c (OPT_extdirs): New macro.
3606 (options): Add extdirs option.
3607 (help): Describe --extdirs.
3608 (main): Handle OPT_extdirs.
3609 * gjavah.c (OPT_extdirs): New macro.
3610 (options): Add extdirs option.
3611 (help): Describe --extdirs.
3612 (main): Handle OPT_extdirs.
3613 * jcf-path.c (jcf_path_init): Add extdirs support.
3614 (jcf_path_extdirs_arg): New function.
3615 (extensions): New variable to hold extensions path entries.
3616 * jvspec.c: Remove -fextdirs= when compiling main().
3617 * lang.c (java_decode_option): Handle -fextdirs=.
3618 * jcf.h (jcf_path_extdirs_arg): Declare new function.
3619 * Make-lang.in: Compile jcf-path with version info for use in
3620 identifying the appropriate libgcj.jar.
3621
3622 2002-04-08 Tom Tromey <tromey@redhat.com>
3623
3624 For PR libgcj/5303:
3625 * .cvsignore: Added rmic.1 and rmiregistry.1.
3626 * gcj.texi (Top): Link to new nodes.
3627 (Invoking rmic): New node.
3628 (Invoking rmiregistry): Likewise.
3629 * Make-lang.in (java.generated-manpages): Added rmic.1 and
3630 rmiregistry.1.
3631 (java.maintainer-clean): Likewise.
3632 ($(srcdir)/java/rmic.1): New target.
3633 ($(srcdir)/java/rmiregistry.1): Likewise.
3634 (java.install-man): Handle rmic.1 and rmiregistry.1.
3635
3636 2002-04-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3637
3638 * gcj.texi (Invocation): Update JvAttachCurrentThread documentation.
3639 Add note about handling uncaught exceptions. Add an exception handler
3640 to example.
3641
3642 2002-04-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3643
3644 * parse.y (resolve_qualified_expression_name): Clear "from_super" flag
3645 after using it to patch CALL_EXPR.
3646
3647 2002-04-08 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3648
3649 * gcj.texi (Invocation): Document CNI invocation API.
3650
3651 2002-04-04 Neil Booth <neil@daikokuya.demon.co.uk>
3652
3653 * expr.c (truthvalue_conversion): Rename. Update.
3654 (expand_compare): Update.
3655 * java-tree.h (java_truthvalue_conversion): New.
3656 * lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
3657
3658 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
3659
3660 * java-tree.h (java_mark_addressable): New.
3661 * lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
3662 * typeck.c (mark_addressable): Rename, update.
3663
3664 2002-04-01 Neil Booth <neil@daikokuya.demon.co.uk>
3665
3666 * expr.c (build_java_binop): Update.
3667 * java-tree.h (java_signed_type, java_unsigned_type,
3668 java_signed_or_unsigned_type): Update.
3669 * lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
3670 LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
3671 * parse.y (patch_binop): Update.
3672 * typeck.c (signed_or_unsigned_type, unsigned_type,
3673 signed_type): Update.
3674
3675 2002-03-31 Neil Booth <neil@daikokuya.demon.co.uk>
3676
3677 * lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
3678 (java_dummy_print): Remove.
3679 (lang_print_error): Rename. Exit early if inhibiting output.
3680 (inhibit_error_printing_function): New.
3681 (java_init): Don't set hook.
3682 (lang_init_source): Use new boolean.
3683
3684 2002-03-29 Martin Kahlert <martin.kahlert@infineon.com>
3685
3686 * parse.y (do_resolve_class): Fix infinite recursion.
3687
3688 2002-03-29 Tom Tromey <tromey@redhat.com>
3689
3690 * parse.y (check_inner_circular_reference): Ignore incomplete
3691 types.
3692
3693 2002-03-29 Neil Booth <neil@daikokuya.demon.co.uk>
3694
3695 * Make-lang.in (builtins.o): Update.
3696 * boehm.c (get_boehm_type_descriptor): Update.
3697 * builtins.c: Include langhooks.h.
3698 * decl.c (java_init_decl_processing): Update.
3699 * java-tree.h (java_type_for_mode, java_type_for_size): New.
3700 * lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIaZE):
3701 Redefine.
3702 * typeck.c (type_for_mode, type_for_size): Update.
3703
3704 2002-03-29 Martin Kahlert <martin.kahlert@infineon.com>
3705
3706 * lex.c (java_new_lexer): Alias "646" to DEFAULT_ENCODING.
3707
3708 2002-03-28 Tom Tromey <tromey@redhat.com>
3709
3710 * except.c (expand_end_java_handler): If the handler type is NULL,
3711 use java.lang.Throwable. Fixes PR java/5986.
3712
3713 2002-03-28 Alexandre Petit-Bianco <apbianco@redhat.com>
3714
3715 Fix for PR java/4715:
3716 * jcf-parse.c (parse_source_file_3): New function.
3717 (read_class): Call it.
3718 (java_parse_file): Likewise.
3719
3720 2002-03-28 Jan Hubicka <jh@suse.cz>
3721
3722 * java/lang.c (java_init_options): Set flag_trapping_math to 0.
3723
3724 2002-03-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3725
3726 * parse.y (resolve_package): Initialize "decl".
3727 (lookup_package_type): Remove unused function.
3728
3729 2002-03-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3730
3731 Fix for PR java/5993:
3732 * parse.y (resolve_package): Return the decl if resolution was
3733 successful. Don't special case "java.lang" and "java.lang.reflect"
3734 packages. Set type_name to the merged identifier.
3735 (resolved_qualified_expression_name): Print error using "name" if
3736 resolve_package returns NULL_TREE.
3737
3738 2002-03-27 Tom Tromey <tromey@redhat.com>
3739
3740 * expr.c (expand_invoke): Don't generate null pointer check if
3741 we're calling <init>.
3742
3743 2002-03-27 Neil Booth <neil@daikokuya.demon.co.uk>
3744
3745 * expr.c (java_lang_expand_expr): Rename java_expand_expr,
3746 fix prototype.
3747 * java-tree.h (java_lang_expand_expr): Similarly.
3748 * lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
3749 (java_init): Don't set hook.
3750
3751 2002-03-27 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3752
3753 Fix for PR java/5850:
3754 * parse.y (lookup_field_wrapper): Call itself recursively for enclosing
3755 context if field was not found in the current scope.
3756 * expr.c (lookup_field): Don't look in enclosing contexts.
3757
3758 2002-03-26 Tom Tromey <tromey@redhat.com>
3759
3760 Fix for PR java/5942:
3761 * parse.y (init_src_parse): Added sanity check.
3762 * parse.h (struct parser_ctxt) [modifier_ctx]: Array has 12
3763 elements, not 11.
3764
3765 2002-03-26 Neil Booth <neil@daikokuya.demon.co.uk>
3766
3767 * decl.c (lang_mark_tree): Rename java_mark_tree.
3768 * java-tree.h (java_mark_tree): New.
3769 * java-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
3770
3771 2002-03-25 Zack Weinberg <zack@codesourcery.com>
3772
3773 * lex.c: Change java_perform_atof to take normal parameters
3774 instead of a pointer to a parameter block. Call it directly
3775 from java_lex.
3776
3777 2002-03-22 Mark Wielaard <mark@klomp.org>
3778
3779 Fix for PR java/5368:
3780 * parse.y (resolve_qualified_expression_name): Use decl not field_decl
3781 when printing error message.
3782
3783 2002-03-25 Neil Booth <neil@daikokuya.demon.co.uk>
3784
3785 * decl.c (maybe_build_cleanup): Remove.
3786
3787 2002-03-22 Tom Tromey <tromey@redhat.com>
3788
3789 Andrew Haley <aph@cambridge.redhat.com>
3790
3791 * expr.c (build_field_ref): Don't build a check if the field is a
3792 member of `this'.
3793
3794 2002-03-21 Eric Blake <ebb9@email.byu.edu>
3795
3796 Fix for PR java/6026:
3797 * lex.c (java_lex): Fix parsing of consecutive floats.
3798
3799 2002-03-21 Tom Tromey <tromey@redhat.com>
3800
3801 * parse.y (build_access_to_thisn): Stop when FROM is not an inner
3802 class.
3803
3804 2002-03-21 Neil Booth <neil@daikokuya.demon.co.uk>
3805
3806 * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
3807 insert_block, getdecls, kept_level_p, global_bindings_p): New.
3808
3809 2002-03-20 Nic Ferrier <nferrier@tapsellferrier.co.uk>
3810
3811 * gcj.texi: @code{gcj} becomes @command{gcj}.
3812 @code{gcc} becomes @command{gcc}.
3813 GcjRaw changed to gnu.gcc.RawData.
3814
3815 2002-03-20 Neil Booth <neil@daikokuya.demon.co.uk>
3816
3817 * decl.c (start_java_method): Use new hook.
3818 * lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
3819 (java_init): Remove old hook.
3820
3821 2002-03-18 Alexandre Petit-Bianco <apbianco@redhat.com>
3822
3823 * builtins.c (define_builtin): Do nothing if `type' is null.
3824 Fixes PR java/5876.
3825
3826 2002-03-18 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3827
3828 * parse.y (parser_check_super_interface): Fix error message
3829 grammar/order.
3830
3831 2002-03-17 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3832
3833 * jcf-parse.c (get_constant): Delete unused variables.
3834
3835 2002-03-17 Neil Booth <neil@daikokuya.demon.co.uk>
3836
3837 * java-tree.h (java_parse_file): New.
3838 * jcf-parse.c (yyparse): Rename java_parse_file.
3839 * lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
3840
3841 2002-03-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3842
3843 * parse.y (craft_constructor): Return the constructor decl.
3844 (java_expand_classes): Update comments.
3845 (lookup_method_invoke): Call fix_constructors immediately for
3846 anonymous class. Fixes PR java/5935.
3847
3848 2002-03-15 Anthony Green <green@redhat.com>
3849
3850 * jcf-parse.c (yyparse): Don't emit class registration
3851 constructor when compiling resource files.
3852
3853 2002-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3854
3855 * lang.c (java_tree_code_type, java_tree_code_length,
3856 tree_code_name): Delete.
3857 (tree_code_type, tree_code_length, tree_code_name): Define.
3858 (java_init): Don't try to copy into the various tree_code
3859 arrays.
3860
3861 2002-03-12 Tom Tromey <tromey@redhat.com>
3862
3863 * jcf-parse.c (get_constant) [CONSTANT_String]: String values are
3864 UTF-8, not UCS-2. Fixes PR java/5923.
3865
3866 * parse.y (qualify_ambiguous_name): Handle case where QUAL_WFL is
3867 a call_expr wrapped in a convert. Fixes PR java/5848.
3868
3869 2002-03-12 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3870
3871 * jcf-write.c (write_classfile): Improve error strings.
3872
3873 2002-03-11 Eric Blake <ebb9@email.byu.edu>
3874
3875 * lex.c: Adjust comments to GNU standards.
3876
3877 2002-03-11 Eric Blake <ebb9@email.byu.edu>
3878
3879 Fix for PR java/5902:
3880 * lex.c (java_lex): Fix parsing of literals.
3881
3882 2002-03-11 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3883
3884 * parse.y (patch_assignment): Wrap the right-hand-side with a save_expr
3885 to prevent it getting evaluated twice in the store checking case.
3886 * expr.c (build_java_arraystore_check): Unwrap SAVE_EXPR's when
3887 examining OBJECT.
3888
3889 2002-03-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3890
3891 * decl.c (java_init_decl_processing): Make sure class_type_node
3892 alignment is not less than 64 bits if hash synchronization is enabled.
3893
3894 2002-03-08 Per Bothner <per@bothner.com>
3895
3896 * parse.y (java_complete_lhs): Check if patch_assignment
3897 returned an error-mark.
3898
3899 * parse.y (try_builtin_assignconv): Don't special-case zero.
3900
3901 2002-03-08 Per Bothner <per@bothner.com>
3902
3903 Fix for PR java/5812.
3904 * expr.c (build_java_jsr): Take pc arguments, and do lookup_label
3905 here instead of in JSR macro. Likewise with load_type_state call.
3906 Do the latter on if the return_pc has been verified (the jsr returns).
3907 (JSR): Now just call build_java_jsr.
3908
3909 2002-03-07 Jeff Sturm <jsturm@one-point.com>
3910
3911 * java/Make-lang.in (JAVA_TARGET_INSTALL_NAME): Define.
3912 (java.install-common): Link native driver to
3913 JAVA_TARGET_INSTALL_NAME.
3914
3915 2002-03-05 David Billinghurst <David.Billinghurst@riotinto.com>
3916
3917 * builtins.c(cos_builtin): method_return_type ATTRIBUTE_UNUSED
3918 * builtins.c(sin_builtin): Likewise
3919 * builtins.c(sqrt_builtin): Likewise
3920
3921 2002-03-03 Zack Weinberg <zack@codesourcery.com>
3922
3923 * java/expr.c, java/jcf-parse.c, java/lex.c:
3924 Remove all #ifndef REAL_ARITHMETIC blocks, make all #ifdef
3925 REAL_ARITHMETIC blocks unconditional. Delete some further
3926 #ifdef blocks predicated on REAL_ARITHMETIC.
3927
3928 2002-03-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3929
3930 * class.c (init_class_processing): Use ARRAY_SIZE in lieu of
3931 explicit sizeof/sizeof.
3932 * decl.c (java_init_decl_processing): Likewise.
3933 * jcf-parse.c (init_jcf_parse): Likewise.
3934 * parse.y (init_src_parse): Likewise.
3935
3936 2002-03-02 Per Bothner <per@bothner.com>
3937
3938 Make --CLASSPATH by a synonym for --classpath and -classpath.
3939 Implement --bootclasspath.
3940 * jcf-path.c (classpath_u): Rename static variable to classpath_user.
3941 (classpath_l): Remove.
3942 (jcf_path_CLASSPATH_arg): Remove.
3943 (jcf_path_bootclasspath_arg): New function.
3944 (jcf_path_seal): Simplify accordingly.
3945
3946 * jcf.h (jcf_path_bootclasspath_arg): New declarations.
3947 (jcf_path_CLASSPATH): Remove declaration.
3948 * jvspec.c (jvgenmain_spec): Also accept -fbootclasspath*.
3949 (lang_specific_driver): Translate -bootclasspath.
3950 * lang-options.h: Add --bootclasspath. Update --CLASSPATH.
3951 * lang.c (decode_lang_options): Do jcf_path_init first.
3952 Handle -fCLASSPATH same as -fclasspath. Also process -fbootclasspath.
3953 * gjavah.c: Also handle --bootclasspath.
3954 Handle --CLASSPATH as a synonum for --classpath.
3955 * jcf-dump.c: Likewise.
3956
3957 "." is not part of system path, but is the default for --classpath.
3958 * jcf-path.c (jcf_path_init): Don't add "." to sys_dirs.
3959 (jcf_path_seal): Add "." if no CLASSPATH specified.
3960
3961 * gcj.texi: Document changes.
3962
3963 2002-03-01 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3964
3965 * expr.c (build_java_arraystore_check): Fix formatting.
3966
3967 2002-02-28 Alexandre Petit-Bianco <apbianco@redhat.com>
3968
3969 Fix for PR java/5758, java/5632:
3970 * jcf-parse.c (load_class): Renamed local variable, consider `.' an
3971 inner-class separator too.
3972 * parse.y (do_resolve_class): New local `decl_result.'
3973 Progressively build a name for what can have been loaded.
3974
3975 2002-02-28 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
3976
3977 * expr.c (java_array_data_offset): Removed function.
3978 (JAVA_ARRAY_LENGTH_OFFSET): Removed macro.
3979 (build_java_array_length_access): Obtain "length" value using a
3980 COMPONENT_REF, instead of INDIRECT_REF and arithmetic.
3981 (build_java_arrayaccess): Correct comment. Access "data" using a
3982 COMPONENT_REF, and return an ARRAY_REF instead of an INDIRECT_REF.
3983 (build_java_arraystore_check): New function.
3984 (expand_java_arraystore): Use build_java_arraystore_check.
3985 * parse.y (patch_assignment): Simplify code to insert a store check
3986 when lvalue is an ARRAY_REF. Use build_java_arraystore_check.
3987 * check-init.c (check_init): Update to reflect that an array length
3988 access is now a COMPONENT_REF.
3989 * gcj.texi (Code Generation): Improve documentation of
3990 -fno-bounds-check. Add documentation for -fno-store-check.
3991 * java-tree.h (flag_store_check): Declare.
3992 (build_java_arraystore_check): Declare.
3993 * lang.c (flag_store_check): Initialize to 1.
3994 (lang_f_options): Add store-check option.
3995 * jvspec.c: Don't pass store-check option to jvgenmain.
3996 * lang-options.h: Add help string for -fno-store-check.
3997
3998 2002-02-28 Neil Booth <neil@daikokuya.demon.co.uk>
3999
4000 * decl.c (copy_lang_decl): Rename java_dup_lang_specific_decl.
4001 * java-tree.h (java_dup_lang_specific_decl): New.
4002 * lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
4003
4004 2002-02-27 Zack Weinberg <zack@codesourcery.com>
4005
4006 * builtins.c, decl.c: Delete traditional-mode-related code
4007 copied from the C front end but not used, or used only to
4008 permit the compiler to link.
4009
4010 2002-02-22 Tom Tromey <tromey@redhat.com>
4011
4012 Fix for PR java/2369:
4013 * jvspec.c (verify_class_name): New function.
4014 (lang_specific_driver): Call it.
4015 (JAVA_START_CHAR_P): New macro.
4016 (JAVA_PART_CHAR_P): Likewise.
4017
4018 2002-02-22 Per Bothner <per@bothner.com>
4019
4020 * class.c: Change vtable to be more compatible with g++ v3 abi.
4021 (get_dispatch_table): Prepend offset-to-top (always 0) and
4022 type_info pointer (currently unimplemented hence NULL) to vtable.
4023 Specifically, prepend offset-to-top and typeinfo ptr (currently null).
4024 (make_class_data): Variable dtable_start_offset is sizeof 2 pointers.
4025 Adjust vtable pointers by dtable_start_offse - i.e. skip new words.
4026 (build_dtable_decl): Add declarations for new fields.
4027
4028 2002-02-20 Per Bothner <per@bothner.com>
4029
4030 * parse.y (patch_method_invocation): Set CAN_COMPLETE_NORMALLY on call
4031 to finit$ (otherwise generate_bytecode_insns drops it). However, we
4032 don't need to set it on the COMPOUND_EXPR - the caller does that.
4033
4034 2002-02-20 Nic Ferrier <nferrier@tapsellferrier.co.uk>
4035
4036 * gcj.texi: Option `--classpath' becomes `--CLASSPATH.'Option
4037 `--CLASSPATH' becomes `--classpath.'
4038 * gjavah.c: Likewise.
4039 * jcf-dump.c: Likewise.
4040 * lang-options.h: Likewise.
4041 * lang.c: Likewise.
4042 * jcf-path.c: Updated comment.
4043 (jcf_path_classpath_arg): Renamed `jcf_path_CLASSPATH_arg.'
4044 (jcf_path_CLASSPATH_arg): Renamed `jcf_path_classpath_arg.'
4045 * jcf.h (jcf_path_CLASSPATH_arg): Ditto.
4046 (jcf_path_CLASSPATH_arg): Ditto.
4047 (classpath_u): Updated leading comment.
4048
4049 2002-02-20 Per Bothner <per@bothner.com>
4050
4051 * builtins.c (check_for_builtin): New function.
4052 (build_call_or_builtin): Remove.
4053 * java-tree.h: Update accordingly.
4054 * expr.c (expand_invoke): Use build + check_for_builtin instead
4055 of build_call_or_builtin.
4056 * parse.y (patch_invoke): Likewise. This avoids needlessly creating
4057 a new CALL_EXPR node, which means we don't lose the CALL_USING_SUPER
4058 flag (which had caused jcf-write to incorrectly emit invokevirtual).
4059
4060 2002-02-17 Tom Tromey <tromey@redhat.com>
4061
4062 * java-tree.h (TYPE_STRICTFP): New macro.
4063 (struct lang_type) [strictfp]: New field.
4064 (CLASS_STRICTFP): New macro.
4065 (METHOD_STRICTFP): New macro.
4066 (struct lang_decl) [strictfp]: New field.
4067 * parse.y (method_header): Disallow strictfp constructor or
4068 abstract method.
4069 (STRICT_TK): Move before MODIFIER_TK.
4070 * parse.h (CLASS_MODIFIERS): Added ACC_STRICT.
4071 (METHOD_MODIFIERS): Likewise.
4072 (INTERFACE_MODIFIERS): Likewise.
4073 * jcf-write.c (get_access_flags): Likewise.
4074 * class.c (set_class_decl_access_flags): Recognize ACC_STRICT.
4075 (add_method_1): Likewise.
4076 (get_access_flags_from_decl): Likewise.
4077 * jcf-dump.c (print_access_flags): Print in standard order. Also,
4078 recognize strictfp flag.
4079 * jcf.h (ACC_STRICT): New define.
4080
4081 2002-02-12 David Billinghurst <Davod.Billinghurst@riotinto.com>
4082
4083 * class.c(build_utf8_ref): Move declaration of decl_size
4084
4085 2002-02-07 Tom Tromey <tromey@redhat.com>
4086
4087 * gcj.texi (Input Options): --CLASSPATH does not suppress system
4088 path.
4089
4090 2002-02-04 Anthony Green <green@redhat.com>
4091
4092 * class.c (build_utf8_ref): Put UTF-8 constants into merged
4093 sections if available.
4094
4095 2002-02-04 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4096
4097 * parse.y (java_expand_classes): Fix typo in static field loop.
4098
4099 2002-02-02 Richard Henderson <rth@redhat.com>
4100
4101 * class.c (add_field): Mark static fields external.
4102 (build_class_ref): Remove redundant set.
4103 * parse.y (java_expand_classes): Mark static fields of classes
4104 to be compiled as local.
4105 * jcf-parse.c (parse_class_file): Likewise.
4106
4107 2002-02-02 Nic Ferrier <nferrier@tapsellferrier.co.uk>
4108
4109 * gcj.texi (About CNI): New node.
4110
4111 2002-02-01 Craig Rodrigues <rodrigc@gcc.gnu.org>
4112
4113 PR java/5080
4114 * jcf-parse.c : Check for HAVE_LOCALE_H before using
4115 setlocale() with LC_CTYPE as a parameter.
4116 * jv-scan.c: Same.
4117
4118 2002-01-31 Joseph S. Myers <jsm28@cam.ac.uk>
4119
4120 * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version):
4121 Follow GNU Coding Standards for --version.
4122
4123 2002-01-28 Tom Tromey <tromey@redhat.com>
4124
4125 * expr.c (build_jni_stub): Ensure storage for `meth' is
4126 generated.
4127 * parse.y (java_complete_expand_methods): Set
4128 current_function_decl before building JNI stub.
4129
4130 2002-01-26 Andreas Tobler <a.tobler@schweiz.ch>
4131
4132 * gcc/java/builtins.c (sqrt_builtin): Use BUILT_IN_SQRT, not
4133 BUILT_IN_SQRTF.
4134
4135 2002-01-22 Tom Tromey <tromey@redhat.com>
4136
4137 * decl.c (java_init_decl_processing): Use add_predefined_file.
4138 Predefine RawData.java.
4139 (predef_filenames): Removed.
4140 (java_init_decl_processing): Don't register predef_filenames.
4141 * jcf-parse.c (add_predefined_file): New function.
4142 (predefined_filename_p): Rewrote.
4143 (predefined_filename_p): No longer static.
4144 * decl.c (java_init_decl_processing): Call initialize_builtins.
4145 * Make-lang.in (JAVA_OBJS): Added builtins.o.
4146 (java/builtins.o): New target.
4147 * builtins.c: New file.
4148 * parse.y (patch_invoke): Use build_call_or_builtin.
4149 * java-tree.h (build_call_or_builtin): Declare.
4150 (initialize_builtins): Declare.
4151 (java_set_exception_lang_code): Removed unused declaration.
4152 (PREDEF_FILENAMES_SIZE): Removed.
4153 (java_tree_index): Added JTI_PREDEF_FILENAMES.
4154 (predef_filenames): New define.
4155 (add_predefined_file): Declare.
4156 (predefined_filename_p): Declare.
4157 * expr.c (expand_invoke): Use build_call_or_builtin.
4158
4159 2002-01-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4160
4161 * parse.y (patch_switch_statement): Fix format specifier.
4162
4163 2002-01-16 Tom Tromey <tromey@redhat.com>
4164
4165 More for PR java/5365:
4166 * gjavah.c (print_stub_or_jni): Cause exception to be thrown by
4167 default.
4168 (process_file): Generate include for
4169 java.lang.UnsupportedOperationExceptions.
4170
4171 2002-01-15 Andreas Jaeger <aj@suse.de>
4172
4173 * .cvsignore: Add man pages.
4174
4175 2002-01-15 Tom Tromey <tromey@redhat.com>
4176
4177 Fix for PR java/5365:
4178 * gjavah.c (process_file): Turn class name into a file name.
4179
4180 2002-01-14 Matthias Klose <doko@debian.org>
4181
4182 * gcj.texi: Fix whitespace and formatting errors in the
4183 synopsis of the man pages. Update copyright.
4184
4185 2002-01-14 Tom Tromey <tromey@redhat.com>
4186
4187 For PR libgcj/5303:
4188 * Make-lang.in (java.install-man): Handle jv-convert man page.
4189 (java.generated-manpages): Added jv-convert.1.
4190 (java.uninstall): Remove jv-convert.1.
4191 (java.maintainer-clean): Likewise.
4192 ($(srcdir)/java/jv-convert.1): New target.
4193 * gcj.texi (Top): Link to jv-convert node.
4194 (Individual utilities): Likewise.
4195 (Invoking jv-convert): New node.
4196
4197 2001-01-10 Jeff Sturm <jsturm@one-point.com>
4198 Martin Kahlert <martin.kahlert@infineon.com>
4199
4200 * jcf-parse.c (get_constant): Don't swap lo/hi for big
4201 endian targets when HOST_BITS_PER_WIDE_INT >= 64.
4202
4203 2002-01-03 Graham Stott <grahams@redhat.com>
4204
4205 * class.c (compile_resource_file): Update copyright date.
4206 Constify filename parameter.
4207 (java-tree.h): Update copyright date.
4208 (compile_resource_file): Constify filename parameter.
4209
4210 2002-01-03 Graham Stott <grahams@redhat.com>
4211
4212 * gcc/jcf-parse.c: Update copyright date.
4213 (yyparse): Constify resource_filename.
4214
4215 2002-01-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4216
4217 * parse.y (src_parse_roots): Don't needlessly zero init.
4218
4219 2001-12-31 Tom Tromey <tromey@redhat.com>
4220
4221 * parse.y (dump_java_tree): New function.
4222 (source_end_java_method): Call it.
4223 (end_class_declaration): Likewise.
4224 * lang.c (java_decode_option): Call dump_switch_p.
4225
4226 2001-12-28 Tom Tromey <tromey@redhat.com>
4227
4228 * gen-table.pl: Don't process characters after \uffff. Added
4229 comment pointing to input file.
4230
4231 2001-12-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4232
4233 * gen-table.pl: Const-ify output. Document the location of a
4234 suitable unicode input file.
4235
4236 * chartables.h: Regenerate.
4237
4238 2001-12-26 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4239
4240 * chartables.h: Const-ify.
4241 * gjavah.c (options): Likewise.
4242 * jcf-dump.c (options): Likewise.
4243 * jv-scan.c (options): Likewise.
4244 * lex.c (java_start_char_p, java_part_char_p): Likewise.
4245 * parse.y (binop_lookup): Likewise.
4246
4247 2001-12-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4248
4249 * Make-lang.in (keyword.h): Pass -C to gperf to const-ify
4250 the static arrays that are output.
4251 * jvspec.c (jvgenmain_spec): Make static.
4252 * keyword.gperf (struct java_keyword, java_keyword): Const-ify.
4253 * keyword.h: Regenerate.
4254 * lang.c (string_option, process_option_with_no, lang_f_options,
4255 lang_W_options): Const-ify.
4256 * lex.c (java_lex): Likewise.
4257
4258 2001-12-21 Richard Henderson <rth@redhat.com>
4259
4260 * boehm.c (PROCEDURE_OBJECT_DESCRIPTOR): Merge into ..
4261 (get_boehm_type_descriptor): ... here. Arrange for the
4262 TREE_TYPE to get set properly.
4263
4264 2001-12-21 Richard Henderson <rth@redhat.com>
4265
4266 * class.c (compile_resource_file): Set TREE_PUBLIC on the constructor
4267 only if the target requires collect2.
4268
4269 * class.c (build_class_ref): Mark _Jv_fooClass DECL_EXTERNAL.
4270
4271 2001-12-20 Tom Tromey <tromey@redhat.com>
4272
4273 For PR java/4509:
4274 * parse.y (java_complete_lhs) [COMPOUND_EXPR]: Correctly compute
4275 CAN_COMPLETE_NORMALLY for the node.
4276 * jcf-write.c (generate_bytecode_insns) [COMPOUND_EXPR]: Don't
4277 generate code for second branch if first branch can't complete
4278 normally.
4279 (generate_bytecode_insns) [LOOP_EXPR]: Don't generate `goto' to
4280 the loop head if the loop body can't complete normally.
4281
4282 2001-12-20 Tom Tromey <tromey@redhat.com>
4283
4284 For PR java/4766:
4285 * jcf-write.c (generate_bytecode_insns) [TRY_FINALLY_EXPR]: Handle
4286 case where `finally' clause can't complete normally.
4287
4288 2001-12-20 Tom Tromey <tromey@redhat.com>
4289
4290 Fixes PR java/5057:
4291 * parse.y (analyze_clinit_body): Added this_class parameter.
4292 Check for more cases where we must keep <clinit>.
4293 (maybe_yank_clinit): Cleaned up flow control.
4294
4295 2001-12-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4296
4297 * decl.c (java_init_decl_processing): Don't initialize
4298 finit_leg_identifier_node.
4299 * java-tree.h (java_tree_index): Remove JTI_FINIT_LEG_IDENTIFIER_NODE.
4300 (finit_leg_identifier_node): Remove.
4301 (ID_FINIT_P): Don't check for JTI_FINIT_LEG_IDENTIFIER_NODE.
4302
4303 2001-12-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4304
4305 * mangle.c (mangle_member_name): Don't special-case for
4306 NO_DOLLAR_IN_LABEL.
4307 * mangle_name.c (unicode_mangling_length): Likewise.
4308 (append_unicode_mangled_name): Likewise.
4309 * parse.y (make_nested_class_name): Remove dead NO_DOLLAR_IN_LABEL
4310 code.
4311
4312 2001-12-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4313
4314 * expr.c (build_java_array_length_access): Don't force null pointer
4315 check unless flag_check_references is set.
4316
4317 2001-12-20 Tom Tromey <tromey@redhat.com>
4318
4319 Fix for PR java/3417:
4320 * parse.y (patch_assignment): Added special processing for
4321 `return'.
4322 (patch_return): Don't convert booleans to integers, and don't
4323 special-case `null'.
4324
4325 2001-12-20 Joseph S. Myers <jsm28@cam.ac.uk>
4326
4327 * config-lang.in (diff_excludes): Remove.
4328
4329 2001-12-17 Joseph S. Myers <jsm28@cam.ac.uk>
4330
4331 * gcj.texi: Update link to GCC manual.
4332
4333 2001-12-17 Tom Tromey <tromey@redhat.com>
4334
4335 * parse.y (link_nested_class_to_enclosing): Removed useless
4336 statement.
4337
4338 2001-12-16 Tom Tromey <tromey@redhat.com>
4339
4340 * mangle.c (mangle_method_decl): Never emit `C2' constructor.
4341 Fixes PR java/5088.
4342
4343 2001-12-16 Joseph S. Myers <jsm28@cam.ac.uk>
4344
4345 * ChangeLog, Make-lang.in, class.c, expr.c, gcj.texi, java-tree.h,
4346 jcf-parse.c, jcf-write.c, lex.c, parse.h, parse.y, verify.c: Fix
4347 spelling errors.
4348
4349 2001-12-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4350
4351 * lex.c (java_read_unicode, java_lex): Use hex_p/hex_value.
4352
4353 2001-12-16 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4354
4355 * decl.c (java_init_decl_processing): Build otable_type correctly.
4356 otable_decl is an otable_type.
4357
4358 2001-12-15 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4359
4360 * java-tree.h (otable_methods, otable_decl, otable_syms_decl,
4361 otable_type, otable_ptr_type, method_symbol_type,
4362 method_symbols_array_type, method_symbols_array_ptr_type): New
4363 field/global tree definitions.
4364 (flag_indirect_dispatch): New flag.
4365 * decl.c (java_init_decl_processing): Initialize new otable and
4366 otable_syms type nodes and decls. Add new field "index" to
4367 method_type_node.
4368 * class.c (build_method_symbols_entry): New function.
4369 (make_method_value): Set "index" to to method's vtable index for
4370 virtual methods when indirect-dispatch is not used.
4371 (make_class_data): For indirect-dispatch, don't emit the dtable_decl,
4372 and set vtable_method_count to -1. Set otable and otable_syms field
4373 if indirect-dispatch is used and there was something to put in them.
4374 (build_method_symbols_entry): New function.
4375 (emit_offset_symbol_table): New function.
4376 * expr.c (get_offset_table_index): New function.
4377 (build_invokevirtual): Build array reference to otable at the index
4378 returned by get_offset_table_index, and use the result as the vtable
4379 offset.
4380 (build_invokeinterface): Similar.
4381 * jcf-parse.c (yyparse): If indirect-dispatch, call
4382 emit_offset_symbol_table at the end of compilation, after all classes
4383 have been generated.
4384 * jvspec.c: Don't pass findirect-dispatch to jvgenmain.
4385 * lang.c (flag_indirect_dispatch): Define.
4386 (lang_f_options): Add indirect-dispatch flag.
4387
4388 2001-12-14 Matthias Klose <doko@debian.org>
4389
4390 * gcj.texi: Markup for man page generation. Document missing
4391 options printed by <tool> --help.
4392 Terminate description of gij's -ms option with a dot.
4393 * Make-lang.in ($(srcdir)/java/*.1): New targets.
4394 (java.generated-manpages java.install-man, java.uninstall,
4395 java-maintainer-clean) Updated.
4396
4397 2001-12-14 Hans Boehm <Hans_Boehm@hp.com>
4398
4399 * class.c (get_dispatch_table): Fix java vtable layout
4400 for TARGET_VTABLE_USES_DESCRIPTORS.
4401 * decl.c (java_init_decl_processing): Initialize
4402 alloc_no_finalizer_node, finalize_identifier_node.
4403 * expr.c (class_has_finalize_method): New function.
4404 (expand_java_NEW): Generate calls for finalizer-free allocation.
4405 (build_invokevirtual): Fix java vtable layout for
4406 TARGET_VTABLE_USES_DESCRIPTORS.
4407 * java-tree.h (enum java_tree_index): New entries:
4408 JTI_ALLOC_NO_FINALIZER_NODE, JTI_FINALIZE_IDENTIFIER_NODE.
4409 (alloc_no_finalizer_node, finalize_deintifier_node): New macros.
4410 (class_has_finalize_method): declare.
4411 (HAS_FINALIZER_P): New macro.
4412 * parse.y (patch_invoke): Generate calls for finalizer-free
4413 allocation.
4414
4415 2001-12-12 Matthias Klose <doko@debian.org>
4416
4417 * Make-lang.in: JAVA_INSTALL_NAME, JAVA_CROSS_NAME: Remove
4418 whitespace at end of line.
4419
4420 2001-12-11 Tom Tromey <tromey@redhat.com>
4421
4422 * lex.c (java_init_lex): Define wfl_to_string as
4423 gnu.gcj.runtime.StringBuffer unless generating bytecode.
4424
4425 2001-12-11 Jeff Sturm <jsturm@one-point.com>
4426
4427 * class.c (make_method_value): Use null_pointer_node to
4428 represent empty exception table.
4429
4430 2001-12-10 Tom Tromey <tromey@redhat.com>
4431
4432 * check-init.c (check_init) [SWITCH_EXPR]: Use SWITCH_HAS_DEFAULT.
4433
4434 2001-12-10 Douglas B. Rupp <rupp@gnat.com>
4435
4436 * Make-lang.in (jvspec.o): Add $(OUTPUT_OPTION).
4437
4438 2001-12-09 Per Bothner <per@bothner.com>
4439
4440 * check-init.c (current_switch_has_default): New static field.
4441 (check_init): Case DEFAULT_EXPR: Set current_switch_has_default.
4442 Case SWITCH_EXPR: Save/restore current_switch_has_default. If no
4443 DEFAULT_EXPR seen, simulate a default alternative that copies state.
4444
4445 2001-12-09 Tom Tromey <tromey@redhat.com>
4446
4447 * check-init.c (check_init): Don't allow pre- or post- increment
4448 or decrement of final variable.
4449 (final_assign_error): Minor error message rewording.
4450
4451 2001-12-08 Tom Tromey <tromey@redhat.com>
4452
4453 * java-tree.h: Fixed typo.
4454
4455 * gjavah.c (decompile_method): Don't decompile to `return this'
4456 for static methods.
4457
4458 * gjavah.c (cxx_keywords): Re-sorted.
4459 * lex.c (cxx_keywords): Re-sorted.
4460
4461 * gjavah.c (HANDLE_METHOD): Set `decompiled' before doing anything
4462 else.
4463
4464 * gjavah.c (print_namelet): Clear subnamelets.
4465 (HANDLE_METHOD): Set `method_printed' earlier.
4466
4467 2001-12-07 Tom Tromey <tromey@redhat.com>
4468
4469 * lang.c (lang_f_options): Added
4470 optimize-static-class-initialization.
4471 (java_decode_option): Removed special case.
4472
4473 2001-12-07 Per Bothner <per@bothner.com>
4474
4475 * check-init.c (check_init): Fix typo freeing memory twice.
4476
4477 2001-12-05 Per Bothner <per@bothner.com>
4478
4479 Restore support for static class initialization optimization.
4480 * java-tree.h (STATIC_CLASS_INIT_OPT_P): Re-enable.
4481 * check-init.c (check_int): At end of BLOCK handle initialization
4482 blocks, which used to be done in java_complete_expand_method but did
4483 not handle the case where check_for_initialization might allocate
4484 more than a word of bits.
4485 * decl.c (lang_make_tree): The smic field is now a tree.
4486 * expr.c (build_class_init): Set DECL_FUNCTION_INIT_TEST_CLASS field.
4487 * java-tree.h (DECL_FUNCTION_INIT_TEST_TABLE): New macro.
4488
4489 * parse.y (emit_test_initialization): Combine hash_lookup calls.
4490
4491 * java-tree.h (DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND):
4492 Change from a hash table to a list.
4493 (struct_lang_decl): Change field 'smic' to match.
4494 * class.c (add_method_1): Initialize
4495 DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND to null list.
4496 * parse.y (adjust_init_test_initialization): Removed - inlined into -
4497 (java_expand_method_bodies): -here, since 'smic' is now a list.
4498 (patch_invoke): Add to 'smic' list, instead of hash_lookup.
4499
4500 * check-init.c (WORD_SIZE): Use BITS_PER_UNIT.
4501
4502 * class.c (java_hash_compare_tree_node): Fix casts.
4503
4504 2001-12-04 Per Bothner <per@bothner.com>
4505
4506 * check-init.c: Handle definite unassignment to finals in addition
4507 to definite assignment.
4508 (loop_current_locals): New field.
4509 (num_current_locals, int start_current_locals, num_current_words):
4510 Make static.
4511 (SET_P, CLEAR_P, SET_BIT): Add needed but missing parentheses.
4512 (ASSIGNED_P, UNASSIGNED_P, SET_ASSIGNED, SET_UNASSIGNED,
4513 CLEAR_ASSIGNED, CLEAR_UNASSIGNED): New macros.
4514 (get_variable_decl, check_final_reassigned): New functions.
4515 (check_init, check_bool_init): Modify as needed for checking finals.
4516 (check_for_initialization): Take extra parameter and return void.
4517 Do extra start-up logic to check final fields for assignment.
4518 * parse.y (check_static_final_variable_assignment_flag,
4519 reset_static_final_variable_assignment_flag, check_final_assignment,
4520 check_final_variable_local_assignment_flag,
4521 reset_final_variable_indirect_assignment_flag,
4522 reset_final_variable_global_assignment_flag): Remove functions.
4523 (java_complete_expand_methods, outer_field_access_fix,
4524 patch_assignment): Remove no-longer used logic.
4525 * java-tree.h (DECL_FIELD_FINAL_IUD): Change usage and comments.
4526 * parse.y (register_fields, java_complete_tree): Update accordingly.
4527
4528 * check-init.c (ALLOC_WORDS/FREE_WORDS): Use xmalloc/free, not alloca.
4529 (DECLARE_BUFFERS, RELEASE_BUFFERS, ALLOC_BUFFER, FREE_BUFFER): New.
4530 (check_cond_init, check_bool2_init): Use DECLARE_BUFFERS.
4531
4532 * java-tree.h (STATIC_CLASS_INIT_OPT_P): Temporarily turn off.
4533
4534 * java-tree.h (DECL FINAL): New bit-field.
4535 (METHOD_FINAL, FIELD_FINAL, CLASS_FINAL): Define as DECL_FINAL.
4536 (LOCAL_FINAL_P): Use DECL_FINAL rather than old LOCAL_FINAL.
4537 (DECL_INIT_CALLS_THIS): New macro.
4538 (struct lang_decl): New bit-field init_calls_this.
4539 (DECL_FUNCTION_ALL_FINAL_INITIALIZED, DECL_FIELD_FINAL_LIIC,
4540 DECL_FIELD_FINAL_IERR, LOCAL_FINAL, TYPE_HAS_FINAL_VARIABLE
4541 (DECL_BIT_INDEX): Change to use pointer_alias_set since we now
4542 use it for both local variables and final fields.
4543 (struct lang_decl_var): Remove bit-fields final_liic, final_ierr,
4544 and local_final.
4545 (struct lang_type): Remove hfv bit-field.
4546 (check_for_initialization): Change to return void.
4547
4548 * java-tree.h (IS_ARRAY_LENGTH_ACCESS): New macros.
4549 * expr.c (build_java_array_length_access): Set IS_ARRAY_LENGTH_ACCESS.
4550 * check-init.c (final_assign_error): New helper function.
4551 (check_final_reassigned, check_init): Use it.
4552 (check_init): Also check IS_ARRAY_LENGTH_ACCESS for ARRAY.length.
4553
4554 * java-tree.h (struct lang_decl, struct lang_decl_var): Change all
4555 bit-fields to unsigned.
4556
4557 2001-12-03 Per Bothner <per@bothner.com>
4558
4559 * parse.y (patch_binop): Minor constant folding.
4560
4561 * parse.y (build_current_thisn): Shorter 'buffer'.
4562
4563 2001-12-03 Per Bothner <per@bothner.com>
4564
4565 * decl.c (complete_start_java_method): Now generate TRY_FINALLY_EXPR
4566 instead of CLEANUP_POINT_EXPR and WITH_CLEANUP_EXPR.
4567 * jcf-write.c (generate_bytecode_insns): Remove support for
4568 CLEANUP_POINT_EXPR and WITH_CLEANUP_EXPR as they are no longer used.
4569 * check-init.c (check_init): Likewise.
4570
4571 2001-12-03 Per Bothner <per@bothner.com>
4572
4573 * verify.c (subroutine_nesting): New function.
4574 (verify_jvm_instructions): Use it to fix logic for checking that
4575 we're done with the current subroutine.
4576
4577 * verify.c (verify_jvm_instruction): For OPCODE_checkcast and
4578 OPCODE_instanceof use POP_TYPE macro for better diagnostics.
4579
4580 2001-12-03 Per Bothner <per@bothner.com>
4581
4582 * jcf.h: Fix obvious typo in comment.
4583 * typeck.c (build_null_signature): Add comment.
4584
4585 2001-12-03 Neil Booth <neil@daikokuya.demon.co.uk>
4586
4587 * expr.c: Remove leading capital from diagnostic messages, as
4588 per GNU coding standards.
4589 * jcf-io.c: Similarly.
4590 * jcf-parse.c: Similarly.
4591 * jv-scan.c: Similarly.
4592 * jvspec.c: Similarly.
4593 * mangle.c: Similarly.
4594
4595 2001-12-02 Tang Ching-Hui <nicholas@cs.nthu.edu.tw>
4596 Alexandre Petit-Bianco <apbianco@redhat.com>
4597
4598 * expr.c (build_java_arrayaccess): Call save_expr on array for
4599 correct evaluation order, modified comment, fixed indentation.
4600 * parse.y: (patch_assignment): Correctly extract the array base
4601 from the tree generate by build_java_arrayaccess, added comments.
4602 (patch_array_ref): Remove SAVE_EXPR on ARRAY_REF.
4603 Fixes PR java/3096, PR java/3803, PR java/3965.
4604
4605 2001-12-01 Neil Booth <neil@daikokuya.demon.co.uk>
4606
4607 * expr.c (expand_byte_code): Remove trailing periods from messages.
4608 * jcf-parse.c (load_class, jcf_parse): Similarly.
4609 * jcf-write.c (generate_classfile): Similarly.
4610 * lex.c (java_lex): Similarly.
4611
4612 2001-11-30 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4613
4614 * class.c (add_interface_do): Set BINFO_VPTR_FIELD.
4615
4616 2001-11-29 Joseph S. Myers <jsm28@cam.ac.uk>
4617
4618 * Make-lang.in (java.generated-manpages): New dummy target.
4619
4620 2001-11-27 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
4621
4622 * jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
4623 ASM_FINAL_SPEC.
4624 (lang_specific_pre_link): Use set_input to set input_filename.
4625 Append `main' here.
4626 * jvgenmain.c (usage): Append literal `main' to CLASSNAME.
4627 (main): Fix definition.
4628 Strip `main' from classname.
4629 Fixes PR java/227.
4630
4631 2001-11-18 Roger Sayle <roger@eyesopen.com>
4632
4633 * parse.h (java_expand_switch): Remove old prototype.
4634
4635 2001-11-18 Tom Tromey <tromey@redhat.com>
4636
4637 Fix for PR java/1401:
4638 * jcf-write.c (generate_bytecode_insns) [binop]: Handle case where
4639 arg0 is null.
4640 (generate_bytecode_insns) [MODIFY_EXPR]: Handle `OP=' case
4641 correctly.
4642
4643 2001-11-18 Neil Booth <neil@daikokuya.demon.co.uk>
4644
4645 * lang.c (finish_parse): Rename to java_finish.
4646 (LANG_HOOKS_FINISH, java_finish): New.
4647
4648 2001-11-15 Neil Booth <neil@daikokuya.demon.co.uk>
4649
4650 * decl.c (init_decl_processing): Rename java_init_decl_processing.
4651 * java-tree.h: New prototype.
4652 * lang.c (java_init): Update prototype. Combine with old init_parse.
4653
4654 2001-11-13 Tom Tromey <tromey@redhat.com>
4655
4656 * gjavah.c (method_signature): New global.
4657 (HANDLE_METHOD): Set it.
4658 (decompile_return_statement): New function.
4659 (decompile_method): Use it.
4660 (print_method_info): Removed `synth' argument.
4661
4662 2001-11-09 Neil Booth <neil@daikokuya.demon.co.uk>
4663
4664 * java-tree.h (java_set_yydebug): New.
4665 * jcf-parse.c (set_yydebug): Rename java_set_yydebug.
4666 * lang.c (LANG_HOOKS_SET_YYDEBUG): Override.
4667 (print_lang_decl, print_lang_type, print_lang_identifier,
4668 print_lang_statistics, lang_print_xnode): Remove.
4669
4670 2001-11-09 Neil Booth <neil@daikokuya.demon.co.uk>
4671
4672 * jcf-parse.c (init_lex): Remove.
4673 * lang.c (language_string, lang_identify): Remove.
4674 (struct lang_hooks): Constify.
4675 (LANG_HOOKS_NAME): Override.
4676 (init_parse): Update.
4677
4678 2001-11-08 Andreas Franck <afranck@gmx.de>
4679
4680 * Make-lang.in (JAVA_INSTALL_NAME, JAVA_CROSS_NAME): Handle
4681 program_transform_name the way suggested by autoconf.
4682 (java.install-common): Also transform auxiliary program names with
4683 program_transform_name.
4684
4685 2001-11-08 Tom Tromey <tromey@cygnus.com>
4686
4687 * parse.y (trap_overflow_corner_case): New rule.
4688 (unary_expression): Use it.
4689 * lex.c (java_init_lex): Don't set minus_seen.
4690 (yylex): Don't use minus_seen. Communicate overflow to parser for
4691 it to handle.
4692 (error_if_numeric_overflow): New function.
4693 * parse.h (minus_seen): Removed field.
4694 (JAVA_RADIX10_FLAG): New define.
4695
4696 2001-11-07 Tom Tromey <tromey@redhat.com>
4697
4698 Patch for PR java/1414:
4699 * parse.y (case_label_list): New global.
4700 (goal): Register case_label_list with GC.
4701 (java_complete_lhs): Save new case on case_label_list.
4702 (patch_switch_statement): Check for duplicate case labels.
4703
4704 2001-11-07 Alexandre Petit-Bianco <apbianco@redhat.com>
4705
4706 * parse.y (patch_assignment): Removed unused third argument.
4707 (java_complete_lhs): Removed unused third argument to patch_assignment.
4708
4709 2001-11-06 Neil Booth <neil@cat.daikokuya.demon.co.uk>
4710
4711 * lang.c: Include langhooks-def.h.
4712 * Make-lang.in: Update.
4713
4714 2001-10-31 Zack Weinberg <zack@codesourcery.com>
4715
4716 * Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
4717
4718 2001-10-29 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4719
4720 * mangle.c (find_compression_record_match): Don't match compression
4721 records for package name elements unless they occur at the start of
4722 the name. Fix for PR java/4717.
4723
4724 2001-10-25 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4725
4726 * expr.c (expand_java_field_op): Don't special-case references to
4727 java.lang.PRIMTYPE.TYPE.
4728 (build_primtype_type_ref): Removed.
4729 * java-tree.h (build_primtype_type_ref): Remove prototype.
4730 * parse.y (maybe_build_primttype_type_ref): Removed.
4731 (complete_function_arguments): Don't special-case references to
4732 java.lang.PRIMTYPE.TYPE.
4733 (patch_assignment): Likewise.
4734 (array_constructor_check_entry): Likewise.
4735
4736 2001-10-24 Alexandre Petit-Bianco <apbianco@redhat.com>
4737
4738 * mangle.c (static tree compression_table): Fixed leading comment.
4739 * parse.h (struct parser_ctxt): Fixed field comment.
4740 * parse.y (check_pkg_class_access): New prototype, fixed leading
4741 comment, new parameter used to emit error only if passed as true.
4742 (parse_check_super): Pass extra argument to check_pkg_class_access.
4743 (do_resolve_class): Likewise.
4744 (process_imports): Likewise.
4745 (read_import_dir): Fixed indentation.
4746 (find_in_imports_on_demand): New local class_type_name. Local
4747 node_to_use deleted. while loop changed into for loop. Report
4748 multiple definition only for accessible classes. Improved error
4749 message.
4750 (start_complete_expand_method): Local `ptr' removed. DECL_ARGUMENTS
4751 assigned to parameter list, fixed indentation. while loop changed
4752 into for loop, restore TREE_CHAIN on local `tem' before the next
4753 iteration.
4754
4755 2001-10-23 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4756
4757 * lang.c (lang_get_alias_set): Deleted.
4758
4759 2001-10-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4760
4761 * gjavah.c (jni_print_char): Fix thinko in last change.
4762
4763 * gjavah.c (jni_print_char, decode_signature_piece): Use
4764 safe-ctype macros and/or fold extra calls into fewer ones.
4765 * lex.c (java_read_unicode, java_lex): Likewise.
4766 * lex.h (JAVA_START_CHAR_P, JAVA_PART_CHAR_P, JAVA_ASCII_DIGIT,
4767 JAVA_ASCII_HEXDIGIT, JAVA_ASCII_LETTER): Likewise.
4768 * mangle_name.c (append_unicode_mangled_name,
4769 unicode_mangling_length): Likewise.
4770
4771 2001-10-17 Richard Henderson <rth@redhat.com>
4772
4773 * Make-lang.in (java/lang.o): Depend on langhooks.h.
4774
4775 2001-10-15 Alexandre Petit-Bianco <apbianco@redhat.com>
4776
4777 * lang.c (langhooks.h): Included.
4778 (LANG_HOOKS_INIT): Redefined.
4779 (LANG_HOOKS_INIT_OPTIONS): Likewise.
4780 (LANG_HOOKS_DECODE_OPTION): Likewise.
4781 (struct lang_hooks lang_hooks): New initialization.
4782
4783 2001-10-11 Per Bothner <per@bothner.com>
4784
4785 * parse.y (patch_synchronized_statement): Use a TRY_FINALLY_EXPR
4786 rather than a CLEANUP_POINT_EXPR/WITH_CLEANUP_EXPR pair.
4787 The former is simpler, and jcf-write.c handles it better.
4788 (java_complete_lhs): No longer need to handle CLEANUP_POINT_EXPR
4789 or WITH_CLEANUP_EXPR.
4790 * jcf-write.c: Revert Alex's change from 2000-10-18. It is no
4791 longer needed, as we already handle empty TRY_FINALLY_EXPR bodies fine.
4792
4793 * parse.y (patch_if_else_statement): If the condition is constant,
4794 optimize away the test.
4795
4796 2001-10-09 Alexandre Petit-Bianco <apbianco@redhat.com>
4797
4798 * parse.y (patch_cast): Call patch_string on the first operand of
4799 the incoming node, update it if necessary. Fixes PR java/4510.
4800
4801 2001-10-09 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
4802
4803 * parse.y (find_as_inner_class): Don't disregard the enclosing scope
4804 when name qualifier matches a package name.
4805
4806 2001-10-08 Tom Tromey <tromey@redhat.com>
4807
4808 Fix for PR java/4489:
4809 * jcf-write.c (generate_bytecode_insns) [SWITCH_EXPR]: Always
4810 force a new label when computing `body_block'.
4811
4812 2001-10-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4813
4814 * jcf-io.c (format_uint): Const-ify.
4815 * lang.c (java_tree_code_type, java_tree_code_length): Likewise.
4816 * lex.c (java_get_line_col): Likewise.
4817 * parse.y (build_incdec): Likewise.
4818
4819 2001-10-05 Alexandre Petit-Bianco <apbianco@redhat.com>
4820
4821 * parse.y (register_incomplete_type): Set JDEP_SUPER to be given
4822 a NULL enclosing context if appropriate. Fixes PR java/4466.
4823
4824 2001-10-03 Alexandre Petit-Bianco <apbianco@redhat.com>
4825
4826 * parse.y (patch_assignment): Use lvalue's original TYPE when
4827 building the final COMPOUND_EXPR.
4828 (try_reference_assignconv): Fixed leading comment.
4829
4830 2001-09-26 Alexandre Petit-Bianco <apbianco@redhat.com>
4831
4832 * parse.y (check_final_variable_indirect_assignment): For
4833 COMPOUND_EXPR, return only if finals were found initialized
4834 properly, if not, keep on checking.
4835 (check_final_variable_global_assignment_flag): New local
4836 error_found, set when appropriate and used to decide whether to
4837 report uninitialized finals. Fixed typo in comment.
4838
4839 2001-09-22 Alexandre Petit-Bianco <apbianco@redhat.com>
4840
4841 * decl.c (init_decl_processing): Fixed typo in predef_filenames
4842 last three initializations. Fixes PR java/4360.
4843
4844 2001-09-21 Richard Henderson <rth@redhat.com>
4845
4846 * class.c (get_dispatch_table): Handle function descriptors.
4847 (build_dtable_decl): Likewise.
4848 * expr.c (build_invokevirtual): Likewise.
4849
4850 2001-09-20 Alexandre Petit-Bianco <apbianco@redhat.com>
4851
4852 * parse.y (patch_method_invocation): Build class initialization
4853 when static finals are used to qualify method invocation.
4854 Fixes PR java/4366.
4855
4856 2001-09-19 Alexandre Petit-Bianco <apbianco@redhat.com>
4857
4858 * parse.h: (WFL_STRIP_BRACKET): Re-written using
4859 build_type_name_from_array_name.
4860 (STRING_STRIP_BRACKETS): New macro.
4861 * parse.y (build_type_name_from_array_name): New function.
4862 (array_creation_expression:): Accumulate []s instead of [s.
4863 (cast_expression:): Accumulate []s instead of [s after cast type
4864 name.
4865 (build_array_from_name): Local string deleted, use
4866 build_type_name_from_array_name.
4867 (build_unresolved_array_type): Accumulate []s instead of [s after
4868 type name.
4869 (register_fields): Fixed comment.
4870 (resolve_class): Local name, base deleted, new locals tname and
4871 array_dims. Use build_type_name_from_array_name. Use array_dims to
4872 build array type.
4873 (purify_type_name): Use STRING_STRIP_BRACKETS.
4874
4875 2001-09-18 Andreas Jaeger <aj@suse.de>
4876
4877 * parse.y: Use VA_OPEN/VA_CLOSE/VA_FIXEDARG throughout.
4878 * jv-scan.c: Likewise.
4879
4880 2001-09-17 Alexandre Petit-Bianco <apbianco@redhat.com>
4881
4882 * parse.y (patch_method_invocation): Inner class creation context
4883 check not enforced within constructors. Fixes PR java/1873.
4884
4885 2001-09-16 Tom Tromey <tromey@redhat.com>
4886
4887 * jcf-write.c (generate_bytecode_insns) [SWITCH_EXPR]: Call
4888 NOTE_PUSH for single-case push. Fixes PR java/4189.
4889
4890 2001-09-13 Alexandre Petit-Bianco <apbianco@redhat.com>
4891
4892 * java-tree.h (TYPE_IMPORT_LIST): New macro.
4893 (TYPE_IMPORT_DEMAND_LIST): Likewise.
4894 (struct lang_type): New fields import_list and import_demand_list.
4895 * parse.y (java_complete_class): Initialize TYPE_IMPORT_LIST and
4896 TYPE_IMPORT_DEMAND_LIST with ctxp counterparts.
4897 (do_resolve_class): New local saved_enclosing_type, initialized,
4898 passed as parameter to find_in_imports and find_in_imports_on_demand.
4899 (find_in_imports): Added paramater enclosing_type, use its
4900 TYPE_IMPORT_LIST when applicable.
4901 (find_in_imports_on_demand): Added parameter enclosing_type, use
4902 its TYPE_IMPORT_DEMAND_LIST when applicable. Reorganized locals
4903 declaration and initialization.
4904 (fold_constant_for_init): Switch/restore current_class to the
4905 appropriate context.
4906
4907 2001-09-13 Mark Mitchell <mark@codesourcery.com>
4908
4909 * verify.c (verify_jvm_instructions): Fix typo.
4910
4911 2001-09-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4912
4913 * expr.c (expand_invoke): Const-ification.
4914 * parse.y (patch_method_invocation): Likewise.
4915
4916 2001-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4917
4918 * gjavah.c (cxx_keywords): Const-ification.
4919 * keyword.gperf (java_keyword): Likewise.
4920 * lang.c (java_tree_code_name): Likewise.
4921 * lex.c (cxx_keywords): Likewise.
4922 * parse.y (java_parser_context_suspend, merge_string_cste): Likewise.
4923
4924 2001-09-11 Richard Henderson <rth@redhat.com>
4925
4926 * parse.h (ctxp_for_generation): Mark extern.
4927
4928 2001-09-10 Richard Henderson <rth@redhat.com>
4929
4930 * class.c (build_class_ref): Set DECL_EXTERNAL before make_decl_rtl.
4931
4932 2001-09-07 Matt Kraai <kraai@alumni.carnegiemellon.edu>
4933
4934 * typeck.c (java_array_type_length, build_prim_array_type):
4935 Represent empty arrays by NULL index.
4936
4937 2001-09-06 Alexandre Petit-Bianco <apbianco@redhat.com>
4938
4939 * java-tree.h (compile_resource_file): Grouped with other prototypes.
4940 * jvspec.c (lang_specific_driver): Removed unused local `ptr.'
4941
4942 2001-09-06 Anthony Green <green@redhat.com>
4943
4944 * class.c (O_BINARY): Define if necessary.
4945 (registerResource_libfunc): Declare.
4946 (init_class_processing): Initilize registerResource_libfunc.
4947 (compile_resource_file): New function.
4948 * java-tree.h (resource_name): Declare.
4949 (compile_resource_file): Declare.
4950 * jcf-parse.c (yyparse): Handle compiling java resource files.
4951 * lang.c (java_decode_option): Handle -fcompile-resource option.
4952 * jvspec.c (lang_specific_driver): Handle -R flag for compiling
4953 resource files.
4954 * gcj.texi (Code Generation): Add documentation for -R flag.
4955
4956 2001-09-05 Alexandre Petit-Bianco <apbianco@redhat.com>
4957
4958 * jcf-write.c (generate_classfile): Issue an error in case of
4959 field/initial value mismatch.
4960 * parse.y (analyze_clinit_body): Keep <clinit> if an array is
4961 being initialized and we're generating bytecode.
4962 (java_complete_lhs): In MODIFY_EXPR section: added comments,
4963 set DECL_INITIAL properly when appropriate.
4964 Fixes PR java/4230
4965 Fixes PR java/4204
4966
4967 2001-09-01 Per Bothner <per@bothner.com>
4968
4969 * parse.y (maybe_yank_clinit): A field without an initializer is not
4970 relevant. All initializers except static final and constant require
4971 <clinit>, regardless of flag_emit_class_files.
4972
4973 2001-08-31 Per Bothner <per@bothner.com>
4974
4975 * class.c (set_constant_value): When not emitting class files, then a
4976 String ConstantValue is a utf8const_ptr_type.
4977
4978 2001-08-30 Per Bothner <per@bothner.com>
4979
4980 * jcf-write.c (generate_classfile): Check that field is primitive
4981 or string before emitting ConstantValue attribute.
4982
4983 2001-08-30 Per Bothner <per@bothner.com>
4984
4985 * parse.y (resolve_qualified_expression_name): If creating a
4986 COMPOUND_EXPR, set it's type correctly.
4987
4988 2001-08-30 Per Bothner <per@bothner.com>
4989
4990 * jcf-io.c (open_class): Set filename field.
4991
4992 * jcf-parse,c (parse_class_file): Set current_function_decl
4993 for better error message when Code attribute is missing.
4994
4995 * lang.c (put_decl_node, lang_print_error): Re-arrange for
4996 better diagnostics, especially for constructors.
4997
4998 2001-08-30 Per Bothner <per@bothner.com>
4999
5000 * jcf-write.c (generate_classfile): Don't write ConstantValue
5001 attribute if field is not final, for compatibility with jdk.
5002
5003 * jcf-write.c (generate_classfile): Convert ConstantValue values
5004 to correct type. Work-around for front-end bug.
5005 * class.c (set_constant_value): Error if constant has wrong type.
5006
5007 2001-08-30 Per Bothner <per@bothner.com>
5008
5009 * jcf-dump.c (print_constant): Fix fencepost error so "Float" and
5010 "Double" are printed at verbosity 1.
5011
5012 * jcf-dump.c (main): Disable flag_print_attributes if --javap.
5013
5014 * jcf-dump.c (SPECIAL_IINC): Remove unneeded casts to long.
5015
5016 2001-08-30 Alexandre Petit-Bianco <apbianco@redhat.com>
5017
5018 * parse.y (patch_assignment): Don't verify final re-assignment here.
5019 (java_complete_lhs): Verify assignments to finals calling
5020 patch_assignment. Verify re-assignments to finals before calling
5021 patch_assignment.
5022
5023 2001-08-29 Alexandre Petit-Bianco <apbianco@redhat.com>
5024
5025 * parse.y (java_complete_lhs): Allow final locals in CASE_EXPRs.
5026 Fixes PR java/1413
5027
5028 2001-08-28 Alexandre Petit-Bianco <apbianco@redhat.com>
5029
5030 * lex.c (java_lex): new local found_hex_digits. Set and then used
5031 in test to reject invalid hexadecimal numbers.
5032 * parse.y (java_complete_tree): Prevent unwanted cast with
5033 initialized floating point finals.
5034 (patch_binop): Emit a warning when detecting a division by zero,
5035 mark result not constant, don't simplify non integer division.
5036
5037 2001-08-28 Per Bothner <per@bothner.com>
5038
5039 * jcf-write.c (generate_bytecode_insns): For increments and
5040 decrements just recurse to push constant. Improvement on Mark's patch.
5041
5042 2001-08-28 Mark Mitchell <mark@codesourcery.com>
5043
5044 * jcf-write.c (generate_bytecode_insns): Generate an integer to
5045 real conversion for increments and decrements of reals.
5046
5047 2001-08-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5048
5049 * parse.y (resolve_qualified_expression_name): Handle unresolved
5050 qualified expressions, prevent numerical qualifiers, fixed typo.
5051 Fixes PR java/4141
5052
5053 2001-08-24 Alexandre Petit-Bianco <apbianco@redhat.com>
5054
5055 * parse.y (check_deprecation): Handle TYPE_DECL in a special case,
5056 don't report anything but deprecated class when marked so. Handle
5057 VAR_DECL.
5058 (patch_method_invocation): Check deprecation on methods and types.
5059 (patch_binop): code becomes an enum tree_code, added default: to
5060 switch to handle that. Detect division by zero, try to fold and
5061 return before using a subroutine.
5062
5063 2001-08-23 Alexandre Petit-Bianco <apbianco@redhat.com>
5064
5065 * jcf-parse.c (yyparse): Set magic to 0, don't issue error for a
5066 file smaller than 4 bytes.
5067 * parse.y (check_inner_circular_reference): New function.
5068 (check_circular_reference): Likewise.
5069 (array_initializer:): Accept {,}.
5070 (java_check_circular_reference): Rewritten using
5071 check_circular_reference and check_inner_circular_reference.
5072 (java_complete_expand_method): Unconditionally save and restore
5073 the unpurged exception list.
5074 (build_dot_class_method_invocation): Unmangle signature parameter.
5075
5076 2001-08-21 Tom Tromey <tromey@redhat.com>
5077
5078 * decl.c (init_decl_processing): Add `throws' field to method
5079 descriptor.
5080 * class.c (make_method_value): Compute `throws' field for method.
5081
5082 2001-08-22 Alexandre Petit-Bianco <apbianco@redhat.com>
5083
5084 * parse.y (resolve_inner_class): Keep local_enclosing to NULL if
5085 circularity is detected.
5086 (ctors_unchecked_throws_clause_p): Fixed leading comment.
5087
5088 2001-08-17 Richard Henderson <rth@redhat.com>
5089
5090 * class.c (emit_register_classes): Add align parameter to
5091 call to assemble_integer.
5092
5093 2001-08-16 Alexandre Petit-Bianco <apbianco@redhat.com>
5094
5095 * jcf-parse.c (load_class): New locals saved and class_loaded. If
5096 loading a class_or_name fails, try considering an innerclass name
5097 and load the enclosing context.
5098 * parse.y (resolve_inner_class): New function.
5099 (find_as_inner_class): Added leading comment.
5100 (register_incomplete_type): Keep the current context as enclosing
5101 context for JDEP_FIELD dependencies.
5102 (do_resolve_class): Locals new_class_decl and super initialized to
5103 NULL. Call resolve_inner_class, explore the enclosing context
5104 superclass if necessary.
5105 Fixes PR java/4007
5106
5107 2001-08-16 Tom Tromey <tromey@redhat.com>
5108
5109 * jcf-dump.c (main): Updated for change to jcf_path_seal.
5110 * gjavah.c (main): Updated for change to jcf_path_seal.
5111 * lang.c (version_flag): New global.
5112 (java_decode_option): Recognize `-version'.
5113 (java_init): Update for change to jcf_path_seal.
5114 * jcf.h (jcf_path_seal): Added `print' argument.
5115 * jcf-path.c (jcf_path_seal): Added `print' argument.
5116
5117 2001-08-13 Zack Weinberg <zackw@panix.com>
5118
5119 * Make-lang.in (java/decl.o): Update dependencies.
5120 * decl.c: Include libfuncs.h, don't include toplev.h.
5121
5122 2001-08-12 Alexandre Petit-Bianco <apbianco@redhat.com>
5123
5124 * decl.c (init_decl_processing): exception_type_node,
5125 class_not_found_type_node, and no_class_def_found_type_node
5126 initialized. predef_filenames augmented accordingly.
5127 instinit_identifier_node initialized.
5128 * java-tree.def (INSTANCE_INITIALIZERS_EXPR): Entry removed.
5129 * java-tree.h (enum java_tree_index): New entries
5130 JTI_EXCEPTION_TYPE_NODE, JTI_CLASS_NOT_FOUND_TYPE_NODE,
5131 JTI_NO_CLASS_DEF_FOUND_TYPE_NODE, JTI_INSTINIT_IDENTIFIER_NODE.
5132 (exception_type_node): New macro.
5133 (class_not_found_type_node): Likewise.
5134 (no_class_def_found_type_node): Likewise.
5135 (instinit_identifier_node): Likewise.
5136 (PREDEF_FILENAMES_SIZE): Adjusted.
5137 (TYPE_HAS_FINAL_VARIABLE): Fixed typo.
5138 (struct lang_type): Fixed typo in bitfield name.
5139 (DECL_INSTINIT_P): New macro.
5140 (ID_INSTINIT_P): Likewise.
5141 * jcf-write.c (generate_classfile): instinit$ bears the Synthetic
5142 attribute.
5143 * parse.y (encapsulate_with_try_catch): New function.
5144 (generate_instinit): Likewise.
5145 (build_instinit_invocation): Likewise.
5146 (ctors_unchecked_throws_clause_p): Likewise.
5147 (add_instance_initializer): Deleted.
5148 (build_instance_initializer): Likewise.
5149 (in_instance_initializer): Likewise.
5150 (check_method_redefinition): instinit$ not to be verified.
5151 (java_complete_expand_methods): Generate instinit$, simplified code.
5152 (build_dot_class_method): Eliminated unnecessary locals. Use
5153 encapsulate_with_try_catch, removed unnecessary code.
5154 (fix_constructors): New local iii. Use build_instinit_invocation.
5155 (patch_method_invocation): Added comment.
5156 (maybe_use_access_method): Don't consider instinit$.
5157 (find_applicable_accessible_methods_list): Shorten the search for
5158 instinit$ too.
5159 (java_complete_lhs): case INSTANCE_INITIALIZERS_EXPR removed.
5160 (patch_return): Use DECL_INSTINIT_P instead of in_instance_initializer.
5161 (patch_throw_statement): Likewise. Fixed typo.
5162
5163 2001-08-12 David Edelsohn <edelsohn@gnu.org>
5164
5165 Revert:
5166 2001-08-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5167 * jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
5168 ASM_FINAL_SPEC.
5169 (lang_specific_pre_link): Use set_input to set input_filename.
5170 Append `main' here.
5171 * jvgenmain.c (usage): Append literal `main' to CLASSNAME.
5172 (main): Fix definition.
5173 Strip `main' from classname.
5174 Fixes PR java/227.
5175
5176 2001-08-11 Zack Weinberg <zackw@panix.com>
5177
5178 * lex.h: Don't include setjmp.h. Don't define
5179 SET_FLOAT_HANDLER or prototype set_float_handler.
5180
5181 2001-08-09 Alexandre Petit-Bianco <apbianco@redhat.com>
5182
5183 * expr.c (java_lang_expand_expr): Call `expand_end_bindings' and
5184 `poplevel' in the right order.
5185
5186 2001-08-09 Richard Henderson <rth@redhat.com>
5187
5188 * Make-lang.in (class.o): Depend on TARGET_H.
5189 * class.c (emit_register_classes): Use target hooks instead of
5190 assemble_constructor and assemble_destructor.
5191
5192 2001-08-08 Alexandre Petit-Bianco <apbianco@redhat.com>
5193
5194 * check-init.c (flags.h): Include
5195 (check_init): Don't report uninitialized static class
5196 initialization flags, don't free bit index when doing static class
5197 initialization optimization.
5198 (check_for_initialization): Return type changed to `unsigned int.'
5199 (attach_initialized_static_class): New function.
5200 * class.c (add_method_1): Create the initialized static class
5201 table if necessary.
5202 (finish_class): Always emit deferred inline methods.
5203 * decl.c (emit_init_test_initialization): Moved to expr.c
5204 (complete_start_java_method): Don't traverse
5205 DECL_FUNCTION_INIT_TEST_TABLE.
5206 (lang_mark_tree): Mark hash tables in function decls.
5207 * expr.c (emit_init_test_initialization): Moved from decl.c.
5208 (build_class_init): Create LAG_DECL_SPECIFIC for the static class
5209 initialization flag, set DECL_CONTEXT and
5210 LOCAL_CLASS_INITIALIZATION_FLAG.
5211 (java_lang_expand_expr): Emit initialization code for static class
5212 initialized flags when entering block, if necessary.
5213 * gcj.texi (-fno-optimize-static-class-initialization): Documented.
5214 * java-tree.h (flag_optimize_sci): New global variable declaration.
5215 (DECL_FUNCTION_INITIALIZED_CLASS_TABLE): New macro.
5216 (DECL_FUNCTION_STATIC_METHOD_INVOCATION_COMPOUND): Likewise.
5217 (LOCAL_FINAL_P): Fixed typo in comment.
5218 (FINAL_VARIABLE_P): Likewise.
5219 (LOCAL_CLASS_INITIALIZATIO_FLAG): New macro.
5220 (LOCAL_CLASS_INITIALIZATIO_FLAG_P): Likewise.
5221 (struct lang_decl): New fields `ict', `smic' and `cif.'
5222 (check_for_initialization): New returned value for global.
5223 (attach_initialized_static_class): New global function.
5224 (STATIC_CLASS_INIT_OPT_P): New macro.
5225 * lang-options.h (-fno-optimize-static-class-initialization): New flag.
5226 * lang.c (java_decode_option): Handle
5227 `-fno-optimize-static-class-initialization'
5228 * parse.y (start_complete_expand_method): New function.
5229 (java_expand_method_bodies): Likewise.
5230 (attach_init_test_initialization_flags): Likewise.
5231 (adjust_init_test_initialization): Likewise.
5232 (emit_test_initialization): Likewise.
5233 (java_complete_expand_methods): Nullify abstract and native method
5234 bodies.
5235 (java_complete_expand_method): New locals `fbody', `block_body'
5236 and `exception_copy.' Reorganized: directly return on empty method
5237 bodies, call `start_complete_expand_method', remember definitely
5238 initialized static class in function, don't expand method bodies.
5239 (java_expand_classes): Call `java_expand_method_bodies' before
5240 `finish_class' when compiling to native.
5241 (resolve_expression_name): Use `orig' after building outer class
5242 field access.
5243 (patch_invoke): Remember static method invocations.
5244
5245 2001-08-06 Richard Henderson <rth@redhat.com>
5246
5247 * class.c (emit_register_classes): Pass a symbol_ref and priority
5248 to assemble_constructor.
5249
5250 2001-08-02 Alexandre Petit-Bianco <apbianco@redhat.com>
5251
5252 * java-tree.h (all_class_filename): New macro.
5253 (enum java_tree_index): New enum `JTI_ALL_CLASS_FILENAME.'
5254 (BUILD_FILENAME_IDENTIFIER_NODE): Fixed leading comment. Link
5255 newly created IDENTIFIER_NODE to `all_class_filename.'
5256
5257 2001-08-01 Jeff Sturm <jsturm@one-point.com>
5258
5259 * java-tree.h (BUILD_FILENAME_IDENTIFIER_NODE):
5260 Use ggc_add_tree_root to register roots.
5261
5262 2001-07-31 Alexandre Petit-Bianco <apbianco@redhat.com>
5263
5264 * check-init.c (check_init): WITH_CLEANUP_EXPR node to use its
5265 second operand calling check_init.
5266 * decl.c (complete_start_java_method): Swaped second and third
5267 arguments while creating WITH_CLEANUP_EXPR node.
5268 * jcf-write.c (generate_bytecode_insns): Use second operand
5269 instead of third when handling WITH_CLEANUP_EXPR.
5270 * parse.y (java_complete_lhs): Expand second operand of
5271 WITH_CLEANUP_EXPR nodes.
5272 (patch_synchronized_statement): Swaped second and third arguments
5273 while creating WITH_CLEANUP_EXPR node.
5274
5275 2001-07-18 Alexandre Petit-Bianco <apbianco@redhat.com>
5276
5277 * parse.y (create_interface): Avoid cyclic inheritance report when
5278 syntax error encountered during class definition.
5279 Fixes PR java/2956
5280
5281 2001-08-02 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
5282
5283 * jvspec.c (jvgenmain_spec): Cannot use %umain, breaks
5284 ASM_FINAL_SPEC.
5285 (lang_specific_pre_link): Use set_input to set input_filename.
5286 Append `main' here.
5287 * jvgenmain.c (usage): Append literal `main' to CLASSNAME.
5288 (main): Fix definition.
5289 Strip `main' from classname.
5290 Fixes PR java/227.
5291
5292 2001-07-18 Tom Tromey <tromey@redhat.com>
5293
5294 For PR java/2812:
5295 * lex.h: Use HAVE_ICONV, not HAVE_ICONV_H.
5296 * lex.c (java_new_lexer): Use ICONV_CONST.
5297 (java_read_char): Likewise.
5298 * Make-lang.in (jc1$(exeext)): Link against LIBICONV.
5299 (jv-scan$(exeext)): Likewise.
5300
5301 2001-07-17 Alexandre Petit-Bianco <apbianco@redhat.com>
5302
5303 * parse.h (INTERFACE_INNER_MODIFIERS): Disallow `private.'
5304 * parse.y (check_class_interface_creation): Allow `private' if the
5305 enclosing is not an interface.
5306 (create_interface): Interface tagged public if the enclosing
5307 context is an interface.
5308 (create_class): Class tagged public if the enclosing context
5309 is an interface.
5310 Fixes PR java/2959
5311
5312 2001-07-17 Alexandre Petit-Bianco <apbianco@redhat.com>
5313
5314 * class.c (push_class): Set DECL_SIZE to `integer_zero_node.'
5315 Fixes PR java/2665
5316
5317 2001-07-14 Tim Josling <tej@melbpc.org.au>
5318
5319 * check-init.c (check_init): Remove references to EXPON_EXPR.
5320
5321 2001-07-13 Alexandre Petit-Bianco <apbianco@redhat.com>
5322
5323 * parse.y (java_complete_lsh): Set CAN_COMPLETE_NORMALLY and unset
5324 TREE_CONSTANT_OVERFLOW of CASE_EXPR value.
5325 Fixes PR java/3602
5326
5327 2001-07-13 Tom Tromey <tromey@redhat.com>
5328
5329 * jvspec.c (jvgenmain_spec): Remove -ffilelist-file from cc1
5330 invocation.
5331
5332 2001-07-12 Alexandre Petit-Bianco <apbianco@redhat.com>
5333
5334 * parse.y (patch_method_invocation): Don't override primary if one
5335 is already provided, but let this$<n> be built. Fixed comment.
5336
5337 2001-07-12 Alexandre Petit-Bianco <apbianco@redhat.com>
5338
5339 * parse.y (empty_statement:): Report empty statement error only
5340 when found at class declaration level.
5341 Fixes PR java/3635
5342
5343 2001-07-12 Tom Tromey <tromey@redhat.com>
5344
5345 * expr.c (expand_load_internal): New function.
5346 (LOAD_INTERNAL): Use it.
5347
5348 2001-07-11 Alexandre Petit-Bianco <apbianco@redhat.com>
5349
5350 * parse.y (verify_constructor_super): Compare anonymous class ctor
5351 args with `valid_method_invocation_conversion_p.'
5352 Fixes PR java/3285
5353
5354 2001-07-10 Alexandre Petit-Bianco <apbianco@redhat.com>
5355
5356 * lang-specs.h: Forbit the use if `-femit-class-file{s}' without
5357 `-fsyntax-only.' Fixes PR java/3248
5358
5359 2001-07-10 Alexandre Petit-Bianco <apbianco@redhat.com>
5360
5361 * jcf-io.c (find_class): Clarified error message. Fixes PR java/2603
5362
5363 2001-07-10 Alexandre Petit-Bianco <apbianco@redhat.com>
5364
5365 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): No `this' is fine if the
5366 current function is static. Fixes PR java/1970
5367
5368 2001-07-09 Alexandre Petit-Bianco <apbianco@redhat.com>
5369
5370 * parse.y (patch_method_invocation): Add enclosing context to ctor
5371 calls if necessary. Fixes PR java/2953
5372
5373 2001-07-09 Alexandre Petit-Bianco <apbianco@redhat.com>
5374
5375 * parse.y (resolve_package): Abort if qualified expression member
5376 isn't right.
5377 (qualify_ambiguous_name): Don't qualify as type if `this' in use.
5378 Fixes PR java/1391
5379
5380 2001-07-07 Zack Weinberg <zackw@stanford.edu>
5381
5382 * verify.c: Don't use // comments.
5383
5384 2001-07-05 Tom Tromey <tromey@redhat.com>
5385
5386 * lang.c (flag_assume_compiled): Removed.
5387 * java-tree.h (flag_assume_compiled): Removed.
5388 * lang-options.h: Removed -ffile-list-file, -fuse-boehm-gc,
5389 -fhash-synchronization, -fuse-divide-subroutine,
5390 -fcheck-references, -femit-class-file, -femit-class-files,
5391 -fassume-compiled. Updated --encoding information. Changed
5392 -foutput-class-dir to `-d'.
5393
5394 2001-07-04 Daniel Berlin <dan@cgsoftware.com>
5395
5396 * jcf-parse.c (parse_class_file): Add lineno parameter to
5397 debug_start_source_file call.
5398
5399 2001-07-04 Joseph S. Myers <jsm28@cam.ac.uk>
5400
5401 * gcj.texi: Use gpl.texi.
5402 * Make-lang.in ($(srcdir)/java/gcj.info, java/gcj.dvi): Update
5403 dependencies and use doc/include in search path.
5404
5405 2001-07-03 Jeff Sturm <jsturm@one-point.com>
5406
5407 * parse.y (fix_constructors): Test if a CALL_EXPR invokes
5408 `this'. If so, don't build instance initializers.
5409
5410 2001-07-03 Alexandre Petit-Bianco <apbianco@redhat.com>
5411
5412 * parse.y (resolve_expression_name): Improved error message for
5413 inner class cases. Fixes PR java/1958
5414
5415 2001-06-28 Gabriel Dos Reis <gdr@codesourcery.com>
5416
5417 * lang.c: #include diagnostic.h
5418 (lang_print_error): Add a `diagnostic_context *' parameter.
5419 (java_dummy_print): Likewise.
5420 * Make-lang.in (JAVA_LEX_C): Depend on diagnostic.h
5421
5422 2001-06-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5423
5424 * jcf-parse.c (gcc_mark_jcf): Test for a finished JCF.
5425 * jcf.h (typedef struct JCF): New bitfield `finished.'
5426 (JCF_FINISH): Set `finished.'
5427 (JCF_ZERO): Reset `finished.'
5428 Fixes PR java/2633
5429
5430 2001-06-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5431
5432 * parse.y (class_body_declaration:): Don't install empty instance
5433 initializers.
5434 Fixes PR java/1314
5435
5436 2001-06-27 Alexandre Petit-Bianco <apbianco@redhat.com>
5437
5438 * class.c (set_super_info): Call `set_class_decl_access_flags.'
5439 (set_class_decl_access_flags): New function.
5440 * java-tree.h (set_class_decl_access_flags): New prototype.
5441 * jcf-parse.c (handle_innerclass_attribute): Read and set access flags.
5442 (parse_class_file): New local `decl_max_locals.' Take wide types
5443 into account to compute DECL_MAX_LOCALS.
5444 * parse.y (type_import_on_demand_declaration:): Ignore duplicate
5445 imports on demand.
5446
5447 2001-06-22 Jan van Male <jan.vanmale@fenk.wau.nl>
5448
5449 * zipfile.h: Use GCC_JCF_H instead of JCF_H.
5450
5451 2001-06-20 Alexandre Petit-Bianco <apbianco@redhat.com>
5452
5453 * class.c (java_hash_tree_node): Fixed indentation in leading comment.
5454 * parse.y (do_resolve_class): Moved comments out to leading comment
5455 section. Removed local `start', New local `_ht' and
5456 `circularity_hash.' Record `enclosing' in hash table and search
5457 it to detect circularity. Use `enclosing' as an argument to
5458 `lookup_cl.' Free the hash table when done.
5459
5460 2001-06-19 Tom Tromey <tromey@redhat.com>
5461
5462 * lex.c (java_read_char): Disallow invalid and overlong
5463 sequences. Fixes PR java/2319.
5464
5465 2001-06-05 Jeff Sturm <jsturm@one-point.com>
5466
5467 * decl.c (create_primitive_vtable): Don't call make_decl_rtl.
5468
5469 2001-06-04 Alexandre Petit-Bianco <apbianco@redhat.com>
5470
5471 * expr.c (force_evaluation_order): Match wrapped ctor calls, locate
5472 arguments accordingly.
5473
5474 2001-06-02 Joseph S. Myers <jsm28@cam.ac.uk>
5475
5476 * gcj.texi: Move contents to just after title page.
5477
5478 2001-06-01 Alexandre Petit-Bianco <apbianco@redhat.com>
5479
5480 * parse.y (type_literals:): Use `build_incomplete_class_ref' with
5481 builtin type.
5482 (patch_incomplete_class_ref): Build the class ref, build the class
5483 init if necessary, complete the tree.
5484 Fixes PR java/2605
5485
5486 2001-05-31 Alexandre Petit-Bianco <apbianco@redhat.com>
5487
5488 * parse.y (lookup_field_wrapper): Test `name' code.
5489 (resolve_qualified_expression_name): Test `qual_wfl' code.
5490 (qualify_ambiguous_name): Handle `CONVERT_EXPR', fixe indentation,
5491 handle `qual_wfl' by code.
5492 (maybe_build_primttype_type_ref): Test `wfl' code.
5493
5494 2001-05-23 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
5495
5496 * Make-lang.in ($(srcdir)/java/gcj.info): Added dependencies on
5497 fdl.texi.
5498 (java/gcj.dvi): Use TEXI2DVI instead of custom tex calls. Create
5499 the dvi file in the java directory.
5500
5501 2001-05-25 Sam TH <sam@uchicago.edu>
5502
5503 * gen-table.pl javaop.h jcf.h lex.h,
5504 parse.h: Fix header include guards.
5505
5506 2001-05-23 Joseph S. Myers <jsm28@cam.ac.uk>
5507
5508 * jv-scan.c (version): Update copyright year.
5509
5510 2001-05-21 Per Bothner <per@bothner.com>
5511
5512 * jcf-parse.c (read_class): If class is from .class or .zip file
5513 and it's already been read, don't push/pop parser context.
5514
5515 2001-05-18 Per Bothner <per@bothner.com>
5516
5517 * jvspec.c (lang_specific_pre_link): Re-arrange the linker
5518 command line so the jvgenmain-generated main program comes first.
5519
5520 2001-05-15 Tom Tromey <tromey@redhat.com>
5521
5522 * class.c (build_utf8_ref): Don't generate identifier based on
5523 utf8const contents.
5524
5525 2001-05-12 Richard Henderson <rth@redhat.com>
5526
5527 * java-tree.def (JAVA_EXC_OBJ_EXPR): New.
5528 * expr.c (java_lang_expand_expr): Expand it.
5529 (process_jvm_instruction): Build JAVA_EXC_OBJ_EXPR instead of
5530 calling build_exception_object_ref.
5531 * parse.y (catch_clause_parameter): Likewise.
5532 (build_dot_class_method): Likewise.
5533 (try_reference_assignconv): Likewise.
5534 * check-init.c (check_init): Check JAVA_EXC_OBJ_EXPR not EXC_PTR_EXPR.
5535 * jcf-write.c (generate_bytecode_insns): Likewise.
5536
5537 2001-05-07 Alexandre Petit-Bianco <apbianco@redhat.com>
5538
5539 * parse.y (build_unresolved_array_type): Set
5540 EXPR_WFL_QUALIFICATION on the newly created wfl.
5541 Fixes PR java/2538. Fixes PR java/2535.
5542
5543 2001-05-07 Alexandre Petit-Bianco <apbianco@redhat.com>
5544
5545 * parse.y (fix_constructors): Removed unnecessary assignment to
5546 local. Moved assignment to `this$<n>', fixed comments and
5547 indentation.
5548 (build_wfl_wrap): Fixed indentation.
5549 Fixes PR java/2598, java/2579 and java/2658.
5550
5551 2001-05-03 Mo DeJong <mdejong@redhat.com>
5552
5553 * lex.c (java_new_lexer): Call iconv_close on temp handle used to
5554 check for byte swap.
5555
5556 2000-05-02 Jeff Sturm <jsturm@one-point.com>
5557
5558 * expr.c (build_class_init): Move MODIFY_EXPR
5559 outside of COND_EXPR. Remove variable `call'.
5560
5561 2001-05-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5562
5563 * decl.c: NULL_PTR -> NULL.
5564 * jcf-write.c: Likewise.
5565
5566 2001-05-01 Tom Tromey <tromey@redhat.com>
5567
5568 * Make-lang.in ($(srcdir)/java/gcj.info): Added `-I..'.
5569 (java/gcj.dvi): Added $(srcdir) to TEXINPUTS.
5570 * gcj.texi: Updated copyright text. Include fdl.texi.
5571 (Top): Link to new node.
5572
5573 2001-05-01 Per Bothner <per@bothner.com>
5574
5575 * parse.h (REGISTER_IMPORT): Use tree_cons instead of chainon.
5576
5577 2001-05-01 Per Bothner <per@bothner.com>
5578
5579 * parse.y (java_pop_parser_context): The TREE_VALUE of a link in the
5580 import_list contains the name, not the TREE_PURPOSE.
5581
5582 2001-04-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5583
5584 * jcf-io.c (read_zip_member): Cast to long in comparison with
5585 signed value.
5586
5587 * jvspec.c (lang_specific_driver): Initialize variables.
5588
5589 * mangle.c (find_compression_record_match): Likewise.
5590
5591 * typeck.c (build_null_signature): Provide static prototype. Mark
5592 parameter with ATTRIBUTE_UNUSED.
5593
5594 * verify.c (verify_jvm_instructions): Initialize variable.
5595
5596 2001-04-27 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
5597
5598 * parse.y (do_resolve_class): Check for cyclic inheritance during
5599 inner class resolution.
5600
5601 2001-04-27 Per Bothner <per@bothner.com>
5602
5603 * parse.y (java_expand_classes): Don't change ctxp_for_generation
5604 while iterating, since that could cause gc to lose stuff.
5605
5606 2001-04-26 Per Bothner <per@bothner.com>
5607
5608 Fix method search wrt scope of inner classes to match JLS2.
5609 * typeck.c (build_null_signature): New static function.
5610 (has_method): New function. Uses build_null_signature and lookup_do.
5611 * java-tree.h (has_method): New declaration.
5612 * parse.y (find_applicable_accessible_methods_list): Do not search
5613 context of inner classes here.
5614 (patch_method_invocation): Search scope, ie. current and outer clases,
5615 for method matching simple name, to find class.
5616
5617 2001-04-26 Per Bothner <per@bothner.com>
5618
5619 * jcf-write.c (generate_bytecode_insns case SWITCH_EXPR):
5620 Fix thinko: If a single case, use if_icmpeq, not ifeq.
5621
5622 * constants.c (find_methodref_with_class_index): New function.
5623 (find_methodref_index): Use find_methodref_with_class_index.
5624 * java-tree.h (find_methodref_with_class_index): New declaration.
5625 * jcf-write.c (generate_bytecode_insns case CALL_EXPR): Don't change
5626 DECL_CONTEXT, instead use new find_methodref_with_class_index function.
5627 If context changed from interface to class, don't use invokeinterface.
5628
5629 2001-04-25 Per Bothner <per@bothner.com>
5630
5631 * verify.c (verify_jvm_instructions): For field instructions,
5632 check that field index is valid. For invoke instructions, check that
5633 method index is valid.
5634
5635 2001-04-25 Alexandre Oliva <aoliva@redhat.com>
5636
5637 * config-lang.in (target_libs): Copy from $libgcj_saved.
5638
5639 2001-04-25 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
5640
5641 * decl.c (init_decl_processing): Add new class "protectionDomain"
5642 field.
5643 * class.c (make_class_data): Set initial value for "protectionDomain".
5644
5645 2001-04-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5646
5647 * jvspec.c (lang_specific_driver): Fix memory allocation
5648 deficit, by using concat in lieu of xmalloc/sprintf.
5649
5650 2001-04-20 Per Bothner <per@bothner.com>
5651
5652 Fixes to compile multiple .class files at once.
5653 * decl.c (init_decl_processing): Don't set CLASS_LOADED_P.
5654 * java-tree.h (CLASS_PARSED_P): New macro.
5655 (CLASS_LOADED_P): Re-define to use TYPE_SIZE and CLASS_PARSED_P.
5656 * jcf-parse.c (jcf_parse_source): Inline into read_class.
5657 (read_class): Avoid some code duplication.
5658 Don't call JCF_FINISH for a .class file - might be needed later.
5659 (jcf_parse): Don't call layout_class here. Check/set CLASS_PARSED_P
5660 rather than CLASS_LOADED_P, since latter implies class laid out.
5661 (yyparse): Do layout_class and JCF_FINISh here instead, in pass 2.
5662 * parse.y: Don't need to set CLASS_LOADED_P for array types.
5663
5664 2001-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5665
5666 * Make-lang.in (java/boehm.o): Depend on toplev.h.
5667
5668 * boehm.c: Include toplev.h.
5669
5670 2001-04-06 Tom Tromey <tromey@redhat.com>
5671 Alexandre Petit-Bianco <apbianco@redhat.com>
5672
5673 Fix for PR gcj/1404 and PR gcj/2332:
5674 * parse.y (build_array_from_name): If we use the type_wfl then
5675 accumulate dimensions from the original type as well.
5676 (build_unresolved_array_type): Don't modify TYPE_OR_WFL in place.
5677
5678 2001-04-06 Tom Tromey <tromey@redhat.com>
5679
5680 * parse.y (analyze_clinit_body): Return true if the second operand
5681 of a METHOD_EXPR is nonzero.
5682
5683 2001-04-06 Tom Tromey <tromey@redhat.com>
5684
5685 * Make-lang.in ($(srcdir)/java/parse-scan.c): Run bison from build
5686 directory.
5687 ($(srcdir)/java/parse.c): Likewise.
5688
5689 2001-04-05 Alexandre Petit-Bianco <apbianco@redhat.com>
5690
5691 * gcj.texi: Use `which-gcj' instead of `which-g77.'
5692 (version-gcc): Initialized.
5693 (which-gcj): Likewise.
5694
5695 2001-04-04 Alexandre Petit-Bianco <apbianco@redhat.com>
5696
5697 * java-tree.h (struct lang_decl): New macro
5698 `DECL_FIXED_CONSTRUCTOR_P.' New field `fixed_ctor.'
5699 * parse.y (build_instance_initializer): New function.
5700 (add_instance_initializer): Use it.
5701 (java_fix_constructors): Set `current_class' before fix pass.
5702 (fix_constructors): Just return if already fixed. Move `super()'
5703 invocation ahead. Use `build_instance_initializer.'
5704 Fixes PR java/1315.
5705
5706 2001-04-04 Alexandre Petit-Bianco <apbianco@redhat.com>
5707
5708 * parse.y (resolve_qualified_expression_name): Pass field's
5709 DECL_CONTEXT to `not_accessible_p.'
5710 (not_accessible_p): Changed parameters order in `inherits_from_p'
5711 invocation.
5712
5713 2001-03-27 Andrew Haley <aph@cambridge.redhat.com>
5714
5715 * lang-options.h: Add flag_check_references.
5716
5717 2001-04-04 Per Bothner <per@bothner.com>
5718
5719 * java-tree.h (CONSTANT_VALUE_P): New macro.
5720 * jcf-write.c (generate_classfile): Use CONSTANT_VALUE_P.
5721 * parse.y (maybe_build_class_init_for_field): New static function.
5722 (resolve_expression_name, resolve_field_access): Use
5723 maybe_build_class_init_for_field instead of build_class_init
5724 This does not do the init if the field is compile-time-constant.
5725 (resolve_field_access): Simplify.
5726
5727 * parse.y (fold_constant_for_init): Merge test into switch.
5728
5729 2001-04-03 Zack Weinberg <zackw@stanford.edu>
5730
5731 * Make-lang.in (buffer.o, check-init.o, class.o): Don't depend
5732 on gansidecl.h.
5733 * buffer.c, jvgenmain.c: Don't include gansidecl.h.
5734
5735 2001-04-02 Zack Weinberg <zackw@stanford.edu>
5736
5737 * expr.c (pop_type_0): Save the result of the first
5738 lang_printable_name call in a scratch buffer, so it
5739 won't be clobbered by the second call.
5740
5741 2001-03-30 Alexandre Petit-Bianco <apbianco@redhat.com>
5742
5743 * parse-scan.y (array_type:): Rewritten.
5744 (type_declaration:): `empty_statement' replaces `SC_TK.'
5745 (class_member_declaration:): `empty statement' added.
5746 (method_body:): Simplified.
5747 (static_initializer:): Likewise.
5748 (primary_no_new_array:): Use `type_literals.'
5749 (type_literals:): New rule.
5750 (dims:): Set and update `bracket_count.'
5751 Fixes PR java/1074. Fixes PR java/2412.
5752
5753 2001-03-28 Hans Boehm <boehm@acm.org>
5754
5755 * boehm.c (PROCEDURE_OBJECT_DESCRIPTOR): Set to use `build_int_2.'
5756 (get_boehm_type_descriptor): Set type on returned value to be a
5757 pointer length integer.
5758
5759 2001-03-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5760
5761 * expr.c (pop_type_0): Call `concat' rather than building the
5762 string manually.
5763 (pop_type): Add format specifier in call to `error'.
5764
5765 * parse.y (patch_method_invocation): Avoid casting away
5766 const-ness.
5767
5768 2001-03-28 Jeffrey Oldham <oldham@codesourcery.com>
5769
5770 * jvgenmain.c (do_mangle_classname): End string constant with '\0'.
5771
5772 2001-03-28 Richard Henderson <rth@redhat.com>
5773
5774 IA-64 ABI Exception Handling:
5775 * Make-lang.in (except.o): Don't depend on eh-common.h.
5776 * check-init.c (check_init): Handle EXC_PTR_EXPR.
5777 * decl.c (init_decl_processing) [throw_node]: No _Jv_Sjlj_Throw.
5778 [soft_exceptioninfo_call_node]: Remove.
5779 [eh_personality_libfunc, lang_eh_runtime_type]: New.
5780 (end_java_method): No emit_handlers.
5781 * except.c (java_set_exception_lang_code): Remove.
5782 (method_init_exceptions): Don't call it.
5783 (prepare_eh_table_type): No CATCH_ALL_TYPE.
5784 (build_exception_object_ref): New.
5785 (expand_end_java_handler): Update for except.h name changes.
5786 (emit_handlers, expand_resume_after_catch): Remove.
5787 * expr.c (java_lang_expand_expr): Update for except.h name changes.
5788 (process_jvm_instruction): Use build_exception_object_ref.
5789 * java-tree.h (JTI_SOFT_EXCEPTIONINFO_CALL_NODE): Remove.
5790 (soft_exceptioninfo_call_node): Remove.
5791 (build_exception_object_ref): Declare.
5792 * jcf-write.c (generate_bytecode_insns) [CALL_EXPR]: No
5793 soft_exceptioninfo_call_node. Move processing ...
5794 [EXC_PTR_EXPR]: ... here.
5795 * parse.h (BUILD_ASSIGN_EXCEPTION_INFO): Remove dead code.
5796 * parse.y (catch_clause_parameter): Use build_exception_object_ref.
5797 (source_end_java_method): No java_set_exception_lang_code or
5798 emit_handlers.
5799 (build_dot_class_method): Use build_exception_object_ref.
5800 (try_reference_assignconv): Check EXC_PTR_EXPR not
5801 soft_exceptioninfo_call_node.
5802
5803 2001-03-28 Richard Henderson <rth@redhat.com>
5804
5805 * java-tree.h (throw_node): Define as a single member of
5806 java_global_trees instead of a separate array.
5807 (JTI_THROW_NODE): New.
5808 * decl.c (throw_node): Don't declare.
5809 (init_decl_processing): Init a scalar throw_node.
5810 Don't register it for gc.
5811 * check-init.c (check_init): Reference scalar throw_node.
5812 * expr.c (build_java_athrow): Likewise.
5813 * jcf-write.c (generate_bytecode_insns): Likewise.
5814 * parse.h (BUILD_THROW): Likewise.
5815
5816 2001-03-28 Richard Henderson <rth@redhat.com>
5817
5818 * decl.c (end_java_method): Do not save and restore
5819 flag_non_call_exceptions.
5820 * parse.y (source_end_java_method): Likewise.
5821 * lang.c (flag_exceptions): Don't declare.
5822 (java_init_options): Set flag_non_call_exceptions. Set
5823 flag_exceptions here ...
5824 (java_init): ... not here.
5825
5826 2001-03-27 Richard Henderson <rth@redhat.com>
5827
5828 * expr.c, parse.h: Use USING_SJLJ_EXCEPTIONS instead of
5829 exceptions_via_longjmp.
5830
5831 * lang.c (flag_new_exceptions): Don't declare it.
5832 (java_init_options): Or set it.
5833
5834 2001-03-27 Richard Henderson <rth@redhat.com>
5835
5836 * decl.c (end_java_method): Rename asynchronous_exceptions to
5837 flag_non_call_exceptions.
5838 * parse.y (source_end_java_method): Likewise.
5839
5840 2001-03-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5841
5842 * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
5843
5844 2001-03-26 Mark Mitchell <mark@codesourcery.com>
5845
5846 * parse.h (DECL_END_SOURCE_LINE): Don't rely on DECL_FRAME_SIZE.
5847
5848 2001-03-26 Alexandre Petit-Bianco <apbianco@redhat.com>
5849
5850 * parse.y (find_as_inner_class): Follow current package
5851 indications not to mistakingly load an unrelated class.
5852
5853 2001-03-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5854
5855 * constants.c (PUTN): Use memcpy, not bcopy.
5856
5857 * lex.c (java_read_char): Use memmove, not bcopy.
5858
5859 * parse.y (java_parser_context_resume): Use memcpy, not bcopy.
5860
5861 2001-03-23 Per Bothner <per@bothner.com>
5862
5863 * verify.c (verify_jvm_instructions): Replace 3 pop_type by POP_TYPE
5864 macro for better error pin-pointing.
5865 * java-tree.h: Fix typo in comment.
5866
5867 * jcf-write.c (generate_bytecode_insns): Changes to TRY_FINALLY_EXPR.
5868 Don't include jsr/goto in exception range.
5869 Check if start and end of exception range are the same (also TRY_EXPR).
5870 Don't emit jsr after try_block if CAN_COMPLETE_NORMALLY is false.
5871 However, do emit the following goto even if try_block is empty.
5872 Defer freeing exception_decl until after the finalizer, to make
5873 sure the local isn't reused in the finalizer. Fixes PR java/1208.
5874
5875 * parse.y (java_complete_lhs): If the try-clause is empty, just
5876 return the finally-clause and vice versa.
5877
5878 2001-03-23 Alexandre Petit-Bianco <apbianco@redhat.com>
5879
5880 * gcj.texi (Input Options): documented the check for attribute
5881 `gnu.gcc.gccj-compiled' and the `-fforce-classes-archive-check' flag.
5882 * java-tree.h (flag_force_classes_archive_check): Declared extern.
5883 * jcf-parse.c (HANDLE_GCJCOMPILED_ATTRIBUTE): New macro.
5884 (jcf_parse): Check for the right classes archive if necessary.
5885 * jcf-reader.c (get_attribute): Define `MATCH_ATTRIBUTE' and use it.
5886 (jcf_parse_fields): Fixed indentation.
5887 * jcf-write.c (append_gcj_attribute): New function.
5888 (generate_classfile): Compute the attribute count, invoke
5889 `append_gcj_attribute'.
5890 * jcf.h (typedef struct JCF): `seen_in_zip' and `java_source'
5891 turned into bit-fields. New bit-field `right_zip.'
5892 (JCF_ZERO): Set `right_zip' to zero.
5893 * lang-options.h (-fforce-classes-archive-check): Added flag.
5894 * lang.c (flag_force_classes_archive_check): New flag.
5895 (lang_f_options): New entry `force-classes-archive-check.'
5896 Fixes PR java/1213.
5897
5898 2001-02-07 Andrew Haley <aph@redhat.com>
5899
5900 * gcj.texi (Configure-time Options): Add -fcheck-references.
5901 * expr.c (build_java_indirect_ref): New function.
5902 (java_check_reference): New function.
5903 (build_java_array_length_access): Use build_java_indirect_ref to
5904 check for null references.
5905 (build_java_arrayaccess): Likewise.
5906 (build_get_class): Likewise.
5907 (build_field_ref): Likewise.
5908 (invoke_build_dtable): Likewise.
5909 (build_invokeinterface): Likewise.
5910 * lang.c (lang_f_options): Add flag_check_references.
5911 * jvspec.c (jvgenmain_spec): Add flag_check_references.
5912 * java-tree.h (flag_check_references): New variable.
5913 * lang.c (flag_check_references): Likewise.
5914 * parse.y (patch_invoke): Use java_check_reference.
5915 (patch_assignment): Allow for extra nesting in
5916 _Jv_CheckArrayStore.
5917
5918 2001-03-23 Bryce McKinlay <bryce@albatross.co.nz>
5919
5920 * gjavah.c (cxx_keywords): Update from the definitive list in cp/lex.c.
5921 * lex.c (cxx_keywords): Likewise.
5922
5923 2001-03-21 Alexandre Petit-Bianco <apbianco@redhat.com>
5924
5925 * parse.y (qualify_ambiguous_name): Broaden `length'
5926 recognition. Help MODIFY_EXPR be resolved as expression names.
5927 Fixes PR java/2066. Fixes PR java/2400.
5928
5929 2001-03-21 Bryce McKinlay <bryce@albatross.co.nz>
5930
5931 * gjavah.c (process_file): Mark interface definitions with
5932 "__attribute__ ((java_interface))".
5933
5934 2001-03-21 Alexandre Petit-Bianco <apbianco@redhat.com>
5935
5936 * class.c (layout_class): Fixed push_super_field's second
5937 argument. Fixes PR java/2333.
5938 (jdep_resolve_class): Reset TYPE_SIZE if `error_mark_node', it's
5939 too early to lay innerclasses out.
5940
5941 2001-03-20 Tom Tromey <tromey@redhat.com>
5942 Alexandre Petit-Bianco <apbianco@redhat.com>
5943
5944 * parse.y (patch_assignment): Handle the case of a SAVE_EXPR
5945 inside an array reference. Insertion of the array store check
5946 rewritten. Fixes PR java/2299.
5947
5948 2001-03-20 Tom Tromey <tromey@redhat.com>
5949
5950 * lex.c (java_read_unicode): Only accept leading `u's.
5951
5952 2001-03-20 Tom Tromey <tromey@redhat.com>
5953
5954 * jcf-parse.c (read_class): Initialize `class'.
5955
5956 2001-03-20 Matt Kraai <kraai@alumni.carnegiemellon.edu>
5957
5958 * jcf_parse.c (jcf_parse): Eliminate unused variable.
5959
5960 2001-03-19 Mark Mitchell <mark@codesourcery.com>
5961
5962 * class.c (build_class_ref): Use SET_DECL_ASSEMBLER_NAME.
5963 (layout_class): Likewise.
5964 (layout_class_method): Likewise.
5965 (emit_register_classes): Likewise.
5966 * decl.c (builtin_function): Likewise.
5967 (give_name_to_locals): Likewise.
5968
5969 2001-03-19 Per Bothner <per@bothner.com>
5970
5971 * jcf-parse.c (load_inner_classes): Check CLASS_LOADED_P
5972 before trying to load an inner class.
5973
5974 Fixes to process to command-line .class files in two passes.
5975 * java-tree.h (JAVA_FILE_P, CLASS_FILE_P, ZIP_FILE_P): New flags.
5976 (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P): Rename to ..
5977 (CLASS_FROM_CURRENTLY_COMPILED_P): ... because it is more general now.
5978 * class.c (is_compiled_class): Fix for renamed flag.
5979 * parse.y (maybe_create_class_interface_decl): Likewise.
5980 * jcf-parse.c (yyparse): Also set if compiling .class files.
5981 * jcf-parse.c (read_class); Read current_class.
5982 (jcf_parse): Make static.
5983 (load_inner_classes): New function, with code moved from jcf_parse,
5984 because we need to inner classes after the command-line files are read.
5985 (yyparse): Set finput to NULL when it doesn't need to be closed.
5986 Reduce use of main_jcf (basically only for archive) and
5987 use finput instead of main_jcf->read_state.
5988 Inline jcf_figure_file_type into yyparse.
5989 Set JAVA_FILE_P, CLASS_FILE_P, or ZIP_FILE_P on filename list name.
5990 Defer load_inner_classes and parse_class_file to a second pass,
5991 after we've correctly mapped command-line .clas fiels to classes.
5992 (jcf_figure_file_type): Removed.
5993 * jcf.h (JCF_ZIP, JCF_CLASS, JCF_SOURCE): Removed flags.
5994 (JCF_ZERO): Also clear zipd field.
5995 * zipfile.h: Conditionalize on JCF_H insread of JCF_ZIP.
5996
5997 2001-03-18 Matt Kraai <kraai@alumni.carnegiemellon.edu>
5998
5999 * jcf-parse.c (yyparse): Change ch from char * to char.
6000
6001 2001-03-19 Per Bothner <per@bothner.com>
6002
6003 * jvspec.c (lang_specific_driver): Check for .zip and .jar files.
6004 Add constructed filelist-file at end, following -xjava. Thus any .o
6005 and library files are not affected by the -xjava. Also wrap
6006 explicit @FILE with -xjava and -xnone.
6007
6008 2001-03-19 Andrew Haley <aph@cambridge.redhat.com>
6009
6010 * class.c (build_static_field_ref): Call make_decl_rtl() after
6011 setting the DECL_EXTERNAL flag.
6012
6013 2001-03-17 Per Bothner <per@bothner.com>
6014
6015 * decl.c (clear_binding_level): Fix initializer (broke 03-15).
6016
6017 * jcf-write.c (generate_bytecode_insns): Handle emitting iinc
6018 when result is is needed (target is STACK_TARGET).
6019
6020 * parse.h (JDEP_SOLV): Removed.
6021 * parse.y (register_incomplete_type): Use JDEP_TO_RESOLVE instead.
6022
6023 * parse.y (incomplete_class_list): Removed.
6024 (obtain_incomplete_type): Don't use or set incomplete_class_list.
6025 It doesn't work if resolve_class changes the name of an array type
6026 that is on the list and then someone else looks for the modified name.
6027 Also, seems liable to break when compiling multiple source files at
6028 once. So the simplest is to just remove incomplete_class_list -
6029 it is only a minor space win and it is not even clear it saves time.
6030
6031 * parse.y (resolve_class): Remove unneeded promote_type.
6032
6033 2001-03-15 Per Bothner <per@bothner.com>
6034
6035 * java-tree.h (BLOCK_IS_IMPLICIT): New flag.
6036 * parse.h (BLOCK_EXPR_ORIGIN): Removed macro.
6037 * parse.y (declare_local_variables, maybe_absorb_scoping_blocks):
6038 Use BLOCK_IS_IMPLICIT rather than BLOCK_EXPR_ORIGIN.
6039
6040 * jcf-parse.c (yyparse): Set/reset input_filename for source file.
6041 * parse.y (java_expand_classes): Likewise.
6042
6043 * parse.y (expand_start_java_method): Was only called once and had a
6044 misleading name, so inline in caller java_complete_expand_method.
6045 (enter_a_block): Likewise inline in enter_block and remove.
6046
6047 Remove junk from when gcc/java was created (by copying from C/C++).
6048 * decl.c (keep_next_level_flag, keep_next_if_subblocks): Remove.
6049 (struct binding_level): Remove fields keep, keep_if_subblocks,
6050 more_cleanups_ok, have_cleanups (which have never been used).
6051 (pushlevel, poplevel): Remove related useless code.
6052
6053 * class.c (make_class_data): The class_dtable_decl (i.e. the
6054 vtable for Class) should be external, except when compiling Class.
6055
6056 * jvspec.c (lang_specific_driver): Fix -C handling.
6057 Check -save-temps to see if temp @FILE should be deleted.
6058 Follow-up to/fix for February 16 patch.
6059
6060 * verify.c (verify_jvm_instructions): Better error msgs for dup.
6061 (type_stack_dup): Remove no-longer neded error check.
6062
6063 2001-03-15 Bryce McKinlay <bryce@albatross.co.nz>
6064
6065 * mangle.c (mangle_record_type): Rename 'from_pointer' argument
6066 to 'for_pointer'. If this type is for a pointer (argument) mangling,
6067 don't surround the element with 'N..E' if the type name is
6068 unqualified.
6069
6070 2001-03-14 Mark Mitchell <mark@codesourcery.com>
6071
6072 * class.c (build_static_field_ref): Use COPY_DECL_RTL,
6073 DECL_RTL_SET_P, etc.
6074 (make_method_value): Likewise.
6075 (get_dispatch_table): Likewise.
6076
6077 * decl.c (push_jvm_slot): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
6078
6079 2001-03-07 Tom Tromey <tromey@redhat.com>
6080
6081 * config-lang.in (lang_requires): Define.
6082
6083 2001-03-07 Brad Lucier <lucier@math.purdue.edu>
6084
6085 * typeck.c (convert): Check flag_unsafe_math_optimizations,
6086 not flag_fast_math.
6087
6088 2001-03-05 Per Bothner <per@bothner.com>
6089
6090 Fix a problem where rest_of_decl_compilation applied to
6091 class_dtable_decl causes problems because it was done too early,
6092 before output file was opened.
6093 * decl.c (init_decl_processing): Remove init of class_dtable_decl.
6094 * class.c (class_dtable_decl): Add macro - element of class_roots.
6095 (make_class_data): Define class_dtable_decl.
6096 * java-tree.h (JTI_CLASS_DTABLE_DECL, class_dtable_decl): Removed.
6097
6098 2001-03-01 Zack Weinberg <zackw@stanford.edu>
6099
6100 * java/class.c, java/decl.c, java/java-tree.h: Replace all
6101 uses of 'boolean' with 'bool'.
6102
6103 2001-03-01 Zack Weinberg <zackw@stanford.edu>
6104
6105 * lang-specs.h: Add zero initializer for cpp_spec field to all
6106 array elements.
6107
6108 2001-02-16 Per Bothner <per@bothner.com>
6109
6110 Handle compiling multiple input files at once, and @FILE syntax.
6111 * gcj.texi: Updated documentation to match.
6112 * java-tree.h (flag_filelist_file, init_src_parse): New declarations.
6113 * jcf-parse.c (parse_source_file): Split into ...
6114 (parse_source_file_1): New function - and:
6115 (parse_source_file_2): New function.
6116 (yyparse): On -ffilelist-file, open and scan named file.
6117 On first pass over files, only do parse_source_file_1.
6118 A new second pass calls parse_source_file_2 for each file to compile.
6119 (init_jcf_parse): Call init_src_parse.
6120 * jvspec.c (INDIRECT_FILE_ARG): New flag.
6121 (lang_specific_driver): Support @FILELIST-FILE syntax, as well
6122 as multiple input file combined in one compilation.
6123 * lang-options.h: Add -ffilelist-file
6124 * lang.c (flag_filelist_file): New flag variable.
6125 (lang_f_options): Handle -ffilelist-file.
6126 * lex.c (java_init_lex): Don't clear ctxp->incomplete_class.
6127 * parse.h (struct parse_ctxt): Remove fields incomplete_class and
6128 gclass_list - use global fields of src_parse_roots instead.
6129 * parse.y (src_parse_roots): New array.
6130 (incomplete_class_list, gclass_list): New macros.
6131 (push_parser_context, java_pop_parser_context,
6132 java_parser_context_resume): Don't fiddle with deleted fields.
6133 (various): Use incomplete_class gclass_list and global macros
6134 instead of parse_ctxt fields - the lists are global.
6135 (init_src_parse): New function.
6136
6137 2001-02-23 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6138
6139 * decl.c (set_block): Set NAMES and BLOCKS from BLOCK.
6140
6141 2001-02-20 Alexandre Petit-Bianco <apbianco@redhat.com>
6142
6143 * parse.y (check_inner_class_access): Moved declaration of local
6144 `enclosing_decl_type' to the right location.
6145
6146 2001-02-19 Bryce McKinlay <bryce@albatross.co.nz>
6147
6148 * parse.y (parser_check_super_interface): Don't call
6149 check_pkg_class_access for an inner interface.
6150 (parser_check_super): Don't call check_pkg_class_access for inner
6151 class.
6152 (do_resolve_class): Simplify enclosing type loop. Don't call
6153 check_pkg_class_access if CL and DECL are not set.
6154 (find_in_imports_on_demand): Set DECL if class_type needed to be
6155 loaded. Don't call check_pkg_class_access for an inner class.
6156 (check_inner_class_access): Rewritten to implement member access
6157 rules as per spec 6.6.1.
6158 (check_pkg_class_access): Handle the empty package correctly.
6159 (in_same_package): New function. Determine if two classes are in the
6160 same package.
6161
6162 2001-02-18 Bryce McKinlay <bryce@albatross.co.nz>
6163
6164 * typeck.c (build_java_array_type): Don't try to poke a public `clone'
6165 method into array types.
6166 * parse.y (patch_method_invocation): Bypass access check on clone call
6167 to array instance.
6168
6169 2001-02-15 Alexandre Petit-Bianco <apbianco@redhat.com>
6170
6171 * expr.c (build_instanceof): Check for arrays when trying fold to
6172 false.
6173
6174 2001-02-15 Jim Meyering <meyering@lucent.com>
6175
6176 * Make-lang.in (java.install-common): Depend on `installdirs'.
6177 (java.install-info): Likewise.
6178
6179 2001-02-15 Bryce McKinlay <bryce@albatross.co.nz>
6180
6181 * Make-lang.in (jvspec.o): Modify rule to match that of cp/g++spec.o.
6182
6183 2001-02-14 Tom Tromey <tromey@redhat.com>
6184 Alexandre Petit-Bianco <apbianco@cygnus.com>
6185
6186 Fix for PR java/1261.
6187 * typeck.c (build_java_array_type): Add public `clone' method to
6188 arrays.
6189 * parse.y (resolve_qualified_expression_name): Use current_class
6190 when checking for inaccessibility.
6191 (patch_method_invocation): Fixed error message when accessibility
6192 denied. Added `from_super' argument.
6193
6194 2001-02-14 Alexandre Petit-Bianco <apbianco@redhat.com>
6195
6196 * parse.y (resolve_class): Don't build a fake decl. Use the one
6197 already built.
6198 * typeck.c (build_java_array_type): Build and assign decl to array
6199 type.
6200
6201 2001-02-14 Alexandre Petit-Bianco <apbianco@redhat.com>
6202
6203 * parse.y (not_accessible_p): Changed leading comment. Added extra
6204 `where' argument. Use it to enforce protected access rules.
6205 (resolve_qualified_expression_name): Added extra argument to
6206 not_accessible_p.
6207 (patch_method_invocation): Use argument `primary' to provide
6208 not_accessible_p with an extra argument.
6209 (lookup_method_invoke): Added extra argument to not_accessible_p.
6210 (search_applicable_method_list): Likewise.
6211
6212 2001-02-13 Alexandre Petit-Bianco <apbianco@redhat.com>
6213
6214 * parse.y (resolve_qualified_expression_name): Try to resolve as
6215 an inner class access only if `decl' is a TYPE_DECL.
6216
6217 2001-02-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
6218
6219 * decl.c (classdollar_identifier_node): Initialize.
6220 * java-tree.h (enum java_tree_index): New entry
6221 `JTI_CLASSDOLLAR_IDENTIFIER_NODE.'
6222 (classdollar_identifier_node): New macro.
6223 (ID_CLASSDOLLAR_P): Likewise.
6224 * parse.y (build_dot_class_method): Use `classdollar_identifier_node.'
6225 (build_dot_class_method_invocation): Likewise.
6226 (find_applicable_accessible_methods_list): `class$' can't be
6227 inherited.
6228
6229 2001-02-09 Raja R Harinath <harinath@cs.umn.edu>
6230
6231 * Make-lang.in (java/mangle_name.o): Add 'make' prereqs.
6232
6233 2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
6234
6235 * Manke-lang.in (JVGENMAIN_OBJS): Added `errors.o'
6236 * jvgenmain.c (error): Reversed 2001-02-09 patch. `error' is now
6237 gone.
6238
6239 2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
6240
6241 * mangle_name (append_unicode_mangled_name): Emit `_' or `U'
6242 outside of the `__U' sequence too.
6243 (unicode_mangling_length): Count `_' or `U' outside of the `__U'
6244 sequence too.
6245
6246 2001-02-09 Alexandre Petit-Bianco <apbianco@redhat.com>
6247
6248 * jvgenmain.c (error): Reversed 2001-02-01 deletion.
6249
6250 2001-02-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
6251
6252 * Make-lang.in (JAVA_OBJS): Added java/mangle_name.o
6253 (JVGENMAIN_OBJS): Likewise.
6254 * java-tree.h (append_gpp_mangled_name): New prototype.
6255 * jcf-parse.c (ggc_mark_jcf): Argument now `void *.'
6256 Removed cast calling `gcc_add_root.'
6257 * jvgenmain.c (mangle_obstack): New global, initialized.
6258 (main): Use it.
6259 (do_mangle_class): Constify local `ptr.'
6260 Removed macro `MANGLE_NAME.' Removed cast in `for.' Call
6261 append_gpp_mangle_name and update `count' if necessary.
6262 Use `mangle_obstack.'
6263 * mangle.c (append_unicode_mangled_name): Removed.
6264 (append_gpp_mangled_name): Likewise.
6265 (unicode_mangling_length): Likewise.
6266 (mangle_member_name): Return type set to `void.'
6267 (mangle_field_decl): Don't append `U' in escaped names.
6268 (mangle_method_decl): Likewise.
6269 (mangle_member_name): Just use `append_gpp_mangled_name.'
6270 * mangle_name.c: New file.
6271
6272 2001-02-07 Per Bothner <per@bothner.com>
6273
6274 * check-init.c (check_init): Fix TRY_FINALLY_EXPR logic.
6275
6276 * check-init.c (check_init): Don't call done_alternative after
6277 processing loop code, as a LOOP_EXPR never terminates normally.
6278
6279 2001-02-08 Joseph S. Myers <jsm28@cam.ac.uk>
6280
6281 * gcj.texi: Change sources.redhat.com reference to gcc.gnu.org.
6282
6283 2001-02-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
6284
6285 * jcf-parse.c (HANDLE_SYNTHETIC_ATTRIBUTE): Don't handle field
6286 DECLs.
6287
6288 2001-02-06 Tom Tromey <tromey@redhat.com>
6289
6290 * lex.c (java_new_lexer): Longer error message.
6291
6292 2001-02-05 Jeff Sturm <jeff.sturm@commerceone.com>
6293 Alexandre Petit-Bianco <apbianco@cygnus.com>
6294
6295 * typeck.c (build_prim_array_type): Added leading comment.
6296 (build_java_array_type): Moved locals out of
6297 block. Always create the `data' field, fixed alignment to match
6298 C++.
6299
6300 2001-02-04 Tom Tromey <tromey@redhat.com>
6301
6302 * expr.c (java_lang_expand_expr): Don't bother recomputing
6303 `length'. Use rest_of_decl_compilation, not make_decl_rtl.
6304 Fixes PR java/1866.
6305
6306 2001-02-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
6307
6308 * parse.y (process_imports): Save the original name of the import
6309 for better error report.
6310
6311 2001-02-04 Bryce McKinlay <bryce@albatross.co.nz>
6312
6313 * Make-lang.in (jvspec.o): Add DRIVER_DEFINES to the list
6314 of macros used when compiling jvspec.c.
6315 * jvspec.c (lang_specific_driver): Link with the shared
6316 libgcc by default.
6317
6318 2001-02-04 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6319
6320 * check-init.c (check_init): Call internal_error instead of fatal.
6321 * expr.c (java_lang_expand_expr): Likewise.
6322 * jcf-parse.c (get_constant): Likewise.
6323 * mangle.c (java_mangle_decl): Likewise.
6324 * parse.y (make_nested_class_name, java_complete_lhs): Likewise.
6325 (operator_string): Likewise.
6326 * check-init.c (check_init): Call abort instead of fatal.
6327 * class.c (build_class_ref): Likewise.
6328 * constants.c (write_constant_pool): Likewise.
6329 * decl.c (start_java_method): Likewise.
6330 * expr.c (push_type, java_stack_pop, java_stack_swap): Likewise.
6331 (java_stack_dup, encode_newarray_type): Likewise.
6332 (build_java_array_length_access): Likewise.
6333 (build_java_check_indexed_type, expand_java_pushc): Likewise.
6334 (build_java_soft_divmod, build_invokeinterface): Likewise.
6335 * java-tree.h (INNER_CLASS_P): Likewise.
6336 * jcf-parse.c (parse_signature, get_name_constant): Likewise.
6337 (give_name_to_class, get_class_constant): Likewise.
6338 * jcf-write.c (CHECK_PUT, CHECK_OP, get_access_flags): Likewise.
6339 (find_constant_index, generate_bytecode_conditional): Likewise.
6340 (generate_bytecode_insns, perform_relocations): Likewise.
6341 * lex.c (java_unget_unicode, java_lex): Likewise.
6342 * mangle.c (mangle_type, mangle_record_type): Likewise.
6343 (mangle_pointer_type, mangle_array_type, init_mangling): Likewise.
6344 (finish_mangling): Likewise.
6345 * parse.h (MARK_FINAL_PARMS): Likewise.
6346 * parse.y (pop_current_osb, unreachable_stmt_error): Likewise.
6347 (obtain_incomplete_type, java_complete_class): Likewise.
6348 (java_check_regular_methods, java_complete_expand_method): Likewise.
6349 (cut_identifier_in_qualified, check_deprecation): Likewise.
6350 (patch_invoke, find_applicable_accessible_methods_list): Likewise.
6351 (java_complete_lhs, lookup_name_in_blocks): Likewise.
6352 (check_final_variable_indirect_assignment, build_unaryop): Likewise.
6353 * typeck.c (set_local_type, parse_signature_type): Likewise.
6354 (parse_signature_string, build_java_signature): Likewise;
6355 (set_java_signature): Likewise.
6356 * verify.c (type_stack_dup, CHECK_PC_IN_RANGE): Likewise.
6357 * class.c (add_method): Call fatal_error instead of fatal.
6358 (build_static_field_ref): Likewise.
6359 * expr.c (build_known_method_ref, expand_invoke): Likewise.
6360 * jcf-parse.c (get_constant, jcf_parse): Likewise.
6361 * lex.c (java_new_new_lexer): Likewise.
6362 * jv-scan.c (main): Likewise.
6363 (fatal_error): Renamed from fatal.
6364 * jcf-parse.c (yyparse): Call fatal_io_error instead of
6365 pfatal_with_name.
6366 * jcf-parse.c (jcf_parse_source): Call fatal_io_error, not fatal.
6367 (yyparse): Likewise.
6368 * jcf-write.c (make_class_file_name, write_classfile): Likewise.
6369 * lex.c (java_get_line_col): Likewise.
6370 * jcf-parse.c (load_class): Make errors non-fatal.
6371 * lex.c (byteswap_init, need_byteswap): Only #ifdef HAVE_ICONV.
6372
6373 2001-02-01 Bryce McKinlay <bryce@albatross.co.nz>
6374
6375 * jvgenmain.c (class_mangling_suffix): Remove unused string.
6376 (error): Remove unused function.
6377 (main): Don't use "__attribute__ alias" on generated class symbol.
6378
6379 2001-01-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
6380
6381 * jcf-parse.c (init_jcf_parse): Added cast to ggc_add_root's last
6382 argument.
6383 * parse.y (finish_method_declaration): Code accounting for WFLed
6384 method DECL_NAMEs deleted.
6385 (check_abstract_method_definitions): Likewise.
6386 (resolve_type_during_patch): Layout resolved type.
6387 * typeck.c (lookup_do): Removed unused local.
6388
6389 2001-01-30 Bryce McKinlay <bryce@albatross.co.nz>
6390
6391 * java-tree.h: Remove JTI_INTEGER_NEGATIVE_ONE_NODE.
6392 * decl.c (init_decl_processing): Use integer_minus_one_node, not
6393 integer_negative_one_node.
6394 * expr.c (build_java_binop): Likewise.
6395
6396 2001-01-24 Jeff Sturm <jeff.sturm@commerceone.com>
6397
6398 * zextract.c (read_zip_archive): Read file_offset before writing
6399 zipd and consequently clobbering the header contents.
6400
6401 2001-01-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6402
6403 * Make-lang.in: Remove all dependencies on defaults.h.
6404 * decl.c: Don't include defaults.h.
6405 * expr.c: Likewise.
6406 * parse.y: Likewise.
6407
6408 2001-01-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
6409
6410 * ChangeLog (2001-01-21): Fixed typo.
6411 * class.c (layout_class_method): Code accounting for WFLed
6412 method DECL_NAMEs deleted.
6413 * constant.c (find_methodref_index): Likewise.
6414 * decl.c (lang_mark_tree): Mark `wfl' field in struct lang_decl.
6415 * java-tree.h (DECL_FUNCTION_WFL): New macro.
6416 (struct lang_decl): New field `wfl'.
6417 (java_get_real_method_name): Prototype deleted.
6418 * mangle.c (mangle_method_decl): Code accounting for WFLed
6419 method DECL_NAMEs deleted.
6420 * parse.h (GET_METHOD_NAME): Macro deleted.
6421 * parse.y (reset_method_name): Deleted.
6422 (method_header): Set DECL_FUNCTION_WFL.
6423 (check_abstract_method_header): Code accounting for WFLed method
6424 DECL_NAMEs deleted.
6425 (java_get_real_method_name): Deleted.
6426 (check_method_redefinition): Code accounting for WFLed method
6427 DECL_NAMEs deleted. Use DECL_FUNCTION_WFL.
6428 (java_check_regular_methods): Likewise.
6429 (java_check_abstract_methods): Likewise.
6430 (java_expand_classes): Don't call `reset_method_name.'
6431 (search_applicable_method_list): Use DECL_NAMEs instead of
6432 GET_METHOD_NAME.
6433 * typeck.c (lookup_do): Code accounting for WFLed method
6434 DECL_NAMEs deleted.
6435
6436 2001-01-25 Richard Earnshaw <rearnsha@arm.com>
6437
6438 * lex.c (java_read_char): Check for EOF from getc first.
6439
6440 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6441
6442 * class.c (layout_class): Don't lay the superclass out if it's
6443 already being laid out.
6444 * jcf-parse.c (handle_innerclass_attribute): New function.
6445 (HANDLE_INNERCLASSES_ATTRIBUTE): Invoke
6446 handle_innerclasses_attribute.
6447 (jcf_parse): Don't load an innerclasses if it's already being
6448 laid out.
6449 * jcf-write.c (append_innerclass_attribute_entry): Static
6450 `anonymous_name' and its initialization deleted. `ocii' and `ini'
6451 to be zero for anonymous classes.
6452
6453 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6454
6455 * class.c (set_constant_value): Set DECL_FIELD_FINAL_IUD if
6456 necessary.
6457 * jcf-parse.c (set_source_filename): Use
6458 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC if necessary.
6459
6460 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6461
6462 * expr.c (build_jni_stub): Set DECL_CONTEXT on `meth_var' so it
6463 gets a unique asm name.
6464
6465 2001-01-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
6466
6467 * jcf-parse.c (HANDLE_END_METHODS): Nullify current_method.
6468 (HANDLE_START_FIELD): Invoke MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC
6469 if necessary.
6470 (HANDLE_SYNTHETIC_ATTRIBUTE): New macro.
6471 * jcf-reader.c (get_attribute): Handle `Synthetic' attribute.
6472 * parse.y (lookup_package_type_and_set_next): Deleted.
6473 (resolve_package): Removed unnecessary code.
6474 (find_applicable_accessible_methods_list): `finit$' can't be
6475 inherited.
6476 * verify.c (pop_argument_types): Added missing prototype.
6477
6478 2001-01-23 Bryce McKinlay <bryce@albatross.co.nz>
6479
6480 * config-lang.in: Disable java by default.
6481
6482 2001-01-23 Tom Tromey <tromey@redhat.com>
6483
6484 * gcj.texi (Copying): New node.
6485 Added copyright information.
6486
6487 2001-01-21 Per Bothner <per@bothner.com>
6488
6489 Various fixes to allow compiling a compressed .jar/.zip archive.
6490 * zipfile.h (struct ZipFileCache): Replace by struct ZipFile.
6491 (struct ZipFile): Add fields name and next (from ZipFileCache).
6492 (struct ZipDirectory): New field zipf points to owning ZipFile.
6493 * jcf.h (struct ZipDirectory): Add forward declaration.
6494 (struct JCF): Declare zipd field to have type struct ZipDirectory.
6495 Remove seen_in_zip and zip_offset fields.
6496 (JCF_SEEN_IN_ZIP): New macro.
6497 * zextract.c (read_zip_archive): Set ZipDirectory's zipf field.
6498 * jcf-io.c: Change all ZipFileCache to ZipFile.
6499 (read_zip_member): New function.
6500 (open_in_zip): Call read_zip_member.
6501 * jcf-parse.c (find_in_current_zip): Remove function.
6502 (read_class): Merge in find_in_current_zip functionality.
6503 Call read_zip_member if needed.
6504 (parse_zip_file_entries): Use read_zip_member.
6505 (process_zip_dir): Update for removed and added JCF fields.
6506 (jcf_figure_file_type): Re-use, don't copy initial ZipFile struct.
6507
6508 2001-01-21 Per Bothner <per@bothner.com>
6509
6510 Minor optimization of static ggc roots.
6511 * jcf-parse.c (parse_roots): New static field.
6512 (current_field, current_method, current_file_list): Replace by macros
6513 naming fields of parse_roots.
6514 (init_jcf_parse): Combine 3 ggc_add_tree_root calls to 1.
6515 * class.c (class_roots): New static field.
6516 (registered_class, fields_ident, info_ident, class_list):
6517 New macros naming fields of parse_roots.
6518 (build_static_field_ref): Don't register roots here.
6519 (layout_class): Static field list replaced by macro class_list.
6520 (init_class_processing): Call ggc_add_tree_root for 4 roots.
6521 Initialize fields_ident and info_ident here.
6522
6523 2001-01-21 Per Bothner <per@bothner.com>
6524
6525 * jcf-parse.c (ggc_mark_jcf): New function.
6526 (init_jcf_parse): Register current_jcf as ggc root.
6527
6528 2001-01-21 Per Bothner <per@bothner.com>
6529
6530 * lang.c (put_decl_node): Print method's name.
6531
6532 2001-01-21 Per Bothner <per@bothner.com>
6533
6534 * verify.c (VERIFICATION_ERROR_WITH_INDEX): New macro.
6535 (verify_jvm_instructions): Use it, for better error messages on loads.
6536
6537 2001-01-21 Per Bothner <per@bothner.com>
6538
6539 * verify.c (merge_type_state): Still may have to merge even if
6540 LABEL_VERIFIED (label).
6541
6542 2001-01-21 Per Bothner <per@bothner.com>
6543
6544 * parse.y (method_header): Don't set the DECL_NAME of a FUNCTION_DECL
6545 to a EXPR_WITH_FILE_LOCATION - that is just too fragile and wrong.
6546
6547 2001-01-19 Per Bothner <per@bothner.com>
6548
6549 * expr.c (pop_type_0): Only return object_ptr_type_node on mismatch
6550 if expeting an interface type. Refines Tom's change of 2000-09-12.
6551
6552 2001-01-18 Per Bothner <per@bothner.com>
6553
6554 * gcj.texi (Input Options): Mention .java files.
6555
6556 2001-01-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
6557
6558 * lang-options.h (-Wunsupported-jdk11): Removed.
6559 * lang.c (flag_not_overriding): Deleted.
6560 (flag_static_local_jdk1_1): Likewise.
6561 (lang_W_options): Removed "unsupported-jdk11" entry.
6562 * parse.y (java_check_methods): Removed dead code.
6563
6564 2001-01-17 Tom Tromey <tromey@redhat.com>
6565
6566 Changes suggested by Per Bothner:
6567 * gcj.texi (Input Options): Don't mention input files.
6568 (Code Generation): Updated --main information.
6569 (Invoking jcf-dump): Mention that --javap is incomplete.
6570 From Alexandre Petit-Bianco:
6571 (Warnings): Don't mention -Wunsupported-jdk11.
6572 My stuff:
6573 (Compatibility): Mention JDK 1.2-ness of libraries.
6574 (Resources): Mention resources used when writing gcj.
6575
6576 2001-01-17 Tom Tromey <tromey@redhat.com>
6577
6578 * gcj.texi: New file.
6579 * Make-lang.in ($(srcdir)/java/gcj.info): New target.
6580 (java.info): Depend on gcj.info.
6581 (java/gcj.dvi): New target.
6582 (java.dvi): Depend on gcj.dvi.
6583 (java.install-info): Wrote.
6584
6585 2001-01-16 Jeff Sturm <jeff.sturm@appnet.com>
6586
6587 * expr.c (java_lang_expand_expr): Use TREE_SYMBOL_REFERENCED after
6588 having called make_decl_rtl.
6589
6590 2001-01-14 Per Bothner <per@bothner.com>
6591
6592 Various patches to emit better messages on verification errors.
6593 * expr.c (push_type_0): Return error indication on stack overflow,
6594 instead of callinfg fatal.
6595 (push_type): Now just call push_type_0 (nd fatal on overflow).
6596 (pop_type_0): Return detailed error message (in a char** argument).
6597 (pop_type): If pop_type_0 fails, print error message.
6598 (pop_argument_types): Moved to verify.c.
6599 * verify.c (pop_argument_types): Moved from expr.c.
6600 Return a (possible) error message, rather than void.
6601 (POP_TYPE, POP_TYPE_CONV, PUSH_TYPE, PUSH_PENDING): New macros.
6602 (verify_jvm_instruction): Use new macros, improving error messages.
6603 For case OPCODE_astore use object_ptr_type_node.
6604 * java-tree.h (TYPE_UNDERFLOW, TYPE_UNEXPECTED): New macros.
6605 (pop_type_0, push_type_0, pop_argument_types): Update accordingly.
6606
6607 * parse.y (java_complete_lhs case EXPR_WITH_FILE_LOCATION): If body is
6608 constant, return body without wrapper. (Improves constant folding.)
6609 * lex.c (build_wfl_node): Clear TREE_TYPE from returned node.
6610
6611 2001-01-13 Per Bothner <per@bothner.com>
6612
6613 * expr.c (expand_java_field_op): Assigning to a final field outside
6614 an initializer does not violate JVM spec, so should be warning, not
6615 error. (Sun's verifier does not complain - though MicroSoft's does.)
6616
6617 2001-01-12 Joseph S. Myers <jsm28@cam.ac.uk>
6618
6619 * gjavah.c (version), jcf-dump.c (version): Update copyright year
6620 to 2001.
6621
6622 2001-01-11 Bryce McKinlay <bryce@albatross.co.nz>
6623
6624 * parse.y (resolve_expression_name): Permit instance variables from
6625 enclosing context in super constructor call.
6626 (resolve_qualified_expression_name): Permit enclosing class's qualified
6627 "this" in super constructor call.
6628
6629 2001-01-10 Mark Mitchell <mark@codesourcery.com>
6630
6631 * class.c (build_utf8_ref): Remove last argument in call to
6632 make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
6633 (build_class_ref): Likewise.
6634 (build_static_field_ref): Likewise.
6635 (get_dispatch_table): Likewise.
6636 (layout_class_method): Likewise.
6637 (emit_register_classes): Likewise.
6638 * constants.c (build_constant_data_ref): Likewise.
6639 * decl.c (builtin_function): Likewise.
6640 (create_primitive_vtable): Likewise.
6641 * expr.c (build_known_method_def): Likewise.
6642 (build_jni_stub): Likewise.
6643 (java_lang_expand_expr): Likewise.
6644
6645 2001-01-10 Tom Tromey <tromey@redhat.com>
6646
6647 * jvspec.c (jvgenmain_spec): Omit -fencoding from cc1 invocation.
6648
6649 2001-01-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
6650
6651 * java-tree.h (lang_printable_name_wls): New prototype.
6652 * lang.c (put_decl_name): Removed dead code. Use DECL_CONTEXT
6653 rather than `current_class' to print type name. Don't prepend type
6654 names when printing constructor names.
6655 (lang_printable_name_wls): New function.
6656 * jcf-parse.c (jcf_parse_source): Pass NULL `file' argument to
6657 `build_expr_wfl', alway set EXPR_WFL_FILENAME_NODE.
6658 * parse.y (patch_method_invocation): Message tuned for constructors.
6659 (not_accessible_p): Grant `private' access from within
6660 enclosing contexts.
6661
6662 2001-01-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
6663
6664 All files with updated copyright when applicable.
6665 * Make-lang.in (JVGENMAIN_OBS): Removed java/mangle.o.
6666 * class.c (mangle_class_field): Function removed.
6667 (append_gpp_mangled_type, mangle_static_field, mangle_field): Likewise.
6668 (utf8_cmp, cxx_keyword_p): Moved to lex.c.
6669 (build_class_ref): Call `java_mangle_class_field' instead of
6670 `mangle_class_field.'
6671 (build_dtable_decl): Rewritten to call `java_mangle_vtable.'
6672 (layout_class): Call `java_mangle_decl' instead of
6673 `mangle_static_field.'
6674 (cxx_keywords): Initialized static array moved to `lex.c.'
6675 (layout_class_method): Changed leading comment. Simplified to
6676 call `java_mangle_decl.' Local `ptr' moved in for loop body.
6677 * decl.c (lang_mark_tree): Mark field `package_list.'
6678 * java-tree.h (TYPE_PACKAGE_LIST): New macro.
6679 (struct lang_type): New field `package_list.'
6680 (unicode_mangling_length): Prototype removed.
6681 (append_gpp_mangled_name, append_gpp_mangled_classtype,
6682 emit_unicode_mangled_name): Likewise.
6683 (cxx_keyword_p): New prototype.
6684 (java_mangle_decl, java_mangle_class_field,
6685 java_mangle_class_field_from_string, java_mangle_vtable): Likewise.
6686 * jcf-parse.c (jcf_parse_source): Constify `file' argument to
6687 `build_expr_wfl.'
6688 * jvgenmain.c (main_method_prefix): Global variable removed.
6689 (main_method_suffix): Likewise.
6690 (do_mangle_classname): New function.
6691 (main): Call it. Format changed to accommodate new mangling scheme.
6692 * lex.c: (utf8_cmp): Conditionally prototyped.
6693 (cxx_keywords): Moved from class.c, conditionally defined.
6694 (utf8_cmp, cxx_keyword_p): Likewise.
6695 * mangle.c (obstack.h, ggc.h): Included.
6696 (mangle_field_decl): New function.
6697 (mangle_method_decl, mangle_type, mangle_pointer_type,
6698 mangle_array_type, mangle_record_type,
6699 find_compression_pointer_match, find_compression_array_match,
6700 find_compression_record_match,
6701 find_compression_array_template_match, set_type_package_list,
6702 entry_match_pointer_p, emit_compression_string, init_mangling,
6703 finish_mangling, compression_table_add, mangle_member_name): Likewise.
6704 (mangle_obstack): New global.
6705 (MANGLE_RAW_STRING): New macro.
6706 (unicode_mangling_length): Turned static.
6707 (append_unicode_mangled_name): Renamed from
6708 `emit_unicode_mangled_name.' Turned static. `mangle_obstack'
6709 replaces `obstack', removed from the parameter list.
6710 (append_gpp_mangled_name): Turned static. `mangle_obstack'
6711 replaces parameter `obstack', removed from the parameter list. Call
6712 `append_unicode_mangled_name' instead of `emit_unicode_mangled_name.
6713 (append_gpp_mangled_classtype): Removed.
6714 (compression_table, compression_next): New static variables.
6715 * parse.y (temporary_obstack): Extern declaration removed.
6716
6717 2001-01-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
6718
6719 * parse.y (patch_binop): Compute missing type in error situations.
6720
6721 2001-01-05 Bryce McKinlay <bryce@albatross.co.nz>
6722
6723 * class.c (make_class_data): Push initial value for "arrayclass".
6724 * decl.c (init_decl_processing): Add new class field "arrayclass".
6725
6726 2001-01-05 Bryce McKinlay <bryce@albatross.co.nz>
6727
6728 From patha@softlab.ericsson.se:
6729 * parse.y (switch_label): Use build, not build1, to construct
6730 DEFAULT_EXPR.
6731
6732 2001-01-04 Neil Booth <neil@daikokuya.demon.co.uk>
6733
6734 * lang.c (lang_decode_option): Change -MA to -MP.
6735 * jcf-depend.c (jcf_dependency_add_target, jcf_dependency_set_target):
6736 Update to new prototype; do quote targets.
6737 (jcf_dependency_write): Update.
6738
6739 2000-12-22 Bryce McKinlay <bryce@albatross.co.nz>
6740
6741 Shorten primitive array allocation path:
6742 * decl.c (init_decl_processing): Use _Jv_NewPrimArray not _Jv_NewArray
6743 to create new primitive arrays.
6744 * expr.c (build_newarray): If generating native code, call
6745 soft_newarray_node with a reference to the primitive TYPE identifier
6746 instead of type_value.
6747
6748 2000-12-17 Bryce McKinlay <bryce@albatross.co.nz>
6749
6750 Fix for PRs gcj/312 and gcj/253:
6751 * parse.y (valid_ref_assignconv_cast_p): Load classes for source and
6752 dest if they arn't already.
6753 * class.c (layout_class): Call maybe_layout_super_class on
6754 superinterfaces also, but only if compiling from bytecode.
6755
6756 Fix for PR gcj/373:
6757 * parse.y (create_class): Set ACC_STATIC if class is declared in an
6758 interface.
6759
6760 2000-12-15 Tom Tromey <tromey@redhat.com>
6761
6762 * jcf-parse.c (jcf_parse_source): Set wfl_operator if not already
6763 set.
6764
6765 2000-12-14 Andrew Haley <aph@redhat.com>
6766
6767 * boehm.c (mark_reference_fields): Change test to correctly detect
6768 bitmap overflow.
6769
6770 2000-12-15 Andreas Jaeger <aj@suse.de>
6771
6772 * config-lang.in (lang_dirs): Added.
6773
6774 2000-12-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
6775
6776 * parse.y (end_artificial_method_body): Fixed undefined behavior.
6777 Credits go to rth for finding it.
6778
6779 2000-12-13 Mike Stump <mrs@wrs.com>
6780
6781 * parse.y (check_static_final_variable_assignment_flag): Fix spelling.
6782
6783 2000-11-07 Tom Tromey <tromey@cygnus.com>
6784
6785 * Make-lang.in (JAVA_LEX_C): Added chartables.h.
6786 * lex.c (java_ignorable_control_p): Removed.
6787 (java_letter_or_digit_p): Removed.
6788 (java_start_char_p): New function.
6789 (java_read_char): Return `int', not `unicode_t'. Changed
6790 callers.
6791 (java_read_unicode): Likewise.
6792 (java_read_unicode_collapsing_terminators): Likewise.
6793 (java_get_unicode): Likewise.
6794 (java_new_lexer): Initialize hit_eof.
6795 (java_parse_end_comment): Take `int' argument.
6796 (java_parse_doc_section): Likewise.
6797 (java_parse_escape_sequence): Don't allow backlash-newline.
6798 Return `int'.
6799 * lex.h (JAVA_DIGIT_P): Removed.
6800 (_JAVA_LETTER_OR_DIGIT_P): Removed.
6801 (_JAVA_IDENTIFIER_IGNORABLE): Removed.
6802 (JAVA_START_CHAR_P): Renamed from JAVA_ID_CHAR_P.
6803 (JAVA_PART_CHAR_P): New macro.
6804 (UEOF): Now -1.
6805 (JAVA_CHAR_ERROR): Now -2.
6806 (java_lexer): New field `hit_eof'.
6807 * chartables.h: New file.
6808 * gen-table.pl: new file.
6809
6810 2000-11-20 Tom Tromey <tromey@cygnus.com>
6811 Alexandre Petit-Bianco <apbianco@cygnus.com>
6812
6813 * parse.y (java_complete_lhs): Only allow compound assignment of
6814 reference type if type is String.
6815
6816 2000-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
6817
6818 * Make-lang.in (java/jcf-path.o:): libgcj.jar replaces libgcj.zip.
6819 jcf-path.c: Likewise.
6820
6821 2000-12-09 Anthony Green <green@redhat.com>
6822
6823 * zipfile.h (ZipDirectory): Declare size, uncompressed_size,
6824 filestart and filename_length as int values.
6825
6826 2000-12-07 Mo DeJong <mdejong@redhat.com>
6827
6828 * jcf-io.c (find_class): Correct the logic that tests to see if a
6829 .java file is newer than its .class file. The compiler was
6830 incorrectly printing a warning when file mod times were equal.
6831
6832 2000-12-07 Zack Weinberg <zack@wolery.stanford.edu>
6833
6834 * jvgenmain.c: Use ISPRINT not isascii.
6835
6836 2000-12-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
6837
6838 * parse.y (end_artificial_method_body): Fixed typo.
6839
6840 2000-12-04 Alexandre Petit-Bianco <apbianco@cygnus.com>
6841
6842 * parse.y (patch_method_invocation): Pick the correct enclosing
6843 context when creating inner class instances.
6844 Fixes gcj/332.
6845
6846 2000-11-26 Joseph S. Myers <jsm28@cam.ac.uk>
6847
6848 * gjavah.c (version), jcf-dump.c (version), jv-scan.c (version):
6849 Update copyright year to 2000.
6850
6851 2000-11-23 Anthony Green <green@redhat.com>
6852
6853 * jcf-parse.c (init_jcf_parse): Register current_file_list root.
6854 Move current_file_list out of yyparse and make it static.
6855
6856 * expr.c: Declare quick_stack and tree_list_free_list as static
6857 (init_expr_processing): Register quick_stack and
6858 tree_list_free_list roots.
6859
6860 2000-11-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
6861
6862 * parse.y (build_outer_field_access): New local `decl_ctx', use
6863 it. Check for field's context and current class immediate outer
6864 context inheritance.
6865 (outer_field_access_p): Consider fields inherited from the last
6866 enclosing context.
6867 (build_access_to_thisn): Stop at the last enclosing context if
6868 necessary.
6869 Fixes gcj/367.
6870
6871 2000-11-23 J"orn Rennecke <amylaar@redhat.com>
6872
6873 * Make-lang.in (jvspec.o): Depend on $(CONFIG_H).
6874
6875 2000-11-22 Bryce McKinlay <bryce@albatross.co.nz>
6876
6877 * jcf-parse.c (get_constant): Call UT8_CHAR_LENGTH on `utf8', not the
6878 scratch buffer.
6879
6880 2000-11-20 Tom Tromey <tromey@cygnus.com>
6881
6882 * jv-scan.c (help): Document --complexity.
6883 (options): Added --complexity.
6884 (flag_complexity): New global.
6885 (main): Call `report'.
6886 * parse-scan.y (complexity): New global.
6887 (if_then_statement, if_then_else_statement,
6888 if_then_else_statement_nsi, switch_block_statement_group,
6889 while_expression, do_statement, for_begin, continue_statement,
6890 throw_statement, catch_clause, finally, method_invocation,
6891 conditional_and_expression, conditional_or_expression,
6892 conditional_expression): Update complexity.
6893 (reset_report): Reset complexity.
6894 (report): New function.
6895
6896 2000-11-20 Tom Tromey <tromey@cygnus.com>
6897
6898 * lex.c (yylex): Added STRICT_TK case.
6899 * parse.y (STRICT_TK): Added.
6900 * parse-scan.y (STRICT_TK): Added.
6901 * Make-lang.in ($(srcdir)/java/keyword.h): Added missing `\' and
6902 `;'. Use 4, not 3, with -k option. Correctly rename resulting
6903 file.
6904 * keyword.h: Rebuilt.
6905 * keyword.gperf (strictfp): Added.
6906
6907 2000-11-20 Tom Tromey <tromey@cygnus.com>
6908
6909 * lex.c (yylex): Recognize floating point constants with leading
6910 0.
6911
6912 2000-11-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6913
6914 * java-tree.h (cyclic_inheritance_report): Constify.
6915 * parse.y (cyclic_inheritance_report): Likewise.
6916
6917 2000-11-17 Zack Weinberg <zack@wolery.stanford.edu>
6918
6919 * parse.y (goal): Remove call to ggc_add_string_root.
6920
6921 2000-11-16 Zack Weinberg <zack@wolery.stanford.edu>
6922
6923 * jcf-parse.c (get_constant), parse.y (do_merge_string_cste):
6924 Create string in scratch buffer, then pass to build_string.
6925
6926 2000-11-13 Joseph S. Myers <jsm28@cam.ac.uk>
6927
6928 * parse.y (issue_warning_error_from_context): Add
6929 ATTRIBUTE_PRINTF.
6930
6931 2000-11-11 Anthony Green <green@redhat.com>
6932
6933 * jcf-parse.c (process_zip_dir): Add finput parameter.
6934 (jcf_figure_file_type): Call process_zip_dir with appropriate
6935 argument.
6936
6937 2000-11-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6938
6939 * decl.c (copy_lang_decl): Use memcpy, not bcopy.
6940 * jcf-parse.c (jcf_figure_file_type): Likewise.
6941
6942 2000-11-09 Joseph S. Myers <jsm28@cam.ac.uk>
6943
6944 * parse.y (create_new_parser_context): Use memset () instead of
6945 bzero ().
6946
6947 2000-11-08 Tom Tromey <tromey@cygnus.com>
6948
6949 * gjavah.c (process_file): Only include gcj/cni.h when generating
6950 CNI stubs.
6951
6952 2000-11-07 Joseph S. Myers <jsm28@cam.ac.uk>
6953
6954 * expr.c (note_instructions), jcf-io.c (find_class), jcf-parse.c
6955 (init_outgoing_cpool), lex.c (java_init_lex): Use memset ()
6956 instead of bzero ().
6957
6958 2000-11-05 Tom Tromey <tromey@cygnus.com>
6959
6960 * lex.h (JAVA_FLOAT_RANGE_ERROR): Typo fix.
6961 * lex.c (IS_ZERO): New define.
6962 (java_perform_atof): Error on floating point underflow.
6963
6964 2000-11-04 Tom Tromey <tromey@cygnus.com>
6965
6966 * lex.c (java_parse_escape_sequence): Only read two octal
6967 characters if the first one is greater than 3. Don't allow
6968 "octal" numbers to include the digits 8 or 9.
6969
6970 2000-11-05 Joseph S. Myers <jsm28@cam.ac.uk>
6971
6972 * Make-lang.in (java.distdir): Remove.
6973
6974 2000-11-03 Tom Tromey <tromey@cygnus.com>
6975
6976 * Make-lang.in (java.dvi): New target.
6977 Partial fix for PR other/567.
6978
6979 * lang-options.h: Mention -Wout-of-date.
6980 * jcf-dump.c (flag_newer): New global.
6981 * gjavah.c (flag_newer): New global.
6982 * jcf-io.c (find_class): Only warn when flag_newer set.
6983 * lang.c (flag_newer): New global.
6984 (struct string_option): New declaration.
6985 (lang_W_options): New global.
6986 (process_option_with_no): New function.
6987 (lang_decode_option): Use it.
6988
6989 * class.c (cxx_keyword_p): Accept keywords with trailing `$'s.
6990 * gjavah.c (cxx_keyword_subst): Handle any number of trailing
6991 `$'.
6992
6993 * lex.h (_JAVA_IDENTIFIER_IGNORABLE): New macro.
6994 (JAVA_ID_CHAR_P): Also try java_ignorable_control_p.
6995 * lex.c (java_read_unicode): Removed `term_context' argument.
6996 Recognize any number of `u' in `\u'.
6997 (java_read_unicode_collapsing_terminators): New function.
6998 (java_get_unicode): Use it.
6999 (java_lineterminator): Removed.
7000 (yylex): Produce error if character literal is newline or single
7001 quote. Return if eof found in middle of `//' comment. EOF in
7002 `//' comment is only an error if pedantic.
7003 (java_ignorable_control_p): New function.
7004 (java_parse_end_comment): Return if eof found in middle of
7005 comment.
7006 Include flags.h.
7007 * jv-scan.c (pedantic): New global.
7008
7009 2000-10-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
7010
7011 * parse.y (outer_field_access_p): Inherited fields aren't
7012 consider outer fields.
7013 (maybe_build_thisn_access_method): Use
7014 PURE_INNER_CLASS_TYPE_P instead of INNER_CLASS_TYPE_P.
7015 (resolve_expression_name): Trigger an error if a static field
7016 is being accessed as an outer field.
7017
7018 2000-10-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7019
7020 * Make-lang.in (LIBGCJ_ZIP_FILE): Define with `$(prefix)'.
7021 Fixes gcj/365.
7022
7023 2000-10-27 Zack Weinberg <zack@wolery.stanford.edu>
7024
7025 * Make-lang.in: Move all build rules here from Makefile.in,
7026 adapt to new context. Wrap all rules that change the current
7027 directory in parentheses. Expunge all references to $(P).
7028 When one command depends on another and they're run all at
7029 once, use && to separate them, not ;. Add OUTPUT_OPTION to
7030 all object-file generation rules. Delete obsolete variables.
7031
7032 * Makefile.in: Delete.
7033 * config-lang.in: Delete outputs= line.
7034
7035 2000-10-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
7036
7037 * parse.y (patch_method_invocation): NULLify this_arg when already
7038 inserted.
7039 (maybe_use_access_method): Handle call to methods unrelated to the
7040 current class. Fixed comment.
7041 Fixes gcj/361.
7042
7043 2000-10-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
7044
7045 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Check inherited type in
7046 scope.
7047
7048 2000-10-24 Tom Tromey <tromey@cygnus.com>
7049
7050 * lex.c (java_new_lexer): Initialize new fields. Work around
7051 broken iconv() implementations.
7052 (java_read_char): Swap bytes if required. Use fallback decoder if
7053 required.
7054 (byteswap_init, need_byteswap): New globals.
7055 (java_destroy_lexer): Only close iconv handle if it is in use.
7056 * lex.h (java_lexer): New fields read_anything, byte_swap,
7057 use_fallback.
7058 Made out_buffer unsigned.
7059
7060 2000-10-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
7061
7062 * parse.y (register_incomplete_type): Include JDEP_FIELD as a case
7063 where an enclosing context can be set on the jdep.
7064 (do_resolve_class): Fixed identation.
7065
7066 2000-10-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7067
7068 * gjavah.c (NEED_PEEK_ATTRIBUTE, NEED_SKIP_ATTRIBUTE): Define
7069
7070 * jcf-reader.c (peek_attribute, skip_attribute): Only define
7071 when requested.
7072
7073 * parse.h (yyerror): If JC1_LITE, mark with ATTRIBUTE_NORETURN.
7074
7075 * verify.c (CHECK_PC_IN_RANGE): Cast result of stmt-expr to void.
7076
7077 2000-10-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
7078
7079 * jcf-write.c (OP1): Update `last_bc'.
7080 (struct jcf_block): Fixed indentation and typo in comments. New
7081 field `last_bc'.
7082 (generate_bytecode_insns): Insert `nop' if `jsr' immediately
7083 follows `monitorenter'.
7084 * parse.y (patch_synchronized_statement): New local `tmp'. Call
7085 `patch_string'.
7086 Fixes gcj/232.
7087
7088 2000-10-16 Tom Tromey <tromey@cygnus.com>
7089
7090 * jvspec.c (lang_specific_driver): Recognize -MF and -MT.
7091 * lang-specs.h: Added %{MA}, %{MF*}, %{MT*}.
7092 * lang-options.h: Added -MA, -MT, -MF..
7093 * lang.c (lang_decode_option): Recognize -MA, -MT, -MF.
7094 (DEPEND_TARGET_SET): New macro.
7095 (DEPEND_FILE_ALREADY_SET): Likewise.
7096 (init_parse): Handle new flags.
7097 * jcf.h (jcf_dependency_print_dummies): Declare.
7098 * Make-lang.in (s-java): Added mkdeps.o.
7099 * Makefile.in (BACKEND): Added mkdeps.o.
7100 (../gcjh$(exeext)): Added mkdeps.o.
7101 (../jcf-dump$(exeext)): Added mkdeps.o.
7102 * jcf-depend.c: Include mkdeps.h.
7103 (struct entry, dependencies, targets, MAX_OUTPUT_COLUMNS,
7104 add_entry): Removed.
7105 (jcf_dependency_reset): Rewrote.
7106 (dependencies): New global.
7107 (jcf_dependency_set_target): Rewrote.
7108 (jcf_dependency_add_target): Likewise.
7109 (jcf_dependency_add_file): Likewise.
7110 (munge): Removed.
7111 (print_ents): Removed.
7112 (jcf_dependency_write): Rewrote.
7113 (print_dummies): New global.
7114 (jcf_dependency_print_dummies): New function
7115 (jcf_dependency_write): Call deps_dummy_targets if required.
7116
7117 2000-10-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
7118
7119 * gjavah.c (add_class_decl): Removed unused variables `tname',
7120 `tlen' and `name_index'.
7121 * java-tree.h (BUILD_FILENAME_IDENTIFIER_NODE): New macro.
7122 * jcf-parse.c (jcf_parse_source): Use it and set EXPR_WFL_FILENAME
7123 in `wfl_operator' with value.
7124 (yyparse): Use BUILD_FILENAME_IDENTIFIER_NODE.
7125 (jcf_figure_file_type): Fixed identation.
7126 * lex.c (java_get_line_col): Use EOF. Tuned `^' placement.
7127 * parse.y (analyze_clinit_body): New function.
7128 (static_initializer:): Reset `current_static_block'.
7129 (java_parser_context_restore_global): Set EXPR_WFL_FIILENAME_NODE in
7130 `wfl_operator' with new value.
7131 (lookup_cl): Use EXPR_WFL_FILENAME.
7132 (maybe_yank_clinit): Handle bogus <clinit> bodies, call
7133 analyze_clinit_body.
7134 (build_outer_field_access): Access to this$<n> built from
7135 current_class, not its outer context.
7136 (build_access_to_thisn): Fixed leading comment. Tidied things up.
7137 (resolve_qualified_expression_name): Handle `T.this' and `T.this.f()'.
7138 (patch_method_invocation): Use `is_static_flag' when already
7139 initialized.
7140 (patch_newarray): Removed assignment in ternary operator.
7141
7142 2000-10-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
7143
7144 * except.c (free_eh_ranges): Don't free `whole_range'.
7145
7146 2000-10-15 Anthony Green <green@redhat.com>
7147
7148 * decl.c (init_decl_processing): Call init_class_processing before
7149 anything else.
7150
7151 2000-10-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7152
7153 * check-init.c (check_init): Fixed leading comment. Use
7154 LOCAL_FINAL_P.
7155 * decl.c (push_jvm_slot): Use MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC.
7156 (give_name_to_locals): Likewise.
7157 (lang_mark_tree): Handle FIELD_DECL. Register `am' and `wfl'
7158 fields in lang_decl_var.
7159 * java-tree.h (DECL_FUNCTION_SYNTHETIC_CTOR,
7160 DECL_FUNCTION_ALL_FINAL_INITIALIZED): New macros.
7161 (FIELD_INNER_ACCESS): Removed ugly cast, macro rewritten.
7162 (FIELD_INNER_ACCESS_P, DECL_FIELD_FINAL_IUD, DECL_FIELD_FINAL_LIIC,
7163 DECL_FIELD_FINAL_IERR, DECL_FIELD_FINAL_WFL): New macros.
7164 (LOCAL_FINAL): Rewritten.
7165 (LOCAL_FINAL_P, FINAL_VARIABLE_P, CLASS_FINAL_VARIABLE_P
7166 MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC): New macros.
7167 (struct lang_decl): Fixed comments. Added `synthetic_ctor' and
7168 `init_final' fields.
7169 (struct lang_decl_var): Fixed leading comment. Added `am', `wfl',
7170 `final_uid', `final_liic', `final_ierr' and `local_final' fields.
7171 (TYPE_HAS_FINAL_VARIABLE): New macro.
7172 (struct lang_type): Added `afv' field.
7173 * parse.y (check_static_final_variable_assignment_flag): New function.
7174 (reset_static_final_variable_assignment_flag): Likewise.
7175 (check_final_variable_local_assignment_flag): Likewise.
7176 (reset_final_variable_local_assignment_flag): Likewise.
7177 (check_final_variable_indirect_assignment): Likewise.
7178 (check_final_variable_global_assignment_flag): Likewise.
7179 (add_inner_class_fields): Use LOCAL_FINAL_P.
7180 (register_fields): Handle local finals and final variables.
7181 (craft_constructor): Set DECL_FUNCTION_SYNTHETIC_CTOR.
7182 (declare_local_variables): Call MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC.
7183 (source_start_java_method): Call MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC
7184 on local finals.
7185 (java_complete_expand_methods): Loop to set
7186 TYPE_HAS_FINAL_VARIABLE. Call
7187 `reset_final_variable_local_assignment_flag' and
7188 `check_final_variable_local_assignment_flag' accordingly before
7189 and after constructor expansion. Call
7190 `reset_static_final_variable_assignment_flag'
7191 before expanding <clinit> and after call
7192 `check_static_final_variable_assignment_flag' if the
7193 current_class isn't an interface. After all methods have been
7194 expanded, call `check_final_variable_global_assignment_flag' and
7195 `check_static_final_variable_assignment_flag' if the current class
7196 is an interface.
7197 (maybe_yank_clinit): Fixed typo in comment.
7198 (build_outer_field_access_methods): Removed old sanity check. Use
7199 FIELD_INNER_ACCESS_P. Call MAYBE_CREATE_VAR_LANG_DECL_SPECIFIC.
7200 Don't create access methods for finals.
7201 (resolve_field_access): Use `CLASS_FINAL_VARIABLE_P'.
7202 (java_complete_tree): Likewise. Reset DECL_FIELD_FINAL_IUD if
7203 existing DECL_INIT has been processed.
7204 (java_complete_lhs): Likewise.
7205 (check_final_assignment): Filter input on `lvalue''s TREE_CODE.
7206 Test for COMPONENT_REF to get to the FIELD_DECL. Implemented new
7207 logic.
7208 (patch_assignment): Use LOCAL_FINAL_P.
7209 (fold_constant_for_init): Reset DECL_FIELD_FINAL_IUD if
7210 DECL_INITIAL is nullified.
7211 Fixes gcj/163.
7212
7213 2000-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7214
7215 * Make-lang.in (parse.c, parse-scan.c): Create atomically.
7216
7217 * Makefile.in (parse.c, parse-scan.c): Likewise.
7218
7219 2000-10-12 Mark Mitchell <mark@codesourcery.com>
7220
7221 * class.c (temporary_obstack): Remove.
7222 (make_class): Don't mess with obstascks.
7223 (push_class): Likewise.
7224 (set_super_info): Likewise.
7225 (add_method_1): Likewise.
7226 (add_method): Likewise.
7227 (add_field): Likewise.
7228 (build_utf8_ref): Likewise.
7229 (build_class_ref): Likewise.
7230 (build_static_field_ref): Likewise.
7231 (finish_class): Likewise.
7232 (push_super_field): Likewise.
7233 (layout_class): Likewise.
7234 (layout_class_methods): Likewise.
7235 (init_class_processing): Likewise.
7236 * constants.c (get_tag_node): Likewise.
7237 (build_constant_data_ref): Likewise.
7238 * decl.c (ggc_p): Remove.
7239 (copy_lang_decl): Use ggc_alloc.
7240 (complete_start_java_method): Don't mess with obstacks.
7241 (start_java_method): Likewise.
7242 (end_java_method): Likewise.
7243 * except.c (link_handler): Use xmalloc.
7244 (free_eh_ranges): New function.
7245 (method_init_exceptions): Use it.
7246 (add_handler): Use xmalloc.
7247 (expand_start_java_handler): Don't mess with obstacks.
7248 (prepare_eh_table_type): Likewise.
7249 (expand_end_java_handler): Likewise.
7250 * expr.c (push_value): Likewise.
7251 (create_label_decl): Likewise.
7252 (build_jni_stub): Likewise.
7253 (java_lang_expand_expr): Likewise.
7254 (note_instructions): Use xrealloc.
7255 (java_push_constant_from_pool): Don't mess with obstacks.
7256 (process_jvm_instruction): Likewise.
7257 * java-tree.h (cyclic_inheritance_report): Remove duplicate
7258 declaration.
7259 * jcf-parse.c (get_constant): Don't mess with obstacks.
7260 (read_class): Likewise.
7261 (jcf_parse): Likewise.
7262 * lex.c (expression_obstack): Remove.
7263 (java_lex): Don't use obstack_free.
7264 * parse.h (exit_java_complete_class): Don't mess with obstacks.
7265 (MANGLE_OUTER_LOCAL_VARIABLE_NAME): Adjust.
7266 (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID): Likewise.
7267 (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STRING): Likewise.
7268 * parse.y (gaol): Add more GC roots.
7269 (add_inner_class_fields): Adjust calls to MANGLE_* macros.
7270 (lookup_field_wrapper): Likewise.
7271 (obtain_incomplete_type): Don't mess with obstacks.
7272 (build_alias_initializer_parameter_list): Adjust calls to MANGLE_*
7273 macros.
7274 (craft_constructor): Don't mess with obstacks.
7275 (safe_layout_class): Likewise.
7276 (java_complete_class): Likewise.
7277 (source_end_java_method): Likewise.
7278 (build_outer_field_access_methods): Likewise.
7279 (build_outer_method_access_method): Likewise.
7280 (maybe_build_thisn_access_method): Likewise.
7281 (build_dot_class_method_invocation): Likewise.
7282 (java_complete_tree): Likewise.
7283 (java_complete_lhs): Likewise.
7284 (do_merge_string_cste): Likewise.
7285 (patch_string_cst): Likewise.
7286 (array_constructor_check_entry): Likewise.
7287 * typeck.c (build_java_array_type): Likewise.
7288 (parse_signature_string): Likewise.
7289 (build_java_signature): Likewise.
7290
7291 2000-10-12 Tom Tromey <tromey@cygnus.com>
7292
7293 Fix for PR gcj/356:
7294 * gjavah.c (add_class_decl): Don't special-case inner classes.
7295 (add_namelet): Likewise.
7296
7297 2000-10-11 Rodney Brown <RodneyBrown@mynd.com>
7298
7299 * java-tree.h: Constify current_encoding.
7300 * lang.c: Constify current_encoding.
7301
7302 2000-10-10 Jeff Sturm <jeff.sturm@appnet.com>
7303
7304 * jvgenmain.c (class_mangling_suffix): Omit `.'.
7305 (main): Use `$' when NO_DOLLAR_IN_LABEL is not set, otherwise `.'.
7306
7307 2000-10-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7308
7309 * expr.c (java_lang_expand_expr): Reinstall 1999-08-14 Anthony's
7310 patch. Fixes gcj/340.
7311
7312 2000-10-10 Tom Tromey <tromey@cygnus.com>
7313
7314 * lex.c (java_new_lexer): Initialize out_first and out_last
7315 fields.
7316 * lex.h (java_lexer): Added out_buffer, out_first, out_last.
7317
7318 2000-10-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
7319
7320 * parse.y (pop_current_osb): New function.
7321 (array_type:): Use `dims:', changed actions
7322 accordingly. Suggested by Anthony Green.
7323 (array_creation_expression:): Used pop_current_osb.
7324 (cast_expression:): Likewise.
7325 (search_applicable_method_list): Fixed indentation.
7326
7327 2000-10-08 Anthony Green <green@redhat.com>
7328
7329 * parse.y (array_type_literal): Remove production.
7330 (type_literals): Refer to array_type, not array_type_literal.
7331
7332 2000-10-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7333
7334 Patch contributed by Corey Minyard.
7335 * decl.c (check_local_named_variable): New function.
7336 (tree check_local_unnamed_variable): Likewise.
7337 (find_local_variable): Splitted. Call check_local_{un}named_variable.
7338
7339 2000-10-07 Anthony Green <green@redhat.com>
7340
7341 * class.c (layout_class): Handle case where superclass can't be
7342 layed out yet.
7343
7344 2000-10-07 Joseph S. Myers <jsm28@cam.ac.uk>
7345
7346 * Makefile.in (keyword.h): Refer to GNU FTP site for updated
7347 gperf.
7348
7349 2000-10-05 Tom Tromey <tromey@cygnus.com>
7350
7351 * jvspec.c (jvgenmain_spec): Added `-fdollars-in-identifiers'.
7352 * jvgenmain.c (class_mangling_prefix): Removed.
7353 (class_mangling_suffix): New global.
7354 (main): Use it.
7355 * gjavah.c (cxx_keyword_subst): Mangle C++ keywords by appending
7356 `$'.
7357 (print_method_info): Handle overrides for static and final
7358 methods.
7359 (process_file): Generate declaration for class object field.
7360 * class.c (cxx_keywords): New array.
7361 (utf8_cmp): New function.
7362 (cxx_keyword_p): New function.
7363 (layout_class_method): Mangle C++ keywords by appending `$'.
7364 (mangle_field): New function.
7365 (mangle_class_field): Use mangle_field. Mangle class name as
7366 `class$'.
7367 (mangle_static_field): Use mangle_field.
7368
7369 2000-10-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
7370
7371 * decl.c (find_local_variable): Removed uncessary type check and
7372 fixed range check typo. From Corey Minyard.
7373
7374 2000-09-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7375
7376 * decl.c (give_name_to_locals): New local `code_offset'. Call
7377 `maybe_adjust_start_pc'.
7378 * expr.c (note_instructions): New function.
7379 (expand_byte_code): Don't collect insn starts here.
7380 (peek_opcode_at_pc): New function.
7381 (maybe_adjust_start_pc): Likewise.
7382 * java-tree.h (maybe_adjust_start_pc): Declare.
7383 (note_instructions): Likewise.
7384 * jcf-parse.c (parse_class_file): Call `note_instructions'.
7385
7386 2000-09-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7387
7388 * parse.y (field_access:): Fixed indentation.
7389 (qualify_ambiguous_name): Properly qualify `this.a[b].c'.
7390
7391 2000-09-07 Tom Tromey <tromey@cygnus.com>
7392
7393 Fix for PR gcj/307:
7394 * parse.y (patch_binop): Use JNUMERIC_TYPE_P, not
7395 JPRIMITIVE_TYPE_P, for arithmetic operators.
7396 (patch_method_invocation): Indentation fix.
7397 (try_builtin_assignconv): Handle boolean specially. Fixed typo.
7398 (valid_builtin_assignconv_identity_widening_p): Handle boolean.
7399 (do_unary_numeric_promotion): Cleaned up code.
7400 (valid_cast_to_p): Handle boolean correctly.
7401
7402 2000-09-27 Tom Tromey <tromey@cygnus.com>
7403
7404 * lex.c (java_read_unicode): Reset bs_count when finished with
7405 `\u' sequence.
7406
7407 2000-10-01 Mark Mitchell <mark@codesourcery.com>
7408
7409 Convert to GC.
7410 * Make-lang.in (s-java): Don't depend on ggc-callbacks.o.
7411 * Makefile.in (BACKEND): Don't include ggc-callbacks.o.
7412 (typeck.o): Depend on ggc.h.
7413 * class.c (add_method_1): Use GC functions for allocation.
7414 (init_class_processing): Register roots.
7415 * decl.c (ggc_p): Set to 1.
7416 (pending_local_decls): Make it static.
7417 (push_jvm_slot): Use GC functions for allocation.
7418 (init_decl_processing): Register roots.
7419 (give_name_to_locals): Use GC functions for allocation.
7420 (lang_mark_tree): New function.
7421 * java-tree.h (MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC): Use GC
7422 functions for allocation.
7423 * jcf-parse.c (jcf_parse_source): Use ggc_strdup.
7424 * lex.c (java_lex): Use build_string, rather than replicating it
7425 inline.
7426 * parse.y (goal): Add more roots.
7427 (mark_parser_ctxt): New function.
7428 * typeck.c: Include ggc.h.
7429
7430 2000-09-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7431
7432 * parse.y (maybe_yank_clinit): Also keep <clinit> if its body
7433 contains something else than MODIFY_EXPR.
7434
7435 2000-09-23 Mark Mitchell <mark@codesourcery.com>
7436
7437 * Make-lang.in (JAVA_SRCS): Include java-tree.h.
7438 * Makefile.in (parse.o): Depend on ggc.h.
7439 (class.o): Likewise.
7440 (constants.o): Likewise.
7441 (decl.o): Likewise.
7442 (expr.o): Likewise.
7443 (jcf-parse.o): Likewise.
7444 (jcf-write.o): Likewise.
7445 (mangle.o): Likewise.
7446 * class.c: Include ggc.h.
7447 (build_static_field_ref): Register GC roots.
7448 (layout_class): Likewise.
7449 (init_class_processing): Likewise.
7450 * constants.c: Include ggc.h.
7451 (current_constant_pool_data_ref): Remove.
7452 (tag_nodes): Move it to ...
7453 (get_tag_node): ... here. Register GC roots.
7454 * decl.c: Include ggc.h. Remove many global tree definitions.
7455 (throw_node): Define.
7456 (java_global_trees): Likewise.
7457 (predef_filenames): Make the size a constant.
7458 (init_decl_processing): Adjust accordingly.
7459 (init_decl_processing): Call init_jcf_parse. Register GC roots.
7460 * expr.c: Include ggc.h.
7461 (init_expr_processing): Register GC roots.
7462 (build_invokeinterface): Likewise.
7463 * java-tree.h: Replace extern tree declarations with macros.
7464 (java_global_trees): New variable.
7465 (java_tree_index): New enumeration.
7466 (init_jcf_parse): Declare.
7467 * jcf-parse.c: Include ggc.h.
7468 (current_class): Remove declaration.
7469 (main_class): Likewise.
7470 (all_class_list): Likewise.
7471 (predefined_filename_p): Adjust for constant size of
7472 predef_filenames.
7473 (init_jcf_parse): New function.
7474 * jcf-write.c: Include ggc.h.
7475 (generate_classfile): Register GC roots.
7476 (append_synthetic_attribute): Likewise.
7477 (append_innerclass_attribute_entry): Likewise.
7478 * lang.c: Include ggc.h.
7479 (lang_print_error): Register GC roots.
7480 * parse.h (struct parser_ctxt): Rename fields to avoid conflicts
7481 with macros.
7482 * parse.y: Include ggc.h.
7483 (wfl_operator): Remove.
7484 (goal): Register GC roots.
7485 (java_pop_parser_context): Adjust for new field names.
7486 (java_parser_context_save_global): Likewse.
7487 (java_parser_context_restore_global): Likewise.
7488 (java_parser_context_suspend): Likewise.
7489 (java_parser_context_resume): Likewise.
7490 (verify_constructor_circularity): Register GC roots.
7491 (lookup_cl): Likewise.
7492 (java_reorder_fields): Likewise.
7493 (build_current_this): Likewise.
7494 (class_in_current_package): Likewise.
7495 (argument_types_convertible): Likewise.
7496 (patch_cast): Rename wfl_op parameter to avoid macro conflicts.
7497
7498 2000-09-14 Tom Tromey <tromey@cygnus.com>
7499
7500 * lex.h: Use HAVE_ICONV_H, not HAVE_ICONV.
7501
7502 2000-09-13 Tom Tromey <tromey@cygnus.com>
7503
7504 * jcf-parse.c: Include <locale.h>.
7505 * jv-scan.c: Include <locale.h>.
7506
7507 2000-09-12 Tom Tromey <tromey@cygnus.com>
7508
7509 * expr.c (pop_type_0): Return `Object' if trying to merge two
7510 interface types.
7511 * verify.c (merge_types): Don't return `TYPE_UNKNOWN' for
7512 interface types; `Object' is always a valid supertype.
7513
7514 2000-09-12 Tom Tromey <tromey@cygnus.com>
7515
7516 Fix for PR gcj/33:
7517 * jv-scan.c (help): Document --encoding.
7518 (options): Added `encoding' entry.
7519 (OPT_ENCODING): New define.
7520 (main): Handle --encoding.
7521 Include <langinfo.h> if nl_langinfo exists.
7522 * lang-options.h: Document --classpath, --CLASSPATH, --main, and
7523 --encoding.
7524 * jcf-parse.c Include <langinfo.h> if we have nl_langinfo.
7525 (parse_source_file): Correctly call java_init_lex. Added `finput'
7526 argument. Use nl_langinfo to determine default encoding.
7527 * java-tree.h (current_encoding): Declare.
7528 * parse.y (java_parser_context_restore_global): Don't restore
7529 `finput'.
7530 (java_parser_context_save_global): Don't set `finput' field.
7531 (java_pop_parser_context): Don't restore `finput'. Free old lexer
7532 if required.
7533 * lang.c (current_encoding): New global.
7534 (lang_decode_option): Recognize `-fencoding='.
7535 (finish_parse): Don't close finput.
7536 * parse.h (struct parser_ctxt): Removed `finput' and
7537 `unget_utf8_value' fields. Added `lexer' field.
7538 (java_init_lex): Fixed declaration.
7539 * lex.c (java_new_lexer): New function.
7540 (java_destroy_lexer): Likewise.
7541 (java_read_char): Added `lex' argument. Handle iconv case.
7542 (java_read_unicode): Added `lex' argument. Count backslashes in
7543 lexer structure.
7544 (java_init_lex): Added `finput' and `encoding' arguments. Set
7545 `lexer' field in ctxp.
7546 (BAD_UTF8_VALUE): Removed.
7547 (java_lex): Handle seeing UEOF in the middle of a string literal.
7548 * lex.h: Include <iconv.h> if HAVE_ICONV defined.
7549 (java_lexer): New structure.
7550 (UNGETC): Removed.
7551 (GETC): Removed.
7552 (DEFAULT_ENCODING): New define.
7553 (java_destroy_lexer): Declare.
7554
7555 2000-09-12 Tom Tromey <tromey@cygnus.com>
7556
7557 Fix for PR gcj/343:
7558 * lex.c (java_init_lex): Initialize java_io_serializable.
7559 * parse.y (java_io_serializable): New global.
7560 (valid_ref_assignconv_cast_p): An array can be cast to
7561 serializable.
7562
7563 2000-09-10 Zack Weinberg <zack@wolery.cumb.org>
7564
7565 * decl.c, expr.c: Include defaults.h if not already included.
7566 Don't define the *_TYPE_SIZE macros.
7567
7568 2000-09-09 Geoffrey Keating <geoffk@cygnus.com>
7569
7570 * typeck.c (build_java_array_type): Correct first parameter
7571 in ADJUST_FIELD_ALIGN invocation.
7572
7573 2000-09-06 Tom Tromey <tromey@cygnus.com>
7574
7575 * lang-specs.h: Also recognize `-femit-class-files'.
7576
7577 2000-09-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
7578
7579 * verify.c (merge_types): Load the types to merge if necessary.
7580
7581 2000-09-02 Anthony Green <green@redhat.com>
7582
7583 * jcf-io.c: Include zlib.h.
7584 (open_in_zip): Read compressed class file archives.
7585 * zipfile.h (ZipDirectory): Add uncompressed_size and
7586 compression_method fields.
7587 * zextract.c (read_zip_archive): Collect file compression info.
7588
7589 2000-08-15 Bryce McKinlay <bryce@albatross.co.nz>
7590
7591 * parse.y (do_resolve_class): Also explore superclasses of
7592 intermediate enclosing contexts when searching for inner classes.
7593
7594 2000-08-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
7595
7596 * parse.y (variable_declarator_id:): Better error message.
7597 (expression_statement:): Use YYNOT_TWICE.
7598 (cast_expression:): Likewise.
7599 (assignment:): Likewise.
7600
7601 2000-08-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
7602
7603 * parse.y (do_merge_string_cste): New locals. Create new
7604 STRING_CSTs each time, use memcpy. Fixes gcj/311.
7605
7606 2000-08-07 Hans Boehm <boehm@acm.org>
7607
7608 * boehm.c (mark_reference_fields): Set marking bits for all words in
7609 a multiple-word record.
7610 (get_boehm_type_descriptor): Use the procedure marking descriptor for
7611 java.lang.Class.
7612
7613 2000-08-31 Mike Stump <mrs@wrs.com>
7614
7615 * Make-lang.in (jc1$(exeext), gcjh$(exeext), jv-scan$(exeext),
7616 jcf-dump$(exeext)): Make parallel safe.
7617
7618 2000-08-29 Zack Weinberg <zack@wolery.cumb.org>
7619
7620 * jcf-parse.c (set_source_filename): Constify a char *.
7621 * jcf-write.c (append_innerclasses_attribute,
7622 make_class_file_name): Constify a char *. Don't recycle a
7623 variable for an unrelated purpose.
7624 * parse.y: (build_alias_initializer_parameter_list): Constify a char *.
7625 (breakdown_qualified): Do not modify IDENTIFIER_POINTER strings.
7626
7627 2000-08-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
7628
7629 * expr.c (can_widen_reference_to): Fixed indentation.
7630 * java-tree.h (CLASS_METHOD_CHECKED_P): Added leading comment.
7631 * parse.y: `finit$' replaces `$finit$' in comments.
7632 (try_builtin_assignconv): Fixed leading comment.
7633
7634 2000-08-25 Greg McGary <greg@mcgary.org>
7635
7636 * gjavah.c (cxx_keyword_subst): Use ARRAY_SIZE.
7637
7638 2000-08-24 Greg McGary <greg@mcgary.org>
7639
7640 * lang.c (lang_decode_option): Use ARRAY_SIZE.
7641 * parse.y (BINOP_LOOKUP): Likewise.
7642
7643 2000-08-22 Andrew Haley <aph@cygnus.com>
7644
7645 * javaop.h (WORD_TO_INT): Mask lower 32 bits of a jword before
7646 sign extending. Fixes gcj/321.
7647 * jcf-parse.c (get_constant): Mask lower 32 bits of a jint before
7648 combining to make a jlong. Fixes gcj/321.
7649
7650 2000-08-21 Nix <nix@esperi.demon.co.uk>
7651
7652 * lang-specs.h: Do not process -o or run the assembler if
7653 -fsyntax-only.
7654
7655 2000-08-16 Andrew Haley <aph@cygnus.com>
7656
7657 * typeck.c (build_java_array_type): Rewrite code to do array
7658 alignment. Take into account back-end macros when aligning array
7659 data. Remove setting of TYPE_USER_ALIGN; Java doesn't allow the
7660 user to set alignment. Fixes gcj/252 and 160.
7661
7662 2000-08-09 Tom Tromey <tromey@cygnus.com>
7663
7664 * parse.y (check_abstract_method_definitions): Now return `int'.
7665 Check implemented interfaces. Fixes PR gcj/305.
7666
7667 * parse.y (patch_switch_statement): Disallow `long' in switch
7668 expressions. Fixes PR gcj/310.
7669
7670 2000-08-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
7671
7672 * decl.c (finit_leg_identifier_node): New global.
7673 (init_decl_processing): Use `finit$' to initialize
7674 finit_identifier_node. Use `$finit$' to initialize
7675 finit_leg_identifier_node.
7676 * expr.c (expand_java_field_op): Use ID_FINIT_P.
7677 * java-tree.h (finit_identifier_node): Changed attached comment.
7678 (finit_leg_identifier_node): New declaration.
7679 (ID_FINIT_P): Take finit_identifier_node and
7680 finit_leg_identifier_node into account. This is a backward
7681 compatibility hack.
7682
7683 2000-08-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
7684
7685 * jcf-write.c (generate_bytecode_conditional): Re-installed lost
7686 Jan 6 2000 patch.
7687 (generate_bytecode_insns): Check `nargs' before emitting it.
7688 * verify.c (merge_type_state): Fixed typo.
7689 * ChangeLog: Fixed typo in some jcf-write.c entries mentioning
7690 generate_bytecode_{conditional,insns}.
7691
7692 2000-08-13 Anthony Green <green@redhat.com>
7693
7694 * check-init.c (check_init): Add case for BIT_FIELD_REF (required
7695 for -pg builds).
7696
7697 2000-08-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7698
7699 * class.c (maybe_layout_super_class): Fixed indentation.
7700 * java-tree.h (CLASS_METHOD_CHECKED_P): New macro.
7701 (java_check_methods): New function declaration.
7702 * jcf-parse.c (get_constant): Let `char_len' go up to 3. Use `str'
7703 instead of `str_ptr'.
7704 * jcf-write.c (generate_bytecode_insns): Emit number the of args
7705 of a `invokeinterface' at the right time.
7706 * parse.h (WFL_STRIP_BRACKET): New macro.
7707 (SET_TYPE_FOR_RESOLUTION): Use it.
7708 * parse.y (build_unresolved_array_type): Reuse `type_or_wfl'.
7709 (check_class_interface_creation): Don't check for cross package
7710 innerclass name clashes.
7711 (method_header): Behave properly if MDECL is `error_mark_node'.
7712 (method_declarator): Return `error_mark_node' if bogus current
7713 class.
7714 (resolve_class): Apply WFL_STRIP_BRACKET on `cl' if necessary.
7715 (resolve_and_layout): New local `decl_type', set and used. Call
7716 java_check_methods.
7717 (java_check_methods): New method.
7718 (java_layout_classes): Use it.
7719 (resolve_qualified_expression_name): No EH check necessary in
7720 access$<n>.
7721 (java_complete_lhs): Use VAR_DECL's DECL_INITIAL when evaluating
7722 `case' statement.
7723 (patch_assignment): Set DECL_INITIAL on integral final local.
7724
7725 2000-08-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
7726
7727 * java-tree.h (flag_extraneous_semicolon): New extern.
7728 * lang-options.h: (-Wextraneous-semicolon): New option.
7729 * lang.c (flag_redundant): Fixed typo in leading comment.
7730 (flag_extraneous_semicolon): New global.
7731 (lang_decode_option): Set `flag_extraneous_semicolon' when
7732 -Wall. Decode `-Wextraneous-semicolon'.
7733 * parse.y (type_declaration:): Removed `SC_TK' hack, added
7734 `empty_statement' rule.
7735 (class_body_declaration): Likewise.
7736 (method_body:): Accept `;' as a method body.
7737 (static_initializer:): Removed `SC_TK' hack.
7738 (constructor_block_end:): Likewise.
7739 (empty_statement:): Report deprecated empty declaration. Fixes
7740 gcj/295
7741
7742 2000-08-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7743
7744 * parse.y (build_dot_class_method_invocation): Changed parameter
7745 name to `type'. Build signature from `type' and convert it to a
7746 STRING_CST if it's an array.
7747 (patch_incomplete_class_ref): `build_dot_class_method_invocation'
7748 to use `ref_type' directly.
7749
7750 2000-08-06 Ovidiu Predescu <ovidiu@cup.hp.com>
7751
7752 * lang-options.h: Added a comma after the last element to avoid
7753 syntax errors when other languages define additional options.
7754
7755 2000-08-04 Zack Weinberg <zack@wolery.cumb.org>
7756
7757 * Make-lang.in (jc1, jv-scan): Depend on $(BACKEND), not stamp-objlist.
7758 * Makefile.in: Add BACKEND; delete OBJS, OBJDEPS.
7759 (jc1): Link with $(BACKEND).
7760 (jv-scan): Depend on version.o, not all of $(OBJS) or $(BACKEND).
7761
7762 2000-08-02 Zack Weinberg <zack@wolery.cumb.org>
7763
7764 * jvspec.c: Adjust type of second argument to
7765 lang_specific_driver, and update code as necessary.
7766
7767 * class.c (build_dtable_decl): Initialize dummy.
7768
7769 2000-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7770
7771 * parse.y (maybe_yank_clinit): When generating bytecode: non empty
7772 method bodies not to rule out discarding `<clinit>'; don't use
7773 <clinit> to initialize static fields with constant initializers.
7774
7775 2000-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7776
7777 * gjavah.c (print_method_info): Added `synth' parameter. Skip
7778 synthetic methods.
7779 (method_synthetic): New global.
7780 (HANDLE_METHOD): Recognize synthetic method and tell
7781 `print_method_info' about it.
7782 (HANDLE_END_METHOD): Do not issue an additional `;\n' if we're
7783 processing a synthetic method.
7784 * jcf-reader.c (skip_attribute): New function.
7785 ( skip_attribute): Likewise.
7786
7787 2000-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
7788
7789 * parse.y (build_outer_field_access): Fixed comments.
7790 (fix_constructors): Emit the initialization of this$<n> before
7791 calling $finit$.
7792 (resolve_qualified_expression_name): Build an access to `decl' if
7793 necessary.
7794
7795 2000-07-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
7796
7797 * parse-scan.y (curent_class): Non longer const.
7798 (inner_qualifier, inner_qualifier_length): Deleted.
7799 (current_class_length): New global.
7800 (bracket_count): Fixed typo in leading comment.
7801 (anonymous_count): New global.
7802 (class_instance_creation_expression:): Handle anonymous classes.
7803 (anonymous_class_creation:): New rule.
7804 (push_class_context): Rewritten.
7805 (pop_class_context): Likewise.
7806 (INNER_QUALIFIER): Macro deleted.
7807 (report_class_declaration): call `push_class_context' when
7808 entering the function. `fprintf' format modified not to use
7809 INNER_QUALIFIER.
7810 (report_class_declaration): Assign `package_name' and
7811 `current_class' to NULL separately.
7812
7813 2000-07-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
7814
7815 * expr.c (build_invokeinterface): Call layout_class_methods on
7816 target interface.
7817
7818 2000-07-27 Tom Tromey <tromey@cygnus.com>
7819 Anthony Green <green@cygnus.com>
7820 Alexandre Petit-Bianco <apbianco@cygnus.com>
7821
7822 * class.c (make_class_data): Create vtable for abstract classes.
7823 (get_dispatch_table): Changed to cope with abstract classes.
7824
7825 2000-07-27 Tom Tromey <tromey@cygnus.com>
7826
7827 * parse.y (patch_method_invocation): Don't reverse the argument
7828 list when dealing with anonymous class constructors. Fixed typo in
7829 comment.
7830
7831 2000-07-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
7832
7833 * parse.y (build_alias_initializer_parameter_list): Reverse
7834 crafted list when building aliases for anonymous class
7835 constructors.
7836
7837 2000-07-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
7838
7839 * parse.y (jdep_resolve_class): Don't bother checking potential
7840 innerclass access if `decl' is NULL.
7841 (find_in_imports_on_demand): TREE_PURPOSE of `import' contains the
7842 WFL.
7843
7844 2000-07-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
7845
7846 * parse.c: Remove (again.)
7847
7848 2000-07-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
7849
7850 * parse.y (find_as_inner_class): Removed 2000-07-19 patches.
7851 * jcf-parse.c (HANDLE_INNERCLASSES_ATTRIBUTE): Local `decl' moved
7852 outside the `if' statement, alias to innerclass removed, `decl'
7853 used to mark the class complete.
7854
7855 2000-07-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
7856
7857 * parse.y (simple_name:): Fixed typo in error message.
7858
7859 2000-07-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
7860
7861 * parse.y (java_complete_lhs): LOOP_EXPR:, SWITCH_EXPR: the node
7862 or its first operand can be error marks.
7863
7864 2000-07-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
7865
7866 * parse.h (SET_TYPE_FOR_RESOLUTION): Use GET_CPC.
7867 * parse.y (method_header): Likewise.
7868
7869 2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
7870
7871 * parse.y (process_imports): Consider that one might be trying to
7872 import an innerclass. Fixes gcj/254
7873
7874 2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
7875
7876 * parse.y (find_as_inner_class): Handle the case where the
7877 enclosing context of an innerclass has been loaded as bytecode.
7878
7879 2000-07-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
7880
7881 * parse.y (simple_name:): Reject `$' in type names.
7882 (resolve_type_during_patch): Use `type' as a second
7883 argument to resolve_no_layout. Fixes gcj/257.
7884
7885 2000-07-18 Bryce McKinlay <bryce@albatross.co.nz>
7886
7887 * parse.y (find_most_specific_methods_list): Select the only
7888 non-abstract method even if max has been set.
7889 Fixes gcj/285, gcj/298.
7890
7891 2000-07-18 Jeff Sturm <jeff.sturm@appnet.com>
7892
7893 * lang-specs.h: Added %(jc1) to java compiler options.
7894
7895 2000-07-14 Zack Weinberg <zack@wolery.cumb.org>
7896
7897 * .cvsignore: New file.
7898
7899 2000-07-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7900
7901 * parse.y (not_accessible_p): Access granted to innerclasses
7902 (indirectly) extending the reference type. Fixes gcj/249.
7903
7904 2000-07-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7905
7906 * parse.y (patch_method_invocation): Fixed comment.
7907 (maybe_use_access_method): Build this$<n>s to the context of the
7908 target method, or a type that extends it. Fixes gcj/242.
7909
7910 2000-07-13 Mark Mitchell <mark@codesourcery.com>
7911
7912 * parse.c: Remove.
7913
7914 2000-07-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
7915
7916 * parse.y (fold_constant_for_init): Avoid bullish conversion.
7917
7918 2000-07-13 Tom Tromey <tromey@cygnus.com>
7919
7920 * lang-specs.h: Added %{I*}.
7921
7922 2000-07-13 Zack Weinberg <zack@wolery.cumb.org>
7923
7924 * lang-specs.h: Use the new named specs. Remove unnecessary braces.
7925
7926 2000-07-12 Mark Mitchell <mark@codesourcery.com>
7927
7928 * parse-scan.c: Remove.
7929
7930 2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7931
7932 * class.c (set_super_info): Handled protected inner classes.
7933 (common_enclosing_context_p): Bail early if arguments aren't both
7934 inner classes.
7935 (get_access_flags_from_decl): Handle private and protected inner
7936 classes.
7937 * java-tree.h (TYPE_PROTECTED_INNER_CLASS): New macro.
7938 (CLASS_PROTECTED): Likewise.
7939 (struct lang_type): New bitfield `poic'.
7940 * parse.y (jdep_resolve_class): Call check_inner_class_access on
7941 inner classes only.
7942 (check_inner_class_access): Renamed arguments, added
7943 comments. Handles protected inner classes (fixes gcj/225)
7944 (not_accessible_p): Fixed comments. Avoid handling inner classes.
7945
7946 2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7947
7948 * parse.y (resolve_qualified_expression_name): Verify qualified
7949 access to `this'. Fixes gcj/239.
7950
7951 2000-07-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
7952
7953 * jcf-write.c (generate_classfile): Don't install ConstantValue
7954 for null pointers.
7955
7956 2000-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7957
7958 * parse.y (resolve_qualified_expression_name): Handle inner class
7959 access. Fixes gcj/256.
7960
7961 2000-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
7962
7963 * jcf-write.c (generate_classfile): Properly install the
7964 ConstantValue attribute and the initial value constant pool index
7965 on string constants.
7966 * parse.y (java_complete_lhs): Keep DECL_INITIAL when emitting
7967 class files.
7968
7969 2000-07-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
7970
7971 * parse.h (BUILD_PTR_FROM_NAME): Surround with a do/while
7972 construct.
7973 * parse.y (find_as_inner_class): Fixed typo.
7974 (do_resolve_class): Explore enclosing contexts when searching for
7975 innerclasses. Removed curly brackets around BUILD_PTR_FROM_NAME.
7976 (check_inner_class_access): Check `decl' which can be null in case
7977 of previous errors.
7978
7979 2000-07-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
7980
7981 * java-tree.h (java_debug_context): Declared `extern'.
7982 (safe_layout_class): Likewise.
7983 * parse.y (resolve_field_access): Field must be `static' in order
7984 to be replaced by its initial value. Added comments.
7985 (find_applicable_accessible_methods_list): Fixed typo.
7986 (find_most_specific_methods_list): Methods found in innerclasses
7987 take over methods founds in the enclosing contexts.
7988 (java_complete_tree): Loosen restrictions on the type of DECLs
7989 that can be replaced by their initialization values.
7990 (valid_ref_assignconv_cast_p): Removed call to `enclosing_context_p'.
7991
7992 2000-07-05 Tom Tromey <tromey@cygnus.com>
7993
7994 * Make-lang.in (PARSE_DIR): New macro.
7995 (PARSE_RELDIR): Likewise.
7996 (PARSE_C): Likewise.
7997 (PARSE_SCAN_C): Likewise.
7998 ($(PARSE_C)): New target.
7999 ($(PARSE_SCAN_C)): Likewise.
8000 (SET_BISON): New macro.
8001 (BISONFLAGS): Likewise.
8002 (JAVABISONFLAGS): Likewise.
8003
8004 2000-07-02 Bryce McKinlay <bryce@albatross.co.nz>
8005
8006 * gjavah.c (HANDLE_METHOD): Call print_method_info with a NULL stream
8007 argument on the first pass for CNI as well as JNI.
8008 (print_method_info): Set up method name on the first pass only.
8009
8010 2000-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8011
8012 * parse.y (parser_qualified_classname): Removed parameter
8013 `is_static'.
8014 (create_interface): Removed first passed parameter to
8015 parser_qualified_classname.
8016 (create_class): Likewise. Don't install alias on static
8017 innerclasses. Fixes gcj/275.
8018
8019 2000-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8020
8021 * parse.y (maybe_generate_pre_expand_clinit): Don't build a
8022 debugable statement with empty_stmt_node. Fixes gcj/272
8023
8024 2000-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8025
8026 * expr.c (build_instanceof): Layout type after it's loaded. Fixes
8027 gcj/271.
8028
8029 2000-06-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
8030
8031 * jcf-write.c (push_long_const): Appropriately cast short negative
8032 constant to jword.
8033
8034 2000-06-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
8035
8036 * parse.y (verify_constructor_super): Use loop variable
8037 `m_arg_type' initialized with `mdecl_arg_type'.
8038
8039 2000-06-29 Tom Tromey <tromey@cygnus.com>
8040
8041 * parse.y (resolve_field_access): Handle case where `type_found'
8042 is NULL.
8043
8044 2000-06-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8045
8046 * expr.c (lookup_field): The same field can be found through two
8047 different interface. Don't declare it ambiguous in that case.
8048
8049 2000-06-27 Tom Tromey <tromey@cygnus.com>
8050
8051 * lex.c (java_lineterminator): Don't recognize \r after \n. If \r
8052 follows \r, then unget it at a lower level.
8053
8054 2000-06-26 Tom Tromey <tromey@cygnus.com>
8055
8056 * parse.y (resolve_field_access): Pass decl, not DECL_INITIAL, to
8057 java_complete_tree.
8058
8059 2000-06-25 Tom Tromey <tromey@cygnus.com>
8060
8061 * parse.y (for_statement): Wrap expression in a WFL if it is a
8062 constant. For PR gcj/268.
8063
8064 2000-06-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
8065
8066 * parse.y (do_resolve_class): Minor optimiztion in the package
8067 list search. Removed unnecessary test and return statement.
8068 (valid_ref_assignconv_cast_p): Order of arguments to
8069 enclosing_context_p fixed.
8070
8071 2000-06-24 Tom Tromey <tromey@cygnus.com>
8072
8073 * expr.c (lookup_field): Print error and return error_mark_node if
8074 field reference is ambiguous.
8075
8076 * parse.y (check_abstract_method_definitions): Also check if
8077 `other_method' is abstract.
8078
8079 2000-06-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
8080
8081 * class.c (set_super_info): Handle ACC_PRIVATE for (inner)
8082 classes.
8083 * java-tree.h (TYPE_PRIVATE_INNER_CLASS): New macro.
8084 (struct lang_type): New field `pic'.
8085 (CLASS_PRIVATE): New macro.
8086 * parse.y (check_inner_class_access): New function.
8087 (jdep_resolve_class): Call it.
8088
8089 2000-06-23 Tom Tromey <tromey@cygnus.com>
8090
8091 * parse.y (patch_incomplete_class_ref): Initialize the returned
8092 class. For PR gcj/260.
8093
8094 2000-06-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
8095
8096 * except.c (prepare_eh_table_type): Use `CATCH_ALL_TYPE'.
8097
8098 2000-06-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
8099
8100 * check-init.c (ENABLE_JC1_CHECKING): Replaces ENABLE_CHECKING for
8101 Java specific checks.
8102 * expr.c (build_instanceof): CLASS_INTERFACE and CLASS_FINAL usage
8103 screened by DECL_P.
8104 * java-tree.def (CASE_EXPR): Marked 'e'.
8105 (DEFAULT_EXPR): Likewise.
8106 * jcf-parse.c (set_source_filename): CLASS_COMPLETE_P usage
8107 screened by DECL_P.
8108 * jcf-write.c (ENABLE_JC1_CHECKING): Replaces ENABLE_CHECKING for
8109 Java specific checks.
8110 (generate_bytecode_insns): Test try_block for BLOCK before using
8111 BLOCK_EXPR_BODY.
8112 * parse.y (build_wfl_wrap): Added `location' argument. Set
8113 EXPR_WFL_LINECOL accordingly.
8114 (dim_expr:): Wrap constants with WFLs.
8115 (method_declarator): Use TREE_TYPE not TYPE_NAME on GET_CPC.
8116 (resolve_package): Check for `stmt' not being a BLOCK before
8117 building a debuggable statement with it.
8118 (make_qualified_primary): Added extra parameter to build_wfl_wrap
8119 invocation.
8120 (resolve_field_access): Make sure `decl' is a DECL before treating
8121 it as such.
8122 (maybe_build_primttype_type_ref): Make sure `wfl''s node is an
8123 IDENTIFIER_NODE before treating it as such.
8124 (patch_new_array_init): Make sure `elt' is a TREE_LIST before
8125 treating it as such.
8126 (find_applicable_accessible_methods_list): CLASS_INTERFACE macro
8127 to be applied only on non array types.
8128
8129 2000-06-16 Per Bothner <per@bothner.com>
8130
8131 * java-tree.h (LABEL_RETURN_LABELS, LABEL_PENDING_CHAIN): Don't
8132 define in terms of DECL_RESULT, as that fails when --enable-checking.
8133
8134 2000-06-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8135
8136 * jcf-write.c (CHECK_PUT): Add static prototype. Make pointer
8137 types the same in comparison.
8138 (CHECK_OP): Add static prototype.
8139
8140 2000-06-13 Jakub Jelinek <jakub@redhat.com>
8141
8142 * typeck.c (build_java_array_type): Set TYPE_USER_ALIGN.
8143 * parse.y (java_complete_class): Set DECL_USER_ALIGN.
8144 * parse.c: Rebuilt.
8145
8146 2000-06-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8147
8148 * decl.c (create_primitive_vtable): Prototype.
8149
8150 * jcf-write.c (generate_bytecode_insns): Initialize variable
8151 `saved_context'.
8152
8153 * lang.c (lang_get_alias_set): Mark parameter with ATTRIBUTE_UNUSED.
8154
8155 2000-06-09 Bryce McKinlay <bryce@albatross.co.nz>
8156
8157 * parse.y (find_applicable_accessible_methods_list): Use a hashtable
8158 to track searched classes, and do not search the same class more than
8159 once. Call find_applicable_accessible_methods_list on immediate
8160 superclass, instead of search_applicable_method_list on all ancestors.
8161 Fix for PR gcj/238.
8162
8163 2000-06-09 Bryce McKinlay <bryce@albatross.co.nz>
8164
8165 * parse.y (register_fields): Permit static fields in inner classes
8166 if they are final. Fix for PR gcj/255.
8167
8168 2000-06-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
8169
8170 * parse.h (REGISTER_IMPORT): Use `chainon' to link new entries.
8171 * parse.y (find_in_imports): Returned type changed to void,
8172 leading comment fixed.
8173 (register_package): New function.
8174 (qualify_and_find): Likewise.
8175 (package_declaration:): Use `register_package'.
8176 (single_type_import_declaration:): Removed local variable
8177 `node'. Added missing `;' for consistency.
8178 (type_import_on_demand_declaration:): Use `chainon' to link new
8179 entries.
8180 (lookup_field_wrapper): Lookup local variables defined in outer
8181 contexts first.
8182 (java_complete_class): Don't reverse the list of imported on demand.
8183 (do_resolve_class): Reorganized. Removed local variable
8184 `original_name'. Call `qualify_and_find' with the current package
8185 name, invoke `find_in_imports_on_demand' right after. Call
8186 `qualify_and_find' with the packages we've seen so far. Fixed
8187 operations numbering in comments.
8188 (java_expand_class): Don't reverse `package_list'.
8189 (find_most_specific_methods_list): New local variables `abstract'
8190 and `candidates'. Use them to pick the right method.
8191
8192 2000-06-06 Tom Tromey <tromey@ferrule.cygnus.com>
8193
8194 * parse.y (check_modifiers_consistency): Don't subtract out
8195 `PUBLIC_TK' from argument to THIS_MODIFIER_ONLY.
8196
8197 2000-06-04 Philipp Thomas <pthomas@suse.de>
8198
8199 * Makefile.in (INTLLIBS): New.
8200 (LIBS): Add above.
8201 (DEPLIBS): Ditto.
8202
8203 2000-06-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8204
8205 * class.c (get_dispatch_table): Build the vtable dummy entry list
8206 element with a null purpose. Fixed leading comment.
8207 (build_dtable_decl): Build an accurate dtable type when appropriate
8208 and use it.
8209
8210 2000-06-02 Richard Henderson <rth@cygnus.com>
8211
8212 * lang.c (lang_get_alias_set): New.
8213
8214 2000-05-31 Alexandre Petit-Bianco <apbianco@cygnus.com>
8215
8216 * parse.y (resolve_field_access): Complete the DECL_INITIAL tree
8217 before using it as the accessed field.
8218
8219 2000-05-31 Tom Tromey <tromey@cygnus.com>
8220
8221 * java-tree.h (boolean_array_vtable, byte_array_vtable,
8222 char_array_vtable, short_array_vtable, int_array_vtable,
8223 long_array_vtable, float_array_vtable, double_array_vtable):
8224 Declare.
8225 * expr.c (get_primitive_array_vtable): New function.
8226 (create_primitive_vtable): New function.
8227 (java_lang_expand_expr): Enable code to statically generate
8228 arrays.
8229 * decl.c (init_decl_processing): Create primitive vtables.
8230 (boolean_array_vtable, byte_array_vtable, char_array_vtable,
8231 short_array_vtable, int_array_vtable, long_array_vtable,
8232 float_array_vtable, double_array_vtable): Define.
8233
8234 2000-05-26 Zack Weinberg <zack@wolery.cumb.org>
8235
8236 * java/parse.y (find_applicable_accessible_methods_list):
8237 Don't add an uninitialized value to the list.
8238
8239 2000-05-25 Tom Tromey <tromey@cygnus.com>
8240
8241 * parse.y (resolve_field_access): Don't check DECL_LANG_SPECIFIC
8242 when trying to see if field's class should be initialized. Always
8243 initialize field's declaring class, not qualified class.
8244 For PR gcj/162.
8245
8246 * parse.y (array_constructor_check_entry): Pass `wfl_value', not
8247 `wfl_operator', to maybe_build_primttype_type_ref.
8248 Fixes PR gcj/235.
8249
8250 2000-05-23 Bryce McKinlay <bryce@albatross.co.nz>
8251
8252 * parse.y (patch_method_invocation): Don't try to lookup methods
8253 in primitive types.
8254
8255 2000-05-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8256
8257 * parse.y (resolve_field_access): Call the appropriate <clinit>
8258 before accessing the length of a static array. Craft a decl for
8259 the field while its time. Fixes PR gcj/129.
8260
8261 2000-05-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8262
8263 * parse.y (resolve_package): Correctly set `*next' (was off by
8264 one.)
8265 (resolve_qualified_expression_name): Fixed comment.
8266
8267 2000-04-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8268
8269 * jcf-parse.c (jcf_parse_source): Reset current_class and
8270 current_function_decl to NULL before parsing a new file.
8271
8272 2000-04-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8273
8274 * parse.y (block_end:): If the collected block doesn't feature a
8275 statement, insert an empty statement.
8276
8277 2000-04-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8278
8279 * parse.y (maybe_yank_clinit): New function.
8280 (maybe_generate_pre_expand_clinit): Always link <clinit> at the
8281 end of the list of methods belonging to a class.
8282 (java_complete_expand_method): Check whether <clinit> is really
8283 necessary and expand it accordingly.
8284
8285 2000-04-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8286
8287 * parse.y (fold_constant_for_init): Let VAR_DECL and FIELD_DECL be
8288 processed by the method's switch statement.
8289
8290 2000-05-19 Tom Tromey <tromey@cygnus.com>
8291
8292 * java-tree.h: Added init state enum.
8293 * decl.c (emit_init_test_initialization): Initialize class
8294 initialization check variable by looking at class' state.
8295
8296 2000-05-19 Tom Tromey <tromey@cygnus.com>
8297
8298 * java-tree.h (build_instanceof): Declare.
8299 (build_get_class): Declare.
8300 * parse.y (patch_binop): Use build_instanceof.
8301 * expr.c (build_instanceof): New function. If class is final,
8302 don't make a function call.
8303 (expand_java_INSTANCEOF): Use it.
8304 (build_get_class): New function.
8305
8306 2000-05-18 Alexandre Oliva <oliva@lsd.ic.unicamp.br>
8307
8308 * jcf-write.c (generate_classfile): Scan the source_file for
8309 slashes with the right pointer variable.
8310
8311 2000-05-17 Andrew Cagney <cagney@b1.cygnus.com>
8312
8313 * lang.c (lang_decode_option): Update -Wunused flags by calling
8314 set_Wunused.
8315 * decl.c (poplevel): Replace warn_unused with warn_unused_label.
8316
8317 2000-05-09 Zack Weinberg <zack@wolery.cumb.org>
8318
8319 * check_init.c (check_init): Constify local char *.
8320 * class.c (push_class): Constify local char *.
8321 * java_tree.h: Update prototypes.
8322 * jcf-io.c (open_class): Constify filename parameter and
8323 return value.
8324 (find_class): Remove redundant string copy. Cast return from
8325 open_class.
8326 * jcf-parse.c (read_class, parse_class_file, yyparse):
8327 Constify local char *.
8328 * jcf-write.c (generate_bytecode_insns, generate_classfile):
8329 Constify local char *.
8330 * jcf.h (JCF): Constify filename and classname.
8331 (JCF_FINISH): Cast args to FREE to char * when appropriate.
8332 * lang.c (init_parse): Constify parameter and return value.
8333 * lex.c (java_get_line_col): Constify filename parameter.
8334 * parse.h: Constify parser_ctxt.filename. Update prototypes.
8335 * parse.y (java_parser_context_suspend,
8336 issue_warning_error_from_context, safe_layout_class): Constify
8337 local char *.
8338 * parse.c: Regenerate.
8339
8340 2000-05-08 Tom Tromey <tromey@cygnus.com>
8341
8342 * expr.c (build_jni_stub): Cache the result of
8343 _Jv_LookupJNIMethod.
8344
8345 2000-05-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8346
8347 * decl.c (predef_filenames_size): Now 7.
8348 (predef_filenames): New seventh entry.
8349
8350 2000-05-04 Tom Tromey <tromey@cygnus.com>
8351
8352 * boehm.c (mark_reference_fields): Don't mark RawData fields.
8353 Keep track of when we've seen a reference field after a
8354 non-reference field.
8355 (get_boehm_type_descriptor): Handle case where we see
8356 non-reference fields but no trailing reference field.
8357 * decl.c (rawdata_ptr_type_node): Define.
8358 (init_decl_processing): Initialize rawdata_ptr_type_node.
8359 * java-tree.h (rawdata_ptr_type_node): Declare.
8360
8361 2000-05-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8362
8363 * jcf-dump.c (SPECIAL_IINC): Ensure arguments match format
8364 specifiers in calls to fprintf.
8365
8366 2000-05-03 Andrew Haley <aph@cygnus.com>
8367
8368 * expr.c (build_java_jsr): Use emit_jump, not expand_goto.
8369
8370 * javaop.h (WORD_TO_INT): New function.
8371 (IMMEDIATE_s4): Use WORD_TO_INT.
8372 * jcf.h (JPOOL_INT): Ditto.
8373
8374 * gjavah.c (decode_signature_piece): Don't treat `$' as namespace
8375 separator.
8376
8377 2000-04-19 Tom Tromey <tromey@cygnus.com>
8378
8379 * class.c (add_method_1): Set both DECL_EXTERNAL and METHOD_NATIVE
8380 on native function.
8381 * jcf-parse.c (parse_class_file): Call build_jni_stub for native
8382 JNI methods.
8383 * expr.c (build_jni_stub): New function.
8384 * lang-specs.h: -fjni and -femit-class-file are incompatible.
8385 * parse.c: Rebuilt.
8386 * parse.y (java_complete_expand_methods): Expand a native method
8387 and call build_jni_stub if -fjni given.
8388 * lang-options.h: Document -fjni.
8389 * lang.c (flag_jni): New global.
8390 (lang_f_options): Added `jni' entry.
8391 * java-tree.h (soft_lookupjnimethod_node,
8392 soft_getjnienvnewframe_node, soft_jnipopsystemframe_node):
8393 Declare.
8394 (flag_jni): Declare.
8395 (build_jni_stub): Declare.
8396 (struct lang_decl): Added `native' flag.
8397 (METHOD_NATIVE): Redefined to use `native' field of lang specific
8398 structure.
8399 * decl.c (soft_lookupjnimethod_node, soft_getjnienvnewframe_node,
8400 soft_jnipopsystemframe_node): New globals.
8401 (init_decl_processing): Set them. _Jv_InitClass only takes one
8402 argument.
8403
8404 * java-tree.def: Put into `C' mode.
8405
8406 2000-04-27 Tom Tromey <tromey@cygnus.com>
8407
8408 Fix for PR gcj/2:
8409 * expr.c (expand_invoke): Generate check to see if object pointer
8410 is null in nonvirtual invocation case.
8411 * java-tree.h (soft_nullpointer_node): Declare.
8412 * decl.c (soft_nullpointer_node): New global.
8413 (init_decl_processing): Initialize soft_nullpointer_node.
8414 * parse.y (invocation_mode): Return INVOKE_NONVIRTUAL for `final'
8415 or `private' methods.
8416 (patch_invoke): Handle INVOKE_NONVIRTUAL case.
8417
8418 2000-04-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
8419
8420 * decl.c (complete_start_java_method): Don't call _Jv_InitClass
8421 from <clinit>
8422
8423 2000-04-26 Tom Tromey <tromey@cygnus.com>
8424
8425 * zextract.c (find_zip_file_start): New function.
8426 (read_zip_archive): Use it.
8427
8428 2000-04-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
8429
8430 * parse.y (register_incomplete_type): Handle JDEP_ANONYMOUS.
8431
8432 2000-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
8433
8434 * class.c (common_enclosing_context_p): New function.
8435 * java-tree.h (common_enclosing_context_p): Added prototype.
8436 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Relaxed test to allow
8437 classes sharing an outer context with the current instance.
8438 * parse.y (build_access_to_thisn): Fixed leading comment.
8439 (verify_constructor_super): New local `supper_inner'. Skip
8440 enclosing context argument in the case of inner class constructors.
8441 (patch_method_invocation): Insert proper context as second
8442 parameter to pure inner class constructor super invocations.
8443
8444 2000-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
8445
8446 * parse.y (end_class_declaration): Reset the interface number
8447 counter.
8448
8449 2000-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
8450
8451 * parse.y (source_start_java_method): Deleted unnecessary code.
8452 (patch_method_invocation): Fixed comment.
8453
8454 2000-04-24 Robert Lipe <robertlipe@usa.net>
8455
8456 * parse.h (_jdep): Member `kind' now ENUM_BITFIELD.
8457
8458 2000-04-23 Tom Tromey <tromey@cygnus.com>
8459
8460 * boehm.c (mark_reference_fields): Use int_byte_position.
8461
8462 2000-04-22 Tom Tromey <tromey@cygnus.com>
8463
8464 * boehm.c (mark_reference_fields): Only call byte_position on
8465 non-static fields.
8466
8467 2000-04-22 Tom Tromey <tromey@cygnus.com>
8468
8469 * boehm.c (mark_reference_fields): Added `last_view_index'
8470 argument. Use DECL_FIELD_OFFSET to determine field's offset.
8471
8472 2000-04-20 Mo DeJong <mdejong@cygnus.com>
8473
8474 * parse.h (INTERFACE_INNER_MODIFIERS): New macro.
8475 * parse.y (check_class_interface_creation): Fixed comments. Select
8476 permitted modifiers for (inner) interfaces. Changed error message
8477 to report rejected modifiers used with local classes.
8478
8479 2000-04-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
8480
8481 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Immediate inner classes
8482 of directly inherited type considered in scope.
8483 * parse.y (do_resolve_class): Search inherited classes for inner
8484 classes.
8485
8486 2000-04-20 Tom Tromey <tromey@cygnus.com>
8487
8488 * parse.y (not_accessible_p): Use member's class, not current
8489 class, when doing inheritance check for protected reference.
8490 Fixes PR gcj/124.
8491
8492 2000-04-20 Jason Schroeder <shrode@subnature.com>
8493
8494 * jcf-dump.c (SPECIAL_IINC): Fixed typo printing iinc instruction.
8495
8496 2000-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
8497
8498 * parse.y (lookup_field_wrapper): Search for final local aliases.
8499 (resolve_expression_name): Let lookup_field_wrapper search for
8500 final local aliases. Force the value of `name' if one is found.
8501 (qualify_ambiguous_name): CONVERT_EXPR is enough to now we have
8502 an expression name. Fixed comments.
8503
8504 2000-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
8505
8506 * parse.y (yyerror): `msg' can be null, don't use it in that case.
8507
8508 2000-04-19 Tom Tromey <tromey@cygnus.com>
8509
8510 * gjavah.c (cxx_keyword_subst): Avoid potential infinite loop.
8511
8512 2000-04-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
8513
8514 * parse.y (maybe_make_nested_class_name): Use `obstack_grow0'.
8515
8516 2000-04-18 Tom Tromey <tromey@cygnus.com>
8517
8518 PR gcj/211:
8519 * gjavah.c (utf8_cmp): Changed return value.
8520 (cxx_keyword_subst): Handle all C++ keywords. Allocate new return
8521 result.
8522 (cxx_keywords): New global.
8523 (get_field_name): Handle new result of cxx_keyword_subst.
8524 (print_method_info): Likewise.
8525
8526 2000-04-17 Bryce McKinlay <bryce@albatross.co.nz>
8527
8528 * gjavah.c (print_name_for_stub_or_jni): Don't prefix method names
8529 with a newline, for CNI.
8530 (print_stub_or_jni): Print a space or newline before method name for
8531 CNI as well as JNI.
8532 (print_cxx_classname): Don't write leading "::" in CNI stub method.
8533 (process_file): Include gcj/cni.h if generating CNI stubs.
8534
8535 2000-04-16 Tom Tromey <tromey@cygnus.com>
8536
8537 * gjavah.c (decompile_method): Use print_field_name.
8538 Fixes PR gcj/205.
8539
8540 2000-04-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
8541
8542 * parse.y (java_expand_classes): Reverse the package list once.
8543 (java_complete_lhs): PLUS_EXPR: don't try rhs and lhs at string
8544 reduction.
8545 (patch_binop): New temp `cn'. Call patch_string on LHS/RHS of
8546 the `==' and `!=' operators.
8547
8548 2000-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8549
8550 * jcf-write.c (generate_bytecode_insns): At invocation time,
8551 always relate an interface method to the type of its selector.
8552
8553 2000-04-05 Tom Tromey <tromey@cygnus.com>
8554
8555 Fix for PR gcj/2:
8556 * expr.c (expand_invoke): Generate check to see if object pointer
8557 is null in nonvirtual invocation case.
8558 * java-tree.h (soft_nullpointer_node): Declare.
8559 * decl.c (soft_nullpointer_node): New global.
8560 (init_decl_processing): Initialize soft_nullpointer_node.
8561 * parse.y (invocation_mode): Return INVOKE_NONVIRTUAL for `final'
8562 or `private' methods.
8563 (patch_invoke): Handle INVOKE_NONVIRTUAL case.
8564
8565 2000-04-05 Tom Tromey <tromey@cygnus.com>
8566
8567 Fix for PR gcj/140:
8568 * parse.y (check_final_assignment): Recognize assignments to the
8569 `length' field of an array when generating class files.
8570
8571 2000-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8572
8573 * class.c (decl_hash): Prototype removed.
8574 (decl_compare): Likewise.
8575
8576 2000-04-05 Tom Tromey <tromey@cygnus.com>
8577
8578 * parse.h (THIS_MODIFIER_ONLY): Changed meaning of `v' parameter.
8579 * parse.y (check_modifiers_consistency): Check for final/volatile
8580 clash. Fixes PR gcj/164.
8581
8582 2000-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
8583
8584 * class.c: (java_hash_hash_tree_node): Renamed from `decl_hash',
8585 made global.
8586 (java_hash_compare_tree_node): Renamed from `decl_compare, made
8587 global.
8588 (add_method_1): Use `java_hash_hash_tree_node' and
8589 `java_hash_compare_tree_node'.
8590 * java-tree.h: (java_hash_hash_tree_node): Prototyped.
8591 (java_hash_compare_tree_node): Likewise.
8592 * parse.y (find_applicable_accessible_methods_list): Create,
8593 delete and use a hash table to remember already searched interfaces.
8594
8595 2000-04-03 Matt Welsh <mdw@cs.berkeley.edu>
8596
8597 * jcf-depend.c (add_entry): Fixed bug where list was always replaced
8598 with latest entry.
8599
8600 2000-04-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8601
8602 * boehm.c (mark_reference_fields, set_bit): Prototype.
8603 (set_bit): Un-ANSI-fy definition.
8604
8605 * class.c (init_test_hash_newfunc, decl_hash, decl_compare):
8606 Prototype.
8607
8608 * decl.c (emit_init_test_initialization): Likewise.
8609
8610 * gjavah.c (jni_print_char): Likewise.
8611
8612 * parse.y (create_new_parser_context): Likewise.
8613
8614 2000-03-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
8615
8616 * expr.c (java_lang_expand_expr): Added Anthony's Thu Jan 6 2000
8617 patch missing hunk. Fixed indentation.
8618
8619 2000-03-30 Tom Tromey <tromey@cygnus.com>
8620
8621 * gjavah.c (D_NAN_MASK): Only define as word-reversed when
8622 HOST_FLOAT_WORDS_BIG_ENDIAN and HOST_WORDS_BIG_ENDIAN disagree.
8623
8624 2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
8625
8626 * parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
8627 when negative *before* using it as an array index.
8628 * ChangeLog: Fixed typo.
8629
8630 2000-03-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
8631
8632 * parse-scan.y (pop_class_context): Reset `inner_qualifier_length'
8633 to 0 when it reaches -1.
8634
8635 2000-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
8636
8637 * jcf-parse.c (get_constant): Properly cast `num' during the
8638 invocation of `add_double'.
8639 * jcf-write.c (push_long_const): Properly cast `lo' before
8640 comparing it to short bounds.
8641 * parse-scan.y (interface_declaration:): Rule re-arrange so that
8642 `interface_body:' is reduced after the current interface is
8643 pushed.
8644
8645 2000-03-26 Tom Tromey <tromey@cygnus.com>
8646
8647 * jvspec.c (jvgenmain_spec): Add `%{<...}' construct for each
8648 Java-specific `-f' option.
8649
8650 2000-03-26 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8651
8652 * decl.c (init_decl_processing): Only call initialize_sizetypes once.
8653 Adjust order of making types.
8654 Make bitsize_*_node values.
8655
8656 2000-03-25 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8657
8658 * class.c (make_field_value): Use byte_position.
8659 * expr.c (JAVA_ARRAY_LENGTH_OFFSET): Use byte_position.
8660 (java_array_data_offset): Likewise.
8661 * java-tree.h (MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC): Add case to
8662 bzero call.
8663
8664 2000-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
8665
8666 * parse.y (check_abstract_method_definitions): New local
8667 `end_type_reached'. Make sure we also consider `end_type'.
8668 (java_check_abstract_method_definitions): Make sure we eventually
8669 consider `java.lang.Object'.
8670 (maybe_use_access_method): Don't use access method if not in the
8671 context of a pure inner class or if the method's context is right.
8672 (find_applicable_accessible_methods_list): New static flag
8673 `object_done'. Don't search abstract classes as interfaces. Fixed
8674 indentation. Fixed the `java.lang.Object' only search. Search
8675 class interface(s) first, then fully search enclosing contexts.
8676 (find_most_specific_methods_list): Pick the closest candidate when
8677 they're all abstract.
8678
8679 2000-03-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
8680
8681 * jcf-write.c (generate_bytecode_insns): TRY_FINALLY_EXPR:
8682 properly initialize `finished_label'. Don't emit gotos for empty
8683 try statements.
8684
8685 2000-03-19 Martin v. Löwis <loewis@informatik.hu-berlin.de>
8686
8687 * except.c (emit_handlers): Clear catch_clauses_last.
8688
8689 2000-03-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8690
8691 * parse.y (check_method_types_complete): New function.
8692 (create_class): Reset anonymous class counter only when seeing an
8693 non inner classe.
8694 (java_complete_class): JDEP_METHOD: Don't recompute signature
8695 if incomplete.
8696
8697 2000-03-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
8698
8699 * class.c (build_static_ref): Fixed indentation in comment.
8700 * java-tree.def (TRY_EXPR): Fixed typo in name.
8701 (CLASS_LITERAL): Likewise.
8702 * java-tree.h: (TYPE_DOT_CLASS): New macro.
8703 (struct lang_type): New field `dot_class'.
8704 * jcf-write.c (generate_bytecode_insns): Fixed error message.
8705 (generate_classfile): Method `class$' is synthetic.
8706 * parse.y (build_do_class_method): New function.
8707 (build_dot_class_method_invocation): Likewise.
8708 (java_complete_expand_methods): Expand TYPE_DOT_CLASS if necessary.
8709 (resolve_qualified_expression_name): Handle CLASS_LITERAL.
8710 (qualify_ambiguous_name): Likewise.
8711 (patch_incomplete_class_ref): Invoke synthetic method if necessary.
8712 (build_try_statement): Fixed leading comment.
8713
8714 2000-03-17 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8715
8716 * class.c (make_field_value): Properly handle sizes.
8717 (get_dispatch_vector): Use tree_low_cst and host_integerp.
8718 (layout_class_method): Count using trees.
8719 * decl.c (push_promoted_type): Set TYPE_{MIN,MAX}_VALUE with copy_node.
8720 * expr.c (java_array_data_offset): Use int_bit_position.
8721 (build_newarray, build_anewarray): Use host_integerp and tree_low_cst.
8722 (build_invokevirtual): Use tree_low_cst and do computations with trees.
8723
8724 2000-03-16 Tom Tromey <tromey@cygnus.com>
8725
8726 * lang.c (flag_hash_synchronization): New global.
8727 (lang_f_options): Added `hash-synchronization'.
8728 * lang-options.h: Mention -fhash-synchronization.
8729 * java-tree.h (flag_hash_synchronization): Declare.
8730 * expr.c (java_lang_expand_expr): Only push `sync_info' value when
8731 hash table synchronization is disabled.
8732 * decl.c (init_decl_processing): Only push `sync_info' value when
8733 hash table synchronization is disabled.
8734 * class.c (make_class_data): Only push `sync_info' field when hash
8735 table synchronization is disabled. Removed dead code.
8736
8737 2000-03-16 Tom Tromey <tromey@cygnus.com>
8738
8739 * lang.c (lang_decode_option): Enable -Wunused when -Wall given.
8740
8741 2000-03-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
8742
8743 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): Disregard anonymous
8744 classes.
8745 * parse.y (patch_method_invocation): Handle anonymous classes
8746 creation in static context.
8747
8748 2000-03-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
8749
8750 * parse.h (INNER_ENCLOSING_SCOPE_CHECK): New macro.
8751 * parse.y (resolve_qualified_expression_name): Use it.
8752 (patch_method_invocation): Likewise.
8753
8754 2000-03-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
8755
8756 * parse.y (register_incomplete_type): JDEP_ENCLOSING set
8757 depending on the type of dependency which dictates what the
8758 current class is.
8759 (unresolved_type_p): Resolved types limited to the current class.
8760
8761 2000-03-15 Tom Tromey <tromey@cygnus.com>
8762
8763 * decl.c (init_decl_processing): Set type of `sync_info' to be
8764 pointer to Object.
8765
8766 * boehm.c (get_boehm_type_descriptor): Correctly compute `bits'.
8767 Correctly compute bit number for current slot. Zero `high' and
8768 `low' in DS_LENGTH case. Don't skip inherited fields. Use
8769 mark_reference_fields.
8770 (mark_reference_fields): New function.
8771
8772 2000-03-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
8773
8774 * parse.y (register_incomplete_type): Fixed initialization of
8775 JDEP_ENCLOSING.
8776
8777 2000-02-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
8778
8779 * parse-scan.y (inner_qualifier, inner_qualifier_length): New
8780 static globals.
8781 (push_class_context, pop_class_context): New function.
8782 (class_body:): Call pop_class_context.
8783 (interface_body:): Likewise.
8784 (INNER_QUALIFIER): New macro.
8785 (report_class_declaration): Changed output format and use
8786 INNER_QUALIFIER. Call push_class_context.
8787
8788 2000-02-14 Andrew Haley <aph@cygnus.com>
8789
8790 * check-init.c (check_init): Add new cases for unary and binary
8791 tree nodes.
8792
8793 2000-03-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
8794
8795 * parse.y (resolve_package): Set `next' once a type name has been
8796 progressively discovered.
8797 (resolve_qualified_expression_name): Propagate resolution only if
8798 there are remaining qualifiers. Take into account `q' might have
8799 been cleared after re-qualification.
8800 * parse.y (patch_method_invocation): New local `resolved'.
8801 Section dealing with qualified expression rewritten to use
8802 resolve_field_access.
8803
8804 2000-03-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
8805
8806 * parse.h (PUSH_CPC): Fixed indentation.
8807 (DEBUG_CPC): New macro.
8808 (SET_CPC_INITIALIZER_STMT, SET_CPC_STATIC_INITIALIZER_STMT,
8809 SET_CPC_INSTANCE_INITIALIZER_STMT): New macros.
8810 * parse.y (class_body_declaration:): Use
8811 SET_CPC_INSTANCE_INITIALIZER_STMT.
8812 (method_declaration:): Check for null current_function_decl.
8813 (static_initializer:): Use SET_CPC_STATIC_INITIALIZER_STMT.
8814 (java_parser_context_pop_initialized_field): Better handling of
8815 empty lists.
8816 (maybe_make_nested_class_name): Mark nested class name as
8817 qualified when necessary.
8818 (end_class_declaration): Don't call java_parse_context_resume when
8819 one or more error occurred.
8820 (add_inner_class_fields): Use SET_CPC_INITIALIZER_STMT.
8821 (register_fields): Use SET_CPC_STATIC_INITIALIZER_STMT and
8822 SET_CPC_INITIALIZER_STMT.
8823 (method_header): Check for inner classes declaring static methods.
8824 (resolve_qualified_expression_name): Handle situation where `this'
8825 is implied.
8826
8827 2000-03-13 Hans Boehm <boehm@acm.org>
8828
8829 * typeck.c (build_prim_array_type): Correctly set the high word too.
8830
8831 2000-03-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
8832
8833 * parse.y (java_complete_expand_methods): Leave <clinit> out of
8834 ordinary methods.
8835 (maybe_generate_pre_expand_clinit): Put <clinit> at the end of the
8836 list of methods for interfaces.
8837
8838 2000-03-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
8839
8840 * parse.y (qualify_ambiguous_name): Properly handle expressions
8841 using `null'.
8842
8843 2000-03-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
8844
8845 * parse.y (check_final_assignment): Extended to process
8846 COMPOUND_EXPR.
8847 (patch_assignment): Have check_final_assignment called only once.
8848
8849 2000-03-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
8850
8851 * java-tree.h (IS_INIT_CHECKED): New flag.
8852 * check-init.c (check_init): Test and set IS_INIT_CHECKED.
8853 * parse.y (patch_string): Call force_evaluation_order on the
8854 completed string concatenation tree.
8855 * expr.c (force_evaluation_order): Call force_evaluation_order on
8856 function's arguments too.
8857
8858 2000-03-06 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8859
8860 * decl.c (emit_init_test_initialization): Mark KEY as unused.
8861 * expr.c (build_newarray): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
8862 (build_anewarray): Likewise.
8863 * parse.y (patch_newarray): Likewise.
8864 * parse.c: Regenerated.
8865
8866 2000-03-06 Bryce McKinlay <bryce@albatross.co.nz>
8867
8868 * decl.c (init_decl_processing): Added new class fields `depth',
8869 `ancestors', and `idt' to class_type_node. Use
8870 _Jv_LookupInterfaceMethodIdx for soft_lookupinterfacemthod_node.
8871 * class.c (make_class_data): Push initial values for new fields.
8872 * java-tree.h: Updated prototype for `build_invokeinterface'.
8873 * expr.c (build_invokeinterface): Changed parameters to accept
8874 `method' tree. Calculate index of `method' in its declaring
8875 interface. Build call to _Jv_LookupInterfaceMethodIdx.
8876 (expand_invoke): Call `build_invokeinterface' with new parameters.
8877 * parse.y (patch_invoke): Call `build_invokeinterface' with new
8878 parameters.
8879
8880 2000-03-06 Bryce McKinlay <bryce@albatross.co.nz>
8881
8882 * typeck.c (lookup_do): Search superinterfaces first
8883 when looking up an interface method. From Godmar Back
8884 <gback@cs.utah.edu>
8885
8886 2000-03-06 Tom Tromey <tromey@cygnus.com>
8887
8888 * Make-lang.in (JAVA_SRCS): Added boehm.c, lex.c.
8889
8890 2000-03-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8891
8892 * java-tree.h (lookup_argument_method2): Declared.
8893 (safe_layout_class): Prototype moved from parse.h.
8894 * parse.h (safe_layout_class): Prototype moved to java-tree.h.
8895 * parse.y (java_check_regular_methods): Local `super_class' gone.
8896 Call lookup_argument_method2 instead of lookup_argument_method.
8897 Perform modifier match for methods found declared in implemented
8898 interfaces. Fixed indentation problem. Overriding/hiding error
8899 report to take place only for methods found in classes.
8900 * typeck.c (lookup_argument_method): Changed leading
8901 comment. Re-written by calling lookup_do.
8902 (lookup_argument_method2): New function.
8903 (lookup_java_method): Re-written by calling lookup_do.
8904 (lookup_do): New function.
8905
8906 2000-03-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
8907
8908 * check-init.c (check_init): Removed dead code. Handle (blank)
8909 final variables.
8910 * parse.y (declare_local_variables): New local `final_p', set it
8911 and use it to initialize LOCAL_FINAL.
8912 (check_final_assignment): Only check FIELD_DECLs.
8913
8914 2000-02-17 Tom Tromey <tromey@cygnus.com>
8915
8916 * Makefile.in (JAVA_OBJS): Added boehm.o.
8917 (boehm.o): New target.
8918 * Make-lang.in (JAVA_SRCS): Added boehm.c.
8919 * java-tree.h (flag_use_boehm_gc): Declare.
8920 (get_boehm_type_descriptor): Declare.
8921 * lang.c (lang_f_options): Added `use-boehm-gc'.
8922 (flag_use_boehm_gc): New global.
8923 * lang-options.h: Added -fuse-boehm-gc.
8924 * boehm.c: New file.
8925 * class.c (get_dispatch_table): If class uses a Boehm type
8926 descriptor, put it in the vtable.
8927 (make_class_data): Removed dead code.
8928
8929 2000-03-03 Per Bothner <per@bothner.com>
8930
8931 * decl.c (init_decl_processing): Initialize sizetype properly.
8932
8933 2000-03-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
8934
8935 * java-tree.h (LOCAL_CLASS_P): New flag usage and macro.
8936 (PURE_INNER_CLASS_DECL_P, PURE_INNER_CLASS_TYPE_P): New macros.
8937 * jcf-dump.c (HANDLE_INNERCLASSES_ATTRIBUTE): New macro.
8938 * jcf-parse.c (HANDLE_INNERCLASSES_ATTRIBUTE): Likewise.
8939 (jcf_parse): New local `current'. Load innerclasses seen in outer
8940 context being processed.
8941 * jcf-reader.c (HANDLE_INNERCLASSES_ATTRIBUTE): New macro.
8942 * jcf-write.c (append_innerclasses_attribute): New function.
8943 (append_innerclasses_attribute_entry): Likewise.
8944 (get_access_flags): Handle static classes. Set anonymous and local
8945 classes to be private.
8946 (generate_classfile): Attribute count adjusted. Call
8947 append_innerclasses_attribute.
8948 * parse.h (SKIP_THIS_AND_ARTIFICIAL_PARMS): Use
8949 PURE_INNER_CLASS_TYPE_P.
8950 * parse.y (parser_qualified_classname): New parameter `is_static',
8951 produce non qualified name accordingly.
8952 (block_statement:): Set LOCAL_CLASS_P when declaring local class.
8953 (create_interface): Added argument to parser_qualified_classname.
8954 (create_class): Added argument to parser_qualified_classname. Setup
8955 alias for top level classes. Use PURE_INNER_CLASS_DECP_P.
8956 (add_inner_class_fields): Fixed indentation.
8957 (method_declarator): Use PURE_INNER_CLASS_DECP_P.
8958 (method_declarator): Fixed typo in comment.
8959 (craft_constructor): Use PURE_INNER_CLASS_DECP_P.
8960 (build_current_thisn): Likewise.
8961 (patch_method_invocation): Likewise.
8962
8963 2000-03-01 Martin von Loewis <loewis@informatik.hu-berlin.de>
8964
8965 * decl.c (current_function_decl): Move to toplev.c.
8966
8967 2000-02-28 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8968
8969 * java-tree.h (LABEL_PC): Relect name changes in ../tree.h.
8970 (DECL_BIT_INDEX): Use underlying representation.
8971 * parse.h (DECL_INHERITED_SOURCE_LINE): Likewise.
8972
8973 2000-02-27 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
8974
8975 * expr.c (build_java_ret): Pass proper type to size_binop.
8976
8977 2000-02-25 Anthony Green <green@cygnus.com>
8978
8979 * expr.c (build_class_init): Mark the decl to be ignored by
8980 check_init.
8981 * java-tree.h (DECL_BIT_INDEX): Move definition from check-init.c
8982 * check-init.c: Move DECL_BIT_INDEX to java-tree.h
8983 * class.c (init_test_hash_newfunc): New function.
8984 (decl_hash): New function.
8985 (decl_compare): New function.
8986 * decl.c (emit_init_test_initialization): New function.
8987 (complete_start_java_method): Traverse the init test hashtable,
8988 calling emit_init_test_initialization.
8989 (always_initialize_class_p): Define.
8990 * expr.c (build_class_init): Use initialization tests when
8991 emitting class initialization code.
8992 (always_initialize_class_p): Declare.
8993 * jcf-parse.c (parse_class_file): Set always_initialize_class_p to
8994 1.
8995 * java-tree.h: Include hash.h.
8996 (DECL_FUNCTION_INIT_TEST_TABLE): Define.
8997 (struct lang_decl): Add init_test_table field.
8998 (init_test_hash_entry): Define.
8999
9000 2000-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
9001
9002 * gjavah.c (main): Avoid using `argi' to report unimplemented
9003 options.
9004
9005 2000-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
9006
9007 * jcf-write.c (generate_bytecode_insns): TRY_FINALLY_EXPR:
9008 initialize locals to avoid warnings. Local `exception_type' moved
9009 into if statement.
9010
9011 2000-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
9012
9013 * parse.y (resolve_expression_name): Use `orig' as a second
9014 argument to resolve_field_access.
9015 (resolve_field_access): Removed unnecessary code when dealing with
9016 static fields.
9017
9018 2000-02-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
9019
9020 * class.c (push_super_field): Don't push the field twice.
9021 * jcf-parse.c (parse_source_file): Call java_reorder_fields.
9022 * parse.h (java_reorder_fields): Prototyped.
9023 * parse.y (java_reorder_fields): New function.
9024 (java_layout_class): Simplified not to worry about re-ordering.
9025
9026 2000-02-23 Tom Tromey <tromey@cygnus.com>
9027
9028 * gjavah.c (print_name): In JNI case, correctly quote string.
9029 (print_method_info): Don't handle overrides in JNI mode.
9030
9031 2000-02-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
9032
9033 * parse.y (init_decl_processing): `_Jv_IsInstanceOf' returned
9034 value type set to `boolean_type_node'.
9035
9036 2000-01-18 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de>
9037
9038 * jcf-dump.c (main): Test for correct condition after
9039 output file creation.
9040
9041 2000-02-19 Anthony Green <green@cygnus.com>
9042
9043 * jcf-depend.c (add_entry): Fix test for first list entry.
9044
9045 2000-02-19 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
9046
9047 * class.c (build_class_ref, push_super_field): Set DECL_SIZE_UNIT.
9048 * constants.c (build_constants_constructor): Likewise.
9049
9050 2000-02-19 Anthony Green <green@cygnus.com>
9051
9052 * jcf-depend.c (add_entry): Add entries to the end of the list.
9053
9054 1999-11-03 Pekka Nikander <pekka.nikander@hut.fi>
9055
9056 * decl.c (INT_TYPE_SIZE): Define if necessary.
9057 (expand_java_return): Handle the case of a native integer smaller
9058 than a JVM integer.
9059
9060 2000-02-18 Martin von Loewis <loewis@informatik.hu-berlin.de>
9061
9062 * gjavah.c (help): Use GCCBUGURL.
9063 * jv-scan.c (help): Likewise.
9064 * jcf-dump.c (help): Likewise.
9065
9066 2000-02-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
9067
9068 * jcf-write.c (generate_bytecode_insns): Don't generate empty
9069 `finally' clauses.
9070
9071 2000-02-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
9072
9073 * jcf-parse.c (load_class): Call `fatal' if no file containing
9074 the target class are found.
9075
9076 2000-02-16 Zack Weinberg <zack@wolery.cumb.org>
9077
9078 * Makefile.in (PARSE_C, PARSE_SCAN_C): Move dependencies on
9079 lex.c, lex.h, and PARSE_H to...
9080 (parse.o, parse-scan.o): ...here, respectively.
9081
9082 * lex.c: Split out code that may trigger SIGFPE from yylex()
9083 to its own function.
9084 * lex.h (JAVA_FLOAT_RANGE_ERROR): Don't set value.
9085
9086 2000-02-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9087
9088 * Make-lang.in (jvspec.o): Depend on $(GCC_H), not gcc.h.
9089
9090 2000-02-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
9091
9092 * parse.y (outer_field_access_p): Stop in time when outer contexts
9093 are exhausted.
9094 (resolve_qualified_expression_name): Properly qualify *everything*
9095 after a package.type to be resoled as expression names.
9096 (find_applicable_accessible_methods_list): Save/restore `class' to
9097 isolate it from a possible outer context search.
9098
9099 2000-02-15 Tom Tromey <tromey@cygnus.com>
9100
9101 * gjavah.c (jni_print_char): New function.
9102 (print_full_cxx_name): Use it.
9103 (decode_signature_piece): Likewise.
9104 (print_cxx_classname): Likewise.
9105
9106 2000-02-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9107
9108 * Makefile.in (jv-scan, jcf-dump, gcjh): Depend on and link with
9109 version.o.
9110 (jcf-dump.o, gjavah.o, jv-scan.o): Depend on version.h.
9111
9112 * gjavah.c: Include version.h.
9113
9114 * jcf-dump.c: Likewise.
9115
9116 * jv-scan.c: Likewise.
9117
9118 2000-02-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
9119
9120 * parse.y (outer_field_access_fix): First parameter now a tree
9121 node. Check for assignment to final. First argument to
9122 build_outer_field_access_fix modified to accommodate prototype.
9123 (build_outer_field_access): Don't check for assignment to final
9124 here.
9125 (java_complete_lhs): MODIFY_EXPR case: Check for `error_mark_node'
9126 possibly returned by outer_field_access_fix. Changed
9127 outer_field_access_fix's first argument.
9128 (check_final_assignment): $finit$'s context is OK.
9129 (patch_unaryop): Use node instead of its line/column value when
9130 calling outer_field_access_fix.
9131
9132 2000-02-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
9133
9134 * parse.y (interface_declaration:): No longer tagged
9135 <node>. Re-installed default action.
9136 (class_member_declaration:): Handle inner interfaces.
9137 (interface_member_declaration): Handle inner interfaces and
9138 classes.
9139 (create_interface): Push error if one seen. Suspend parsing
9140 context when processing an inner interface.
9141 (register_fields): Inner class static field limitations not to
9142 apply to inner interfaces.
9143
9144 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9145
9146 * jcf-parse.c (load_class): Update `java_error_count' when a
9147 class' file can't be found.
9148 (parse.y): Avoid (byte)code generation when errors seen.
9149
9150 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9151
9152 * parse.y (java_complete_lhs): Handle TRUNC_DIV_EXPR. Ensure `fatal'
9153 decodes a valid node.
9154 (patch_binop): Handle TRUNC_DIV_EXPR.
9155
9156 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9157
9158 * parse.y (resolve_package): New local `acc'. Try to progressively
9159 build and guess a package and type name.
9160
9161 2000-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
9162
9163 * parse.y (find_applicable_accessible_methods_list): Load and
9164 layout the search class if necessary.
9165 (java_complete_tree): Keep to original type of the folded initial
9166 value.
9167
9168 2000-02-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
9169
9170 * class.c (layout_class): Set and test CLASS_BEING_LAIDOUT.
9171 Generate error message if circularity is detected. New static
9172 local `list'.
9173 * java-tree.h (CLASS_BEING_LAIDOUT): New flag usage, new macro. *
9174 * jcf-write.c (generate_bytecode_insns): Very simply handle
9175 SAVE_EXPR.
9176 * parse.y (java_check_circular_reference): Use
9177 `cyclic_inheritance_report' during report, if necessary.
9178 (java_complete_lhs): fixed comment with `THROW_EXPR:' case. Avoid
9179 walking NEW_ARRAY_INIT twice.
9180
9181 2000-02-09 Tom Tromey <tromey@cygnus.com>
9182
9183 * parse.y (check_class_interface_creation): Allow inner classes to
9184 be `private' or `protected', check modifiers' consistency. Prevent
9185 block local classes from bearing any modifiers.
9186
9187 2000-02-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9188
9189 * except.c (check_start_handlers): Re-add prototype lost in last
9190 patch.
9191 (maybe_start_try): Remove excess argument to `check_start_handlers'.
9192
9193 2000-02-09 Andrew Haley <aph@cygnus.com>
9194
9195 * decl.c (clear_binding_level): Remove excess initializer.
9196 (maybe_poplevels): Remove unused variable.
9197 (force_poplevels): Ditto.
9198 (struct binding_level): Add comment.
9199
9200 2000-02-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
9201
9202 * jcf-write.c (generate_classfile): Don't consider
9203 pre-initialization with reference value (use <clinit> instead.)
9204 * parse.y (java_fix_constructors): No generated constructor for
9205 interfaces.
9206 (build_outer_field_access): Removed debug message.
9207 (outer_field_expanded_access_p): Adapted to bytecode generation.
9208 (build_outer_field_access_method): Use fix_method_argument_names.
9209 (build_outer_method_access_method): Fixed indentation. Added
9210 comment. Handle access method generation for static and also void
9211 methods.
9212 (build_access_to_thisn): Inserted debug message.
9213 (maybe_build_thisn_access_method): Use fix_method_argument_names.
9214 (resolve_qualified_expression_name): Fixed comment.
9215 (not_accessible_p): Adapted to bytecode generation. Added comment.
9216 (patch_method_invocation): Added comment.
9217 (maybe_use_access_method): Fixed leading comment. Handle static
9218 methods.
9219 (java_complete_lhs): Don't shortcut handling of initialized upon
9220 declaration String type static fields when generating bytecode.
9221 (patch_unaryop): Handle outer field access when generating
9222 bytecode.
9223
9224 2000-02-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
9225
9226 * java-tree.h (FIELD_THISN): New macro.
9227 * jcf-write.c (append_synthetic_attribute): New function.
9228 (generate_classfile): Set "Synthetic" attribute on this$<n>,
9229 val$<name> fields, access$<n> and $finit$ methods. Fixed indentation.
9230 * parse.y (add_inner_class_fields): Set FIELD_THISN for created
9231 this$<n> fields.
9232 (build_outer_field_access): Turned on access functions usage and
9233 generation when compiling to bytecode.
9234 (maybe_use_access_method): Likewise.
9235
9236 2000-01-25 Andrew Haley <aph@cygnus.com>
9237
9238 * java-except.h (struct eh_range): Add `expanded' field.
9239 (maybe_start_try): Add end_pc arg.
9240 (maybe_end_try): Ditto.
9241 * java-tree.h (force_poplevels): new function.
9242 * expr.c (expand_byte_code): Don't call maybe_start_try or
9243 maybe_end_try.
9244 * except.c (add_handler): Reset expanded.
9245 (expand_start_java_handler): Set expanded.
9246 (check_start_handlers): Don't expand a start handler that's
9247 already been expanded.
9248 (maybe_start_try): Add end_pc arg. Only expand a handler which
9249 ends after end_pc.
9250 (expand_end_java_handler): call force_poplevels.
9251 (force_poplevels): new function.
9252 * decl.c (binding_level): Add start_pc of binding level.
9253 (maybe_pushlevels): Call maybe_start_try when pushing binding
9254 levels.
9255 (maybe_poplevels): Call maybe_end_try when popping binding levels.
9256 (LARGEST_PC): Define.
9257 (clear_binding_level): Use LARGEST_PC.
9258
9259 * java-tree.h (DEBUG_JAVA_BINDING_LEVELS): new define.
9260 * decl.c (DEBUG_JAVA_BINDING_LEVELS): new define.
9261 (binding_depth, is_class_level, current_pc): new variables.
9262 (struct binding_level): ditto.
9263 (indent): new function.
9264 (push_jvm_slot): add debugging info.
9265 (maybe_pushlevels): ditto.
9266 (maybe_poplevels): ditto.
9267 (pushlevel): ditto.
9268 (poplevel): ditto.
9269 (start_java_method): ditto.
9270 (give_name_to_locals): comment only.
9271 * except.c (binding_depth, is_class_level, current_pc):
9272 new variables.
9273 (expand_start_java_handler): add debugging info.
9274 (expand_end_java_handler): ditto.
9275
9276 2000-02-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9277
9278 * gjavah.c (overloaded_jni_method_exists_p): Add prototype.
9279 (print_name_for_stub_or_jni, process_file): Constify a char*.
9280
9281 2000-02-03 Tom Tromey <tromey@cygnus.com>
9282
9283 * jcf-io.c (jcf_print_utf8_replace): Handle UTF-8 input.
9284
9285 2000-01-31 Scott Bambrough <scottb@netwinder.org>
9286
9287 * gcc/java/javaop.h (WORDS_TO_DOUBLE): Allow WORDS_TO_DOUBLE to
9288 assemble doubles correctly when HOST_FLOAT_WORDS_BIG_ENDIAN is
9289 defined to be 1.
9290
9291 2000-02-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
9292
9293 * java-tree.def (INSTANCE_INITIALIZERS_EXPR): New tree code.
9294 * java-tree.h (TYPE_II_STMT_LIST): New macro.
9295 (struct lang_type): New field `ii_block'.
9296 * lex.c (java_init_lex): Use CPC_INITIALIZER_LIST,
9297 CPC_STATIC_INITIALIZER_LIST and CPC_INSTANCE_INITIALIZER_LIST.
9298 * parse.h (struct parser_ctxt): New field `instance_initializers'.
9299 (CPC_INITIALIZER_LIST, CPC_STATIC_INITIALIZER_LIST,
9300 CPC_INSTANCE_INITIALIZER_LIST, CPC_INITIALIZER_STMT,
9301 CPC_STATIC_INITIALIZER_STMT, CPC_INSTANCE_INITIALIZER_STMT): New
9302 macros.
9303 * parse.y (add_instance_initializer): New function.
9304 (in_instance_initializer): New static global.
9305 (class_body_declaration:): Link instance initializer block.
9306 (static_initializer:): Use CPC_STATIC_INITIALIZER_STMT.
9307 (array_creation_expression:): Remove unused local.
9308 (java_parser_context_push_initialized_field): Fixed leading
9309 comment. Use CPC_STATIC_INITIALIZER_LIST, CPC_INITIALIZER_LIST and
9310 CPC_INSTANCE_INITIALIZER_LIST.
9311 (java_parser_context_pop_initialized_field): Likewise.
9312 (add_inner_class_fields): Use CPC_INITIALIZER_STMT.
9313 (register_fields): Use CPC_STATIC_INITIALIZER_STMT and
9314 CPC_INITIALIZER_STMT.
9315 (fix_constructors): New local `class_type'. Use it. Call
9316 add_instance_initializer.
9317 (java_complete_lhs): New case INSTANCE_INITIALIZERS_EXPR.
9318 (patch_return): Forbid return in instance initializers.
9319 (patch_throw_statement): Enforce exception handling in the context
9320 of instance initializers.
9321
9322 2000-02-03 Tom Tromey <tromey@cygnus.com>
9323
9324 * Make-lang.in (java.mostlyclean): Remove executables in
9325 `mostlyclean'.
9326
9327 2000-01-31 Scott Bambrough <scottb@netwinder.org>
9328
9329 * gcc/java/gjavah.c (D_NAN_MASK): Alternate definition required when
9330 HOST_FLOAT_WORDS_BIG_ENDIAN is defined to be 1.
9331 (java_float_finite): Convert to use union Word from javaop.h.
9332 (java_double_finite): Convert to use union DWord from javaop.h.
9333
9334 2000-02-02 Tom Tromey <tromey@cygnus.com>
9335
9336 * gjavah.c (options): Added `jni' entry.
9337 (help): Document -jni.
9338 (flag_jni): New global.
9339 (process_file): Handle JNI output. Don't print text from
9340 -prepend, -add, etc, when generating stubs. Only remove `.class'
9341 suffix if it actually exists.
9342 (main): Create a `.c' file when run with `--jni --stubs'. Create
9343 correct output file name with `--jni'.
9344 (print_include): Mangle header name differently in JNI case.
9345 (HANDLE_METHOD): In JNI mode, call print_method_info to generate
9346 method list.
9347 (print_method_info): Handle JNI case. Put signature info into
9348 method name. Handle case when STREAM is NULL.
9349 (print_name_for_stub_or_jni): New function.
9350 (print_stub_or_jni): Renamed from `print_stub'. Handle JNI.
9351 (print_cxx_classname): Handle JNI.
9352 (print_full_cxx_name): Likewise.
9353 (decode_signature_piece): Likewise.
9354 (overloaded_jni_method_exists_p): New function.
9355 (struct method_name): Added `signature' and `sig_length' fields.
9356 (HANDLE_END_FIELD): Do nothing in JNI mode.
9357
9358 2000-02-02 Tom Tromey <tromey@cygnus.com>
9359
9360 * jv-scan.c: Include version.c, <getopt.h>.
9361 (LONG_OPT, OPT_HELP, OPT_VERSION): New macros.
9362 (options): New array.
9363 (usage): New function.
9364 (version): New function.
9365 (main): Use getopt_long to parse command line.
9366 * jcf-dump.c: Include version.c, <getopt.h>.
9367 (LONG_OPT, OPT_classpath, OPT_CLASSPATH, OPT_HELP, OPT_VERSION,
9368 OPT_JAVAP): New macros.
9369 (options): New array.
9370 (usage): Return `void'. Changed message.
9371 (help): New function.
9372 (version): New function.
9373 (main): Use getopt_long_only to parse command line.
9374 * gjavah.c: Include <getopt.h>.
9375 (LONG_OPT, OPT_classpath, OPT_CLASSPATH, OPT_HELP, OPT_TEMP,
9376 OPT_VERSION, OPT_PREPEND, OPT_FRIEND, OPT_ADD, OPT_APPEND, OPT_M,
9377 OPT_MM, OPT_MG, OPT_MD, OPT_MMD): New macros.
9378 (options): New array.
9379 (java_no_argument): Removed.
9380 (help): Updated with missing options.
9381 (main): Use getopt_long_only to parse command line.
9382 (usage): Changed message.
9383
9384 2000-02-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
9385
9386 * java-tree.def (NEW_ANONYMOUS_ARRAY_EXPR): New tree code.
9387 * parse.h (ANONYMOUS_ARRAY_BASE_TYPE, ANONYMOUS_ARRAY_DIMS_SIG,
9388 ANONYMOUS_ARRAY_INITIALIZER): New access macros.
9389 * parse.y (array_creation_expression:): Handle anonymous arrays.
9390 (build_array_from_name): Don't set `ret_name' if null.
9391 (resolve_qualified_expression_name): New case NEW_ANONYMOUS_ARRAY_EXPR.
9392 (qualify_ambiguous_name): Likewise.
9393 (java_complete_expand_class): Likewise.
9394
9395 2000-02-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
9396
9397 * java-tree.def (SYNCHRONIZED_EXPR): Fixed typo.
9398 * parse.h (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID): New macro.
9399 (MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_STR): Likewise.
9400 (SKIP_THIS_AND_ARTIFICIAL_PARMS): Use DECL_FINIT_P.
9401 (AIPL_FUNCTION_FINIT_INVOCATION): Replaces
9402 AIPL_FUNCTION_COMPLETED_INVOCATION.
9403 (AIPL_FUNCTION_CTOR_INVOCATION): Replaces
9404 AIPL_FUNCTION_INVOCATION_READY.
9405 (AIPL_FUNCTION_DECLARATION): New enum entry.
9406 * parse.y (reorder_static_initialized): New function.
9407 (java_parser_context_pop_initialized_field): Use it.
9408 (add_inner_class_fields): Use
9409 MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID. Comment
9410 augmented. Install marker after last alias initializer, if any.
9411 (generate_finit): Fixed typo. Don't try to retain only the used
9412 fields.
9413 (method_header): Compute and set DECL_FUNCTION_NAP.
9414 (method_declarator): Fixed comment. Insert alias initializer in
9415 parameter list.
9416 (build_alias_initializer_parameter_list): Fixed leading
9417 comment. New case for AIPL_FUNCTION_DECLARATION. Old enum value
9418 replaced by new ones. Use MANGLE_ALIAS_INITIALIZER_PARAMETER_NAME_ID.
9419 (java_complete_expand_class): Code to retain only used aliases
9420 removed.
9421 (java_complete_expand_methods): New local `first_decl'. Generate
9422 $finit$ first, then expand the constructors, regular methods and
9423 <clinit>.
9424 (java_complete_expand_method): Don't report error on missing
9425 return statement if previously detected bogus.
9426 (fix_constructors): Don't patch constructor parameters list.
9427 (patch_method_invocation): Use new AIPL enum values. Reverse
9428 alias initializer list for anonymous classes.
9429
9430 2000-01-30 Anthony Green <green@redhat.com>
9431
9432 * jcf-write.c (generate_bytecode_insns): Use TYPE_IS_WIDE to
9433 determine how many stack slots to pop.
9434
9435 2000-01-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
9436
9437 * parse.y (formal_parameter:): Set `$$' to NULL_TREE for better
9438 error handling/recovery.
9439 * java-tree.h (SYNCHRONIZED_EXPR): Fixed typo in comment.
9440
9441 2000-01-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
9442
9443 * java-tree.h (ARG_FINAL_P, FIELD_LOCAL_ALIAS,
9444 FIELD_LOCAL_ALIAS_USED): New macros.
9445 (DECL_FUNCTION_NAP): New macro.
9446 (struct lang_decl): New field `nap'.
9447 (TYPE_FINIT_STMT_LIST, TYPE_CLINIT_STMT_LIST): New macros.
9448 (struct lang_type): New fields `finit_stmt_list' and
9449 `clinit_stmt_list'.
9450 (CLASS_HAS_FINIT_P): Defined using TYPE_FINIT_STMT_LIST.
9451 * parse.h (MANGLE_OUTER_LOCAL_VARIABLE_NAME): New macro.
9452 (SKIP_THIS_AND_ARTIFICIAL_PARMS, MARK_FINAL_PARMS,
9453 UNMARK_FINAL_PARMS, CRAFTED_PARAM_LIST_FIXUP): New macros.
9454 (AIPL_FUNCTION_CREATION, AIPL_FUNCTION_COMPLETED_INVOCATION,
9455 AIPL_FUNCTION_INVOCATION_READY): New enum fields.
9456 (BUILD_THROW): Macro line separator re-indented.
9457 * parse.y (end_class_declaration): New function.
9458 (maybe_generate_pre_expand_clinit): New name for
9459 java_pre_expand_clinit. Create <clinit> off TYPE_CLINIT_STMT_LIST,
9460 pre-expand static fields.
9461 (maybe_generate_clinit): Function deleted.
9462 (check_for_static_method_reference): Prototype's parameter list
9463 indented.
9464 (generate_finit): New name for maybe_generate_finit. Changed
9465 leading comment. Function rewritten to use
9466 TYPE_FINIT_STMT_LIST. Call build_alias_initializer_parameter_list.
9467 (build_alias_initializer_parameter_list): New function.
9468 (java_parser_context_pop_initialized_field): Likewise.
9469 (add_inner_class_fields): Likewise.
9470 (type_declaration:): Call end_class_declaration.
9471 (class_member_declaration:): Likewise.
9472 (formal_parameter_list:): Fixed typos.
9473 (formal_parameter:): Use ARG_FINAL_P to mark created tree list
9474 element. Improved error handling.
9475 (block_statement:): Call end_class_declaration.
9476 (anonymous_class_creation:): Likewise.
9477 (create_anonymous_class): Fixed comments.
9478 (create_class): Call add_inner_class_fields.
9479 (register_fields): Set FIELD_LOCAL_ALIAS according to ARG_FINAL_P.
9480 (method_header): Use MARK_FINAL_PARMS.
9481 (finish_method_declaration): Use UNMARK_FINAL_PARMS.
9482 (method_declarator): Propagate final argument flag.
9483 (craft_constructor): New local `artificial'. Call
9484 build_alias_initializer_parameter_list. Use
9485 CRAFTED_PARAM_LIST_FIXUP, assign DECL_FUNCTION_NAP.
9486 (source_start_java_method): Mark parm decls with LOCAL_FINAL if
9487 necessary.
9488 (complete_expand_class): Get rid of unused outer context local
9489 alias fields.
9490 (java_complete_expand_methods): Fixed leading
9491 comment. Generate/pre-expand <clinit> first. Changed method
9492 expansion order to regular, $finit$, constructors, <clinit>.
9493 (java_complete_expand_method): Set current_function_decl.
9494 (fix_constructors): Fix constructor parameter list to account for
9495 outer context local alias initializers.
9496 (verify_constructor_super): Use SKIP_THIS_AND_ARTIFICIAL_PARMS.
9497 (resolve_expression_name): Lookup outer context local aliases. New
9498 local `access', use it.
9499 (patch_method_invocation): Patch inner class ctor invocation with
9500 outer context local aliases initialization values. $finit$
9501 invocation patching now includes things generated with
9502 build_alias_initializer_parameter_list.
9503 (argument_types_convertible): Use SKIP_THIS_AND_ARTIFICIAL_PARMS.
9504 (build_super_invocation): Likewise.
9505 (patch_assignment): Changed comment.
9506
9507 2000-01-27 Andrew Haley <aph@cygnus.com>
9508
9509 * jcf-write.c (emit_goto): RESERVE 3 bytes for insn.
9510 (emit_if): Ditto.
9511 (emit_jsr): Ditto.
9512
9513 2000-01-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9514
9515 * parse.h (OBSOLETE_MODIFIER_WARNING): Don't use ANSI string
9516 concatenation.
9517 (OBSOLETE_MODIFIER_WARNING2): New macro allowing two args.
9518
9519 * parse.y (register_fields): Don't pass a format specifier to
9520 OBSOLETE_MODIFIER_WARNING.
9521 (check_abstract_method_header): Use OBSOLETE_MODIFIER_WARNING2
9522 instead of OBSOLETE_MODIFIER_WARNING, and don't pass a format
9523 specifier.
9524 (check_modifiers): Change function into a macro.
9525 (check_class_interface_creation): Pass a literal format string.
9526
9527 2000-01-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9528
9529 * buffer.h: PROTO -> PARAMS.
9530 * check-init.c: Likewise.
9531 * class.c: Likewise.
9532 * constants.c: Likewise.
9533 * convert.h: Likewise.
9534 * decl.c: Likewise.
9535 * except.c: Likewise.
9536 * expr.c: Likewise.
9537 * gjavah.c: Likewise.
9538 * java-except.h: Likewise.
9539 * java-tree.h: Likewise.
9540 * jcf-depend.c: Likewise.
9541 * jcf-dump.c: Likewise.
9542 * jcf-parse.c: Likewise.
9543 * jcf-path.c: Likewise.
9544 * jcf-reader.c: Likewise.
9545 * jcf-write.c: Likewise.
9546 * jcf.h: Likewise.
9547 * jv-scan.c: Likewise.
9548 * jvgenmain.c: Likewise.
9549 * jvspec.c: Likewise.
9550 * lang.c: Likewise.
9551 * lex.c: Likewise.
9552 * lex.h: Likewise.
9553 * parse-scan.y: Likewise.
9554 * parse.h: Likewise.
9555 * parse.y: Likewise.
9556 * typeck.c: Likewise.
9557 * verify.c: Likewise.
9558 * xref.c: Likewise.
9559 * xref.h: Likewise.
9560 * zextract.c: Likewise.
9561 * zipfile.h: Likewise.
9562
9563 2000-01-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
9564
9565 * class.c (make_class): Use MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC.
9566 (is_compiled_class): Remove test on TYPE_LANG_SPECIFIC, use TYPE_JCF.
9567 * constants.c (build_constant_data_ref): Check for cached
9568 current_constant_pool_data_ref. Cache current_constant_pool_data_ref
9569 in TYPE_CPOOL_DATE_REF.
9570 * java-tree.h (TYPE_JCF, TYPE_CPOOL, TYPE_CPOOL_DATA_REF,
9571 MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC:) New macros.
9572 (struct lang_type): New fields `cpool' and `cpool_data_ref'.
9573 (LOCAL_FINAL): New macro.
9574 * jcf-parse.c (init_outgoing_cpool): Always allocate new outgoing
9575 constant pool -- don't try to reuse.
9576 (parse_zip_file_entries): Use TYPE_JCF, don't lazily allocate
9577 TYPE_LANG_SPECIFIC.
9578 (find_in_current_zip): Use TYPE_JCF.
9579 * parse.h (java_check_final): Prototype removed.
9580 * parse.y (create_class): Reversed Jan 12, 2000 extra argument patch.
9581 (maybe_create_class_interface_decl,
9582 check_class_interface_creation): Likewise.
9583 (java_expand_finals): Function removed.
9584 (class_declaration:): Reversed Jan 12, 2000 extra argument patch.
9585 (block_statement:): Fixed comment.
9586 (anonymous_class_creation:): Likewise.
9587 (check_class_interface_creation): Reversed Jan 12, 2000 extra
9588 argument patch.
9589 (check_class_interface_creation): Loosened error report on (inner)
9590 public class declarations. CPC_INNER_P replaces GET_CPC_LIST.
9591 (link_nested_class_to_enclosing): Reversed Jan 12, 2000 patch.
9592 (maybe_create_class_interface_decl): Reversed Jan 12, 2000 extra
9593 argument patch.
9594 (create_interface): Likewise.
9595 (anonymous_class_counter): New static global.
9596 (create_anonymous_class): Reversed Jan 12, 2000 extra argument
9597 patch. Fixed comments.
9598 (create_class): Reversed Jan 12, 2000 extra argument patch. Reset
9599 anonymous_class_counter when declaring a toplevel class.
9600 (craft_constructor): Fixed constructor name when handling
9601 anonymous classes. Anonymous class constructors to feature hidden
9602 this$<n> parameter.
9603 (java_fix_constructors): Added comment.
9604 (java_check_final): Function removed.
9605 (java_complete_expand_methods): Fixed comment. Don't generate
9606 class data, save its outgoing constant pool instead.
9607 (verify_constructor_super): Skip anonymous class constructor
9608 hidden this$<n> parameter.
9609 (java_expand_classes): New local `saved_ctxp'. Removed call to
9610 java_expand_finals and java_check_final. Expand anonymous class
9611 constructors. Generate class data.
9612 (build_super_invocation): Skip anonymous class hidden this$<n>
9613 parameter.
9614 * typeck.c (build_java_signature): Use TYPE_SIGNATURE and
9615 MAYBE_CREATE_TYPE_TYPE_LANG_SPECIFIC.
9616 (set_java_signature): Likewise.
9617
9618 2000-01-18 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de>
9619
9620 * gjavah.c: Delete ACC_VISIBILITY define.
9621 * jcf.h: Add ACC_VISIBILITY define.
9622 * parse.y: final: rule tagged <value>.
9623 (java_check_regular_methods): Use ACC_VISIBILITY define for
9624 default package access check.
9625 (local_variable_declaration_statement): Use final: rule.
9626
9627 2000-01-17 Joerg Brunsmann <joerg.brunsmann@fernuni-hagen.de>
9628
9629 * parse.y (format_parameter:): Use final: rule instead of modifiers:.
9630 (final:): New rule.
9631
9632 2000-01-17 Tom Tromey <tromey@cygnus.com>
9633
9634 * gjavah.c (print_field_info): Allow non-static final fields.
9635
9636 2000-01-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
9637
9638 * parse.h (enum jdep_code): New entry `JDEP_ANONYMOUS'.
9639 * parse.y (patch_anonymous_class): New function.
9640 (create_anonymous_class): Register incomplete type when the
9641 class/interface to extends/implement isn't known yet.
9642 (parser_check_super_interface): Simplify argument to CLASS_INTERFACE.
9643 (verify_constructor_super): Tuned error message.
9644
9645 2000-01-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
9646
9647 * java-tree.h (FOR_LOOP_P): Replaces IS_FOR_LOOP_P.
9648 (ANONYMOUS_CLASS_P): New macro.
9649 (TYPE_SIGNATURE, TYPE_JCF): New macros.
9650 (INNER_CLASS_TYPE_P): Fixed typo in leading comment.
9651 * parse.y (create_class): Added leading argument.
9652 (maybe_create_class_interface_decl,
9653 check_class_interface_creation): Likewise.
9654 (craft_constructor): New function.
9655 (verify_constructor_super): Added argument in prototype.
9656 (class_declaration:): Inserted leading argument.
9657 (for_begin:): Use FOR_LOOP_P.
9658 (anonymous_class_creation): Create WFL of the anonymous class to
9659 instantiate. Call build_new_invocation. Added comments.
9660 (check_class_interface_creation): Handle parameter `anonymous' in
9661 verbose mode class creation announce.
9662 (link_nested_class_to_enclosing): Exclude anonymous classes.
9663 (maybe_create_class_interface_decl): Don't set DECL_CONTEXT on
9664 anonymous class, even though they appear to have an enclosing
9665 context.
9666 (create_interface): Pass extra argument to
9667 check_class_interface_creation.
9668 (create_anonymous_class): Set ANONYMOUS_CLASS_P to 1.
9669 (create_class): Call check_class_interface_creation and
9670 maybe_create_class_interface_decl with extra new argument. Don't
9671 add private this$<n> to anonymous classes.
9672 (method_declarator): Insert hidden this$<n> to anonymous class
9673 constructors.
9674 (java_fix_constructors): Deleted code creating default
9675 constructor. Call craft_constructor instead.
9676 (java_check_regular_methods): Set `saw_constructor' to 1 for
9677 anonymous classes.
9678 (fix_constructors): Pass extra argument to verify_constructor_super.
9679 (verify_constructor_super): New local `sdecl', use it. Search for
9680 matching constructor (possibly featuring arguments) in super
9681 class.
9682 (lookup_method_invoke): Craft constructor according to arguments
9683 list when dealing with anonymous class constructors.
9684 (build_super_invocation): Pass arguments to anonymous class super
9685 constructors.
9686 (search_loop): Use FOR_LOOP_P.
9687 (labeled_block_contains_loop_p): Likewise.
9688
9689 2000-01-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
9690
9691 * class.c (set_super_info): Set CLASS_STATIC when appropriate.
9692 (enclosing_context_p): New function.
9693 (get_access_flags_from_decl): Handle CLASS_STATIC.
9694 (maybe_layout_super_class): Extra first argument passed to
9695 do_resolve_class.
9696 (layout_class_method): Use ID_FINIT_P, DECL_CLINIT_P and
9697 ID_INIT_P.
9698 * decl.c (access0_identifier_node): New global.
9699 (init_decl_processing): access0_identifier_node initialized.
9700 (pushdecl): Set DECL_CONTEXT only on non type decls.
9701 * expr.c (lookup_field): Lookup inner class fields in enclosing
9702 contexts.
9703 (expand_invoke): Use ID_INIT_P.
9704 (expand_java_field_op): Use DECL_CLINIT_P.
9705 * java-tree.def (CLASS_LITERAL): New tree code.
9706 * java-tree.h (DECL_FUNCTION_ACCESS_DECL,
9707 DECL_FUNCTION_INNER_ACCESS, FIELD_INNER_ACCESS): New macros.
9708 (struct lang_decl): New field `inner_access'.
9709 (enclosing_context_p): Prototyped.
9710 (DECL_INIT_P, DECL_FINIT_P, DECL_CLINIT_P, ID_INIT_P, ID_FINIT_P,
9711 ID_CLINIT_P): New macros.
9712 (CLASS_STATIC): New macro.
9713 (CLASS_ACCESS0_GENERATED_P): New macro.
9714 (OUTER_FIELD_ACCESS_IDENTIFIER_P, INNER_CLASS_DECL_P,
9715 TOPLEVEL_CLASS_DECL_P, INNER_CLASS_TYPE_P, TOPLEVEL_CLASS_TYPE_P,
9716 INNER_CLASS_P): New macros.
9717 (DECL_INNER_CLASS_LIST): New macro.
9718 * jcf-parse.c (yyparse): Avoid the use of ANSI string
9719 concatenation.
9720 * jcf-write.c (generate_bytecode_insns): binop: Change the type of
9721 the shift value to int. Fixed typo in comment.
9722 * lex.c (inst_id, wpv_id): Initialize.
9723 * mangle.c (unicode_mangling_length): Take `$' into account.
9724 * parse.h (DRECOVER, RECOVER): Terminate properly.
9725 (IDENTIFIER_INNER_CLASS_OUTER_FIELD_ACCESS): New macro.
9726 (typedef struct _jdep): New field `enclosing'.
9727 (JDEP_ENCLOSING): New macro.
9728 (IS_CLINIT): Deleted (DECL_CLINIT_P replaces it.)
9729 (struct parser_ctxt): New fields `marker_beginning', `marked_end'.
9730 (GET_CPC_LIST, CPC_INNER_P, GET_CPC, GET_CPC_UN, GET_CPC_UN_MODE,
9731 GET_CPC_DECL_NODE, GET_ENCLOSING_CPC, GET_NEXT_ENCLOSING_CPC,
9732 GET_ENCLOSING_CPC_CONTEXT): New macros.
9733 (PUSH_CPC, PUSH_ERROR, POP_CPC): New macros.
9734 (do_resolve_class): Added extra argument in prototype.
9735 * parse.y (resolve_class): Added extra argument in prototype.
9736 (maybe_create_class_interface_decl): Likewise.
9737 (maybe_use_access_method, build_wfl_wrap): New functions.
9738 (java_complete_expand_classes, java_complete_expand_class):
9739 Likewise.
9740 (java_parser_context_push_initialized_field,
9741 java_parser_context_suspend, java_parser_context_resume):
9742 Likewise.
9743 (maybe_make_nested_class_name, make_nested_class_name,
9744 set_nested_class_simple_name_value,
9745 link_nested_class_to_enclosing, find_as_inner_class,
9746 find_as_inner_class_do, check_inner_class_redefinition,
9747 build_thisn_assign, build_current_thisn, build_access_to_thisn,
9748 maybe_build_thisn_access_method, build_outer_field_access,
9749 build_outer_field_access_methods, build_outer_field_access_expr,
9750 build_outer_method_access_method, build_new_access_id,
9751 build_outer_field_access_method, outer_field_access_p,
9752 outer_field_expanded_access_p, outer_field_access_fix,
9753 build_incomplete_class_ref, patch_incomplete_class_ref,
9754 create_anonymous_class): Likewise.
9755 (inst_id, wpv_id): New static global variables.
9756 (synchronized:): New rule, tagged <node>.
9757 (type_declaration:): No longer tagged <node>. Call POP_CPC in sub
9758 rules.
9759 (anonymous_class_creation:): New rule, tagged <node>.
9760 (NEW_TK): Tagged <node>.
9761 (type_literals, array_type_literal): New rules, tagged <node>.
9762 (class_declaration:): Removed action when reducing by class_body:
9763 (class_body:): Set DECL_END_SOURCE_LINE and rule's returned value
9764 using GET_CPC in sub-rules.
9765 (class_member_declaration): Handle inner classes.
9766 (method_declaration): When reducing method_header:, reset
9767 current_function_decl when appropriate.
9768 (method_declarator:): Set the number of formal parameter to 0 for
9769 method declared without arguments.
9770 (constructor_declarator:): Likewise.
9771 (static_initializer:): List of elements kept in a list.
9772 (static:): Rule modifiers: replaces MODIFIER_TK. Enforce correct
9773 use of the keyword `static' for type declarations.
9774 (block_statement:): Handle inner class declarations.
9775 (primary_no_new_array:): Use type_literals:. Fixed comment. Handle
9776 type qualified `this'.
9777 (class_instance_creation_expression): Use anonymous_class_creation:
9778 to handle inner class instances creation. Handle qualified `new'.
9779 (something_dot_new): Added appropriate actions.
9780 (create_new_parser_context): New function.
9781 (java_push_parser_context, java_parser_context_save_global,
9782 java_parser_context_suspend): Use create_new_parser_context.
9783 (check_modifiers): Changed leading comment.
9784 (check_class_interface_creation): Handle interclasses.
9785 (add_superinterfaces): Fixed comment.
9786 (create_interface): Build qualified name from the raw_name instead
9787 of its matching WFL. Push the initialized fields list. raw_name added
9788 as an extra argument to maybe_create_class_interface_decl.
9789 (create_class): Build qualified name from the raw_name instead of
9790 its matching WFL. Removed assignment to current_parsed_class_un.
9791 Call PUSH_ERROR before returning an error. Suspend the current
9792 parser context when processing an inner class. Push the
9793 initialized fields list. raw_name added as an extra argument to
9794 maybe_create_class_interface_decl. Add the private this$<n>
9795 field.
9796 (duplicate_declaration_error_p): Use GET_CPC when calling find_field.
9797 (register_fields): Get the class type from GET_CPC and handle
9798 previous errors. Added code to handle the creation of static
9799 fields in inner classes. Initialized fields initialization
9800 statements kept in a list of lists.
9801 (maybe_generate_finit): Initialized fields initialization
9802 statements kept in a list of lists. Use GET_CPC.
9803 (maybe_generate_clinit): Likewise.
9804 (method_header): Use GET_CPC and GET_CPC_UN.
9805 (parser_qualified_classname): Handle inner classes.
9806 (register_incomplete_type): Set JDEP_ENCLOSING using GET_CPC.
9807 (java_fix_constructors): Hide pointer to enclosing context
9808 instance in constructor list when dealing with inner classes.
9809 (jdep_resolve_class): Call resolve_class with extra first argument
9810 JDEP_ENCLOSING.
9811 (resolve_class): Add enclosing context as a first extra argument
9812 to do_resolve_class.
9813 (do_resolve_class): Call find_as_inner_class. Handle WFLs
9814 properly.
9815 (resolve_no_layout): Extra argument added to resolve_class
9816 invocation.
9817 (reset_method_name): Use DECL_CLINIT_P, DECL_FINIT_P.
9818 (java_get_real_method_name): Use GET_CPC_UN.
9819 (check_abstract_method_definitions): Use DECL_CLINIT_P.
9820 (java_check_abstract_methods): Handle static method declared in
9821 inner classes by an error.
9822 (java_check_regular_methods): Use DECL_CLINIT_P.
9823 (source_start_java_method): Also set DECL_MAX_LOCALS.
9824 (create_artificial_method): Call java_parser_context_save_global
9825 and java_parser_context_restore_global instead of saving/restoring
9826 the context by hand.
9827 (expand_start_java_method): Improved verbose mode message.
9828 (java_complete_expand_methods): Fixed leading comment. Use
9829 DECL_CLINIT_P.
9830 (fix_constructors): Added assignment to this$<n> if necessary.
9831 (java_expand_classes): Call java_complete_expand_classes instead
9832 of java_complete_expand_methods.
9833 (make_qualified_primary): Simplified.
9834 (merge_qualified_name): Optimized for missing left or right parts.
9835 (resolve_expression_name): Handle access to outer class fields from
9836 interclasses.
9837 (resolve_qualified_expression_name): New macro
9838 RESTORE_THIS_AND_CURRENT_CLASS, used. Handle creation of inner
9839 classes. Report error on non appropriate qualification of
9840 `new'. Handle qualified `this'.
9841 (not_accessible_p): Allow access to outer class private fields from
9842 inner classes.
9843 (patch_method_invocation): Handle method invocations through
9844 access methods and inner class constructor invocations.
9845 (find_applicable_accessible_methods_list): Search enclosing
9846 contexts of an inner class.
9847 (search_applicable_methods_list): Fixed typo.
9848 (argument_types_convertible): Handle inner class constructors'
9849 hidden outer context reference argument.
9850 (qualify_ambiguous_name): Handle qualified `this'.
9851 (java_complete_lhs): Handle use of field accessed through
9852 artificial access methods in various cases of assignments. Handle
9853 CLASS_LITERAL node.
9854 (check_final_assignment): Use DECL_CLINIT_P.
9855 (valid_ref_assignconv_cast_p): Handle the destination being an
9856 enclosing context of the source.
9857 (patch_unaryop): Handle use of field accessed through artificial
9858 access methods.
9859 (patch_return): Use DECL_CLINIT_P.
9860 (patch_throw_statement): Use DECL_CLINIT_P.
9861 (check_thrown_exceptions): Use DECL_FINIT_P and DECL_INIT_P.
9862 * verify.c (verify_jvm_instructions): Use ID_CLINIT_P and
9863 ID_INIT_P.
9864
9865 2000-01-16 Anthony Green <green@cygnus.com>
9866
9867 * parse.y (build_string_concatenation): Only use
9868 StringBuffer(String) shortcut if String arg is constant.
9869
9870 2000-01-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
9871
9872 * jcf-write.c (generate_bytecode_insns): binop: Change the type of
9873 the shift value to int. Fixed typo in comment.
9874
9875 2000-01-11 Mumit Khan <khan@xraylith.wisc.edu>
9876
9877 * jcf-path.c: Delete PATH_SEPARATOR and DIR_SEPARATOR macros.
9878 * jcf-write.c: Likewise.
9879 * parse.y: Likewise.
9880 * parse.c: Regenerate.
9881
9882 2000-01-09 Anthony Green <green@cygnus.com>
9883
9884 * jcf-write.c (generate_bytecode_insns): Emit invokeinterface
9885 bytecodes in the correct order.
9886
9887 2000-01-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9888
9889 * Makefile.in (jcf-dump, gcjh): Move ../errors.o before $(LIBS).
9890
9891 2000-01-06 Anthony Green <green@cygnus.com>
9892
9893 * expr.c (java_lang_expand_expr): Switch to permanent obstack
9894 before building constant array decl.
9895
9896 2000-01-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
9897
9898 * jcf-write.c (generate_bytecode_conditional): Fixed indentation in
9899 method invocation and typo in conditional expression.
9900 (generate_bytecode_insns): COND_EXPR can be part of a binop. Issue
9901 the appropriate NOTE_POP.
9902 * parse.y (patch_binop): Shift value mask to feature the right
9903 type.
9904
9905 1999-12-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9906
9907 * class.c (assume_compiled, assume_compiled_node): Add static
9908 prototype.
9909 (add_assume_compiled): Use xmalloc/xstrdup, not malloc/strdup.
9910
9911 * jcf-dump.c (ARRAY_NEW_NUM): Cast long to int in switch.
9912
9913 * jvgenmain.c (usage): Add static prototype with ATTRIBUTE_NORETURN.
9914
9915 * parse.h (OBSOLETE_MODIFIER_WARNING): Rename parameter `modifier'
9916 to `__modifier' to avoid stringifying it.
9917
9918 * parse.y (verify_constructor_circularity): Don't call a variadic
9919 function with a non-literal format string.
9920 (java_check_abstract_methods): Move unreachable code inside
9921 `continue' statement.
9922 (lookup_method_invoke): Call xstrdup, not strdup.
9923
9924 * expr.c (expand_java_field_op): Avoid the use of ANSI string
9925 concatenation.
9926
9927 * jcf-parse.c (yyparse): Likewise.
9928
9929 * jv-scan.c (main): Likewise.
9930
9931 1999-12-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9932
9933 * parse.h (ABSTRACT_CHECK, JCONSTRUCTOR_CHECK,
9934 ERROR_CANT_CONVERT_TO_BOOLEAN, ERROR_CANT_CONVERT_TO_NUMERIC,
9935 ERROR_CAST_NEEDED_TO_INTEGRAL): Avoid the use of ANSI string
9936 concatenation.
9937
9938 * parse.y (synchronized, variable_redefinition_error,
9939 check_class_interface_creation, create_interface, create_class,
9940 method_header, finish_method_declaration,
9941 check_modifiers_consistency, method_declarator,
9942 complete_class_report_errors, check_abstract_method_definitions,
9943 java_check_regular_methods, check_throws_clauses,
9944 java_check_abstract_methods, read_import_dir,
9945 check_pkg_class_access, declare_local_variables, fix_constructors,
9946 cut_identifier_in_qualified, resolve_expression_name,
9947 resolve_qualified_expression_name, patch_method_invocation,
9948 java_complete_lhs, patch_assignment, try_builtin_assignconv,
9949 patch_binop, patch_array_ref, patch_newarray, build_labeled_block,
9950 patch_exit_expr, patch_exit_expr, patch_switch_statement,
9951 patch_try_statement, patch_synchronized_statement,
9952 patch_throw_statement, check_thrown_exceptions,
9953 patch_conditional_expr): Likewise.
9954
9955 1999-12-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
9956
9957 * Makefile.in (LIBDEPS): Added gcc's errors.o
9958 (../jcf-dump$(exeext):): Link with gcc's errors.o
9959 (../gcjh$(exeext):): Likewise.
9960 * expr.c (expand_java_NEW): Layout the entire target type instead of
9961 laying out its methods only.
9962 (lookup_field): Layout the class after having loaded it.
9963 * java-tree.h (java_debug_context): Declared.
9964 * jcf-io.c (toplev.h): Included.
9965 (find_class): Removed assignment to jcf's outofsynch
9966 field. Force source file to be read if newer than its matching
9967 class file. Tweaked debug messages.
9968 * jcf-parse.c (jcf_out_of_synch): Deleted.
9969 (read_class): Call to jcf_out_of_synch removed.
9970 * jcf.h (typedef struct JCF): Field `outofsynch' deleted.
9971 (jcf_out_of_synch): Prototype deleted.
9972 * parse.h (struct parser_ctxt): `minus_seen', `java_error_flag',
9973 `deprecated' and `class_err': integer turned into bit-fields.
9974 New bit-fields `saved_data_ctx' and `saved_data'. Fixed comments.
9975 * parse.y (package_list): New global.
9976 (package_declaration:): Record newly parsed package name.
9977 (extra_ctxp_pushed_p): Static global deleted.
9978 (java_parser_context_save_global): Create buffer context for the
9979 purpose of saving globals, if necessary.
9980 (java_parser_context_restore_global): Pop context pushed for the
9981 purpose of saving globals, if necessary.
9982 (java_debug_context_do): New prototype and function.
9983 (java_debug_context): Likewise.
9984 (do_resolve_class): Use already parsed package names to qualify
9985 and lookup class candidate.
9986 (java_pre_expand_clinit): Removed unnecessary local variable.
9987
9988 1999-12-17 Tom Tromey <tromey@cygnus.com>
9989
9990 * gjavah.c (decode_signature_piece): Print "::" in JArray<>. This
9991 fixes PR gcj/119.
9992 (process_file): Use `\n\' at end of each line in string.
9993
9994 1999-12-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
9995
9996 * expr.c (expand_invoke): Layout the loaded class before
9997 attempting to use it.
9998 (expand_java_field_op): Allow final field assignments to take
9999 place in $finit$.
10000 * typeck.c (convert): Return error_mark_node if expr is null.
10001
10002 1999-12-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
10003
10004 * class.c (class_depth): Return -1 if the class doesn't load
10005 properly.
10006 * expr.c (can_widen_reference_to): Check for errors during depth
10007 computation and return 0 accordingly.
10008 * jcf-parse.c (parse_source_file): Call java_fix_constructors to
10009 create default constructors and add an other error check.
10010 * parse.h (java_fix_constructors): Prototyped.
10011 * parse.y (java_pre_expand_clinit): Likewise.
10012 (build_super_invocation): Re-prototyped to feature one argument.
10013 (java_check_circular_reference): Directly use `current'.
10014 (java_fix_constructors): New function.
10015 (java_check_regular_methods): Don't create default constructors
10016 here, but abort if none were found.
10017 (java_complete_expand_methods): Pre-process <clinit> calling
10018 java_pre_expand_clinit.
10019 (java_pre_expand_clinit): New function.
10020 (fix_constructors): build_super_invocation invoked with the
10021 current method declaration as an argument.
10022 (build_super_invocation): Use the context of the processed method
10023 decl argument instead of current_class.
10024 * typeck.c (lookup_java_method): Take WFLs in method names into
10025 account.
10026
10027 1999-12-14 Per Bothner <per@bothner.com>
10028
10029 * class.c (make_class_data): flag_keep_inline_functions to keep
10030 private methods in the method array.
10031
10032 1999-12-15 Anthony Green <green@cygnus.com>
10033
10034 * check-init.c (check_init): Take into account both types of
10035 `throw's when checking for uninitialized variables.
10036
10037 1999-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
10038
10039 * parse.y (java_complete_lhs): Force conversion of array
10040 dimensions to int_type_node, that's what runtime's ABI expects.
10041
10042 1999-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
10043
10044 * parse.h (EXPR_WFL_QUALIFICATION): Temporary uses the third
10045 operand of a WFL, until the Java front-end gets fixed with regard
10046 to Mark Mitchell's gcc/tree.h patch (1999-12-04.)
10047
10048 1999-12-10 Andrew Haley <aph@cygnus.com>
10049
10050 * parse.h (BUILD_THROW): Add support for sjlj-exceptions.
10051 decl.c (init_decl_processing): Add _Jv_Sjlj_Throw.
10052 expr.c (build_java_athrow): Add support for sjlj-exceptions.
10053 java-tree.h: Ditto.
10054 jcf-write.c: Ditto.
10055
10056 1999-12-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
10057
10058 * expr.c (java_lang_expand_expr): Switch to permanent obstack
10059 before calling expand_eh_region_start and expand_start_all_catch.
10060 * except.c (expand_start_java_handler): Switch to permanent
10061 obstack before calling expand_eh_region_start.
10062 (expand_end_java_handler): Switch to permanent obstack before
10063 calling expand_start_all_catch.
10064
10065 1999-12-5 Anthony Green <green@cygnus.com>
10066
10067 * decl.c (init_decl_processing): Mark throw_node as a noreturn
10068 function with side effects.
10069 (init_decl_processing): Mark all memory allocating DECLs with
10070 DECL_IS_MALLOC.
10071
10072 1999-12-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10073
10074 * except.c (expand_end_java_handler): Call
10075 expand_resume_after_catch and end_catch_handler.
10076
10077 1999-11-30 Anthony Green <green@cygnus.com>
10078
10079 * verify.c (verify_jvm_instructions): Create new return label
10080 chain if non existent (don't rely on the verified state of the jsr
10081 target.)
10082
10083 1999-11-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
10084
10085 * jcf-write.c (generate_bytecode_insns): Fixed indentation for
10086 COMPOUND_EXPR and FIX_TRUNC_EXPR cases.
10087
10088 * parse.y (patch_assignment): Removed bogus final class test on
10089 lhs when checking on whether to emit an ArrayStoreException runtime
10090 check.
10091 * expr.c (expand_java_arraystore): Likewise.
10092
10093 1999-11-28 Anthony Green <green@cygnus.com>
10094
10095 * decl.c (find_local_variable): Reuse single slot decls when
10096 appropriate.
10097
10098 1999-11-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
10099
10100 * jcf-parse.c (saw_java_source): Global variable removed.
10101 (read_class): Don't use `saw_java_source'. Added extra braces.
10102 (yyparse): Code setting `saw_java_source' removed.
10103
10104 1999-11-24 Mark Mitchell <mark@codesourcery.com>
10105
10106 * except.c (emit_handlers): Zero catch_clauses after emitting them.
10107
10108 1999-11-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
10109
10110 * verify.c (merge_type_state): Non verified subroutines being
10111 considered more than once to trigger passive type merge.
10112
10113 1999-11-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
10114
10115 * parse.y (catch_clause_parameter:): Still set `$$' to NULL_TREE
10116 in case of error. Error message tuned.
10117
10118 1999-11-21 Anthony Green <green@cygnus.com>
10119
10120 * constants.c (find_methodref_index): Unwrap method names before
10121 inserting them in the constant pool.
10122
10123 * jcf-parse.c (jcf_parse): Display `interface' when appropriate.
10124
10125 * class.c (assume_compiled_node): New typedef.
10126 (assume_compiled_tree): New static data.
10127 (find_assume_compiled_node): New function.
10128 (add_assume_compiled): New function.
10129 (assume_compiled): New function.
10130 * class.c (make_class_data): Use assume_compiled.
10131 (is_compiled_class): Use assume_compiled.
10132
10133 * java-tree.h (add_assume_compiled): Declare.
10134
10135 * lang.c (lang_decode_option): Parse new options.
10136
10137 1999-11-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
10138
10139 * class.c (layout_class): Always convert TYPE_SIZE_UNIT to
10140 int_type_node: that's what `_Jv_AllocObject' expects.
10141
10142 1999-11-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
10143
10144 * parse.y (lookup_method_invoke): Use lang_printable_name to
10145 reliably build the type name during error report. Fixes PR gcj/97.
10146
10147 1999-11-09 Tom Tromey <tromey@cygnus.com>
10148
10149 * jcf-path.c: Include <sys/stat.h>.
10150 (jcf_path_init): Search for libjava.zip. Fixes PR gcj/84.
10151 (DIR_UP): New macro.
10152
10153 1999-11-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
10154
10155 * parse.y (source_end_java_method): Resume permanent allocation,
10156 reversing Apr 27 1998 patch.
10157 (patch_string_cst): Pop obstacks after having pushed the permanent
10158 ones.
10159
10160 1999-11-05 Tom Tromey <tromey@cygnus.com>
10161
10162 * class.c (finish_class): Emit inlined methods if any native
10163 methods exist in the class. Fixes PR gcj/85.
10164
10165 1999-11-04 Alexandre Petit-Bianco <apbianco@cygnus.com>
10166
10167 * parse.y (resolve_qualified_expression_name): Handle PLUS_EXPR.
10168 (qualify_ambiguous_name): Likewise.
10169
10170 1999-11-03 Godmar Back <gback@cs.utah.edu>
10171
10172 * typeck.c: (lookup_java_method): search all inherited
10173 interfaces when looking up interface method.
10174
10175 1999-11-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10176
10177 * parse.y (method_header:): Issue error message for rule `type
10178 error'.
10179 (synchronized:): Error report when not using synchronized.
10180
10181 1999-11-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10182
10183 * parse.y (resolve_qualified_expression_name): Prevent `this' from
10184 being used before the superclass constructor has been called.
10185 (complete_function_arguments): Use CALL_EXPLICIT_CONSTRUCTOR_P
10186 instead of `CALL_THIS_CONSTRUCTOR_P'.
10187
10188 1999-10-30 Todd T. Fries <todd@lighthouse.fries.net>
10189
10190 * check-init.c: Fix typo in comment.
10191
10192 1999-10-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
10193
10194 * class.c (add_method_1): Set DECL_INLINE to 1 for private, static
10195 and final method.
10196
10197 1999-10-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
10198
10199 * parse.y (expression_statement:): Call function to report
10200 improper invocation of a constructor.
10201 (parse_ctor_invocation_error): New function.
10202
10203 1999-10-26 Mark Mitchell <mark@codesourcery.com>
10204
10205 * decl.c (poplevel): Don't set BLOCK_TYPE_TAGS or call
10206 remember_end_note.
10207
10208 1999-10-21 Tom Tromey <tromey@cygnus.com>
10209
10210 * jvgenmain.c (main): _Jv_Compiler_Properties now an extern; set
10211 in generated `main'.
10212
10213 1999-10-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
10214
10215 * parse.y (resolve_qualified_expression_name): Handle MODIFY_EXPR.
10216 (qualify_ambiguous_name): Likewise.
10217
10218 1999-10-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
10219
10220 * parse.y (java_complete_tree): fold_constant_for_init to work on
10221 permanent_obstack.
10222 (java_complete_lhs): Likewise.
10223 (array_constructor_check_entry): Complete an initializer element
10224 on permanent_obstack.
10225
10226 1999-10-19 Tom Tromey <tromey@cygnus.com>
10227
10228 * jcf-parse.c (parse_source_file): Call jcf_dependency_add_file.
10229 From Mike Moreton <mike@pillim.demon.co.uk>.
10230
10231 1999-10-15 Greg McGary <gkm@gnu.org>
10232
10233 * java-tree.h (flag_bounds_check): Remove extern decl.
10234 * lang.c (flag_bounds_check): Remove global variable.
10235 (lang_f_options): Remove "bounds-check" entry.
10236 (lang_init_options): Default flag_bounds_check to "on".
10237
10238 1999-10-14 Tom Tromey <tromey@cygnus.com>
10239
10240 * jvgenmain.c (usage): New function.
10241 (main): Use it. Also, handle `-D' options.
10242 * jvspec.c (lang_specific_driver): Recognize -D.
10243 (jvgenmain_spec): Added `%{D*}' to jvgenmain invocation.
10244
10245 * jvspec.c (jvgenmain_spec): Use `%umain', not just `%u'.
10246
10247 1999-10-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10248
10249 * jcf-dump.c (print_constant, disassemble_method): Don't call a
10250 variadic function with a non-literal format string.
10251
10252 * parse-scan.y (report_main_declaration): Likewise.
10253
10254 * parse.h (ERROR_CAST_NEEDED_TO_INTEGRAL): Likewise.
10255
10256 * parse.y (read_import_dir, patch_assignment, patch_binop,
10257 patch_array_ref): Likewise.
10258
10259 * typeck.c (build_java_array_type): Likewise.
10260
10261 * verify.c (verify_jvm_instructions): Likewise.
10262
10263 1999-10-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
10264
10265 * jcf-write.c (RELOCATION_VALUE_1): Fixed integer value from 0 to 1.
10266
10267 1999-10-07 Anthony Green <green@cygnus.com>
10268
10269 * jcf-write.c (generate_classfile): Use UNSAFE_PUTx in cases
10270 where CHECK_PUT may fail for valid reasons.
10271
10272 * jcf-write.c (UNSAFE_PUT1, UNSAFE_PUT2, UNSAFE_PUT3,
10273 UNSAFE_PUTN): New macros.
10274
10275 1999-10-04 Tom Tromey <tromey@cygnus.com>
10276
10277 * lex.h (BUILD_OPERATOR2): Return ASSIGN_ANY_TK in `lite' case as
10278 well. Fixes Java PR gcj/59.
10279 * parse-scan.y (yyerror): Report errors.
10280
10281 1999-09-24 Glenn Chambers <GChambers@provsol.com>
10282
10283 * decl.c (insert_block): Remove unconditional `abort'.
10284
10285 1999-09-24 Bernd Schmidt <bernds@cygnus.co.uk>
10286
10287 * decl.c (builtin_function): No longer static. New arg CLASS. Arg
10288 FUNCTION_CODE now of type int. All callers changed.
10289 Set the builtin's DECL_BUILT_IN_CLASS.
10290
10291 1999-09-23 Tom Tromey <tromey@cygnus.com>
10292
10293 * jvspec.c (lang_specific_driver): Don't read spec file if
10294 -fsyntax-only given.
10295
10296 1999-09-22 Tom Tromey <tromey@cygnus.com>
10297
10298 * lang-specs.h: Added `%(jc1)' to the jc1 spec.
10299
10300 * javaop.h (WORD_TO_FLOAT): Use `inline' unconditionally.
10301 (WORDS_TO_LONG): Likewise.
10302 (WORDS_TO_DOUBLE): Likewise.
10303
10304 1999-09-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
10305
10306 * jcf-write.c (RELOCATION_VALUE_0): New macro.
10307 (RELOCATION_VALUE_1): Likewise.
10308 (emit_iinc, emit_reloc, push_constant1, push_constant2,
10309 push_in_const, push_long_const): Prototyped.
10310 (push_constant1): Argument `index' is of type HOST_WIDE_INT.
10311 (push_constant2): Likewise.
10312 (push_int_const): Cast find_constant1's integer arguments to `jword'.
10313 (find_constant_wide): Cast find_constant2's integer arguments to
10314 `jword'.
10315 (find_constant_index): Cast find_constant2's and find_constant2's
10316 integer arguments to `jword'.
10317 (emit_pop): Argument `value' is of type HOST_WIDE_INT.
10318 (emit_switch_reloc): Use RELOCATION_VALUE_0.
10319 (emit_if): Use RELOCATION_VALUE_1.
10320 (emit_goto): Likewise.
10321 (emit_jsr): Likewise.
10322 (generate_bytecode_insns): Use RELOCATION_VALUE_0. Cast second
10323 argument to push_long_const to HOST_WIDE_INT.
10324
10325 1999-09-15 Andreas Schwab <schwab@suse.de>
10326
10327 * Makefile.in (parse.o): Depend on $(JAVA_TREE_H).
10328
10329 1999-09-20 Nick Clifton <nickc@cygnus.com>
10330
10331 * lang.c (lang_decode_option): Extend comment.
10332
10333 1999-09-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
10334
10335 * parse.y (java_method_add_stmt): Test against GET_CURRENT_BLOCK
10336 instead of fndecl.
10337
10338 1999-09-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10339
10340 * gjavah.c (get_field_name, print_method_info, print_include,
10341 add_namelet): Use xmalloc, not malloc.
10342
10343 * jcf-depend.c (add_entry): Likewise. Use xstrdup, not strdup.
10344 (munge): Use xrealloc, not realloc, trust xrealloc to handle a
10345 NULL pointer.
10346
10347 * jcf-io.c (open_in_zip, find_class): Use xstrdup, not strdup.
10348
10349 * jcf-parse.c (jcf_out_of_synch, yyparse): Likewise.
10350
10351 * jcf-path.c (add_entry): Likewise.
10352
10353 * jcf.h (ALLOC, REALLOC): Use xmalloc/xrealloc, not malloc/realloc.
10354
10355 * jv-scan.c (xmalloc): Remove definition.
10356
10357 * jvgenmain.c (xmalloc): Likewise.
10358
10359 * jvspec.c (lang_specific_driver): Use xcalloc, not xmalloc/bzero.
10360
10361 * lex.c (java_store_unicode): Use xrealloc, not realloc.
10362
10363 * parse-scan.y: Use concat, not of xmalloc/assign/strcpy. Use
10364 concat, not xmalloc/sprintf.
10365 (java_push_parser_context): Use xcalloc, not xmalloc/bzero.
10366 (xstrdup): Remove definition.
10367
10368 * parse.y (duplicate_declaration_error_p,
10369 constructor_circularity_msg, verify_constructor_circularity,
10370 check_abstract_method_definitions, java_check_regular_methods,
10371 java_check_abstract_methods, patch_method_invocation,
10372 check_for_static_method_reference, patch_assignment, patch_binop,
10373 patch_cast, array_constructor_check_entry, patch_return,
10374 patch_conditional_expr): Use xstrdup, not strdup.
10375
10376 * zextract.c (ALLOC): Use xmalloc, not malloc.
10377
10378 1999-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10379
10380 * Make-lang.in (jvspec.o): Depend on system.h and gcc.h.
10381
10382 * jvspec.c: Include gcc.h. Don't include gansidecl.h.
10383 (do_spec, lang_specific_pre_link, lang_specific_driver,
10384 input_filename, input_filename_length): Don't declare.
10385 (main_class_name, jvgenmain_spec, lang_specific_driver):
10386 Constify a char*.
10387 (lang_specific_driver): All calls to the function pointer
10388 parameter now explicitly call `fatal'.
10389
10390 1999-09-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
10391
10392 * parse.y (find_applicable_accessible_methods_list): Search
10393 abstract classes as interfaces.
10394
10395 1999-09-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
10396
10397 * class.c (finish_class): We're now outside a valid method
10398 declaration. Tell the rest of gcc so.
10399
10400 1999-09-08 Bruce Korb autogen@linuxbox.com
10401
10402 * Makefile.in: Give the gperf user a hint about why "gperf -F" fails.
10403
10404 1999-09-07 Tom Tromey <tromey@cygnus.com>
10405
10406 * gjavah.c (add_class_decl): Generate include for gcj/array.h, not
10407 java-array.h.
10408 (decode_signature_piece): Don't emit "::" in JArray<>.
10409 (print_namelet): Only print trailing `;' when printing a class.
10410
10411 1999-09-10 Bernd Schmidt <bernds@cygnus.co.uk>
10412
10413 * java-tree.h: Delete declarations for all tree nodes now moved to
10414 global_trees.
10415 * decl.c: Delete their definitions.
10416
10417 1999-09-04 Mark Mitchell <mark@codesourcery.com>
10418
10419 * Make-lang.in (jc1): Depend on ggc-callbacks.o.
10420 * Makefile.in (OBJS): Add ggc-callbacks.o.
10421 (OBJDEPS): Likewise.
10422
10423 1999-09-03 Tom Tromey <tromey@cygnus.com>
10424
10425 * parse.y (strip_out_static_field_access_decl): Return operand if
10426 it satisfies JDECL_P.
10427
10428 1999-09-02 Tom Tromey <tromey@cygnus.com>
10429
10430 * gjavah.c (decode_signature_piece): Emit "::" in JArray<>.
10431 Handle nested arrays, like `[[I'.
10432
10433 1999-09-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10434
10435 * class.c (finish_class): Remove unused parameter, all callers
10436 changed.
10437
10438 * expr.c (build_java_athrow): Change return type to void.
10439 (java_lang_expand_expr): Make sure each case in switch returns a
10440 value.
10441
10442 * java-tree.h (finish_class): Fix prototype to take void args.
10443
10444 * jcf-dump.c (usage): Mark with ATTRIBUTE_NORETURN.
10445 (main): Issue return from main, not exit.
10446
10447 * jcf-parse.c (parse_class_file): Fix call to `finish_class'.
10448
10449 * jcf.h (jcf_unexpected_eof): Mark with ATTRIBUTE_NORETURN.
10450
10451 * jv-scan.c (main): Issue return from main, not exit.
10452
10453 * parse.y (check_abstract_method_definitions,
10454 java_check_abstract_method_definitions): Add static prototypes.
10455 (java_complete_expand_methods): Fix call to `finish_class'.
10456
10457 * verify.c (verify_jvm_instructions): Initialize variables `oldpc'
10458 and `prevpc'.
10459
10460 1999-08-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10461
10462 * lang.c (language_string): Constify.
10463
10464 1999-08-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10465
10466 * Makefile.in (LIBS): Fix definition so we link with $(CLIB).
10467 Remove hacks for stuff which comes from libiberty.
10468
10469 * Make-lang.in: Likewise.
10470
10471 1999-08-30 Hans-Peter Nilsson <hp@axis.se>
10472
10473 * Makefile.in (xref.o): Depend on xref.c explicitly.
10474
10475 1999-08-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10476
10477 * java-tree.h (lang_printable_name): Constify a char*.
10478
10479 * lang.c (lang_printable_name): Likewise.
10480
10481 1999-08-27 Jeffrey A Law (law@cygnus.com)
10482
10483 * gjavah.c, jcf-write.c, verify.c: Do not use C++ style
10484 comments in C code.
10485
10486 1999-08-26 Tom Tromey <tromey@cygnus.com>
10487
10488 * gjavah.c (print_cxx_classname): Print "::" before qualified
10489 name.
10490
10491 1999-08-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
10492
10493 * parse.y (lookup_cl): Changed leading comment. Now does its best
10494 to set the column number.
10495 (qualify_ambiguous_name): Take WFL wrappers into account.
10496
10497 1999-08-25 Gregg Townsend <gmt@cs.arizona.edu>
10498
10499 * verify.c (verify_jvm_instructions): Don't check instruction
10500 validity beyond end of method.
10501
10502 1999-08-25 Tom Tromey <tromey@cygnus.com>
10503
10504 * jvspec.c (lang_specific_driver): Correctly handle --help again.
10505
10506 1999-08-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10507
10508 * gjavah.c (print_name, print_base_classname, utf8_cmp,
10509 cxx_keyword_subst, generate_access, name_is_method_p,
10510 get_field_name, print_field_name, super_class_name, print_include,
10511 decode_signature_piece, print_class_decls, usage, help,
10512 java_no_argument, version, add_namelet, print_namelet): Add static
10513 prototype.
10514 (print_base_classname, utf8_cmp, cxx_keyword_subst,
10515 name_is_method_p): Constify a char*.
10516 (get_field_name): Likewise. Prefer xstrdup over malloc/strcpy.
10517 Provide a final else clause in an if-else-if.
10518 (print_field_info): Add missing final arg in function call to
10519 `print_field_name'.
10520 (print_method_info, decompile_method, decode_signature_piece,
10521 print_c_decl, print_full_cxx_name, print_stub,
10522 print_mangled_classname, super_class_name, print_include,
10523 add_namelet, add_class_decl, print_class_decls, process_file,
10524 help): Constify a char*.
10525
10526 * jcf-write.c (jcf_handler, push_constant1, push_constant2,
10527 push_int_const, find_constant_wide, find_constant_index,
10528 push_long_const, field_op, maybe_wide, emit_dup, emit_pop,
10529 emit_iinc, emit_load_or_store, emit_load, emit_store, emit_unop,
10530 emit_binop, emit_reloc, emit_switch_reloc, emit_case_reloc,
10531 emit_if, emit_goto, emit_jsr, call_cleanups,
10532 make_class_file_name): Add static prototypes.
10533 (generate_bytecode_return, generate_bytecode_insns): Pass a
10534 NULL_PTR, not a NULL_TREE.
10535
10536 * jv-scan.c: Include "jcf.h".
10537 (main): Declare using DEFUN macro.
10538
10539 * jvspec.c (find_spec_file, lang_specific_pre_link,
10540 lang_specific_driver): Add prototypes.
10541 (find_spec_file): Constify a char*.
10542
10543 * keyword.gperf (hash, java_keyword): Add prototypes.
10544
10545 * lang.c (lang_print_error): Add static prototype.
10546 (lang_init): Prefer memcpy over bcopy to avoid casts.
10547
10548 * lex.c (yylex): Add static prototype.
10549
10550 * parse-scan.y: Include "lex.c" earlier.
10551
10552 * parse.h: Remove redundant declaration for `yylex'.
10553
10554 * parse.y (java_decl_equiv, binop_compound_p, search_loop,
10555 labeled_block_contains_loop_p): Add static prototypes.
10556 (not_accessible_p): Make static to match prototype.
10557
10558 * verify.c (start_pc_cmp): Don't needlessly cast away const.
10559
10560 1999-08-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10561
10562 * parse.y (check_method_redefinition): Changed leading comment.
10563 (check_abstract_method_definitions): New function.
10564 (java_check_abstract_method_definitions): New function.
10565 (java_check_regular_methods): Call it.
10566 (verify_constructor_super): Fixed indentation.
10567 (lookup_method_invoke): Likewise.
10568
10569 1999-08-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
10570
10571 * parse.y (method_header): Return a null pointer if the current
10572 class node is null.
10573 (finish_method_declaration): Return if the current function decl
10574 is null.
10575 (source_start_java_method): Likewise.
10576 (java_method_add_stmt): Likewise.
10577
10578 1999-08-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
10579
10580 * class.c (emit_register_class): Removed unnecessary call to
10581 start_sequence.
10582 * parse.y (labeled_block_contains_loop_p): Removed unused local
10583 variable.
10584
10585 1999-08-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
10586
10587 * parse.y (java_refold): Added prototype.
10588
10589 1999-08-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
10590
10591 * parse.y (BINOP_COMPOUND_CANDIDATES): New macro.
10592 (java_stabilize_reference): Removed unnecessary `else'.
10593 (java_complete_lhs): Set flag to remember boolean. Call
10594 java_refold. Added comments.
10595 (java_decl_equiv): New function.
10596 (binop_compound_p): Likewise.
10597 (java_refold): Likewise.
10598 (patch_unaryop): Striped static field access assigned to decl and
10599 op. Changed promotion scheme for ++/-- operators.
10600 (search_loop): New function.
10601 (labeled_block_contains_loop_p): Likewise.
10602 (patch_loop_statement): Call labeled_block_contains_loop_p. Added
10603 comment.
10604 (patch_bc_statement): Call search_loop. Fixed comment.
10605
10606 1999-08-14 Anthony Green <green@cygnus.com>
10607
10608 * expr.c (java_lang_expand_expr): Mark static array data as
10609 referenced.
10610
10611 1999-08-10 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
10612
10613 * jvgenmain.c (main): NUL-terminate name_obstack.
10614
10615 1999-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10616
10617 * check-init.c (check_bool2_init, done_alternative): Add static
10618 prototypes.
10619
10620 * class.c (add_interface_do, maybe_layout_super_class): Likewise.
10621 (add_method, build_utf8_ref, build_class_ref,
10622 append_gpp_mangled_type, layout_class_method): Constify a char*.
10623
10624 * decl.c (push_promoted_type, make_binding_level): Add static
10625 prototypes.
10626 (push_promoted_type, pushdecl): Constify a char*.
10627
10628 * except.c (find_handler_in_range, link_handler,
10629 check_start_handlers): Add static prototypes.
10630
10631 * expr.c (process_jvm_instruction): Constify a char*.
10632
10633 * gjavah.c (main): Constify a char*.
10634
10635 * java-tree.h (verify_jvm_instructions, process_jvm_instruction):
10636 Constify a char*.
10637
10638 * jcf-depend.c (free_entry, add_entry, munge, print_ents): Add
10639 static prototypes.
10640 (add_entry, jcf_dependency_set_target, jcf_dependency_add_target,
10641 munge, print_ents): Constify a char*.
10642
10643 * jcf-dump.c (disassemble_method): Constify a char*.
10644 (print_constant_pool, print_exception_table): Add static prototypes.
10645 (print_constant, print_exception_table, main, disassemble_method):
10646 Constify a char*.
10647
10648 * jcf-io.c (find_classfile, find_class): Likewise.
10649
10650 * jcf-parse.c (JPOOL_UTF_DATA, find_in_current_zip): Likewise.
10651 (set_source_filename, predefined_filename_p): Add static prototypes.
10652 (set_source_filename, get_constant, get_class_constant,
10653 find_in_current_zip): Constify a char*.
10654
10655 * jcf-path.c (free_entry, append_entry, add_entry, add_path): Add
10656 static prototypes.
10657 (add_entry, add_path, jcf_path_classpath_arg,
10658 jcf_path_CLASSPATH_arg, jcf_path_include_arg): Constify a char*.
10659
10660 * jcf-reader.c (get_attribute, jcf_parse_preamble,
10661 jcf_parse_constant_pool, jcf_parse_class, jcf_parse_fields,
10662 jcf_parse_one_method, jcf_parse_methods,
10663 jcf_parse_final_attributes): Add static prototypes.
10664 (get_attribute): Constify a char*.
10665
10666 * jcf.h (find_class, find_classfile, jcf_dependency_set_target,
10667 jcf_dependency_add_target, jcf_path_classpath_arg,
10668 jcf_path_CLASSPATH_arg, jcf_path_include_arg): Constify a char*.
10669
10670 * jv-scan.c (main): Constify a char*.
10671 (gcc_obstack_init): Add prototype arguments.
10672
10673 * jvgenmain.c (gcc_obstack_init): Likewise.
10674 (main): Constify a char*.
10675
10676 * lang.c (put_decl_string, put_decl_node, java_dummy_print): Add
10677 static prototypes.
10678 (put_decl_string, lang_print_error): Constify a char*.
10679 (lang_init): Remove redundant extern prototype.
10680
10681 * mangle.c (emit_unicode_mangled_name): Constify a char*.
10682
10683 * typeck.c (convert_ieee_real_to_integer, parse_signature_type):
10684 Add static prototypes.
10685 (get_type_from_signature): Constify a char*.
10686
10687 * verify.c (check_pending_block, type_stack_dup, start_pc_cmp ):
10688 Add static prototypes.
10689 (start_pc_cmp): Prefer PTR over GENERIC_PTR.
10690 (verify_jvm_instructions): Constify a char*.
10691
10692 * xref.c (xref_flag_value): Likewise.
10693
10694 * xref.h (xref_flag_value): Likewise.
10695
10696 * zextract.c (makeword, makelong): Add static prototypes.
10697 (makeword, makelong): Constify a uch*.
10698
10699 1999-08-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10700
10701 * lang.c (java_dummy_print): Constify a char*.
10702 (lang_print_error): Likewise.
10703 (lang_init): Remove redundant prototype for `print_error_function'.
10704 (lang_init_source): Likewise.
10705 (lang_identify): Constify a char*.
10706
10707 1999-08-09 Tom Tromey <tromey@cygnus.com>
10708
10709 * javaop.h (WORD_TO_FLOAT): only inline if building with gcc.
10710 (WORDS_TO_LONG): Likewise.
10711 (WORDS_TO_DOUBLE): Likewise.
10712
10713 1999-08-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10714
10715 * Makefile.in (lang.o): Depend on $(RTL_H) $(EXPR_H).
10716
10717 * expr.c (java_stack_pop, java_array_data_offset,
10718 build_java_throw_out_of_bounds_exception, case_identity,
10719 build_java_check_indexed_type): Add static prototypes.
10720 (linenumber_table, expand_invoke, expand_java_field_op,
10721 build_primtype_type_ref, expand_byte_code): Constify a char*.
10722
10723 * java-tree.h (build_primtype_type_ref, linenumber_table):
10724 Constify a char*.
10725 (java_lang_expand_expr): Add prototype.
10726
10727 * lang.c: Include rtl.h and expr.h. Remove extern prototype for
10728 `java_lang_expand_expr'.
10729
10730 * lex.c (java_lex_error): Constify a char*.
10731 (java_get_unicode, java_read_char, java_allocate_new_line,
10732 java_unget_unicode, java_sneak_unicode): Prototype.
10733
10734 * parse-scan.y (current_class, package_name, method_declarator,
10735 report_class_declaration, yyerror): Constify a char*.
10736
10737 * parse.h (java_report_errors): Prototype.
10738 (yyerror): Constify a char*.
10739
10740 * parse.y (classitf_redefinition_error, check_modifiers,
10741 parse_jdk1_1_error, lookup_package_type,
10742 lookup_package_type_and_set_next, get_printable_method_name,
10743 purify_type_name): Constify a char*.
10744 (build_super_invocation, maybe_generate_finit,
10745 verify_constructor_super, parser_add_interface,
10746 add_superinterfaces, jdep_resolve_class, note_possible_classname,
10747 java_complete_expand_methods, java_expand_finals,
10748 cut_identifier_in_qualified, java_stabilize_reference,
10749 do_unary_numeric_promotion, operator_string, do_merge_string_cste,
10750 merge_string_cste): Prototype.
10751 (single_type_import_declaration, yyerror,
10752 variable_redefinition_error, build_array_from_name,
10753 build_unresolved_array_type, check_class_interface_creation,
10754 resolve_class, complete_class_report_errors,
10755 note_possible_classname, read_import_dir,
10756 find_in_imports_on_demand, resolve_package, fix_constructors,
10757 check_deprecation, lookup_method_invoke,
10758 maybe_build_primttype_type_ref, array_constructor_check_entry):
10759 Constify a char*.
10760 (java_complete_expand_methods, java_expand_finals): Make static.
10761 (convert_narrow): Remove static prototype.
10762
10763 1999-08-03 J"orn Rennecke <amylaar@cygnus.co.uk>
10764
10765 * Makefile.in (decl.o): Depends on $(srcdir)/../defaults.h.
10766
10767 1999-08-02 Richard Henderson <rth@cygnus.com>
10768
10769 * decl.c: Include defaults.h instead of expr.h.
10770 * parse.y: Likewise.
10771
10772 1999-08-02 Jakub Jelinek <jj@ultra.linux.cz>
10773
10774 * java/decl.c (start_java_method): Change all uses of
10775 PROMOTE_PROTOTYPES, so that it tests it as a C expression.
10776 Ensure expr.h is included.
10777 * java/expr.c (pop_arguments): Ditto.
10778 * java/parse.y (expand_start_java_method): Ditto.
10779
10780 1999-08-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10781
10782 * Makefile.in (ALL_CFLAGS): Add '-W -Wall'.
10783
10784 1999-07-31 Bernd Schmidt <bernds@cygnus.co.uk>
10785
10786 * decl.c: Include "function.h".
10787 * except.c: Likewise.
10788 * parse.y: Likewise.
10789 * Makefile.in: Update dependencies.
10790
10791 1999-07-30 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10792
10793 * expr.c (build_java_soft_divmod): Provide a default case in switch.
10794 (java_lang_expand_expr): Mark parameters `target', `tmode' and
10795 `modifier' with ATTRIBUTE_UNUSED.
10796
10797 * gjavah.c (process_file): Add braces around ambiguous `else'.
10798
10799 * jcf-dump.c (print_access_flags, localvar_free): Change return
10800 type to void.
10801
10802 * parse.y (java_complete_expand_method): Initialize variable
10803 `exception_copy'.
10804 (resolve_qualified_expression_name): Likewise for `field_decl'.
10805 (patch_method_invocation): Likewise for `class_to_search'.
10806 (qualify_ambiguous_name): Likewise for `name' and `ptr_type'.
10807 (patch_assignment): Likewise for `lhs_type'.
10808
10809 * verify.c (verify_jvm_instructions): Remove unused variable
10810 `caller'.
10811
10812 1999-07-25 Richard Henderson <rth@cygnus.com>
10813
10814 * decl.c (va_list_type_node): New.
10815
10816 1999-07-25 Anthony Green <green@cygnus.com>
10817
10818 * gjavah.c (print_stub): New function.
10819 (METHOD_IS_NATIVE): New macro.
10820 (print_mangled_classname): Make static.
10821 (HANDLE_END_FIELD): Don't emit fields during stub generation.
10822 (process_file): Perform stub generation.
10823 (HANDLE_METHOD): Don't emit class decls during stub
10824 generation.
10825 (HANDLE_END_METHOD): Take into account stub generation.
10826 (print_method_info): Handle stub generation.
10827 (print_stub): New function.
10828 (print_cxx_classname): Make signature consistant with others.
10829 (help): Describe -stubs option.
10830 (main): Create stub file.
10831 (version): Use version.c.
10832 (print_full_cxx_name): New function.
10833 (print_c_decl): Use print_full_cxx_name.
10834
10835 1999-07-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10836
10837 * check-init.c (check_init): Handle MAX_EXPR.
10838
10839 1999-07-15 Andrew Haley <aph@cygnus.com>
10840
10841 * lang.c (flag_use_divide_subroutine): New variable.
10842 * typeck.c: (convert_ieee_real_to_integer): Bounds check
10843 fp-to-integer conversion.
10844 (convert): Call convert_ieee_real_to_integer when flag_fast_math
10845 is not set.
10846
10847 * expr.c (build_java_soft_divmod): New function.
10848 (build_java_binop): Call build_java_soft_divmod if
10849 flag_use_divide_subroutine is set.
10850 * decl.c: soft_idiv_node, soft_irem_node, soft_ldiv_node, tree
10851 soft_lrem_node: new builtin functions.
10852 (init_decl_processing) Initialize the new builtins.
10853 * java-tree.h soft_idiv_node, soft_irem_node, soft_ldiv_node, tree
10854 soft_lrem_node: new builtin functions.
10855 (build_java_soft_divmod): New function.
10856 * parse.y: Call build_java_soft_divmod if
10857 flag_use_divide_subroutine is set.
10858 * parse.c: Rebuilt.
10859
10860 * jvspec.c (lang_specific_driver): Always allow an extra arg (for
10861 a --specs= arg) even if not linking.
10862 * lang-options.h (DEFINE_LANG_NAME ("Java")): Add
10863 -fuse-divide-subroutine
10864
10865 1999-07-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
10866
10867 * parse.y (resolve_and_layout): Check methods only once.
10868 (resolve_qualified_expression_name): Verify thrown exceptions
10869 compatibility.
10870 (check_thrown_exceptions): Reject exceptions thrown in
10871 initializer. Error message tuned.
10872
10873 1999-07-14 Andrew Haley <aph@cygnus.com>
10874
10875 * expr.c (expand_expr): Do not return the last statement in a
10876 block as the block's value.
10877
10878 1999-07-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
10879
10880 * expr.c (force_evaluation_order): Save the COMPOUND_EXPR'ed
10881 CALL_EXPR, to avoid order of evaluation changes.
10882
10883 1999-07-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
10884
10885 * parse.y (qualify_ambiguous_name): Do not use
10886 IDENTIFIER_LOCAL_VALUE when name is a STRING_CST.
10887
10888 1999-07-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
10889
10890 * check-init.c (check_init): Handle MAX_EXPR.
10891 * expr.c (force_evaluation_order): Force method call arguments to
10892 be evaluated in left-to-right order.
10893 * parse.y (qualify_ambiguous_name): Loop again to qualify
10894 NEW_ARRAY_EXPR properly.
10895
10896 1999-06-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
10897
10898 * parse.y (patch_invoke): Resolve unresolved invoked method
10899 returned type.
10900 (qualify_ambiguous_name): STRING_CST to qualify expression for
10901 type name resolution.
10902
10903 1999-06-24 Andrew Haley <aph@cygnus.com>
10904
10905 * class.c (finish_class): Whenever a deferred method is
10906 output, rescan the list of methods to see if a new candidate for
10907 output can be found.
10908
10909 1999-06-28 Tom Tromey <tromey@cygnus.com>
10910
10911 * jvspec.c (lang_specific_driver): Recognize --help.
10912
10913 1999-06-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
10914
10915 * parse.y (resolve_package): Fixed bogus return statement.
10916 (patch_method_invocation): Resolve method invocation beginning with
10917 a package name qualifier.
10918
10919 1999-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
10920
10921 * Make-lang.in (java.stage1): Depend on stage1-start.
10922 (java.stage2): Likewise for stage2-start.
10923 (java.stage3): Likewise for stage3-start.
10924 (java.stage4): Likewise for stage4-start.
10925
10926 1999-06-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
10927
10928 * parse.y (java_complete_lhs): When doing cross referencing, don't
10929 try to keep file location on a WFL expanded as a CALL_EXPR.
10930
10931 1999-06-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
10932
10933 * parse.y (finish_method_declaration): Insert a RETURN_EXPR when
10934 compiling to class file a void method with an empty method body.
10935 As a side effect, the bytecode backend will generate the
10936 appropriate `return' instruction.
10937
10938 1999-06-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
10939
10940 * parse.y (lookup_package_type_and_set_next): New function prototype.
10941 (resolve_package): Search current and imported packages.
10942 (lookup_package_type_and_set_next): New function.
10943
10944 1999-06-22 Andrew Haley <aph@cygnus.com>
10945
10946 * verify.c (verify_jvm_instructions): Check for pending blocks
10947 before invalid PC test and opcode switch, not after.
10948
10949 1999-06-21 Andrew Haley <aph@cygnus.com>
10950
10951 * except.c (find_handler_in_range): The upper limit for exception
10952 ranges is exclusive, not inclusive: (start <= pc < end).
10953 (link_handler): find child pointer which points to outer by
10954 searching sibling list: previous code incorrectly assumed that
10955 outer->outer->first_child must point to outer.
10956 * verify.c (verify_jvm_instructions): FIXME added to code for
10957 `athrow'.
10958 (verify_jvm_instructions): Do not assume that the last block
10959 processed in a subroutine is a block which ends with a `ret'
10960 instruction. With some control flows it is possible that the last
10961 block ends with an `athrow'.
10962
10963 1999-06-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
10964
10965 * parse.y (qualify_ambiguous_name): Reorganized the post
10966 evaluation of non WFL leading expression nodes.
10967
10968 1999-06-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
10969
10970 * parse.y (qualify_ambiguous_name): Handle ARRAY_REF after
10971 CONVERT_EXPR.
10972
10973 1999-06-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
10974
10975 * parse.y (qualify_ambiguous_name): Handle qualified expression
10976 beginning with a STRING_CST.
10977
10978 1999-06-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
10979
10980 * parse.y (register_fields): Set DECL_INITIAL on both
10981 pre-initialized static and public fields.
10982 (resolve_field_access): Static field access expressions to always
10983 use pointer types.
10984 (qualify_ambiguous_name): Work out buried CALL_EXPR for proper
10985 qualification. CONVERT_EXPR to be resolved as an expression name.
10986 (java_complete_lhs): Identify and access qualified final
10987 initialized field in switch statement case expression.
10988 (fold_constant_for_init): Pre-initialized field decl constant to
10989 be folded.
10990
10991 1999-06-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
10992
10993 * parse.y (note_possible_classname): Mark returned node with
10994 QUALIFIED_P only if the original class name contained a '/'.
10995
10996 1999-06-05 Anthony Green <green@cygnus.com>
10997
10998 * Make-lang.in (gcjh): More parallel build fixes.
10999
11000 1999-06-03 Mike Stump <mrs@wrs.com>
11001
11002 * Make-lang.in (JCF_DUMP_SOURCES, jvgenmain): Fix parallel builds.
11003
11004 1999-06-02 Anthony Green <green@cygnus.com>
11005
11006 * except.c (link_handler): Chain exception handlers in order.
11007
11008 1999-06-02 Anthony Green <green@cygnus.com>
11009
11010 * expr.c (expand_byte_code): Fill unreachable bytecode regions
11011 with nops and process as usual in order to always set correct EH
11012 ranges. Emit detailed warnings about unreachable bytecodes.
11013
11014 1999-06-02 Anthony Green <green@cygnus.com>
11015
11016 * class.c (build_utf8_ref): Mark cinit and utf8 tree nodes as
11017 constant.
11018
11019 1999-05-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
11020
11021 * parse.y (lookup_field_wrapper): Unified returned value to NULL
11022 or the searched field decl.
11023
11024 1999-05-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
11025
11026 * parse.y (fold_constant_for_init): Convert numerical constant
11027 values to the type of the assigned field.
11028
11029 1999-05-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
11030
11031 * expr.c (lookup_field): Relaxed the test on class loading error
11032 detection.
11033 * parse.y (fold_constant_for_init): Enabeled old code.
11034
11035 1999-05-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
11036
11037 * parse.y (valid_ref_assignconv_cast_p): Let `_Jv_CheckCast'
11038 decide the validity of the cast of a java.lang.Cloneable reference
11039 to an array.
11040 (patch_conditional_expr): Fixed first argument passed to
11041 binary_numeric_promotion.
11042
11043 1999-05-26 Alexandre Petit-Bianco <apbianco@cygnus.com>
11044
11045 * parse.y (qualify_ambiguous_name): Take into account that a
11046 CONVERT_EXPR might specify a type as a WFL.
11047
11048 1999-05-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
11049
11050 * parse.y (patch_assignment): Save the rhs before using it as an
11051 argument to _Jv_CheckArrayStore.
11052
11053 1999-05-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
11054
11055 * lex.c (java_parse_doc_section): Fixed `tag' buffer size.
11056
11057 1999-05-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
11058
11059 * lex.c (java_lex): Accepts `+' or `-' after the beginning of a
11060 floating point literal only when the exponent indicator has been
11061 parsed.
11062
11063 1999-05-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
11064
11065 * parse.y (formal_parameter:): Construct argument tree list
11066 element even if a yet unsupported final parameter was encountered.
11067
11068 1999-05-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
11069
11070 * parse.y (finish_method_declaration): Issue errors for native or
11071 abstract methods declared with a method body, as well as for non
11072 native or non abstract methods with no method body.
11073
11074 1999-05-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11075
11076 * class.c (build_utf8_ref): Initialize variable `field'.
11077
11078 * decl.c (init_decl_processing): Initialize variable `field'.
11079
11080 * expr.c (build_known_method_ref): Mark parameters `method_type',
11081 `method_signature' and `arg_list' with ATTRIBUTE_UNUSED.
11082 (process_jvm_instruction): Likewise for parameter `length'.
11083
11084 * jvspec.c (lang_specific_driver): Mark variables `saw_math',
11085 `saw_libc', `saw_gc', `saw_threadlib' and `saw_libgcj' with
11086 ATTRIBUTE_UNUSED.
11087
11088 * parse.y (maybe_generate_clinit): Remove unused variable
11089 `has_non_primitive_fields'.
11090 (find_in_imports_on_demand): Initialize variables `node_to_use'
11091 and `cl'.
11092 (patch_binop): Likewise for variable `prom_type'.
11093 (patch_unaryop): Likewise for variable `prom_type'.
11094
11095 * verify.c (verify_jvm_instructions): Likewise for variable `last'.
11096
11097 * xref.c (xref_table): Add missing initializer.
11098
11099 1999-05-14 Tom Tromey <tromey@cygnus.com>
11100
11101 * java-except.h (struct eh_range): Removed unused `next' member.
11102 * verify.c (verify_jvm_instructions): Call check_nested_ranges
11103 after adding all exception handlers. Sort exception ranges in
11104 order of start PC.
11105 (struct pc_index): New structure.
11106 (start_pc_cmp): New function.
11107 * except.c (add_handler): Return `void'. Don't call link_handler;
11108 instead construct an ordinary linked list and do range
11109 coalescing.
11110 (check_nested_ranges): New function.
11111 (link_handler): Changed interface to allow merging of eh_ranges.
11112 Split overlapping ranges. Return `void'.
11113
11114 1999-05-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
11115
11116 * parse.y (constructor_block_end:): New rule, tagged <node>.
11117 (constructor_body:): Use `constructor_block_end' instead of
11118 `block_end'.
11119
11120 1999-05-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
11121
11122 * parse.y (statement_nsi:): Pop `for' statement block.
11123 (java_complete_lhs): Labeled blocks containing no statement are
11124 marked as completing normally.
11125
11126 1999-05-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
11127
11128 * xref.c (xref_set_current_fp): New function, defined.
11129 * xref.h (xref_set_current_fp): New function, prototyped.
11130
11131 1999-05-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
11132
11133 * check-init.c (check_init): Take into account that
11134 LABELED_BLOCK_STMT can be empty.
11135
11136 1999-05-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
11137
11138 * parse.y (java_check_regular_methods): Warning check on not
11139 overriding methods with default access in other packages does not
11140 apply to `<clinit>'.
11141 (java_complete_lhs): If block body is an empty_stmt_node, replace
11142 it by NULL_TREE. This prevents gcc from generating an irrelevant
11143 warning.
11144
11145 1999-05-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
11146
11147 * check-init.c (check_init): Removed code accepting to see things
11148 falling through default:, when doing xrefs.
11149 * java-tree.h (do_not_fold): New global variable, declared.
11150 * parse.y (do_not_fold): New global variable, defined.
11151 (java_complete_expand_method): Set `do_not_fold' to the value of
11152 `flag_emit_xref'. When doing xrefs: copy the thrown exceptions,
11153 and reinstall them after them have been purged; do not check for
11154 initializations; do not issue missing return errors.
11155 (java_complete_lhs): Do not attempt to patch INSTANCEOF_EXPR nodes
11156 when doing xrefs.
11157 (patch_binop): Skip the fold part when doing xrefs.
11158 (build_string_concatenation): Skip the concatenation part when
11159 doing xrefs.
11160 (patch_synchronized_statement): Do not generate a try-finally when
11161 doing xrefs.
11162 (patch_throw_statement): When doing xrefs, do not call BUILD_THROW
11163 and keep the location where the throw was seen.
11164 * typeck.c (convert): When `do_not_fold' is set, do not attempt
11165 any treatment on the converted node an simply return a NOP_EXPR of
11166 the targeted type.
11167 * xref.c (xref_get_data): New function, defined.
11168 * xref.h (xref_get_data): New function, declared.
11169 (XREF_GET_DATA): Use xref_get_data.
11170
11171 1999-05-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11172
11173 * gjavah.c (print_include): Cast the result of `strlen' to int
11174 when comparing against a signed value.
11175 (add_namelet): Likewise.
11176
11177 1999-05-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11178
11179 * expr.c (expand_invoke): Mark parameter `nargs' with
11180 ATTRIBUTE_UNUSED.
11181 (PRE_LOOKUP_SWITCH): Likewise for variable `match'.
11182
11183 * jcf-io.c (jcf_unexpected_eof): Mark parameter `count' with
11184 ATTRIBUTE_UNUSED.
11185
11186 * jcf-reader.c (get_attribute): Cast a value to long
11187 when comparing against a signed expression. Likewise.
11188
11189 * lex.h: Never define HOST_WIDE_INT, HOST_BITS_PER_WIDE_INT or
11190 HOST_BITS_PER_CHAR.
11191
11192 1999-05-11 Andrew Haley <aph@cygnus.com>
11193
11194 * parse.y (source_end_java_method): If the current method contains
11195 any exception handlers, force asynchronous_exceptions: this is
11196 necessary because signal handlers in libjava may throw exceptions.
11197 * decl.c (end_java_method): Ditto.
11198
11199 1999-05-11 Tom Tromey <tromey@cygnus.com>
11200
11201 * Make-lang.in (jvspec.o): Don't define WITH_THREAD_x or WITH_GC_x
11202 flags.
11203 * jvspec.c (THREAD_NAME): Removed.
11204 (GC_NAME): Likewise.
11205 (MATHLIB): Likewise.
11206 (WITHLIBC): Likewise.
11207 (GCLIB): Likewise.
11208 (THREADLIB): Likewise.
11209 (MATH_LIBRARY): Likewise.
11210 (lang_specific_driver): Don't add `-l' options to command line.
11211 Instead, add a single --specs option. Recognize `-L' options and
11212 use them to search for spec file.
11213 (find_spec_file): New function.
11214 (SPEC_FILE): New define.
11215
11216 1999-05-11 Dave Brolley <brolley@cygnus.com>
11217
11218 * lang-options.h: -MD, -MMD, -M and -MM not needed here for
11219 cpplib-enabled build.
11220
11221 1999-05-05 Per Bothner <bothner@cygnus.com>
11222
11223 * class.c (make_field_value): DECL_INITIAL may be a string literal;
11224 temporarily zero it while calling rest_of_decl_compilation.
11225
11226 * java-tree.h (string_ptr_type_node): Add declaration.
11227 * decl.c: Define and initialize string_ptr_type_node.
11228 * parse.y (patch_string_cst): Use string_ptr_type_node.
11229
11230 * parse.h (LOOP_HAS_LABEL_P, LOOP_HAS_LABEL_SKIP_P): Removed.
11231 * parse.y (for_statement): Now unconditionally exit_block.
11232 (finish_labeled_statement): No longer exit_block if for-loop.
11233 (patch_loop_statement): Check harder if the loop is already labeled.
11234
11235 * parse.y (patch_initialized_static_field): Removed function.
11236 (maybe_generate_clinit): Removed special handling for interfaces.
11237 (java_complete_expand_methods): Do a preliminary java_complete_tree
11238 on <clinit> to determine if it can be removed.
11239 (java_complete_expand_method): Remove special handling for <clinit>.
11240 (java_complete_lhs): For BLOCK and EXPR_WITH_FILE_LOCATION
11241 optimize if we get back empty_stmt_node.
11242 For MODIFY_EXPR, re-do checking of static initializers.
11243 (fold_constant_for_init): Don't return immediate if VAR_DECL.
11244 For VAR_DECL, pass correct context.
11245
11246 * verify.c (verify_jvm_instructions): Better error messages.
11247
11248 1999-05-03 Tom Tromey <tromey@cygnus.com>
11249
11250 * parse-scan.y (interface_declaration): Call
11251 report_class_declaration for interfaces.
11252
11253 1999-04-30 20:54 -0400 Zack Weinberg <zack@rabi.columbia.edu>
11254
11255 * Makefile.in: Remove -v from bison command lines.
11256
11257 1999-04-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
11258
11259 * check-init.c (check_init): Exclude a case of error when doing
11260 xrefs.
11261 * class.c (layout_class_method): Don't generate the error message
11262 twice when compiling from source.
11263 * lang-options.h: Added `-Wredundant-modifers' and
11264 `-Wunusupported-jdk11' flags and help text.
11265 * lang.c (lang_decode_option): Added support for
11266 `-Wunsupported-jdk11' and `-Wredundant-modifiers'.
11267 flag_static_local_jdk11 and flag_redundant set accordingly.
11268 * lex.c (java_lex): Call BUILD_OPERATOR on CCB_TK.
11269 * parse.h (EXPR_WFL_ADD_COL): New macro.
11270 (DECL_END_SOURCE_LINE): Likewise.
11271 (DECL_INHERITED_SOURCE_LINE): Likewise.
11272 * parse.y (static_ref_err): New function, prototyped.
11273 (CCB_TK): Now tagged <operator>.
11274 (class_body:): Remember the location of the closing '}' of a class
11275 definition when doing xrefs.
11276 (block:): Likewise.
11277 (block_end:): Likewise.
11278 (create_class): Remember the location of the inherited class
11279 identifier when doing xrefs.
11280 (register_fields): Added test on first operand of `init' before
11281 testing it TREE_CODE.
11282 (method_header): Store the location of the class identifier in the
11283 class decl when doing xrefs.
11284 (finish_method_declaration): Don't combine first/last method line
11285 when doing xref.
11286 (java_check_regular_methods): Warning check on not overriding
11287 methods with default access on other packages move before check on
11288 static methods. Initialization of `aflags' also moved up.
11289 (resolve_expression_name): Call static_ref_err to report the error.
11290 (static_ref_err): New function, implemented.
11291 (resolve_field_access): Returned simplified static field access
11292 when doing xrefs.
11293 (resolve_qualified_expression_name): Check for illegal use of
11294 static fields in a non static context. Call static_ref_err to
11295 report error in various places.
11296 (java_complete_tree): Do not fold initialized static fields when
11297 doing xrefs.
11298 (java_complete_lhs): Likewise.
11299
11300 1999-04-29 Anthony Green <green@cygnus.com>
11301
11302 * expr.c (generate_name): Use ASM_GENERATE_INTERNAL_LABEL to
11303 create internal labels.
11304 (lookup_label): Ditto.
11305
11306 1999-04-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
11307
11308 * class.c (layout_class_method): Generate <clinit>'s rtl for
11309 interfaces.
11310 * decl.c (complete_start_java_method): Don't call _Jv_InitClass
11311 for interfaces' <clinit>.
11312 * expr.c (lookup_field): Search for fields in interfaces.
11313 (expand_invoke): Fixed indentation.
11314 (expand_java_field_op): Likewise. Use IS_CLINIT.
11315 * parse.h (JPRIMITIVE_TYPE_OR_VOID_P): Macro removed.
11316 (IS_CLINIT): New macro.
11317 * parse.y (type_declaration:): Call maybe_generate_clinit after an
11318 interface was parsed.
11319 (maybe_generate_clinit): Don't generate if the current class is an
11320 interface with only fields of primitive types.
11321 (reset_method_name): Use IS_CLINIT.
11322 (java_complete_expand_method): Expand <clinit> when it exists for
11323 interfaces. Use IS_CLINIT.
11324 (resolve_expression_name): Use DECL_CONTEXT instead of
11325 current_class to build static field references.
11326 (java_complete_lhs): Use IS__CLINIT. Don't use SAVE_EXPR on
11327 ARRAY_REF when doing xreferencing.
11328 (check_final_assignment): Fixed typo in leading comment. Use
11329 IS_CLINIT.
11330 (patch_array_ref): Don't fully expand array references when
11331 xreferencing.
11332 (patch_return): Use IS_CLINIT.
11333 (patch_throw_statement): Likewise.
11334
11335 1999-04-22 Tom Tromey <tromey@cygnus.com>
11336
11337 * Make-lang.in (JAVA_SRCS): Added check-init.c.
11338
11339 1999-04-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
11340
11341 * decl.c (predef_filenames, predef_filenames_size): New globals
11342 (init_decl_processing): predef_filenames and predef_filenames_size
11343 initialized.
11344 * java-tree.h (predef_filenames, predef_filenames_size): Declared
11345 extern.
11346 * jcf-parse.c (predefined_filename_p): New function.
11347 (yyparse): Check that files on the command line are specified only
11348 once and issue a warning otherwise.
11349 * parse.h (JPRIMITIVE_TYPE_OR_VOID_P): New macro.
11350 * parse.y (source_end_java_method): Nullify NOP method bodies, to
11351 avoid a gcc warning with -W -Wall turned on.
11352 (java_expand_classes): Abort if errors were encountered.
11353 (java_complete_lhs): If the cross reference flag is set, wrap
11354 field DECL node around a WFL when resolving expression name.
11355
11356 1999-04-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
11357
11358 * lang.c (lang_decode_option): Fixed returned value when parsing
11359 `-fxref=...' and `-Wall'.
11360 * parse.y (source_end_java_method): Do not generate code when
11361 flag_emit_xref is set.
11362 (resolve_expression_name): Do not build static field access when
11363 flag_emit_xref is set.
11364 (resolve_field_access): No special treatment on `length' when
11365 flag_emit_xref is set. Do not build qualified static field access
11366 when flag_emit_xref is set.
11367 (patch_invoke): Keep the method DECL as operand 0 of the CALL_EXPR
11368 when flag_emit_xref is set.
11369 (patch_assignment): Do not generate array store runtime check when
11370 flag_emit_xref is set.
11371 * xref.c (xref_flag_value): Fixed function declaration
11372 indentation.
11373 (xset_set_data): New function.
11374 * xref.h (xref_set_data): Added prototype for new function.
11375 (typedef struct xref_flag_table): New field data.
11376 (XREF_GET_DATA): New macro.
11377
11378 1999-04-19 Tom Tromey <tromey@cygnus.com>
11379
11380 * xref.h (enum): Removed trailing comma.
11381
11382 * parse.y (resolve_qualified_expression_name): Added missing
11383 `break'.
11384
11385 1999-04-15 Anthony Green <green@cygnus.com>
11386
11387 * gjavah.c: New prototypes for java_float_finite and
11388 java_double_finite.
11389
11390 1999-04-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
11391
11392 * parse.y (patch_unaryop): Fixed ++/-- operator check on array
11393 references.
11394
11395 1999-04-06 Jeffrey A Law (law@cygnus.com)
11396
11397 * Makefile.in (TREE_H): Add tree-check.h.
11398 (RTL_H): Add genrtl.h.
11399
11400 1999-04-06 Alexandre Petit-Bianco <apbianco@cygnus.com>
11401
11402 * parse.y (patch_assignment): Added ArrayStoreException runtime
11403 check.
11404
11405 1999-04-06 Per Bothner <bothner@cygnus.com>
11406
11407 * expr.c (pop_type_0): New function.
11408 (pop_type): Use pop_type_0.
11409 * java-tree.h (pop_type_0): New declaration.
11410 * verify.c (verify_jvm_instructions): Check return instructions.
11411
11412 * parse.y (patch_binop): Don't fold if non-constant and emiting
11413 class files.
11414
11415 1999-04-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11416
11417 * Makefile.in (gjavah.o): Depend on $(JAVA_TREE_H).
11418
11419 * gjavah.c: Include math.h earlier. Include tree.h/java-tree.h.
11420 (main_jcf): Don't define.
11421 (process_file): Don't set `main_jcf'.
11422
11423 * java-tree.h (main_jcf): Don't declare.
11424
11425 * jcf-parse.c (main_jcf): Add static definition.
11426
11427 * lang.c (main_jcf): Don't define.
11428
11429 1999-04-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11430
11431 * class.c (add_method_1): Cast the argument of `bzero' to PTR.
11432
11433 * decl.c (copy_lang_decl): Likewise for `bcopy'.
11434
11435 * jcf-depend.c: Include "config.h", not <config.h>.
11436
11437 * jcf-parse.c (jcf_figure_file_type): Cast the arguments of
11438 `bcopy' to PTR.
11439
11440 * jcf-path.c: Include "config.h", not <config.h>.
11441
11442 * lex.c: Don't include various system header files.
11443 (java_init_lex): Cast the argument of `bzero' to PTR
11444
11445 * parse-scan.y (java_push_parser_context): Likewise.
11446
11447 * parse.y (java_push_parser_context): Likewise.
11448 (patch_bc_statement): Match format specifier to variable argument.
11449
11450 * xref.c: Don't include <stdio.h>.
11451
11452 1999-04-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
11453
11454 * parse.y (struct parser_ctxt *ctxp): Now global.
11455 (declare_local_variables): Use WFL compound value for the
11456 declaration source line value, when doing cross-referencing.
11457
11458 1999-03-31 Tom Tromey <tromey@cygnus.com>
11459
11460 * gjavah.c (print_field_info): Allow constants of other types.
11461 (print_include): Generate include when new name is proper prefix
11462 of already printed name.
11463 (add_namelet): Likewise.
11464 (cxx_keyword_subst): New function.
11465 (print_method_info): Use it.
11466 (print_field_name): New function.
11467 (get_field_name): New function.
11468 (print_field_info): Use get_field_name and print_field_name.
11469
11470 1999-03-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11471
11472 * Makefile.in (keyword.h): Generate using gperf language 'C', not
11473 'KR-C', so gperf uses the `const' keyword on strings.
11474
11475 * keyword.gperf (java_keyword): Const-ify a char*.
11476
11477 1999-03-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
11478
11479 * parse.y (patch_bc_statement): Fixed identation and a bogus
11480 `printf' format.
11481
11482 1999-03-30 Alexandre Petit-Bianco <apbianco@cygnus.com>
11483
11484 * parse.y (patch_assignment): Allow static variables in other
11485 classes to be assigned.
11486
11487 1999-03-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11488
11489 * class.c (maybe_add_interface): Remove unused variable
11490 `interface_binfo'.
11491 (make_class_data): Use = for assignment, not ==. Likewise.
11492 (emit_register_classes): Remove unused variable `decl'.
11493
11494 * lex.c: Fix comment so as not to contain an embedded `/*'.
11495
11496 * verify.c (verify_jvm_instructions): Remove unused variable
11497 `self_type'.
11498
11499 1999-03-27 Per Bothner <bothner@cygnus.com>
11500
11501 * parse.y (complete_loop_body): Rename to finish_loop_body.
11502 (complete_labeled_statement): Rename to finish_labeled_statement.
11503 (complete_for_loop): Rename to finish_for_loop.
11504 (complete_method_declaration): Rename to finish_method_declaration.
11505
11506 * java-tree.h (continue_identifier_node): New global node.
11507 * decl.c: Define and initialize continue_identifier_node.
11508 * parse.y (generate_labeled_block): Remove - no longer needed.
11509 (build_loop_body): Use continue_identifier_node for continue block.
11510 (finish_labeled_statement): Also do pop_labeled_block actions.
11511 (java_complete_lhs): POP_LOOP even if error.
11512 (build_labeled_block): Special handling for continue_identifier_node.
11513 (patch_loop_statement): Re-organize.
11514 (patch_bc_statement): Re-write.
11515
11516 1999-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
11517
11518 * parse.h (EXPR_WFL_GET_LINECOL): Set a line and column count
11519 using a WFL compound value.
11520 * parse.y (xref.h): Include.
11521 (maybe_create_class_interface_decl): Set DECL_SOURCE_LINE to the
11522 WFL compound value.
11523 (register_fields): Set WFL compound value to lineno if doing
11524 xrefs.
11525 (java_complete_expand_method): Call expand_xref if flag_emit_xref
11526 is set.
11527 * xref.c (system.h, jcf.h, parse.h, obstack.h): Include.
11528 * xref.h (expand_xref): Prototype renamed from xref_generate.
11529
11530 1999-03-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
11531
11532 * parse.h (BLOCK_CHAIN_DECL): New use GET_CURRENT_BLOCK.
11533 (GET_CURRENT_BLOCK): New macro.
11534 * parse.y (current_static_block): New global variable.
11535 (method_body:): Define action.
11536 (complete_method_declaration): Set current_function_decl to NULL
11537 when work on the current method is done.
11538 (declare_local_variables): Use GET_CURRENT_BLOCK.
11539 (java_method_add_stmt): Likewise.
11540 (java_complete_expand_method): Disable the use of `this' when
11541 expanding <clinit>.
11542 (enter_a_block): If no current method exist, use
11543 current_static_block to link static initializer blocks.
11544 (exit_block): Rewritten to use current_static_block when no current
11545 method decl exists.
11546 (lookup_name_in_blocks): Use GET_CURRENT_BLOCK.
11547 (patch_return): Forbid the use of `return' in static initializers.
11548 (patch_throw_statement): Fixed indentation. Issue specific error
11549 for uncaught thrown checked exception in static initializer
11550 blocks. Removed FIXME.
11551
11552 1999-03-25 Zack Weinberg <zack@rabi.columbia.edu>
11553
11554 * java/Make-lang.in: Remove all references to gcj.o/gcj.c.
11555 Link gcj from gcc.o.
11556
11557 1999-03-23 Alexandre Petit-Bianco <apbianco@cygnus.com>
11558
11559 * parse.y (find_applicable_accessible_methods_list): When dealing
11560 with interface: ensure that a given interface or java.lang.Object
11561 are searched only once.
11562
11563 1999-03-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11564
11565 * gjavah.c (print_c_decl): Remove unused argument `flags'.
11566
11567 * jcf-dump.c (print_access_flags): Add braces around if-else.
11568
11569 * jvspec.c (lang_specific_driver): Wrap variable `len' in macro
11570 COMBINE_INPUTS.
11571
11572 * lex.c (build_wfl_node): Add static prototype.
11573
11574 * lex.h (build_wfl_node): Remove static prototype.
11575
11576 * parse.y: Include lex.c early enough to declare everything needed.
11577 Ensure calls to `build_wfl_node' pass the proper arguments.
11578 (create_class): Remove unused variable `super_decl'.
11579 (get_printable_method_name): Initialize variable `name'.
11580
11581 1999-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
11582
11583 * Changelog: Fixed 1999-03-22 typos.
11584 * lang.c (lang_decode_option): Fixed typo in error string in the
11585 XARG section.
11586
11587 1999-03-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
11588
11589 * Makefile.in (JAVA_OBJS): Added entry xref.o.
11590 (xref.o): New rule.
11591 * java-tree.h (flag_emit_xref): Declared extern.
11592 * lang.c (xref.h): Included.
11593 (flag_emit_xref): New global variable.
11594 (lang_decode_option): Added support for -fxref.
11595 * xref.c: Created.
11596 * xref.h: Likewise.
11597
11598 1999-03-21 Manfred Hollstein <manfred@s-direktnet.de>
11599
11600 * Make-lang.in ($(GCJ)$(exeext)): Add intl.o to list of files to be
11601 linked with.
11602
11603 1999-03-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11604
11605 * Makefile.in (jcf-dump.o): Depend on $(CONFIG_H)
11606 $(srcdir)/../system.h and $(JAVA_TREE_H).
11607 (jcf-io.o): Depend on $(JAVA_TREE_H).
11608 (mangle.o): Likewise.
11609
11610 * check-init.c (check_cond_init): Add static prototype.
11611
11612 * class.c (build_java_method_type, hashUtf8String,
11613 make_field_value, get_dispatch_vector, get_dispatch_table,
11614 append_gpp_mangled_type, mangle_static_field): Likewise.
11615 (strLengthUtf8): Hide unused definition.
11616 (hashUtf8String): Const-ify.
11617 (make_field_value): Un-ANSI-fy.
11618
11619 * constants.c: Move inclusion of jcf.h above java-tree.h.
11620 (set_constant_entry, find_class_or_string_constant,
11621 find_name_and_type_constant, get_tag_node,
11622 build_constant_data_ref): Add static prototype.
11623
11624 * decl.c (push_jvm_slot, builtin_function,
11625 lookup_name_current_level): Likewise.
11626 (builtin_function): Const-ify.
11627
11628 * except.c (expand_start_java_handler, expand_end_java_handler):
11629 Add static prototype.
11630
11631 * expr.c (flush_quick_stack, push_value, pop_value,
11632 java_stack_swap, java_stack_dup, build_java_athrow,
11633 build_java_jsr, build_java_ret, expand_java_multianewarray,
11634 expand_java_arraystore, expand_java_arrayload,
11635 expand_java_array_length, build_java_monitor, expand_java_pushc,
11636 expand_java_return, expand_java_NEW, expand_java_INSTANCEOF,
11637 expand_java_CHECKCAST, expand_iinc, expand_java_binop, note_label,
11638 expand_compare, expand_test, expand_cond, expand_java_goto,
11639 expand_java_call, expand_java_ret, pop_arguments, expand_invoke,
11640 expand_java_field_op, java_push_constant_from_pool): Likewise.
11641
11642 (decode_newarray_type, expand_iinc): Un-ANSI-fy.
11643 (build_java_arraynull_check): Mark parameters `node' and `type'
11644 with ATTRIBUTE_UNUSED.
11645 (note_label): Likewise for parameter `current_pc'.
11646 (expand_java_call, expand_java_ret): Hide unused definition.
11647
11648 * java-tree.h (make_class, build_constants_constructor,
11649 java_set_exception_lang_code, pop_labeled_block, emit_handlers,
11650 init_outgoing_cpool, register_class, emit_register_classes,
11651 java_layout_seen_class_methods): Prototype.
11652 (unicode_mangling_length): Const-ify.
11653 (append_gpp_mangled_name, append_gpp_mangled_classtype,
11654 emit_unicode_mangled_name, format_int, format_uint,
11655 jcf_trim_old_input, jcf_print_utf8, jcf_print_char,
11656 jcf_print_utf8_replace, open_class): Prototype.
11657
11658 * jcf-dump.c: Include "config.h", not <config.h>. Don't include
11659 <stdio.h>. Include tree.h/java-tree.h.
11660 (utf8_equal_string usage, process_class): Add static prototype.
11661 (open_class): Don't prototype this here.
11662 (utf8_equal_string): Match arguments to format specifiers.
11663 (HANDLE_CODE_ATTRIBUTE, BRANCH, JSR, RET, LOOKUP_SWITCH,
11664 TABLE_SWITCH, disassemble_method): Likewise.
11665
11666 * jcf-io.c: Include tree.h/java-tree.h.
11667 (open_class, find_classfile, jcf_print_utf8,
11668 jcf_print_utf8_replace): Const-ify.
11669
11670 * jcf-parse.c (parse_zip_file_entries, process_zip_dir,
11671 parse_class_file): Add static prototype.
11672 (find_in_current_zip): Match definition to existing static
11673 prototype.
11674
11675 * jcf-write.c: Include jcf.h before tree.h/java-tree.h.
11676 (alloc_chunk, append_chunk, append_chunk_copy, gen_jcf_label,
11677 finish_jcf_block, define_jcf_label, get_jcf_label_here,
11678 put_linenumber, localvar_alloc, localvar_free, get_access_flags,
11679 write_chunks, adjust_typed_op, generate_bytecode_conditional,
11680 generate_bytecode_return, perform_relocations, init_jcf_state,
11681 init_jcf_method, release_jcf_state, generate_classfile):
11682 Add static prototype.
11683 (emit_unop): Mark parameter `type' with ATTRIBUTE_UNUSED.
11684 (make_class_file_name): Const-ify.
11685
11686 * jcf.h (find_classfile): Const-ify.
11687
11688 * jv-scan.c (reset_report): Remove prototype.
11689
11690 * jvgenmain.c: Include jcf.h/tree.h/java-tree.h.
11691 (error): Rewrite to allow varargs.
11692
11693 * lang.c (lang_f_options): Const-ify.
11694
11695 * lex.c (java_parse_escape_sequence): Add static prototype.
11696 (java_allocate_new_line): Match definition to existing static
11697 prototype.
11698
11699 * mangle.c Include tree.h/java-tree.h.
11700 (unicode_mangling_length, emit_unicode_mangled_name,
11701 append_gpp_mangled_name, append_gpp_mangled_classtype): Const-ify.
11702
11703 * parse.h (jdep_code): Remove trailing comma in enumeration.
11704 (java_get_line_col): Move prototype outside of !JC1_LITE test.
11705 (reset_report): Add prototype.
11706
11707 * verify.c (push_pending_label, merge_types): Add static
11708 prototypes.
11709
11710 * zipfile.h (opendir_in_zip, open_in_zip): Prototype.
11711
11712 1999-03-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
11713
11714 * parse.y (find_applicable_accessible_methods_list): Extend the
11715 search to superinterfaces when relevant.
11716 (search_applicable_methods_list): New function.
11717
11718 1999-03-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
11719
11720 * class.c (unmangle_classname): Implemented stricter testing
11721 before setting the QUALIFIED_P flag on an identifier.
11722
11723 1999-03-16 Per Bothner <bothner@cygnus.com>
11724
11725 * parse.y (java_complete_lhs): Call force_evaluation_order
11726 after patch_newarray.
11727 (patch_binop): Don't call fold if there are side effects.
11728
11729 1999-03-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
11730
11731 * parse.y (java_stabilize_reference): Use save_expr instead of
11732 building a SAVE_EXPR node.
11733 (java_complete_lhs): Patch the resulting string of the `+='
11734 operator (if necessary) and complete the RHS after having built
11735 the cast.
11736
11737 1999-03-15 Per Bothner <bothner@cygnus.com>
11738
11739 * class.c (make_class): Don't set CLASS_P here (because
11740 this function is also called by build_java_array_type).
11741 (push_class): Set CLASS_P here instead.
11742 * parse.h (TYPE_CLASS_P): Check for TYPE_ARRAY_P is redundant.
11743
11744 * jcf-dump.c (print_access_flags): Take extra parameter to indicate
11745 context. If the context is class, perfer "super" over "synchronized".
11746 * jcf-write.c (generate_classfile): Don't add ACC_SUPER if interface.
11747
11748 * parse.y (create_class): Don't call parser_check_super here;
11749 it is not robust. Always wait until later.
11750
11751 * parse.y (method_header): For interfaces, set ACC_ABSTRACT (to
11752 match what JDK 1.2 does), but don't set ACC_PUBLIC.
11753
11754 1999-03-13 Per Bothner <bothner@cygnus.com>
11755
11756 * lex.c (java_read_char): UNGET invalid non-initial utf8 character.
11757 * lex.h (UNGETC): Change misleading macro.
11758
11759 1999-03-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
11760
11761 * parse.y (java_stabilize_reference): Return NODE when patching a
11762 COMPOUND_EXPR.
11763 (java_complete_lhs): Put parenthesis around truth values.
11764
11765 1999-03-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
11766
11767 * class.c (layout_class_method): Don't make rtl for interface
11768 methods.
11769 * parse.h (GET_TYPE_NAME): New macro.
11770 * parse.y (if_then_statement:): Fixed indentation.
11771 (if_then_else_statement:): Likewise.
11772 (for_statement:): Fixed spacing.
11773 (try_statement:): Fixed indentation.
11774 (create_interface): Don't force interfaces to be abstract.
11775 (method_header): Abstract methods are OK in interfaces.
11776 (declare_local_variables): Fixed typo in comment.
11777 (java_complete_expand_method): Fixed indentation.
11778 (resolve_qualified_expression_name): Use GET_TYPE_NAME to report
11779 non accessible fields.
11780 (java_stabilize_reference): New function.
11781 (java_complete_lhs): Fixed indentation. Use
11782 java_stabilize_reference in compound assignment. Insert the
11783 cast. If not processing `+' fix string constants before processing
11784 binop.
11785
11786 1999-03-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11787
11788 * constants.c (find_class_or_string_constant): Cast variable `j'
11789 to a `jword' when comparing against one.
11790
11791 * expr.c (java_lang_expand_expr): Remove unused variables
11792 `has_finally_p' and `op0'.
11793
11794 * gjavah.c (print_field_info): Cast a value to jint when comparing
11795 against one. Likewise for a jlong.
11796 (add_namelet): Likewise cast a `sizeof' to an int when comparing
11797 against a signed quantity.
11798
11799 * jcf-dump.c (print_signature_type): Remove unused variable `digit'.
11800 (print_signature): Don't needlessly dereference variable `str'
11801
11802 * jcf-reader.c (get_attribute): Mark variables `max_stack' and
11803 `max_locals' with ATTRIBUTE_UNUSED.
11804 (jcf_parse_class): Likewise for variable `index'.
11805
11806 * parse.h (reverse_jdep_list): Remove static prototype.
11807
11808 * parse.y (build_jump_to_finally): Remove prototype and definition.
11809 (reverse_jdep_list): Add static prototype.
11810
11811 * typeck.c (convert_ieee_real_to_integer): Remove unused variables
11812 `assignment' and `expr_decl'.
11813
11814 * verify.c (verify_jvm_instructions): Remove unused label `bad_ldc'.
11815
11816 1999-03-12 Andrew Haley <aph@cygnus.com>
11817
11818 * jcf-path.c (add_entry): alloca len+2 rather than len+1 bytes;
11819 we'll need a directory separator and a null character.
11820
11821 1999-03-10 Per Bothner <bothner@cygnus.com>
11822
11823 * jcf-write.c (generate_bytecode_insns): Handle __builtin_fmod, for %.
11824
11825 Tue Mar 9 11:52:08 1999 Alexandre Petit-Bianco <apbianco@cygnus.com>
11826
11827 * parse.y (method_header): Don't set ACC_ABSTRACT flags on
11828 interfaces.
11829
11830 1999-03-05 Per Bothner <bothner@cygnus.com>
11831
11832 * lex.c (java_parse_end_comment): Take extra parameter (next char).
11833
11834 * class.c (build_utf8_ref): Fix possible name class/ambiguity.
11835
11836 * class.c (layout_class_method): A static method in a base class
11837 is never overridden, so treat it like it doesn't exist.
11838 However, do complain about private non-static method overriding
11839 public static method.
11840
11841 * parse.y: Don't set unused INITIALIZED_P flag.
11842 * java-tree.h (INITIALIZED_P): Removed no-longer needed flag.
11843
11844 * parse.y (find_expr_with_wfl): Optimize tail-calls.
11845 (build_array_from_name): Re-order &index[string] to &string[index].
11846
11847 * parse.y (java_complete_lhs): Don't call patch_assignment if rhs is
11848 error_mark (it might catch more errors, but it is more likely to lose).
11849
11850 1999-03-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
11851
11852 * Makefile.in (jcf-parse.o): Depend on $(PARSE_H).
11853 (parse-scan.o): Depend on toplev.h.
11854
11855 * class.c (make_method_value): Add prototype. Make it static.
11856 Remove unused second argument, caller changed.
11857
11858 * expr.c (java_lang_expand_expr): Remove unused variable
11859 `return_label'.
11860
11861 * java-tree.h: Don't prototype find_in_current_zip.
11862 Add prototypes for verify_constant_pool, start_java_method,
11863 end_java_method, give_name_to_locals, expand_byte_code,
11864 open_in_zip, set_constant_value, find_constant1, find_constant2,
11865 find_utf8_constant, find_string_constant, find_class_constant,
11866 find_fieldref_index, find_methodref_index, write_constant_pool,
11867 count_constant_pool_bytes and encode_newarray_type.
11868
11869 * jcf-dump.c: Remove unused variable `LONG_temp'.
11870
11871 * jcf-parse.c: Include parse.h.
11872 (jcf_parse_source): Remove unused parameter, all callers changed.
11873 (jcf_figure_file_type): Add static prototype.
11874 (find_in_current_zip): Likewise. Also remove unused parameter,
11875 all callers changed.
11876 (read_class): Initialize variable `saved_pos'.
11877
11878 * jcf-reader.c (jcf_parse_preamble): Mark variables
11879 `minor_version' and `major_version' with ATTRIBUTE_UNUSED.
11880
11881 * lex.c (java_is_eol): Wrap prototype and definition in !JC1_LITE.
11882 (java_init_lex): Wrap variable `java_lang_imported' in !JC1_LITE.
11883 (java_parse_doc_section): Initialize variable `seen_star'.
11884 (java_lex): Wrap variable `number_beginning' in !JC1_LITE.
11885 (java_lex_error): Mark parameters `msg' and `forward' with
11886 ATTRIBUTE_UNUSED.
11887 (java_get_line_col): Mark parameters `filename' and `line' with
11888 ATTRIBUTE_UNUSED.
11889
11890 * parse-scan.y: Include toplev.h.
11891 (yyerror): Mark parameter `msg' with ATTRIBUTE_UNUSED.
11892
11893 * parse.h: use `struct JCF', not plain `JCF'.
11894 (java_parser_context_save_global, java_expand_classes
11895 java_parser_context_restore_global, java_parse): Add prototypes.
11896
11897 * typeck.c (convert_ieee_real_to_integer): Remove unused variable
11898 `node'.
11899
11900 1999-02-24 Per Bothner <bothner@deneb.cygnus.com>
11901
11902 * check-init.c (check_init): COPYN takes word count, not bit count.
11903
11904 1999-02-26 Per Bothner <bothner@cygnus.com>
11905
11906 * typeck.c (convert_ieee_real_to_integer): Use save_expr instead of
11907 explicit build_decl. (Avoids crash in reload when optimizing.)
11908
11909 1999-02-25 Per Bothner <bothner@cygnus.com>
11910
11911 * decl.c (complete_start_java_method): Handle synchronized method
11912 even when compiling from bytecode.
11913
11914 1999-02-26 Tom Tromey <tromey@cygnus.com>
11915
11916 * gjavah.c (add_class_decl): Only generate `#include' if outer
11917 class is not the name of the class we are processing. Correctly
11918 append `.h' in #include.
11919 (process_file): Clean up newlines around generated `#include's.
11920 (decode_signature_piece): Correctly handle inner classes.
11921 (struct include): New structure.
11922 (all_includes): New global.
11923 (print_include): New function.
11924 (add_class_decl): Use it.
11925 (process_file): Likewise.
11926 (add_class_decl): Generate include for java-array.h if array
11927 seen.
11928 (process_file): Don't generate java-array.h include.
11929
11930 * gjavah.c (add_namelet): Check for standard package names here.
11931 (add_class_decl): Don't check for standard package names here.
11932
11933 1999-02-25 Tom Tromey <tromey@cygnus.com>
11934
11935 * parse.y (read_import_dir): Use `|=', not `+=', to set `found'.
11936 When reading a zip file, only use strncmp if both strings are
11937 bigger than the buffer length. Initialize `k' when looping
11938 through zip file.
11939
11940 1999-02-24 Tom Tromey <tromey@cygnus.com>
11941
11942 * gjavah.c (struct namelet): New structure.
11943 (add_namelet): New function.
11944 (print_namelet): New function.
11945 (print_class_decls): Use add_namelet and print_namelet to generate
11946 namespaces and not classes.
11947 (method_printed): New global.
11948 (HANDLE_END_METHOD): Examine method_printed.
11949 (print_method_info): Set method_printed when required. Print
11950 error if function to be ignored is marked virtual. Handle $finit$
11951 method.
11952 (METHOD_IS_FINAL): New macro.
11953 (print_field_info): Use it.
11954 (HANDLE_METHOD): Clear method_printed.
11955 (method_pass): New global.
11956 (HANDLE_END_FIELD): Call add_class_decl on the first pass.
11957 (process_file): Do two passes over both fields and methods.
11958 (HANDLE_METHOD): Examine method_pass.
11959 (root): New global.
11960 (add_class_decl): New function.
11961 (print_class_decls): Don't scan over entire constant pool.
11962
11963 1999-02-23 Tom Tromey <tromey@cygnus.com>
11964
11965 * jvspec.c (lang_specific_driver): Recognize -fsyntax-only and
11966 disable linking in that case.
11967
11968 1999-02-20 Tom Tromey <tromey@cygnus.com>
11969
11970 * jcf.h (UTF8_GET): Mask first byte of 3-byte encoding with 0x0f,
11971 not 0x1f.
11972
11973 1999-02-21 Per Bothner <bothner@cygnus.com>
11974
11975 * decl.c (build_result_decl), java-tree.h: New method.
11976 (complete_start_java_method): Handle synchronized methods.
11977 Don't build DECL_RESULT here. (Ordering dependency problem.)
11978 (start_java_method): Call build_result_decl here instead ...
11979 * parse.y (java_complete_expand_method): ... and here.
11980 (expand_start_java_method): Don't call complete_start_java_method here.
11981 (java_complete_expand_method): Call it here instead.
11982 * parse.h (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Moved to ..
11983 * java-tree.h: ... here.
11984
11985 * expr.c (force_evaluation_order): Fix typo, don't handle ARRAY_REF.
11986 * parse.y (java_complete_lhs): Don't call force_evaluation_order
11987 for ARRAY_REF - it doesn't work when array bounds are checked.
11988 (patch_array_ref): Handle it here instead.
11989
11990 * jcf-write.c (generate_classfile): Emit "Exceptions" attribute.
11991
11992 1999-02-19 Per Bothner <bothner@cygnus.com>
11993
11994 Force left-to-right evaluation of binary operations etc.
11995 * expr.c (force_evaluation_order), java-tree.h: New function.
11996 * parse.y (java_complete_lhs): Pass binary operations, procedure
11997 calls, and ARRAY_REFs to force_evaluation_order.
11998 (various): Set TREE_SIDE_EFFECTS more carefully.
11999
12000 Tolerate random (non-UTF8) encoding in comments without complaining.
12001 * lex.c (java_read_char): Return 0xFFFE if bad UTF8 encoding.
12002 (java_is_eol): Handle '\r' followed by '\n' instead of vice versa.
12003
12004 * parse.y (resolve_qualified_expression_name): Handle error_mark.
12005 (java_complete_node case EXPR_WITH_FILE_LOCATION): Likewise.
12006
12007 * parse.y (java_complete_lhs): Ignore an empty statement in a
12008 COMPOUND_EXPR. Don't complain about empty statement after return.
12009
12010 1999-02-19 Per Bothner <bothner@cygnus.com>
12011
12012 * parse.y (obtain_incomplete_type): Don't wrap unknown types
12013 in TREE_LIST - just chain the POINTER_TYPEs together.
12014 (resolve_class): If type already resolved, return decl.
12015 After resolving, update TREE_TYPE(class_type), and name (if array).
12016 * parse.h (do_resolve_class), parse.y: Make non-static.
12017 * class.c (maybe_layout_super_class): Take this_class argument.
12018 Do do_resolve_class if necessary.
12019 (layout_class, layout_class_methods): Adjust calls appropriately.
12020 * parse.h (JDEP_TO_RESOLVE, JDEP_RESOLVED_DECL, JDEP_RESOLVED,
12021 JDEP_RESOLVED_P): Redefined for new TREE_LIST-less convention.
12022 * typeck.c (build_java_array_type): Don't call layout_class.
12023
12024 1999-02-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
12025
12026 * parse.y (check_pkg_class_access): Allow private class access
12027 within the same package.
12028 (strip_out_static_field_access_decl): New function.
12029 (patch_unaryop): Call strip_out_static_field_access_decl on ++/--
12030 operator argument before testing its nature.
12031
12032 1999-02-03 Per Bothner <bothner@cygnus.com>
12033
12034 * java-tree.def (FINALLY_EXPR): Removed. (Now uses TRY_FINALLY_EXPR.)
12035 (TRY_EXPR): Simplify - it no longer has a finally clause.
12036 * check-init.c (check_init): Handle TRY_FINALLY_EXPR.
12037 Simpler handling of TRY_EXPR, which no longer has a finally clause.
12038 * expr.c (java_lang_expand_expr): Likewise.
12039 * java-tree.h (CATCH_EXPR_GET_EXPR): Removed - no longer needed.
12040 * parse.h (java_get_catch_block), parse.y: Removed - no longer needed.
12041 * parse.y (java_complete_lhs): Add support for TRY_FIANLLY_EXPR.
12042 (build_try_statement): Remove finally parameter and handling.
12043 (build_try_finally_statement): New function.
12044 (patch_try_statement): No longer need to support finally clause.
12045 (try_statement): Update grammar action rules.
12046 * jcf-write.c (generate_bytecode_insns): Handle TRY_FINALLY_EXPR.
12047 Simpler handling of TRY_EXPR, which no longer has a finally clause.
12048
12049 1998-11-26 Andrew Haley <aph@viagra.cygnus.co.uk>
12050
12051 * jcf-parse.c (get_constant): Add braces around computation of 'd'
12052 when REAL_ARITHMETIC is not defined. [Oct 26 fix got overwritten -PB]
12053
12054 1999-02-17 Andrew Haley <aph@cygnus.com>
12055
12056 * class.c (build_utf8_ref): Back out broken patch which was
12057 intended to to output signatures using '.' as a separator.
12058
12059 * class.c (make_class_data): Output signatures using '.' as a
12060 separator, rather than '/'.
12061 (mangled_classname): Likewise.
12062 (make_field_value): Likewise.
12063 (make_method_value): Likewise.
12064 * constants.c (alloc_class_constant): Likewise.
12065 * expr.c (build_invokeinterface): Likewise.
12066
12067 1999-02-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
12068
12069 * parse.y (valid_builtin_assignconv_identity_widening_p): Got rid
12070 of an ancient workaround.
12071
12072 1999-02-10 Jeffrey A Law (law@cygnus.com)
12073
12074 * jvspec.c (xmalloc): Kill the prototype. It does not belong
12075 here anymore.
12076
12077 1999-02-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
12078
12079 * lex.c (yylex): Encode \0 as UTF8.
12080
12081 1999-02-10 Tom Tromey <tromey@cygnus.com>
12082
12083 * jvspec.c (lang_specific_driver): Use libgcj, not libjava.
12084 * Makefile.in (jcf-path.o): Define LIBGCJ_ZIP_FILE.
12085 (libgcj_zip): Renamed.
12086 * jcf-path.c (add_entry): Use LIBGCJ_ZIP_FILE, not
12087 LIBJAVA_ZIP_FILE.
12088 (jcf_path_init): Use LIBGCJ_ZIP_FILE.
12089
12090 * jvspec.c (THREAD_NAME): Renamed -lqthreads to -lgcjcoop.
12091 (GC_NAME): Renamed -lgc to -lgcjgc.
12092
12093 1999-02-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
12094
12095 * lex.c (java_lang_cloneable): Initialize.
12096 * parse.y (java_lang_cloneable): New static variable.
12097 (qualify_ambiguous_name): Take CONVERT_EXPR into account when
12098 doing one more qualification round.
12099 (valid_ref_assignconv_cast_p): Reject null source or
12100 destination. Allow an array to be cast into java.lang.Cloneable.
12101 (patch_cast): Swapped two first arguments to first call to
12102 valid_ref_assignconv_cast_p.
12103
12104 1999-02-08 Alexandre Petit-Bianco <apbianco@cygnus.com>
12105
12106 * parse.h: DECL_P renamed JDECL_P.
12107 * parse.y: DECL_P replaced by JDECL_P.
12108 (build_array_from_name): Always use pointer's type.
12109 (patch_bc_statement): Extra code to search continue target in a
12110 for loop. Fixed comments. Continue target is current loop when
12111 unlabeled.
12112
12113 1999-02-05 Andrew Haley <aph@cygnus.com>
12114
12115 * class.c (make_class_data): The superclass of an interface should
12116 be null, not class Object.
12117
12118 * lex.c (java_lex): Sign extend hex literals.
12119
12120 1999-02-04 Andrew Haley <aph@cygnus.com>
12121
12122 * class.c (build_utf8_ref): Output signatures using '.' as a
12123 separator, rather than '/'.
12124 (make_class_data): Likewise.
12125
12126 1999-02-03 Marc Espie <Marc.Espie@liafa.jussieu.fr>
12127
12128 * Make-lang.in ($(GCJ)(exeext)): Remove choose-temp.o, pexecute.o and
12129 mkstemp.o. Get them from libiberty now.
12130
12131 1999-02-02 Jeffrey A Law (law@cygnus.com)
12132
12133 * jcf-io.c: Do not include sys/stat.h or sys/wait.h
12134
12135 1999-02-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12136
12137 * jvspec.c (xmalloc): Fix the prototype to match the one obtained
12138 from libiberty.h
12139
12140 1999-02-02 Per Bothner <bothner@cygnus.com>
12141
12142 Optimize: `return (a ? b : c)' as: `if (a) return b; else return c;'.
12143 * jcf-write.c (generate_bytecode_return): New function.
12144 (generate_bytecode_insns): Use it, for RETURN_EXPR.
12145
12146 * jcf-write.c (generate_bytecode_insns): For REAL_CST that is 0 or 1,
12147 generate special [fd]const_[01] instructions.
12148
12149 * jcf-parse.c (yyparse): Don't emit_register_classes if -fsyntax-only.
12150
12151 * verify.c (verify_jvm_instructions): Do INVALIDATE_PC after
12152 handling OPCODE_lookupswitch or OPCODE_tableswitch.
12153
12154 1999-02-01 Per Bothner <bothner@cygnus.com>
12155
12156 * parse.y (patch_method_invocation): Handle calling static methods,
12157 even in the form EXPR.METHOD(ARGS), not just TYPE.METHOD(ARGS).
12158
12159 * parse.y (java_complete_lhs): Don't complain about unreachable
12160 exit condition in a do-while statement.
12161
12162 1999-01-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
12163
12164 * lex.c (java_read_char): Fixed utf8 decoding.
12165 (java_unicode_2_utf8): Fixed utf8 encoding in the 0x800-0xffff
12166 range.
12167 * parse.y (valid_builtin_assignconv_identity_widening_p): Fixed
12168 comments. Local variable `all_primitive' is gone. Broadened
12169 acceptance of `0' to floating point targets. `long' can now be
12170 widened to `double' or `float'.
12171 (valid_method_invocation_conversion_p): Added leading
12172 comment. Fixed tabulation.
12173 (build_string_concatenation): Optimize out left or right empty
12174 string constants.
12175
12176 1999-01-28 Per Bothner <bothner@cygnus.com>
12177
12178 * jcf-write.c (localvar_alloc): Only emit entry for
12179 LocalVariableTable if debug_info_level > DINFO_LEVEL_TERSE.
12180 (generate_bytecode_insns): Only call put_linenumber if
12181 debug_info_level > DINFO_LEVEL_NONE.
12182 * jvspec.c (lang_specific_driver): If no -O* or -g* option
12183 is specified, add -g1 (for compatibility wih javac).
12184
12185 1999-01-28 Hans-Peter Nilsson <hp@axis.se>
12186
12187 * java/Makefile.in: Add missing dependencies for jcf-dump.o,
12188 gjavah.o, check-init.o, jv-scan.o
12189
12190 1999-02-01 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12191
12192 * Makefile.in (gjavah.o): Depend on $(CONFIG_H) and system.h.
12193
12194 * gjavah.c: Include config.h and system.h.
12195
12196 * javaop.h (inline): Don't define, its handled by system.h.
12197 (WORD_TO_FLOAT, WORDS_TO_LONG, WORDS_TO_DOUBLE): Change these
12198 from `inline' to `static inline'.
12199
12200 * jcf.h (inline): Don't define, its handled by system.h.
12201
12202 * lex.c (inline): Likewise.
12203
12204 1999-01-31 Zack Weinberg <zack@rabi.columbia.edu>
12205
12206 * lang-specs.h: Map -Qn to -fno-ident.
12207
12208 1999-01-29 Richard Henderson <rth@cygnus.com>
12209
12210 * check-init.c (check_init): Fix CLEANUP_POINT_EXPR typo.
12211
12212 1999-01-29 Tom Tromey <tromey@cygnus.com>
12213
12214 * parse.h (BUILD_APPEND): If ARG is a non-String object reference,
12215 then cast it to Object before calling `append' method.
12216
12217 1999-01-28 Per Bothner <bothner@cygnus.com>
12218
12219 * check-init.c (check_bool2_init, check_bool_init, check_init):
12220 Handle TRUTH_AND_EXPR, TRUTH_OR_EXPR, and TRUTH_XOR_EXPR.
12221 * jcf-write.c (generate_bytecode_insns): Likewise.
12222
12223 1999-01-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
12224
12225 * jcf-parse.c (jcf_parse): Don't parse the same class file twice.
12226 * parse.y (patch_cast): Allow a boolean to be cast into a
12227 boolean.
12228
12229 1999-01-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
12230
12231 * parse.y: (class_declaration:): Fixed indentation.
12232 (class_member_declaration:): Extra `;' after field declaration now
12233 accepted.
12234 (interface_declaration:): Removed debug messages in error reports.
12235 (patch_binop): Nodes created and returned inherit the orignal
12236 node's COMPOUND_ASSIGN_P flag value.
12237 (patch_cast): Fix cast from char to floating point.
12238
12239 1999-01-25 Andrew Haley <aph@cygnus.com>
12240
12241 * except.c, java-except.h (expand_resume_after_catch): new
12242 function.
12243 * expr.c (java_lang_expand_expr): call expand_resume_after_catch
12244 to branch back to main flow of control after a catch block.
12245
12246 1999-01-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12247
12248 * Makefile.in (parse.o): Depend on $(CONFIG_H) and
12249 $(srcdir)/../system.h.
12250 (class.o): Depend on $(PARSE_H) and $(srcdir)/../output.h.
12251 (jcf-parse.o): Depend on $(srcdir)/../toplev.h.
12252 (jcf-write.o): Likewise.
12253 (jv-scan.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
12254 (mangle.o): Depend on $(srcdir)/../toplev.h.
12255 (parse-scan.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
12256 (zextract.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
12257
12258 * class.c: Include output.h and parse.h.
12259 (mangled_classname): Add the `const' keyword to a char*.
12260 (find_named_method): Hide unused function definition.
12261 (build_utf8_ref): Change type of variable `c' to unsigned char.
12262 Use ISALPHA/ISDIGIT instead of isalpha/isdigit.
12263 (build_class_ref): Add the `const' keyword to a char*.
12264 (layout_class_method): Remove unused variable `buf'.
12265
12266 * decl.c (find_local_variable): Remove unused variable `rtl'.
12267 (pushdecl): Likewise for variables `different_binding_level' and
12268 `oldglobal'.
12269 (pushlevel): Mark parameter `unused' with ATTRIBUTE_UNUSED.
12270 (maybe_build_cleanup): Likewise for parameter `decl'.
12271
12272 * except.c (expand_start_java_handler): Mark parameter `range'
12273 with ATTRIBUTE_UNUSED.
12274
12275 * expr.c: Include except.h.
12276 (pop_type): Remove unused variable `i'.
12277 (pop_value): Likewise for variables `n_words' and `i'.
12278 (expand_java_arrayload): Likewise for variable `convert'.
12279 (java_lang_expand_expr): Likewise for variables `op0', `type',
12280 `mode', `unsignedp', `node' and `elements'.
12281 (expand_byte_code): Likewise for variables `prev_eh_ranges' and
12282 `eh_ranges'.
12283 (process_jvm_instruction): Add a `const' qualifier to a char*.
12284
12285 * gjavah.c (output_directory): Add the `const' keyword to a char*.
12286 (temp_directory): Likewise.
12287 (print_c_decl): Likewise.
12288 (print_method_info): Likewise.
12289 (decode_signature_piece): Likewise.
12290 (print_mangled_classname): Likewise.
12291
12292 * java-except.h: Provide prototypes for maybe_start_try,
12293 maybe_end_try and add_handler.
12294
12295 * java-tree.h (mangled_classname): Add the `const' keyword to a char*.
12296 (parse_error_context): Likewise. Also add ATTRIBUTE_PRINTF_2.
12297 (pushdecl_top_level, alloc_class_constant, unicode_mangling_length,
12298 init_expr_processing, push_super_field, init_class_processing,
12299 can_widen_reference_to, class_depth, verify_jvm_instructions,
12300 maybe_pushlevels, maybe_poplevels, process_jvm_instruction,
12301 set_local_type, merge_type_state, push_type, load_type_state,
12302 add_interface, find_in_current_zip, append_gpp_mangled_classtype,
12303 emit_unicode_mangled_name): Add prototypes.
12304
12305 * jcf-dump.c (print_constant): Add the `const' keyword to a char*.
12306 (print_signature_type): Use ISDIGIT, not isdigit.
12307 (print_signature): Remove unused variable `j'.
12308
12309 * jcf-io.c (jcf_filbuf_from_stdio): Cast the result of `fread' to
12310 int when comparing against one.
12311
12312 * jcf-parse.c: Include toplev.h.
12313
12314 * jcf-write.c: Likewise. Don't include <string.h> or <sys/stat.h>.
12315 (localvar_free): Remove unused variable `i'.
12316 (generate_bytecode_conditional): Likewise for variable `kind'.
12317
12318 * jv-scan.c: Include config.h and system.h. Remove redundant
12319 OS header and gansidecl.h includes.
12320 (warning): Add the `const' keyword to a char*. Also add
12321 ATTRIBUTE_PRINTF_1 to the prototype. Check ANSI_PROTOTYPES, not
12322 __STDC__, when determining whether to use ANSI-isms.
12323 (fatal): Likewise. Also add ATTRIBUTE_UNUSED.
12324 (xmalloc): Don't redundantly prototype here.
12325 (main): Remove unused parameter `envp'. Also fix the arguments
12326 passed to function `fatal' to match the format specifier.
12327
12328 * lang.c (java_tree_code_name): Add the `const' keyword to a char*.
12329
12330 * mangle.c: Include toplev.h.
12331 (emit_unicode_mangled_name): Declare parameter `len'.
12332
12333 * parse.y (parse_warning_context): Add the `const' keyword to a
12334 char*. Also add ATTRIBUTE_PRINTF_2 to the prototype. Check
12335 `ANSI_PROTOTYPES' not `__STDC__' for whether to use ANSI-isms.
12336 (issue_warning_error_from_context): Add the `const' keyword to
12337 a char*.
12338 (parse_error_context): Likewise. Also check `ANSI_PROTOTYPES'
12339 not `__STDC__' for whether to use ANSI-isms.
12340
12341 * typeck.c (incomplete_type_error): Mark parameters `value' and
12342 `type' with ATTRIBUTE_UNUSED.
12343 (parse_signature_type): Use ISDIGIT, not isdigit.
12344
12345 * verify.c (check_pending_block): Add the `const' keyword to a char*.
12346 (verify_jvm_instructions): Likewise. Remove unused variables
12347 `field_name' and `default_val'.
12348
12349 * zextract.c: Include config.h and system.h. Remove redundant
12350 OS header includes.
12351
12352 * zipfile.h: Prototype `read_zip_archive'.
12353
12354 1999-01-21 Andrew Haley <aph@cygnus.com>
12355
12356 * typeck.c (convert): Allow conversions to void type: some
12357 optimizations in gcc do this.
12358
12359 1999-01-21 Andrew Haley <aph@cygnus.com>
12360
12361 * typeck.c (convert_ieee_real_to_integer): New function.
12362 (convert): When not using fast-math and using hardware fp, convert
12363 an IEEE NaN to zero.
12364
12365 1999-01-18 Andrew Haley <aph@cygnus.com>
12366
12367 * parse.y (patch_binop): Do a type conversion from signed to
12368 unsigned and then back to signed when a ">>>" is found.
12369
12370 1999-01-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
12371
12372 * java-tree.h: (check_for_initialization): Added prototype.
12373 * lex.c (java_parse_doc_section): `\n' breaks the `*/' string.
12374 * parse.y (do_resolve_class): Removed unused locals.
12375 (read_import_dir): Likewise.
12376 (resolve_qualified_expression_name): Array creation
12377 expressions are valid primary expressions.
12378 (qualify_ambiguous_name): Likewise.
12379 (patch_synchronized_statement): Removed unused local.
12380
12381 1999-01-17 Jeffrey A Law (law@cygnus.com)
12382
12383 * Makefile.in (zextract.o): Add dependencies.
12384
12385 * Makefile.in: Do not put ^Ls at the start of a line.
12386
12387 1999-01-15 Per Bothner <bothner@cygnus.com>
12388
12389 * expr.c (process_jvm_instruction): Coerce to correct Throwable
12390 sub-type the result of the call that gets the exception value.
12391
12392 * parse.y (java_complete_expand_methods): If flags_syntax_only,
12393 don't call finish_class.
12394
12395 * parse.y (java_check_regular_methods): If METHOD_PRIVATE,
12396 clear found before continuing.
12397
12398 * verify.c (verify_jvm_instructions): On an array load, allow
12399 and handle top of stack to be TYPE_NULL.
12400
12401 * gjavah.c (generate_access): Translate Java package private or
12402 protected access to C++ public, but with a comment.
12403
12404 1999-01-13 Andrew Haley <aph@cygnus.com>
12405
12406 * expr.c (generate_name): Name prefix changed to avoid clashes
12407 with assembler temp labels.
12408
12409 * parse.y (patch_synchronized_statement): Set TREE_SIDE_EFFECTS on
12410 MODIFY_EXPR. Without this, code for the assignment may not be
12411 generated at all and the synchronized statement will read an
12412 uninitialized variable.
12413
12414 1999-01-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
12415
12416 * class.c (maybe_layout_super_class): Fixed returned value.
12417 * lex.c: Added 1999 to the copyright.
12418 (java_init_lex): Initialize java_lang_imported.
12419 * lex.h: Added 1999 to the copyright.
12420 * parse.h: Added 1999 to the copyright.
12421 (REGISTER_IMPORT): Fixed typo in trailing macro.
12422 (CURRENT_OSB): New macro.
12423 (struct parser_ctxt): New fields osb_depth, osb_limit.
12424 * parse.y (java_lang_id): New global variable.
12425 (type_import_on_demand_declaration): Don't import java.lang.* twice.
12426 (array_creation_expression:): Use CURRENT_OSB.
12427 (dims:): Uses a stack to keep track of array dimensions.
12428 (cast_expression:): Use CURRENT_OSB.
12429 (find_expr_with_wfl): Return NULL if node found doesn't meet the
12430 conditions.
12431 (register_fields): Fixed typos in comment.
12432 (check_method_redefinition): Fixed comment indentation.
12433 (java_check_regular_methods): Set saved found wfl to NULL after
12434 having reinstalled it in the previously found DECL_NAME.
12435
12436 1999-01-10 Richard Henderson <rth@cygnus.com>
12437
12438 * gjavah.c (java_float_finite): Use a union to do type punning.
12439 (java_double_finite): Likewise.
12440
12441 1999-01-09 Per Bothner <bothner@cygnus.com>
12442
12443 * parse.y (build_new_array_init): Don't set EXPR_WFL_LINECOL
12444 on CONSTRUCTOR (since that trashes TREE_CST_RTL).
12445 (patch_new_array_init): Clear TREE_CONSTANT also if INDIRECT_REF.
12446 (register_fields): Set TREE_STATIC on NEW_ARRAY_INIT, not on
12447 CONSTRUCTOR (which causes expand_expr to call output_constant_def).
12448 * expr.c (java_lang_expand_expr): Check TREE_STATIC of NEW_ARRAY_INIT.
12449
12450 1999-01-08 Per Bothner <bothner@cygnus.com>
12451
12452 * check-init.c (check_init): If compiling to native, we don't
12453 see THROW_EXPR. Instead, look for a call to throw_node (_Jv_Throw).
12454
12455 1999-01-08 Tom Tromey <tromey@cygnus.com>
12456
12457 * parse-scan.y (variable_declarator_id): Set or increment
12458 bracket_count.
12459 (bracket_count): New global.
12460 (formal_parameter): Handle case where bracket pairs trail variable
12461 declarator id.
12462
12463 1999-01-07 Andrew Haley <aph@viagra.cygnus.co.uk>
12464
12465 * jcf-parse.c (yyparse): variable len changed from a char to an
12466 int to prevent overflow.
12467
12468 1999-01-06 Per Bothner <bothner@cygnus.com>
12469
12470 * java-tree.h: Declare read_class.
12471 * jcf-parse.c (read_class): New function.
12472 (load_class): Now just call read_class.
12473
12474 * java-tree.h (java_parse_abort_on_error): Only return if new errors.
12475 * jcf-parse.c (parse_source_file): Declare save_error_count,
12476 which is needed by java_parse_abort_on_error macro,
12477 * parse.y (java_layout_classes, java_expand_classes): Likewise.
12478
12479 * parse.y (register_fields): Set TREE_STATIC flag of NEW_ARRAY_INIT
12480 constructor, if initializing a static field.
12481 (patch_new_array_init): Set TREE_CONSTANT if it is.
12482 * expr.c (java_lang_expand_expr): For a static array constructor
12483 of primitive elements, allocate the array itself statically.
12484 Disabled until we can set the vtable field statically.
12485
12486 * check-init.c: New file. Checks for definite assignment.
12487 * Makefile.in (JAVA_OBJS): Add check-init.o.
12488 * parse.y (java_complete_expand_method): Call check_for_initialization.
12489 * parse.h (BLOCK_EXPR_DECLS, BLOCK_EXPR_BODY): Moved to java-tree.h.
12490
12491 1999-01-06 Graham <grahams@rcp.co.uk>
12492
12493 * parse.y : include system.h instead of including
12494 standard headers directly with the exception of <dirent.h>.
12495
12496 1999-01-06 Per Bothner <bothner@cygnus.com>
12497
12498 * lex.h: Moved static function declarations to lex.c,
12499 to shut up some -Wall warnings.
12500 * lex.c: Static function declarations moved here.
12501 * jcf-dump.c: Small fixes to shut up -Wall warnings.
12502
12503 1999-01-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12504
12505 * Make-lang.in ($(GCJ).o): Depend on prefix.h.
12506
12507 1998-12-22 Per Bothner <bothner@cygnus.com>
12508
12509 * expr.c (process_jvm_instruction): Do load_type_state after JSR.
12510 * verify.c (verify_jvm_instructions): Fix off-by-one error.
12511
12512 * jcf-write.c (CHECK_PUT): Add (void) cast to avoid -Wall warnings.
12513 (localvar_alloc): Change return type to void,
12514 (emit_unop): Remove unused variable size.
12515
12516 * jcf-write.c (struct jcf_block): Add new union.
12517 (PENDING_CLEANUP_PC, PENDING_EXIT_PC, UNDEFINED_PC): New macros.
12518 (call_cleanups): New functions.
12519 (struct jcf_partial): New fields num_finalizers and return_value_decl.
12520 (generate_bytecode_insns): Support CLEANUP_POINT_EXPR and
12521 WITH_CLEANUP_EXPR. Handle cleanups in RETURN_EXPR and EXIT_BLOCK_EXPR.
12522 * lang.c (lang_init): Call using_eh_for_cleanups.
12523 * parse.y (java_complete_lhs): For SYNCHRONIZED_EXPR, defer
12524 completing operands to patch_synchronized_statement.
12525 Support CLEANUP_POINT_EXPR, WITH_CLEANUP_EXPR.
12526 (patch_synchronized_statement): Re-write suing CLEANUP_POINT_EXPR and
12527 WITH_CLEANUP_EXPR instead of TRY_EXPR.
12528
12529 1998-12-20 John F. Carr <jfc@mit.edu>
12530
12531 * Make-lang.in: Comment out control-Ls; they upset some makes.
12532
12533 1998-12-18 Tom Tromey <tromey@cygnus.com>
12534
12535 * parse.y (check_class_interface_creation): Use DIR_SEPARATOR
12536 consistently.
12537
12538 1998-12-17 Tom Tromey <tromey@cygnus.com>
12539
12540 * parse.y (DIR_SEPARATOR): New define.
12541 (check_class_interface_creation): Use it.
12542
12543 * parse-scan.y (report_main_declaration): Recognize
12544 `java.lang.String' in argument to main.
12545
12546 1998-12-16 Per Bothner <bothner@cygnus.com>
12547
12548 * parse.y (create_interface): Remove bogus test.
12549
12550 1998-12-16 Per Bothner <bothner@cygnus.com>
12551
12552 * jcf-parse.c (get_constant): Set TREE_TYPE for string constants.
12553 (HANDLE_CONSTANTVALUE): If flag_emit_class_files, call get_constant.
12554
12555 1998-12-16 Tom Tromey <tromey@cygnus.com>
12556
12557 * parse-scan.y (qualified_name): Use correct sprintf format.
12558
12559 1998-12-15 Tom Tromey <tromey@cygnus.com>
12560
12561 * gjavah.c (print_field_info): Changed how most negative number is
12562 printed.
12563
12564 1998-12-14 Per Bothner <bothner@cygnus.com>
12565
12566 * parse.y (fold_constant_for_init): New function.
12567 (resolve_expression_name): Don't replace static final
12568 constant-initialized fields by its value.
12569 (java_complete_lhs): New. Same as java_complete_tree, except does
12570 not replace static final constant-initialized fields by their values.
12571 (register_fields): If there is an initializer, set DECL_INITIAL and
12572 MODIFY_EXPR_FROM_INITIALIZATION_P.
12573 (java_complete_tree): For MODIFY_EXPR, use java_complete_lhs for lhs.
12574 Only call patch_initialized_static_field if
12575 MODIFY_EXPR_FROM_INITIALIZATION_P.
12576 (patch_initialized_static_field): If not valid constant, clear
12577 DECL_INITIAL.
12578
12579 * parse.y (lookup_field_wrapper): Fix thinko.
12580
12581 * parse.y (java_complete_tree): In EXPR_WITH_FILE_LOCATION,
12582 set and restore global lineno.
12583
12584 1998-12-14 Tom Tromey <tromey@cygnus.com>
12585
12586 * gjavah.c (print_field_info): If value to print is the smallest
12587 value of its size, then print as hex to avoid later warnings from
12588 C++ compiler.
12589
12590 1998-12-14 Tom Tromey <tromey@cygnus.com>
12591
12592 * gjavah.c (decompile_method): Decompile `return null'.
12593 (process_file): Generate `#pragma interface'.
12594 (method_declared): New global.
12595 (print_method_info): Set it.
12596 (HANDLE_CODE_ATTRIBUTE): Only print it method_declared set.
12597 (print_method_info): Handle abstract methods.
12598
12599 1998-12-13 Per Bothner <bothner@cygnus.com>
12600
12601 * parse.y (patch_method_invocation): If class_decl is null
12602 (e.g. an array type), use original type.
12603
12604 * parse.y (check_thrown_exceptions): Temporary hack to suppress
12605 errors about uncaught exception from clone (of array, specifically).
12606
12607 1998-12-13 Tom Tromey <tromey@cygnus.com>
12608
12609 * gjavah.c (decompile_method): Handle all types of `return'
12610 opcode. Decompile `return this' and `return'.
12611 (method_access): New global.
12612 (print_method_info): Set it.
12613 (decompile_method): Don't decompile a synchronized method.
12614
12615 1998-12-13 Tom Tromey <tromey@cygnus.com>
12616
12617 * jcf-reader.c (jcf_parse_one_method): Recognize
12618 HANDLE_END_METHOD.
12619 * gjavah.c (HANDLE_END_METHOD): New macro.
12620 (HANDLE_CODE_ATTRIBUTE): New macro.
12621 (decompile_method): New function.
12622 (print_method_info): Don't print `;\n' at end of function decl.
12623 Include java-opcodes.h.
12624 (decompiled): New global.
12625
12626 1998-12-12 Per Bothner <bothner@cygnus.com>
12627
12628 * class.c (build_class_ref): Handle PRIMTYPE.class if
12629 flag_emit_class_files.
12630 * expr.c (expand_java_field_op): Don't optimize java.lang.XXX.TYPE
12631 if flag_emit_class_files.
12632 * parse.y (java_complete_tree): Pre-liminary support for
12633 COMPONENT_REF - only to handle PRIMCLASS.TYPE.
12634
12635 * parse.y (patch_synchronized_statement): Don't call monitorexit
12636 unless block CAN_COMPLETE_NORMALLY. Propagate that flag properly.
12637
12638 * java-tree.h (DECL_LOCAL_STATIC_VALUE): Removed - no longer used.
12639
12640 * zipfile.h (opendir_in_zip): New declaration.
12641 * jcf-io.c (saw_java_source): Moved to jcf-parse.c.
12642 (opendir_in_zip): New function, using code from open_in_zip.
12643 (open_in_zip): Call opendir_in_zip.
12644 (find_class): Remove no-longer-used do_class_file parameter,
12645 but add source_ok parameter. Change logic so if we find a .java file,
12646 we don't look for .class in later classpath emtries.
12647 * jcf-parse.c (load_class): Pass saw_java_source to find_class.
12648 (jcf_figure_file_type): Only call open_in_zip if correct magic number.
12649 * gjavah.c: Update call to find_class.
12650 * jcf-dump.c: Likewise.
12651
12652 * jcf-write.c (put_linenumber): Handle duplicate line numbers.
12653 (generate_bytecode_insns): For EXPR_WITH_FILE_LOCATION, do
12654 nothing if body is empty_stmt_node.
12655 Various little fixes so SP gets correctly adjusted.
12656 For NEW_ARRAY_INIT, handle IGNORE_TARGET.
12657 For CALL_EXPR, test if static first.
12658 (generate_classfile): Ignore fields that are DECL_ARTIFICIAL,
12659 such as the ones we create for Object and Class.
12660 Set and restore current_function_decl.
12661 * parse.y: Check/set IS_AN_IMPORT_ON_DEMAND_P in read_import_dir.
12662 (note_possible_classname): New function.
12663 (read_import_entry): Removed. Merged with read_import_dir.
12664 (read_import_dir): Don't call find_class - that only gives us
12665 the first classpath entry having the needed package.
12666 Use the struct buffer data structure from buffer.h.
12667 (read_import_dir, find_in_imports_on_demand): The remembered
12668 class names now use '.' (not '/') as package separator.
12669
12670 * parse.y (java_complete_expand_methods): Call write_classfile
12671 here, and not in java_expand_classes (which only gets first class).
12672
12673 1998-12-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
12674
12675 * parse.y (<type_declaration>): Do maybe_generate_clinit last.
12676 (register_fields): If a static fields has an initializer, just
12677 chain it on ctxp->static_initialized, and handle later.
12678 (java_complete_expand_methods): Force <clinit> first.
12679 (resolve_expression_name, resolve_field_access): Just get DECL_INITIAL
12680 - it's already been completed.
12681 (patch_initialized_static_field): New function.
12682 (java_complete_field): Call it.
12683
12684 1998-12-12 Per Bothner <bothner@cygnus.com>
12685
12686 * expr.c (encode_newarray_type, build_new_array): New functions.
12687 * java-tree.h: Declare build_new_array.
12688 * jcf-write.c (patch_newarray): Use build_new_array.
12689
12690 * expr.c (java_lang_expand_exp): Support NEW_ARRAY_INIT.
12691 * jcf-write.c (generate_bytecode_insns): Support NEW_ARRAY_INIT.
12692
12693 * parse.y (patch_new_array_init): Re-organize.
12694 Now is passed the actual array (pointer) type of the value.
12695 Set the type of the CONSTRUCTOR to be an ARRAY_TYPE.
12696 (patch_array_constructor): Removed - merged into patch_new_array_init.
12697 (java_complete_tree): Update patch_new_array_init.
12698
12699 * jcf-write.c (find_constant_index): New function.
12700 (generate_bytecode_insns): Use find_constant_index.
12701 (generate_classfile): Use find_constant_index for ConstantValue.
12702
12703 1998-12-11 Tom Tromey <tromey@cygnus.com>
12704
12705 * expr.c (invoke_build_dtable): Renamed dtable -> vtable.
12706 * decl.c (init_decl_processing): Renamed dtable -> vtable.
12707 * class.c (make_class_data): Renamed dtable -> vtable, and
12708 dtable_method_count -> vtable_method_count.
12709
12710 1998-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
12711
12712 * decl.c (long_zero_node, float_zero_node, double_zero_node): New
12713 global variables, initialized.
12714 * java-tree.h (long_zero_node, float_zero_node, double_zero_node):
12715 Declared new global variables.
12716 * lex.c (java_lex): Return long_zero_node, float_zero_node,
12717 double_zero_node, integer_zero_node upon direct matching.
12718 * parse.y (purify_type_name): Added function prototype.
12719 (duplicate_declaration_error_p): Consider new_type as potentially
12720 being a incomplete type. Use purify_type_name on type string.
12721 (method_header): saved_type: unused variable removed. Don't figure
12722 return type if method name is invalid.
12723 (java_complete_tree): Set CAN_COMPLETE_NORMALLY after `node' was
12724 processed by patch_unaryop.
12725 (patch_unaryop): Fixed typo in comment. Re-convert pre/post
12726 increment/decrement node into its original type after binary
12727 numeric promotion on its operands.
12728
12729 1998-12-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
12730
12731 * parse.y (array_initializer:): Array init operand is NULL_TREE
12732 instead of a TREE_LIST of NULL_TREEs when parsing `{}'. `{,}' is
12733 now an error. Fixed indentation problems.
12734 (patch_string): Handle error_mark_node as an argument.
12735 (patch_new_array_init): Fixed indentation problems.
12736 (array_constructor_check_entry): Removed check on null wfl_value.
12737 Return an error if wfl_value's walk returns an error.
12738
12739 1998-12-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
12740
12741 * java-tree.def (NEW_ARRAY_INIT): New Java tree code.
12742 * lex.c (java_lex): Remember column position before advancing one
12743 token. Retain location information on OCB_TK.
12744 * lex.h (typedef struct java_lc): Added new field.
12745 * parse.h (GET_SKIP_TYPE): New macro.
12746 (QUAL_DECL_TYPE): Redefined using GET_SKIP_TYPE.
12747 * parse.y (build_new_array_init, patch_new_array_init,
12748 patch_array_constructor, maybe_build_array_element_wfl,
12749 array_constructor_check_entry): New function prototypes.
12750 (switch_block:): Tagged <node>.
12751 (OCB_TK): Tagged <operator>.
12752 (array_initializer:): Installed actions.
12753 (variable_initializer): Build location information on element if
12754 necessary.
12755 (switch_statement:): Fixed indentation typo.
12756 (switch_block:): Redefined default action.
12757 (java_complete_tree): Handle NEW_ARRAY_INIT in MODIFY_EXPR:.
12758 (patch_assignment): Removed duplicate code.
12759 (maybe_build_array_element_wfl, build_new_array_init,
12760 patch_new_array_init, patch_array_constructor,
12761 array_constructor_check_entry): New functions.
12762
12763 1998-12-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
12764
12765 * parse.y (array_initializer): Tagged <node>.
12766 (variable_initializer:): Use default rule.
12767 (array_initializer:): Defined actions.
12768 (variable_initializers:): Likewise.
12769 (resolve_qualified_expression_name): Use DECL_CONTEXT to build
12770 non-static field accesses.
12771 (patch_invoke): Fixed indentation typo.
12772 (java_complete_tree): Likewise.
12773 (build_labeled_block): Changed leading comment. Generate an error
12774 in case of duplicate loop labels.
12775 (patch_conditional_expr): Patch results of string concatenation
12776 operations.
12777
12778 1998-12-06 Per Bothner <bothner@cygnus.com>
12779
12780 * constants.c (find_methodref_index): When the class is an interface,
12781 generate CONSTANT_InterfaceMethodref instead of a CONSTANT_MethodRef.
12782
12783 * decl.c (finit_identifier_node): Use "$finit$", rather than
12784 "<finit>" (which Sun's verifier rejects).
12785 * parse.y (maybe_generate_finit): Leave out meaningless final flag.
12786 (generate_field_initialization_code): Removed.
12787 (fix_constructors) Don't add call to $finit$ here (wrong order).
12788 (patch_method_invocation): Add $finit$ call here.
12789
12790 * java-tree.h (CALL_USING_SUPER): New macro.
12791 * parse.y (patch_invoke): Remove im local variable.
12792 (patch_method_invocation, patch_invoke): Don't pass super parameter.
12793 (patch_invoke): Use CALL_USING_SUPER instead of from_super parameter.
12794 (resolve_qualified_expression_name): Maybe set CALL_USING_SUPER.
12795
12796 * jcf-write.c (get_access_flags): Fix typo ACC_PUBLIC -> ACC_FINAL.
12797
12798 * parse.y (java_complete_tree): Don't complain about unreachable
12799 statement if it is empty_stmt_node.
12800
12801 * jcf-write.c (find_constant_wide): New function.
12802 (push_long_const): Use find_constant_wide.
12803
12804 * jcf-write.c (generate_bytecode_insn): Fix bug in switch handling.
12805 (generate_bytecode_insn): Use correct dup variant for MODIFY_EXPR.
12806 Add "redundant" NOTE_PUSH/NOTE_POP uses so code_SP_max gets set.
12807 Emit invokeinterface when calling an interface method.
12808 Emit invokespecial also when calling super or private methods.
12809
12810 * jcf-write.c (generate_classfile): Emit ConstantValue attributes.
12811
12812 1998-12-06 Per Bothner <bothner@cygnus.com>
12813
12814 * jcf-dump.c (INVOKE): If invokeinterface, print number of args.
12815
12816 1998-12-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
12817
12818 * java-tree.h (java_layout_seen_class_methods): New function
12819 prototype.
12820 (LAYOUT_SEEN_CLASS_METHODS): Macro removed.
12821 * jcf-parse.c (parse_class_file): Call java_layout_seen_class_methods.
12822 * parse.h (PROMOTE_RECORD_IF_COMPLETE): New macro.
12823 * parse.y (method_declarator:): Defined action.
12824 (issue_warning_error_from_context): input_filename saved, set to
12825 the appropriate value and restored after java_error is called.
12826 (build_unresolved_array_type): Fixed comment.
12827 (register_fields): Use PROMOTE_RECORD_IF_COMPLETE.
12828 (method_header): Deal with return type the same way type are
12829 handled for fields and method's parameters and local variables
12830 types are handled.
12831 (check_method_redefinition): Removed extra CR.
12832 (declare_local_variables): Use PROMOTE_RECORD_IF_COMPLETE.
12833 (java_layout_seen_class_methods): New function.
12834 (java_layout_classes): Call java_layout_seen_class_methods.
12835
12836 1998-12-03 Per Bothner <bothner@cygnus.com>
12837
12838 * parse,y (patch_synchronized_statement): Set CAN_COMPLETE_NORMALLY.
12839
12840 1998-12-03 Per Bothner <bothner@cygnus.com>
12841
12842 * jcf-dump.c (main): Fix error message.
12843 * jcf-path.c (add_entry): Style fix.
12844
12845 1998-12-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
12846
12847 * class.c (layout_class_method): Call build_java_argument_signature
12848 on constructors too.
12849 * parse.y (check_method_redefinition): Use TYPE_ARGUMENT_SIGNATURE.
12850 (patch_method_invocation): Define a primary when resolving an
12851 expression name. Augmented comment on code checking illegal `this'
12852 usage. Loosened it test by accepting NEW_CLASS_EXPR.
12853
12854 1998-12-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
12855
12856 * class.c (layout_class_method): Don't report error on non-static
12857 overriding static if the method is private.
12858 * java-tree.h (finish_class): Prototype added.
12859 * lex.c (java_get_line_col): Handle col argument -2 value.
12860 * parse.h: All static method declarations moved to parse.y.
12861 * parse.y: Now contains all static method declarations previously
12862 found in parse.h.
12863 (find_expr_with_wfl, missing_return_error,
12864 unreachable_stmt_error): New functions.
12865 (java_get_real_method_name): Identify constructors bearing class
12866 names in source code compiled classes only.
12867 (java_complete_expand_methods): Call missing_return_error.
12868 (invocation_mode): Private methods invoked as static methods.
12869 (java_complete_tree): Call unreachable_stmt_error.
12870
12871 1998-12-01 Tom Tromey <tromey@cygnus.com>
12872
12873 * Makefile.in (+target): Removed.
12874 (+xmake_file): Likewise.
12875 (+tmake_file): Likewise.
12876 (.NOEXPORT): Removed duplicate.
12877
12878 1998-11-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
12879
12880 * Makefile.in (jc1, jv-scan): Link with $(SUBDIR_OBSTACK).
12881
12882 * jv-scan.c: Fix xmalloc prototype. Provide an xmalloc definition.
12883
12884 * jvgenmain.c: Remove the xmalloc prototype, we get it from
12885 libiberty.h. Provide an xmalloc definition.
12886
12887 * jvspec.c: Remove the xmalloc prototype.
12888
12889 * parse-scan.y: Include config.h and system.h. Don't include
12890 OS headers or gansidecl.h. Don't prototype xmalloc/xstrdup.
12891 Provide an xstrdup definition.
12892
12893 1998-11-26 Alexandre Oliva <oliva@dcc.unicamp.br>
12894
12895 * jcf-path.c (add_entry): Recognize ".jar" too.
12896 * lang-specs.h: Likewise.
12897
12898 1998-11-26 Per Bothner <bothner@cygnus.com>
12899
12900 * jcf-write.c (generate_bytecode_insns): In Call_EXPR, handle
12901 soft_monitorenter_node, soft_monitorexit_node, throw_node.
12902
12903 * jcf-write.c (generate_bytecode_insns):
12904 Handle pre/post-increment/decrement of long.
12905
12906 * jcf-write.c (generate_bytecode_insns):
12907 Handle missing exception handler (finally for synchronized).
12908
12909 1998-11-25 Per Bothner <bothner@cygnus.com>
12910
12911 * java-tree.h (end_params_node): Declare global.
12912 * decl.c (end_params_node): New global.
12913 (init_decl_processing, start_java_method): Use end_params_node for
12914 end of list of parameter types. Follows correct gcc conventions.
12915 * expr.c (pop_argument_types, pop_arguments): Likewise.
12916 * lang.c (put_decl_node): Likewise.
12917 * typeck.c (various places): Likewise.
12918 * class.y (various places): Likewise.
12919 * parse.y (various places): Likewise.
12920
12921 * parse.y (java_complete_tree): Move CAN_COMPLETE_NORMALLY.
12922 (build_jump_to_finally): Add missing CAN_COMPLETE_NORMALLY.
12923
12924 * class.c: Add #include flags.h, remove no-longer needed declaration.
12925
12926 * class.c (layout_class_method): Remove commented-out code, re-format.
12927 Don't add vtable entry (or index) for private methods.
12928 * expr.c (expand_invoke): A private method is implicitly final.
12929 * class.c (make_class_data): If inlining or optimizing,
12930 skip private methods.
12931
12932 * class.c (finish_class): New function. Calls existing methods,
12933 but alls emits deferred inline functions.
12934 * jcf-parse.c (parse_class_file): Call finish_class.
12935 * parse.y (java_complete_expand_methods): Likewise.
12936
12937 * expr.c (build_java_binop): Explicit default, to silence -Wall.
12938
12939 * expr.c (CHECK_PC_IN_RANGE): Add void cast to kill warnings.
12940
12941 1998-11-25 Marc Espie <espie@quatramaran.ens.fr>
12942
12943 * jcf-write.c (generate_bytecode_conditional): Fix typo.
12944
12945 1998-11-24 Per Bothner <bothner@cygnus.com>
12946
12947 * (generate_classfile): Always write class access flag with
12948 ACC_SUPER set.
12949
12950 1998-11-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
12951
12952 * class.c (maybe_layout_super_class): New function.
12953 (layout_class): Reorganized. Loop on class methods dispatched into
12954 a new function. Call maybe_layout_super_class.
12955 (layout_class_methods, layout_class_method): New functions.
12956 * expr.c (expand_java_NEW): Call layout_class_methods on loaded
12957 class.
12958 (expand_invoke): Likewise.
12959 * java-tree.h (all_class_list): New global variable declared.
12960 (layout_class_methods, layout_class_method): New function
12961 prototypes.
12962 (LAYOUT_SEEN_CLASS_METHODS): New macro.
12963 * jcf-parse.c (all_class_list): New global variable.
12964 (load_class): Extended what class_or_name can be. Use parser
12965 context mechanism to save globals before calling jcf_parse.
12966 (jcf_parse_source): Don't parse twice if HAS_BEEN_ALREADY_PARSED_P
12967 is set on the file name.
12968 (jcf_parse): Layout class methods when Object is loaded, otherwise
12969 record class in all_class_list for delayed method layout.
12970 (parse_class_file): Use LAYOUT_SEEN_CLASS_METHODS.
12971 * lang.c (put_decl_node): Decode <init> into the decl context
12972 class name.
12973 * lex.c (java_allocate_new_line): Use xmalloc.
12974 * parse.h (INCOMPLETE_TYPE_P): Redefined to work with incomplete
12975 pointers, not TREE_LIST elements.
12976 (struct parser_ctxt): Fixed comment indentations, added comments
12977 and reordered some fields.
12978 (java_check_methods): Function prototype removed.
12979 * parse.y (java_push_parser_context): Use xmalloc.
12980 (java_parser_context_restore_global): Pop extra pushed ctxp only
12981 when there's nothing next.
12982 (maybe_create_class_interface_decl): Fixed comment, add new
12983 created class decl to all_class_list.
12984 (method_header): Use GET_REAL_TYPE on argument's types.
12985 (method_declarator): Use GET_REAL_TYPE, change type to the real
12986 type in TREE_LIST dependency node. Build argument list with the
12987 real type.
12988 (create_jdep_list): Use xmalloc. Removed allocation error message.
12989 (obtain_incomplete_type): Fixed leading comment. Broadened
12990 incoming argument meaning.
12991 (register_incomplete_type): Use xmalloc. Removed allocation error
12992 message.
12993 (safe_layout_class): Fixed leading comment.
12994 (jdep_resolve_class): Reversed if statement condition and switch
12995 if and else bodies.
12996 (resolve_and_layout): Fixed leading comment. Broadened incoming
12997 argument meaning.
12998 (complete_class_report_errors): New local variable name, for
12999 clarity. purify_type_name used for all error cases.
13000 (java_get_real_method_name): Stricter check on constructors.
13001 (java_check_regular_methods): Reverse methods list only if not
13002 already laid out. Layout artificial constructor.
13003 (java_check_methods): Deleted.
13004 (source_start_java_method): Obtain incomplete type for patchable
13005 method arguments.
13006 (java_layout_classes): Fixed leading comment. Use
13007 LAYOUT_SEEN_CLASS_METHODS, use a loop to check methods. Added else
13008 statement to layout operation, reuse LAYOUT_SEEN_CLASS_METHODS
13009 before returning. Fixed comments.
13010 (java_expand_classes): Check for errors up front.
13011 (patch_method_invocation): Class to search is resolved and laid
13012 out.
13013
13014 1998-11-24 Per Bothner <bothner@cygnus.com>
13015
13016 * expr.c (java_lang_expand_expr): Add missing emit_queue.
13017
13018 * javaop.h (int8): Removed - not used.
13019 (jbyte): Redefine portably with correct signedness.
13020
13021 * jcf-write.c (generate_bytecode_insns): Don't free sw_state.cases.
13022
13023 * jcf-write.c (generate_bytecode_insns): Fix typo
13024 OPCODE_getstatic to OPCODE_getfield.
13025
13026 * java-tree.def (CASE_EXPR, DEFAULT_EXPR): Kind is 'x', not '1'.
13027 * parse.y (java_complete_tree): For CASE_EXPR and DEFAULT_EXPR,
13028 set TREE_SIDE_EFFECTS (otherwise expand_expr may skip them).
13029
13030 1998-11-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
13031
13032 * jcf-parse.c (jcf_parse_source): Function returned type is
13033 void. Added prototype.
13034 (jcf_parse): Function returned type is void.
13035 (yyparse): Remove call to fclose on the last parsed file.
13036
13037 * java-tree.h (jcf_parse): Changed jcf_parse prototype.
13038
13039 1998-11-18 Alexandre Petit-Bianco <apbianco@cygnus.com>
13040
13041 * class.c (unmangle_classname): Set QUALIFIED_P when appropriate.
13042 (layout_class): Cope with methods featuring WFL in decl names.
13043 * decl.c (unqualified_object_id_node): New global variable,
13044 initialized.
13045 (build_decl_no_layout): Removed.
13046 * expr.c (build_primtype_type_ref): Handle Double.
13047 (java_lang_expand_expr): Fixed indentations.
13048 * java-tree.h (CLASS_METHOD_CHECKED_P): Flag deleted.
13049 (flag_wall, flag_redundant, flag_not_overriding,
13050 flag_static_local_jdk1_1, unqualified_object_id_node): Global
13051 variable declarations.
13052 (build_decl_no_layout): Removed prototype.
13053 (java_get_real_method_name): Added prototype.
13054 (IS_UNCHECKED_EXPRESSION_P): Renamed IS_UNCHECKED_EXCEPTION_P.
13055 (java_parse_abort_on_error): Macro now just returns.
13056 * jcf-parse.c (jcf_parse_source): Check fclose returned
13057 value. Call emit_register_classes if java_report_errors returns
13058 zero.
13059 * lanc.c (flag_wall, flag_redundant, flag_not_overriding,
13060 flag_static_local_jdk1_1): New integer flags.
13061 (lang_decode_option): New flags set here.
13062 * parse.h (GET_REAL_TYPE, GET_METHOD_NAME): New macros.
13063 (OBSOLETE_MODIFIER_WARNING): Issue error message conditionally to
13064 the flag_redundant variable.
13065 (SET_TYPE_FOR_RESOLUTION): Consider Object being java.lang.Object
13066 when parsing java.lang.Object class.
13067 (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Added terminal
13068 NULL_TREE to build.
13069 (resolve_qualified_expression_name): Fixed indentation.
13070 (patch_array_ref): Changed prototype.
13071 (not_initialized_as_it_should_p): Prototype removed.
13072 (java_report_errors): Added function prototype.
13073 * parse.y (formal_parameter:): Changed error message for not yet
13074 supported final parameters.
13075 (class_type_list:): Set both PURPOSE and VALUE of created
13076 TREE_LIST to be class_type.
13077 (primary_no_new_array:): Handle class literals on primitive types.
13078 (parse_warning_context): Reinstalled correct force_error and
13079 do_warning flags setups.
13080 (java_report_errors): Changed prototype. Return java_error_count
13081 value.
13082 (variable_redefinition_error): Consider treating variable type as
13083 a fake pointer.
13084 (create_interface): Warn about redundant abstract modifier if
13085 flag_redundant is set. Changed error message.
13086 (lookup_field_wrapper): Save/restore globals before/after looking
13087 up field.
13088 (duplicate_declaration_error_p): Consider treating declaration
13089 type as a fake pointer.
13090 (register_fields): Extract real type from dependency node. Check
13091 for duplicate field declaration after type adjustment. Use
13092 DECL_INITIAL to store static final initialized values.
13093 (method_header): Extract real function type from dependency node.
13094 (check_abstract_method_header): Use GET_METHOD_NAME.
13095 (obtain_incomplete_type): Layout fake pointer type.
13096 (safe_layout_class): Don't try to check for methods before layout.
13097 (java_complete_class): Don't check for correct throws clause
13098 elements inheritance here.
13099 (resolve_and_layout): Broadened name parameter meaning.
13100 (reset_method_name): Use GET_METHOD_NAME.
13101 (java_get_real_method_name): New function.
13102 (java_check_regular_methods): Don't check methods in
13103 java.lang.Object. Verify lineage of throws clause elements. Use
13104 flag_no_overriding in warning report.
13105 (check_throws_clauses): Don't check if class was from
13106 bytecode. Use IS_UNCHECKED_EXCEPTION_P macro.
13107 (java_check_methods): Don't set CLASS_METHOD_CHECKED_P flag.
13108 (declare_local_variables): Use flag_static_local_jdk1_1 to report
13109 warning on unsupported final local variables. Use build_decl
13110 instead of build_decl_no_layout. Get real local variable type from
13111 dependency node.
13112 (source_start_java_method): Get real parameter type from
13113 dependency node. Call build_decl instead of build_decl_no_layout.
13114 (java_layout_classes): Reverse tree and layout type and class as
13115 required. Mark class as loaded when done.
13116 (resolve_field_access): Fixed indentation. Restricted condition
13117 leading to static field access code generation. Set field_type
13118 decl's TREE_TYPE if QUAL_DECL_TYPE not available.
13119 (resolve_qualified_expression_name): Initialize type_found to
13120 null. Handle static field resolved during qualification. Fixed
13121 layout on non primitive field decl types.
13122 (not_accessible_p): Fixed typo in comment.
13123 (patch_method_invocation): Resolve and layout class to search from
13124 type.
13125 (lookup_method_invoke): Keep integer constant 0 as is. Resolve and
13126 layout non primitive type, if necessary. Make method node only to
13127 report errors.
13128 (find_applicable_accessible_methods_list): Consider WFL'ed method
13129 decl names. Fixed indentation.
13130 (argument_types_convertible): Resolve and layout target type if
13131 necessary.
13132 (java_complete_tree): Fixed indentation problems. Rewrote
13133 CALL_EXPR thrown exceptions check. Re-installed further processing
13134 of the assignment in certain cases.
13135 (patch_assignment): Call maybe_build_primttype_type_ref to perform
13136 inlining on class literals.
13137 (valid_builtin_assignconv_identity_widening_p): Cope with constant
13138 0 literal.
13139 (valid_method_invocation_conversion_p): Likewise.
13140 (patch_string): Temporary disable forbidden use of `this' in
13141 explicit constructor invocations when doing string concatenation
13142 within their scope.
13143 (patch_unaryop): Added comment. Reinstalled code to disable
13144 further check on assignment operation with cast expression RHS.
13145 (patch_switch_statement): Fixed indentation.
13146 (build_try_statement): Call build_decl instead of
13147 build_decl_no_layout.
13148 (patch_synchronized_statement): Likewise.
13149 (patch_throw_statement): Use IS_UNCHECKED_EXCEPTION_P instead of
13150 IS_UNCHECKED_EXPRESSION_P.
13151 (check_thrown_exceptions_do): Changed leading comment. Resolve and
13152 layout argument exception type.
13153 (purge_unchecked_exceptions): Use IS_UNCHECKED_EXCEPTION_P instead
13154 of IS_UNCHECKED_EXPRESSION_P.
13155
13156 1998-11-18 Anthony Green <green@cygnus.com>
13157
13158 * jcf-parse.c (yyparse): Open class file in binary mode.
13159
13160 1998-11-15 Per Bothner <bothner@cygnus.com>
13161
13162 * jvgenmain.c: Need to #include "gansidecl.h" (to get PROTO).
13163
13164 * jcf-write.c (perform_relocations): Move check out one loop.
13165
13166 1998-11-15 Anthony Green <green@hoser.cygnus.com>
13167
13168 * Make-lang.in: Fix reference to srcdir.
13169 * jv-scan.c: Add missing xmalloc prototype.
13170 * jvgenmain.c: Ditto.
13171
13172 1998-11-15 Per Bothner <bothner@cygnus.com>
13173
13174 * decl.c (error_mark_node), java-tree.h: New global.
13175 * parse.y: Use empty_stmt_node instead of size_zero_node.
13176 (build_if_else_statement): If missing else, use empty_stmt_node.
13177
13178 * parse.y (not_initialized_as_it_should_p): Removed, with its callers.
13179 (java_complete_expand_method): Complain if return is missing.
13180 (java_check_regular_methods): Comment out incorrect error check.
13181 (not_accessible_p): Fix incorrect handling of protected methods.
13182 (patch_method_invocation): Pass correct context to not_accessible_p.
13183 (find_applicable_accessible_methods_list): Likewise.
13184 (qualify_ambiguous_name): If ARRAY_REF, it's an expression name.
13185 (java_complete_tree): For CASE_EXPR and DEFAULT_EXPR, set
13186 TREE_TYPE (to void_type_node); otherwise expand_expr crashes.
13187 (patch_if_else_statement): Fix setting of CAN_COMPLETE_NORMALLY.
13188
13189 * jcf-write.c (CHECK_OP, CHECK_PUT): Add some error checking.
13190 (push_int_const): Remove reundant NOTE_PUSH.
13191 (generate_bytecode_insns - case STRING_CST): Do NOTE_PUSH.
13192 (- case SWITCH_EXPR): Fix code generation bug.
13193 (- case PREDECREMENT_EXPR etc): Remove redundant NOTE_PUSH.
13194 (generate_classfile): More robust for abstract methods.
13195
13196 1998-11-15 Anthony Green <green@cygnus.com>
13197
13198 * Makefile.in: jv-scan and jvgenmain all require libiberty.
13199 * Make-lang.in: Ditto.
13200
13201 * jv-scan.c: Remove xmalloc and xstrdup definitions.
13202 * jvgenmain: Ditto.
13203
13204 1998-11-15 Per Bothner <bothner@cygnus.com>
13205
13206 * jcf-parse.c (HANDLE_EXCEPTIONS_ATTRIBUTE): New macro.
13207
13208 * jcf-io.c (find_class): Simpler/cleaner structure fixes a bug.
13209
13210 1998-11-14 Per Bothner <bothner@cygnus.com>
13211
13212 Allow uses of interface types to verify. This is not really
13213 type-safe, but it matches what Sun does, and is OK as long as
13214 there are appropriate run-time checks.
13215 * verify.c (merge_types): If merging two interface types,
13216 just set the result to java.lang.Object.
13217 * expr.c (pop_type): Any interface is matches by java.lang.Object.
13218
13219 1998-11-13 Tom Tromey <tromey@cygnus.com>
13220
13221 * gjavah.c (main): Handle --output-class-directory argument.
13222 * jvspec.c (lang_specific_driver): Translate `-d' into
13223 -foutput-class-dir.
13224 * jcf.h (jcf_write_base_directory): Declare.
13225 * lang.c (lang_decode_option): Recognize -foutput-class-dir.
13226 * lang-options.h: Mention -foutput-class-dir.
13227 * jcf-write.c (jcf_write_base_directory): New global.
13228 (make_class_file_name): Put generated .class file into `-d'
13229 directory, or into source directory if -d not given. Function now
13230 static.
13231 (write_classfile): Free class file name. Handle case where class
13232 file name is NULL.
13233 (DIR_SEPARATOR): New macro.
13234 Include <sys/stat.h>
13235
13236 * Makefile.in (prefix): New macro.
13237
13238 1998-11-12 Per Bothner <bothner@cygnus.com>
13239
13240 * parse.y (patch_invoke): Do less if flag_emit_class_files.
13241 * expr.c (build_known_method_ref): Don't check flag_emit_class_files
13242 here (done in patch_invoke instead).
13243 (case_identity): Moved here from parse.y.
13244
13245 * java-tree.h (CAN_COMPLETE_NORMALLY): New macro.
13246 * parse.y (java_complete_tree etc): Maybe set CAN_COMPLETE_NORMALLY.
13247 * parse.y (java_complete_tree): Re-order COMPOUND_EXPR in BLOCK
13248 so they can be efficiently scanned without recursion.
13249 Error it ! CAN_COMPLETE_NORMALLY first part of COMPOUND_EXPR.
13250 * expr.c (java_lang_expand_expr): Expand statements of COMPOUND_EXPR
13251 in BLOCK iteratively, rather than recursively.
13252
13253 * parse.y (do_unary_numeric_promotion): New function.
13254 (patch_unaryop, patch_binop, patch_array_ref): Use it.
13255
13256 * parse.y (patch_newarray): Various fixes.
13257
13258 Re-do handling of switch statements (for proper block scoping).
13259 * parse.y: Add just a single block for the enture switch block,
13260 but don't create any "case blocks".
13261 (group_of_labels): Rmeoved unneeded non-terminal.
13262 CASE_EXPR and DEFAULT_EXPR are added to current block.
13263 * expr.c (java_lang_expand_expr): Inline SWITCH_EXPR here.
13264 Now also need to handle CASE_EXPR and DEFAULT_EXPR.
13265 * java-tree.h (SWITCH_HAS_DEFAULT): New macro.
13266 * parse.y (wfl_operator, print_int_node): Make non-static.
13267 (java_complete_tree): CASE_EXPR and DEFAULT_EXPR are now processed
13268 as part of recursive scan of block.
13269 (java_expand_switch ): Removed - inlined into java_lang_expand_expr.
13270 (patch_switch_statement): Most tests move dinto java_complete_tree.
13271
13272 * parse.y: Make various production be non-typed (void).
13273 * parse.y (parse_error): Merged into issue_warning_error_from_context.
13274 * parse.y (add_stmt_to_compound): Don't create/change extra node.
13275 (patch_method_invocation_stmt): Renamed to patch_method_invocation.
13276
13277 * jcf-write.c (struct jcf_handler): New type.
13278 (struct jcf_switch_state): New type.
13279 (SWITCH_ALIGN_RELOC, BLOCK_START_RELOC): New relocation kinds.
13280 (alloc_handler, emit_unop, emit_reloc): New functions.
13281 (adjust_typed_op): Add extra parameter ("max type" offset).
13282 (emit_switch_reloc, emit_case-reloc): New function.
13283 (generate_bytecode_conditional): Handle REAL_TYPE comparisons.
13284 (generate_bytecode_insns): Support REAL_CST, switch statements,
13285 exception handling, method calls, object/array creation, and more.
13286
13287 * class.c: Remove some unused variables.
13288 * constants.c (find_string_constant): New function.
13289 (count_constant_pool_bytes): Fix to correctly handle wide constants.
13290 * decl.c (complete_start_java_method): Don't _Jv_InitClass
13291 if flag_emit_class_files.
13292
13293 1998-11-12 Tom Tromey <tromey@cygnus.com>
13294
13295 * jcf-io.c (find_class): Added explanatory comment.
13296
13297 * jcf-path.c (add_entry): Look for `.zip' at end of filename. Add
13298 trailing slash to `.zip' entries.
13299
13300 * jvspec.c (lang_specific_driver): Correctly handle case where
13301 GC_NAME not defined.
13302
13303 1998-11-11 Tom Tromey <tromey@cygnus.com>
13304
13305 * jvspec.c (GC_NAME): New define.
13306 (lang_specific_driver): Use GC_NAME. Add GC_NAME to command line
13307 if required.
13308 * Make-lang.in (jvspec.o): Define WITH_GC_<name>.
13309
13310 1998-11-11 Per Bothner <bothner@cygnus.com>
13311
13312 * jcf-dump.c (TABLE_SWITCH): Fix typos.
13313
13314 1998-11-11 Tom Tromey <tromey@cygnus.com>
13315
13316 * jcf-dump.c (main): Correctly recognize `--'-style long options.
13317
13318 1998-11-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
13319
13320 * class.c (is_compiled_class): Call safe_layout_class for class
13321 compiled from source.
13322 * conver.h (convert_to_integer, convert_to_real,
13323 convert_to_pointer): Added prototypes.
13324 * decl.c (init_decl_processing): Non longer push the decls of
13325 `methodtable', `constants', `Class', `Field', `dispatchTable'
13326 `jexception' and `Method'.
13327 * expr.c (build_invokeinterface): New function.
13328 (expand_invoke): static variable CLASS_IDENT now in
13329 build_invokeinterface. Use build_invokeinterface.
13330 (expand_java_field_op): Moved code to inline
13331 java.lang.PRIMTYPE.TYPE into a function.
13332 (build_primtype_type_ref): New function.
13333 * java-tree.def (INSTANCEOF_EXPR): New tree code.
13334 * java-tree.h (CLASS_METHOD_CHECKED_P, METHOD_DEPRECATED,
13335 FIELD_DEPRECATED, CLASS_DEPRECATED): New flag macros.
13336 (DECL_CONSTRUCTOR_P): Fixed typo in comment.
13337 (DECL_LOCAL_STATIC_VALUE): New macro.
13338 (build_invokeinterface, build_primtype_type_ref): New function
13339 prototypes.
13340 (java_parse_abort_on_error): Macro rewritten.
13341 * jcf-parse.c (current_method): Add comment to declaration.
13342 (parse_zip_file_entries, process_zip_dir, void parse_source_file):
13343 Function prototypes fixed.
13344 (jcf_parse_source): push/pop parser context. save/restore global.
13345 (parse_source_file): Fixed leading comment. Now take a
13346 IDENTIFIER_NODE as an argument. Doesn't check methods, layout
13347 classes and pop the parser context anymore.
13348 (yyparse): Push parser context, save globals, parse the source
13349 file, restore globals and pop the parser context when processing a
13350 source file.
13351 * jcf.h (VERBOSE_SKELETON): Replaces SOURCE_FRONTEND_DEBUG define.
13352 * lex.c (java_parse_doc_section): New function.
13353 (java_lex): Call java_parse_doc_section when appropriate. Build an
13354 operator around INSTANCEOF_TK.
13355 * lex.h (java_lineterminator, java_sprint_unicode,
13356 java_unicode_2_utf8, java_lex_error, java_store_unicode):
13357 Prototypes rewritten.
13358 (java_parse_escape_sequence, java_letter_or_digit_p,
13359 java_parse_doc_section, java_parse_end_comment, java_get_unicode,
13360 java_read_unicode, java_store_unicode, java_read_char,
13361 java_allocate_new_line, java_unget_unicode, java_sneak_unicode):
13362 Added function prototypes.
13363 * parse.h (VERBOSE_SKELETON): Replaces SOURCE_FRONTEND_DEBUG
13364 define.
13365 (JNULLP_TYPE_P, CHECK_METHODS, CHECK_DEPRECATED, REGISTER_IMPORT):
13366 New macros
13367 (struct parser_ctxt): New fields: deprecated,
13368 current_parsed_class_un, gclass_list.
13369 (fix_method_argument_names, issue_warning_error_from_context,
13370 resolve_package, lookup_package_type): New function prototypes.
13371 (resolve_expression_name): Fixed function prototype.
13372 (find_applicable_accessible_methods_list): Fixed indentation, added
13373 extra argument in prototype.
13374 (check_final_assignment, build_null_of_type, check_deprecation,
13375 check_method_redefinition, reset_method_name,
13376 java_check_regular_methods, java_check_abstract_methods,
13377 maybe_build_primttype_type_ref): New function prototype.
13378 * parse.y (conver.h): Include.
13379 (INSTANCEOF_TK): Tagged <operator>.
13380 (single_type_import_declaration): Use REGISTER_IMPORT macro.
13381 (relational_expression:): Build binop for instanceof.
13382 (java_push_parser_context): Remember ctxp->gclass_list across
13383 contexts.
13384 (java_pop_parser_context): Simply return if no context
13385 exists. Remember gclass_list across contexts.
13386 (issue_warning_error_from_context): New function.
13387 (parse_error_context): Don't setup ctxp->elc here. Call
13388 issue_warning_error_from_context instead.
13389 (parse_warning_context): Likewise.
13390 (maybe_create_class_interface_decl): Removed DECL_ARTIFICIAL
13391 setup. Link new class/interface to ctxp->gclass_list.
13392 (add_superinterfaces): Register interface as incomplete if not
13393 loaded.
13394 (create_class): Remember class unqualified name in
13395 ctxp->current_parsed_class_un. Check class deprecation.
13396 (register_fields): Check field deprecation. Remember static final
13397 field value in DECL_LOCAL_STATIC_VALUE. Changed comment in part
13398 processing INIT.
13399 (method_header): New local variable ORIG_ARG. Use unqualified
13400 current class name for check on constructor errors. Promote return
13401 type if of record type. Argument list fix moved in
13402 fix_method_argument_names, called here. Check method deprecation.
13403 (fix_method_argument_names): New function.
13404 (method_declarator): Promote record typed arguments.
13405 (safe_layout_class): Check class methods before layout.
13406 (java_complete_class): Compute field layout when patched.
13407 (do_resolve_class): Try to load class after having it renamed
13408 after the package name.
13409 (get_printable_method_name): Use DECL_CONTEXT.
13410 (reset_method_name): New function.
13411 (check_method_redefinition): Use reset_method_name.
13412 (java_check_regular_methods): New local variable
13413 SAVED_FOUND_WFL. Temporarily reinstall overriding/hiding method
13414 names for error report. Check for compile-time error when method
13415 found has default (package) access.
13416 (java_check_abstract_methods): Now takes an interface DECL node as
13417 an argument. Also reinstall real name on unchecked
13418 overriding/hiding methods for error report.
13419 (java_check_methods): Fixed leading comment. Get classes to verify
13420 from ctxp->gclass_list. Use CHECK_METHODS macro and set
13421 CLASS_METHOD_CHECKED_P on class verification.
13422 (lookup_java_method2): Get real method name if necessary.
13423 (find_in_imports): Don't check package class access here.
13424 (resolve_package, lookup_package_type): New functions.
13425 (java_layout_classes): Fixed leading comment. Take classes to be
13426 laid out from ctxp->gclass_list.
13427 (java_complete_expand_methods): Don't expand native and abstract
13428 methods.
13429 (java_expand_classes): New function.
13430 (resolve_expression_name): Use additional argument ORIG. Retrieve
13431 values of static final field of primitive types.
13432 (resolve_field_access): Handles static final field of promotive
13433 type.
13434 (resolve_qualified_expression_name): Handle STRING_CST as
13435 primaries and package name resolution. Check deprecation on found
13436 decls. Set where_found and type_found on non static field resolved
13437 during qualification. Layout non primitive field decl types.
13438 (check_deprecation): New function.
13439 (maybe_access_field): Simplified.
13440 (patch_method_invocation_stmt): Local variable CLASS_TYPE
13441 removed. Reverse method's argument when primary is a type. Don't
13442 use CLASS_TYPE to report problems, use IDENTIFIER_WFL
13443 instead. Include abstract class in the list of class searchable
13444 for constructors. Use DECL_CONTEXT of found method for access
13445 checks. Check method deprecation.
13446 (patch_invoke): Pay extra care to NEW_CLASS_EXPR type call when
13447 converting arguments. Handle INVOKE_INTERFACE.
13448 (lookup_method_invoke): Search constructor using existing
13449 infrastructure (don't rely on lookup_java_constructor anymore).
13450 (find_applicable_accessible_methods_list): Extra argument flag
13451 LC. Now include constructor in the search.
13452 (qualify_ambiguous_name): Conditional expression are primaries.
13453 (not_initialized_as_it_should_p): static final are always
13454 initialized.
13455 (java_complete_tree): Pass extra NULL argument to
13456 resolve_expression_name. Stricter test to carry on patching
13457 assignments. New case for INSTANCEOF_EXPR.
13458 (complete_function_arguments): Inline PRIMTYPE.TYPE read access.
13459 (check_final_assignment, maybe_build_primttype_type_ref): New
13460 functions.
13461 (patch_assignment): Detect resolved static finals and carry normal
13462 assignment error check on them. Inline PRIMTYPE.TYPE read access.
13463 (try_builtin_assignconv): Access constant 0 on all primitive
13464 types.
13465 (valid_builtin_assignconv_identity_widening_p): Accept identical
13466 types. Accept all promoted type on int type.
13467 (valid_ref_assignconv_cast_p): Accept a null pointer to be
13468 assigned to a reference.
13469 (valid_method_invocation_conversion_p): Accept to check null
13470 pointers.
13471 (build_binop): Merge declaration and initialization of local
13472 variable BINOP.
13473 (patch_binop): New case for INSTANCEOF_EXPR. NE_EXPR to accept all
13474 numeric types. Improved validity test for qualify operators on
13475 references.
13476 (patch_unaryop): Broadened rejection test for PREDECREMENT_EXPR
13477 and PREINCREMENT_EXPR. Also detect resolved static finals of a
13478 primitive type and issue the appropriate error message.
13479 (resolve_type_during_patch): Mark class loaded when resolved.
13480 (patch_cast): Allow null to be cased to reference types.
13481 (build_null_of_type): New function.
13482 (patch_array_ref): Handle array on references correctly.
13483 (patch_return): Removed unused local variable MODIFY. Force
13484 boolean to be returned as integers. Allows null to be returned by
13485 a function returning a reference.
13486 * typeck.c (convert_to_integer, convert_to_real,
13487 convert_to_pointer): Prototypes moved to convert.h
13488 (lookup_argument_method): Use method real name, if necessary.
13489
13490 1998-10-30 Tom Tromey <tromey@cygnus.com>
13491
13492 * class.c (build_class_ref): Changed name of primitive classes to
13493 start with `_Jv_'.
13494
13495 * class.c (make_class_data): Renamed fields: nmethods to
13496 method_count, method_count to dtable_method_count. Always set
13497 `state' field to 0.
13498 * decl.c (init_decl_processing): Likewise.
13499
13500 1998-10-28 Alexandre Petit-Bianco <apbianco@cygnus.com>
13501
13502 * class.c (layout_class): Don't mangle <finit>, produce
13503 __finit<class> instead. Don't verify artificial methods.
13504 * decl.c (finit_identifier_node): New declared global.
13505 (init_decl_processing): finit_identifier_node initialized.
13506 * java-tree.def (CONDITIONAL_EXPR): New Java tree code.
13507 * java-tree.h (finit_identifier_node): Declared as extern.
13508 (struct lang_decl): New field called_constructor.
13509 (DECL_CONSTRUCTOR_CALLS): Access macro to called_constructor.
13510 (CLASS_HAS_FINIT_P): New macro.
13511 (CALL_CONSTRUCTOR_P): Leading comment changed. Macro now checks
13512 explicit constructor invocation.
13513 (CALL_EXPLICIT_CONSTRUCTOR_P, CALL_THIS_CONSTRUCTOR_P,
13514 CALL_SUPER_CONSTRUCTOR_P): New macros.
13515 (write_classfile): Added prototype.
13516 * jcf-parse.c (jcf_parse_source): Parse and remember for
13517 generation if the file was seen on the command line.
13518 (parse_source_file): Don't write the class file here.
13519 (yyparse): Loop on files rewritten. Set current_jcf.
13520 (parse_zip_file_entries): Parse class file only if it was found.
13521 * lang.c (init_parse): Don't open command line provided filename
13522 here.
13523 (lang_parse): Don't set main_jcf anymore.
13524 * parse.h (ABSTRAC_CHECK): Capitalized arguments.
13525 (JCONSTRUCTOR_CHECK): New macro.
13526 (JBSC_TYPE_P): New macro.
13527 (IN_TRY_BLOCK_P, EXCEPTIONS_P): Fixed leading comment.
13528 (COMPLETE_CHECK_OP_2): New macro.
13529 (struct parse_ctxt): New field explicit_constructor_p.
13530 (check_class_interface_creation): Fixed prototype indentation.
13531 (patch_method_invocation_stmt): Prototype reflects added argument.
13532 (patch_invoke): Likewise.
13533 (complete_method_declaration, build_super_invocation,
13534 verify_constructor_circularity,
13535 build_this_super_qualified_invocation, get_printable_method_name,
13536 patch_conditional_expr, maybe_generate_finit, fix_constructors,
13537 verify_constructor_super, create_artificial_method,
13538 start_artificial_method_body, end_artificial_method_body,
13539 generate_field_initialization_code): New function prototypes.
13540 * parse.y: Fixed leading comment
13541 (constructor_header:, constructor_body:, block_end:): Rules tagged
13542 <node>.
13543 (type_declaration:): Call maybe_generate_finit.
13544 (method_declaration:): Action for method_body: placed in new
13545 function complete_method_declaration, called here.
13546 (constructor_declaration:): Defined actions. Removed leading
13547 FIXME.
13548 (constructor_header:): New rule with action.
13549 (constructor_body:): Rule rewritten using block_begin: and
13550 block_end:. Defined actions.
13551 (constructor_declarator:, explicit_constructor_invocation:):
13552 Defined actions.
13553 (block:): Use new rules block_begin: block_end:.
13554 (block_begin:, block_end:): New rules and actions.
13555 (block_statements:): Fixed error message for explicit
13556 constructors.
13557 (method_invocation:): Call build_this_super_qualified_invocation
13558 if primary is `this' or `super' was seen.
13559 (conditional_expression:): Action defined.
13560 (extra_ctxp_pushed_p): New static global flag.
13561 (java_parser_context_save_global): Create parser context if
13562 necessary. Use extra_ctxp_pushed_p to remember it.
13563 (java_parser_context_restore_global): Pop extra parser context if
13564 one exists.
13565 (build_array_from_name): Array on primitive types are marked
13566 loaded.
13567 (register_fields): Restore new name in field initializer
13568 expression if type was altered. Non static fields initialized upon
13569 declaration marked initialized.
13570 (maybe_generate_finit): New function.
13571 (maybe_generate_clinit): Use create_artificial_method,
13572 start_artificial_method_body, end_artificial_method_body. Generate
13573 debug info for enclosed initialization statements.
13574 (method_header): Fixed leading comment. Check constructor
13575 flags. Detect constructor declarations and set DECL_CONSTRUCTOR_P
13576 accordingly.
13577 (complete_method_declaration, constructor_circularity_msg,
13578 verify_constructor_circularity): New functions.
13579 (get_printable_method_name): New function.
13580 (check_method_redefinition): Don't rename <finit> methods. Fix
13581 declared constructor names. Error message for
13582 constructors modified.
13583 (java_check_regular_methods): Local variable seen_constructor
13584 renamed saw_constructor. Skip verification on constructors. Create
13585 default constructor with create_artificial_method.
13586 (java_check_methods): Removed unnecessary empty line.
13587 (create_artificial_method, start_artificial_method_body,
13588 end_artificial_method_body): New functions.
13589 (java_layout_classes): Changed leading comment. Reverse fields
13590 list if necessary. Always layout java.lang.Object if being
13591 defined.
13592 (java_complete_expand_methods): Verify constructor circularity.
13593 (java_complete_expand_method): Call fix_constructor on
13594 constructors. Local variable no_ac_found removed. Restore
13595 bindings if method body expansion failed.
13596 (fix_constructors, verify_constructor_super,
13597 generate_field_initialization_code): New function.
13598 (java_expand_classes): Fixed leading comment. Write class file
13599 here.
13600 (resolve_expression_name): Check for illegal instance variable
13601 usage within the argument scope of an explicit constructor
13602 invocation.
13603 (resolve_qualified_expression_name): Pass extra from_super flag
13604 when invoking patch_method_invocation_stmt. New case for
13605 conditional expression when used as a primary. Check for error
13606 when acquiring super.
13607 (patch_method_invocation_stmt): Added extra argument super. New
13608 local variable is_static_flag. Set class_to_search according to
13609 the nature of the constructor invocation. Don't add `this'
13610 argument when expanding NEW_CLASS_EXPR. Check for illegal method
13611 invocation within the argument scope of explicit constructor
13612 invocation. Set is_static according to is_static_flag. Provide
13613 extra `super' argument to patch_invoke invocation.
13614 (patch_invoke): New argument from_super. Loop on arguments
13615 indentation fixed. Pass from_super to invocation_mode. New switch
13616 case INVOKE_SUPER. Fixed error message in switch default case.
13617 Don't use CALL_CONSTRUCTOR_P but rather a test on the tree node
13618 value.
13619 (invocation_mode): Return INVOKE_SUPER mode when appropriate.
13620 (lookup_method_invoke): Fixed prototypes in candidates list. Error
13621 message takes constructors into account.
13622 (find_applicable_accessible_methods_list): Fixed indentation.
13623 (qualify_ambiguous_name): Take explicit constructor invocation
13624 into account. Deal with a conditional expression as a primary to
13625 a method call.
13626 (java_complete_tree): Added local wfl_op3. New CONDITIONAL_EXPR
13627 case. Added extra argument to patch_method_invocation_stmt.
13628 Register calls made to explicit constructor `this'. Don't call
13629 save_expr in ARRAY_REF case when emitting class files. Check for
13630 illegal use of this when expanding explicit constructor invocation
13631 arguments.
13632 (complete_function_arguments): Set and reset parser context
13633 explicit_constructor_p field value when appropriate.
13634 (build_super_invocation, build_this_super_qualified_invocation):
13635 New functions.
13636 (patch_assignment): Fixed typo.
13637 (patch_unaryop): Check on final fields occurs only when a decl
13638 exits.
13639 (patch_return): Take constructors into account.
13640 (patch_conditional_expr): New function.
13641 * typeck.c (build_java_signature): Removed unnecessary empty line.
13642
13643 1998-10-28 Jeffrey A Law (law@cygnus.com)
13644
13645 * Makefile.in (jcf-dump, gcjh): Link in $(LIBS) too.
13646
13647 1998-10-28 Tom Tromey <tromey@cygnus.com>
13648
13649 * decl.c (init_decl_processing): Renamed fields.
13650 * class.c (make_class_data): Renamed bfsize, nfields, nsfields,
13651 interface_len, msize fields.
13652
13653 * class.c (make_class_data): Removed subclass_head and
13654 subclass_next fields.
13655 * decl.c (init_decl_processing): Removed subclass_head and
13656 subclass_next fields.
13657
13658 1998-10-28 Jeffrey A Law (law@cygnus.com)
13659
13660 * jcf-write.c (emit_load_or_store): Avoid implicit int arguments.
13661 * mangle.c (emit_unicode_mangled_name): Similarly.
13662
13663 1998-10-26 Nick Clifton <nickc@cygnus.com>
13664
13665 * jcf-parse.c (get_constant): Place braces around code to compute
13666 'd' when REAL_ARITHMETIC is not defined.
13667
13668 1998-10-25 H.J. Lu (hjl@gnu.org)
13669
13670 * Make-lang.in (jv-scan$(exeext)): Add stamp-objlist to
13671 dependency.
13672
13673 1998-10-23 Tom Tromey <tromey@cygnus.com>
13674
13675 * lang-specs.h: `.zip' files are input to jc1.
13676
13677 1998-10-22 Per Bothner <bothner@cygnus.com>
13678
13679 * jvspecs.c: Add (but don't enable) support for combining multiple
13680 .class and .java input filenames to a single jc1 invocation.
13681 Add support for -C flag (copile to .class files).
13682 Translate -classpath and -CLASSPATH arguments.
13683 * lang-specs.h: Don't set %2 spec.
13684
13685 1998-10-22 Tom Tromey <tromey@cygnus.com>
13686
13687 * jcf-path.c (add_entry): Don't add trailing separator if entry is
13688 a .zip file.
13689 (add_path): Don't add trailing separator to non-empty path
13690 elements.
13691
13692 * lang.c (lang_decode_option): Check for -fclasspath and
13693 -fCLASSPATH before examining other `-f' options.
13694
13695 * java-tree.h (finalize_identifier_node): Don't declare.
13696 * class.c (make_class_data): Don't push "final" field.
13697 * decl.c (init_decl_processing): Don't push "final" field.
13698 (finalize_identifier_node): Removed.
13699 (init_decl_processing): Don't set finalize_identifier_node.
13700
13701 * config-lang.in (stagestuff): Added jcf-dump and jv-scan.
13702
13703 1998-10-11 Anthony Green <green@cygnus.com>
13704
13705 * Make-lang.in (java): Depend on jcf-dump and jv-scan.
13706 (JV_SCAN_SOURCES): New macro.
13707 (JCF_DUMP_SOURCES): Likewise.
13708 (jcf-dump$(exeext)): New target.
13709 (jv-scan$(exeext)): New target.
13710
13711 1998-10-22 Tom Tromey <tromey@cygnus.com>
13712
13713 * Makefile.in (LEX): Removed.
13714 (LEXFLAGS): Likewise.
13715 (SET_BISON): New macro.
13716 (BISON): Removed.
13717 ($(PARSE_C)): Use SET_BISON. Run bison from srcdir to avoid
13718 spurious diffs in parse.c.
13719 ($(PARSE_SCAN_C)): Likewise.
13720 (PARSE_DIR): New macro.
13721 (PARSE_C): Use it.
13722 (PARSE_SCAN_C): Likewise.
13723 (PARSE_RELDIR): New macro.
13724
13725 * jcf-io.c (saw_java_source): Define here, not in jcf-parse.c.
13726
13727 * jcf-io.c (find_class): Use saw_java_source to determine when to
13728 look for `.java' file.
13729 * jcf-parse.c (saw_java_source): New global.
13730 (yyparse): Set it if `.java' file seen.
13731
13732 * Make-lang.in (JAVA_SRCS): Added jcf-path.c.
13733 (GCJH_SOURCES): Likewise.
13734 * Makefile.in (datadir): New macro.
13735 (libjava_zip): Likewise.
13736 (JAVA_OBJS): Added jcf-path.o.
13737 (../jcf-dump$(exeext)): Depend on and link with jcf-depend.o.
13738 (../gcjh$(exeext)): Likewise.
13739 (jcf-path.o): New target.
13740 * java-tree.h (fix_classpath): Removed decl.
13741 * jcf-parse.c (fix_classpath): Removed.
13742 (load_class): Don't call fix_classpath.
13743 * parse.y (read_import_dir): Don't call fix_classpath.
13744 * lex.h: Don't mention classpath.
13745 * lex.c (java_init_lex): Don't initialize classpath.
13746 * jcf-io.c (classpath): Removed global.
13747 (find_class): Use jcf_path iteration functions. Correctly search
13748 class path for .java file.
13749 (open_in_zip): New argument `is_system'.
13750 * jcf-dump.c (main): Call jcf_path_init. Recognize all new
13751 classpath-related options.
13752 * lang.c (lang_decode_option): Handle -fclasspath, -fCLASSPATH,
13753 and -I.
13754 (lang_init): Call jcf_path_init.
13755 * lang-options.h: Mention -I, -fclasspath, and -fCLASSPATH.
13756 * lang-specs.h: Handle -I. Minor cleanup to -M options.
13757 Correctly put braces around second string in each entry.
13758 * gjavah.c (main): Call jcf_path_init. Recognize all the new
13759 classpath-related options.
13760 (help): Updated for new options.
13761 * jcf.h: Declare functions from jcf-path.c. Don't mention
13762 `classpath' global.
13763 * jcf-path.c: New file.
13764
13765 * jcf-depend.c: Include jcf.h.
13766
13767 * jcf-write.c (localvar_alloc): Returns `void'.
13768 (localvar_free): Removed unused variable.
13769
13770 * lang.c (OBJECT_SUFFIX): Define if not already defined.
13771 (init_parse): Use OBJECT_SUFFIX, not ".o".
13772
13773 1998-10-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
13774
13775 * class.c (emit_register_classes): Renamed from
13776 emit_register_class.
13777 * java-tree.h (emit_register_classes): Prototype renamed from
13778 emit_register_class.
13779 * jcf-parse.c (yyparse): Call emit_register_classes once before
13780 returning.
13781 * parse.y (java_expand_classes): No longer register classes.
13782
13783 1998-10-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
13784
13785 * class.c (is_compiled_class): New local variable
13786 seen_in_zip. Identify classes found in currently compiled source
13787 file(s).
13788 * decl.c (complete_start_java_method): Fixed typo.
13789 * java-tree.h (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P,
13790 HAS_BEEN_ALREADY_PARSED_P, IS_A_COMMAND_LINE_FILENAME_P): New macros.
13791 (CLASS_P): Moved around.
13792 (java_parse_abort_on_error): Macro moved from jcf-parse.c
13793 * jcf-parse.c (java_parse_abort_on_error): Macro moved to
13794 java-parse.h
13795 (jcf_parse_source): Changed leading comment. Removed unnecessary
13796 fclose and CLASS_FROM_SOURCE_P marking.
13797 (parse_source_file): New local variables remember_for_generation
13798 and filename. Mark parsed file name identifier node. Removed block
13799 executed when parse_only was null. Set remember_for_generation.
13800 Use it as an argument to java_pop_parser_context.
13801 (yyparse): New local variables several_files, list, next node and
13802 current_file_list. Split ampersand separated file names into
13803 current_file_list. Iterate through the list and parse accordingly.
13804 * parse.h (java_pop_parser_context): New function prototype.
13805 * parse.y (ctxp_for_generation): New static global variable.
13806 (java_pop_parser_context): New argument generate. Link popped ctxp
13807 to ctxp_for_generation list accordingly.
13808 (java_complete_expand_methods): Fixed indentation.
13809 (java_expand_classes): New function.
13810
13811 1998-10-17 Per Bothner <bothner@cygnus.com>
13812
13813 * Makefile.in: Link with libiberty.a instead of memmove.o.
13814
13815 1998-10-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
13816
13817 * lex.c (setjmp.h): No longer included.
13818 * lex.h (setjmp.h): Included.
13819 * parse.h (SET_TYPE_FOR_RESOLUTION): New macro.
13820 (duplicate_declaration_error_p): Renamed from
13821 duplicate_declaration_error.
13822 (build_array_from_name): New function prototype.
13823 * parse.y (setjmp.h): No longer included.
13824 (variable_declarator_id): Define action.
13825 (build_array_from_name): New function.
13826 (duplicate_declaration_error_p): Renamed from
13827 duplicate_declaration_error. Fixed leading comment.
13828 (register_fields): Main `for' loop reorganized. Uses
13829 SET_TYPE_FOR_RESOLUTION and build_array_from_name.
13830 (method_declarator): Uses SET_TYPE_FOR_RESOLUTION and call
13831 build_array_from_name.
13832 (resolve_class): Set CLASS_LOADED_P on newly build array dimension
13833 types.
13834 (read_import_dir): Don't try to skip `.' and `..'.
13835 (declare_local_variables): Uses SET_TYPE_FOR_RESOLUTION and
13836 build_array_from_name. Main `for' loop reorganized.
13837 (resolve_qualified_expression_name): When building access to a
13838 field, use the type where the field was found, not its own type.
13839 (maybe_access_field): Use field DECL_CONTEXT if the type where the
13840 field was found is null.
13841 (qualify_ambiguous_name): Sweep through all successive array
13842 dimensions.
13843
13844 1998-10-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
13845
13846 * java-tree.h (pop_labeled_block, lang_printable_name,
13847 maybe_add_interface, set_super_info, get_access_flags_from_decl,
13848 interface_of_p, inherits_from_p, fix_classpath,
13849 complete_start_java_method, emit_handlers, init_outgoing_cpool,
13850 make_class_data, register_class, alloc_name_constant): New
13851 function prototypes.
13852 * lang.c (lang_decode_option): Set argc argument unused. Fixed
13853 indentation. Added cast to remove warning.
13854 (lang_printable_name): Set v argument unused.
13855 (lang_print_error): Added argument to lang_printable_name call.
13856 (java_dummy_print, print_lang_decl, print_lang_type,
13857 print_lang_identifier, lang_print_xnode): All argument marked
13858 unused.
13859 * lex.c (java_unget_unicode): Removed unnecessary argument.
13860 (java_allocate_new_line): Unused local variable is gone.
13861 (java_read_char): Added parenthesis in expressions to remove
13862 warnings. Added final return statement.
13863 (java_read_unicode): Added parenthesis in expression to remove
13864 warning.
13865 (java_parse_end_comment): Fixed java_unget_unicode invocation.
13866 (java_parse_escape_sequence): Likewise.
13867 (java_lex): Unused local variables are gone. Fixed
13868 java_unget_unicode invocation.
13869 * lex.h (set_float_handler): Prototype added when JC1_LITE not
13870 defined.
13871 * parse.h (ERROR_CANT_CONVERT_TO_BOOLEAN): Fixed
13872 lang_printable_name invocation in macro.
13873 (ERROR_CANT_CONVERT_TO_NUMERIC, ERROR_CAST_NEEDED_TO_INTEGRAL):
13874 Likewise.
13875 (duplicate_declaration_error): Suppressed unused argument in
13876 prototype.
13877 (identical_subpath_p): Function declaration is gone.
13878 (patch_invoke): Suppressed unused argument in prototype.
13879 (patch_cast, build_labeled_block, check_thrown_exceptions):
13880 Likewise.
13881 * parse.y (setjmp.h): Included
13882 (toplev.h): Likewise.
13883 (field_declaration:): Suppressed unused local
13884 (label_decl:): Fixed build_labeled_block invocation.
13885 (java_pop_parser_context): Put extra parenthesis around assignment
13886 in if.
13887 (yyerror): Suppressed unused local variables.
13888 (variable_redefinition_error): Fixed lang_printable_name
13889 invocation.
13890 (create_interface): Suppressed unused local variables.
13891 (create_class): Likewise.
13892 (duplicate_declaration_error): Suppressed unused argument. Fixed
13893 lang_printable_name invocation.
13894 (register_fields): Suppressed unused local variable. Fixed
13895 duplicate_declaration_error invocation.
13896 (method_header): Suppressed unused local variable.
13897 (method_declarator, parser_check_super): Likewise.
13898 (java_complete_class): Suppressed unused local variable. Fixed
13899 fatal error message.
13900 (complete_class_report_errors): Added default: in switch.
13901 (java_check_regular_methods): Fixed lang_printable_name
13902 invocations.
13903 (check_throws_clauses): Likewise.
13904 (java_check_abstract_methods): Suppressed unused local
13905 variable. Fixed lang_printable_name invocation.
13906 (read_import_entry): Added supplemental return statement.
13907 (read_import_dir): Suppressed unused local variables.
13908 (check_pkg_class_access, declare_local_variables): Likewise.
13909 (source_start_java_method): Suppressed unused extern variable
13910 declarations
13911 (expand_start_java_method): Suppressed unused extern and local
13912 variable declarations.
13913 (java_complete_expand_methods): Likewise.
13914 (java_complete_expand_method): Suppressed unused local variables.
13915 (make_qualified_name): Likewise.
13916 (resolve_qualified_expression_name): Added default: in
13917 switch. Fixed lang_printable_name invocation.
13918 (class_instance_creation_expression): Added parenthesis around
13919 expressions.
13920 (patch_method_invocation_stmt): Fixed lang_printable_name and
13921 patch_invoke invocations.
13922 (check_for_static_method_reference): Fixed lang_printable_name
13923 invocation.
13924 (patch_invoke): Suppressed unused arguments and local variables.
13925 (lookup_method_invoke): Suppressed unused local variables.
13926 (qualify_ambiguous_name): Added default: in switch.
13927 (identical_subpath_p): Function removed.
13928 (patch_assignment): Suppressed unused local variables. Suppressed
13929 unnecessary if statement. Fixed lang_printable_name invocations.
13930 (try_builtin_assignconv): Fixed lang_printable_name invocations.
13931 (valid_ref_assignconv_cast_p): Parenthesis around
13932 expression. Suppressed unused local variables.
13933 (build_binop): Suppressed unused local variables. fixed
13934 lang_printable_name invocations.
13935 (string_constant_concatenation): Suppressed unused local
13936 variables.
13937 (patch_unaryop): Fixed lang_printable_name invocation.
13938 (patch_cast): Suppressed unnecessary argument. Fixed
13939 lang_printable_name invocation.
13940 (patch_array_ref): Fixed lang_printable_name invocation.
13941 (patch_newarray, patch_return, patch_if_else_statement): Likewise.
13942 (build_labeled_block): Suppressed unused argument.
13943 (generate_labeled_block): Fixed build_labeled_block invocation.
13944 (build_loop_body): Suppressed unused local variables.
13945 (patch_loop_statement): Likewise.
13946 (patch_exit): Fixed lang_printable_name invocation.
13947 (patch_switch_statement): Likewise.
13948 (case_identity): First argument marked unused.
13949 (patch_try_statement): Fixed lang_printable_name invocations.
13950 (patch_synchronized_statement, patch_throw_statement): Likewise.
13951 (check_thrown_exceptions): Fixed check_thrown_exceptions and
13952 lang_printable_name invocations.
13953 (check_thrown_exceptions_do): Suppressed unused argument.
13954
13955 1998-10-14 Tom Tromey <tromey@cygnus.com>
13956
13957 * jcf-write.c (write_classfile): Add output class file as target.
13958 * lang-options.h: Added -MD, -MMD, -M, and -MM.
13959 * jcf.h: Added declarations for dependency-tracking functions.
13960 * lang-specs.h: Handle -M, -MM, MD, and -MMD.
13961 * lang.c (lang_decode_option): Recognize -MD and -MMD.
13962 (finish_parse): Call jcf_dependency_write.
13963 (dependency_tracking): New global.
13964 (DEPEND_SET_FILE): New define.
13965 (DEPEND_ENABLE): New define.
13966 (init_parse): Enable dependency tracking if required.
13967 Include "flags.h".
13968 * Makefile.in (JAVA_OBJS): Added jcf-depend.o.
13969 (../jcf-dump$(exeext)): Depend on and link with jcf-depend.o.
13970 (../gcjh$(exeext)): Likewise.
13971 (jcf-depend.o): New target.
13972 * Make-lang.in (JAVA_SRCS): Added jcf-depend.c.
13973 (GCJH_SOURCES): Likewise.
13974 * jcf-io.c (open_class): Call jcf_dependency_add_file. Added
13975 dep_name argument.
13976 (find_classfile): Added dep_name argument.
13977 (find_class): Compute name of dependency.
13978 (open_in_zip): Call jcf_dependency_add_file.
13979 * gjavah.c (output_file): No longer global.
13980 (usage): Don't mention "gjavah".
13981 (help): Likewise.
13982 (java_no_argument): Likewise.
13983 (version): Likewise.
13984 (main): Recognize and handle -M family of options.
13985 (print_mangled_classname): Return is void.
13986 (process_file): Handle case where output is suppressed.
13987 (HANDLE_END_FIELD): Likewise.
13988 (HANDLE_METHOD): Likewise.
13989 * jcf-depend.c: New file.
13990
13991 1998-10-13 Jeffrey A Law (law@cygnus.com)
13992
13993 * java-tree.def: Add missing newline at EOF.
13994
13995 1998-10-13 Tom Tromey <tromey@cygnus.com>
13996
13997 * jcf-dump.c (process_class): Use FATAL_EXIT_CODE, not -1.
13998 (main): Likewise. Exit with SUCCESS_EXIT_CODE at end of
13999 function.
14000 Include <config.h> and "system.h".
14001 (disassemble_method): Undefine RET to avoid clash with
14002 config/i386/i386.h.
14003
14004 1998-10-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
14005
14006 * decl.c (runtime_exception_type_node, error_exception_type_node):
14007 New global variables.
14008 (init_decl_processing): Initialized.
14009 * expr.c (java_lang_expand_expr): Set caught exception type to
14010 null if catch handler argument doesn't exit.
14011 * java-tree.def (SYNCHRONIZED_EXPR, THROW_EXPR): New Java specific
14012 tree codes.
14013 * java-tree.h (runtime_exception_type_node,
14014 error_exception_type_node): Global variables declared.
14015 (DECL_FUNCTION_THROWS): New macro.
14016 (DECL_FUNCTION_BODY): Modified comment.
14017 (DECL_SPECIFIC_COUNT): Likewise.
14018 (struct lang_decl): New field throws_list.
14019 (IS_UNCHECKED_EXPRESSION_P): New macro.
14020 * lex.c (java_lex): Generate location information for THROW_TK.
14021 * parse.h (PUSH_EXCEPTIONS, POP_EXCEPTIONS, IN_TRY_BLOCK_P,
14022 EXCEPTIONS_P): New macros.
14023 (enum jdep_code): New value JDEP_EXCEPTION.
14024 (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT,
14025 BUILD_ASSIGN_EXCEPTION_INFO, BUILD_THROW, SET_WFL_OPERATOR,
14026 PATCH_METHOD_RETURN_ERROR): New macros.
14027 (patch_method_invocation_stmt): Added new argument to prototype.
14028 (patch_synchronized_statement, patch_throw_statement,
14029 check_thrown_exceptions, check_thrown_exceptions_do,
14030 purge_unchecked_exceptions, check_throws_clauses): New function
14031 prototypes.
14032 * parse.y Fixed typo in keyword section.
14033 (throw:): Rule tagged <node>.
14034 (THROW_TK): Keyword tagged <operator>.
14035 (method_header:): Last argument to call to method_header passed
14036 from throws: rule.
14037 (throws:, class_type_list:, throw_statement:,
14038 synchronized_statement:, synchronized:): Defined actions.
14039 (method_header): New local variable current. Register exceptions
14040 from throws clause.
14041 (java_complete_tree): Complete and verify exceptions from throws
14042 clause.
14043 (complete_class_report_errors): Error message on exceptions not
14044 found
14045 (java_check_regular_methods): Fixed typo. Shortcut on private
14046 overriding methods. Changed error message on method
14047 redefinition. Check for throws clause compatibility.
14048 (check_throws_clauses): New function.
14049 (java_check_abstract_methods): Use DECL_NAME for wfl or current
14050 method. Changed error message on method redefinition.
14051 (currently_caught_type_list): New static variable.
14052 (java_complete_expand_methods): Purge unchecked exceptions from
14053 throws clause list. Call PUSH_EXCEPTIONS before walk and
14054 POP_EXCEPTIONS after.
14055 (resolve_qualified_expression_name): Pass new argument as NULL to
14056 patch_method_invocation_stmt.
14057 (patch_method_invocation_stmt): New argument ref_decl. Invoke
14058 PATCH_METHOD_RETURN_ERROR when returning with error. Reverse
14059 argument list when appropriate. Use new argument if non null to
14060 store selected method decl.
14061 (patch_invoke): Convert if necessary args of builtin types before
14062 forming CALL_EXPR. Argument list no longer reversed here.
14063 (invocation_mode): Treat final methods as static methods.
14064 (java_complete_tree): New cases for THROW_EXPR: and
14065 SYNCHRONIZED_EXPR:. Check thrown exceptions when completing
14066 function call.
14067 (complete_function_arguments): No more RECORD_TYPE
14068 conversion. Function parameter nodes no longer saved.
14069 (valid_ref_assignconv_cast_p): Avoid handling null type.
14070 (patch_binop): Fixed null constant reference handling.
14071 (build_try_statement): Use BUILD_ASSIGN_EXCEPTION_INFO and
14072 BUILD_THROW macros.
14073 (patch_try_statement): Fixed comments. Record caught types in
14074 list, push the list, expand try block and pop the list.
14075 (patch_synchronized_statement, patch_throw_statement,
14076 check_thrown_exceptions, check_thrown_exceptions_do,
14077 purge_unchecked_exceptions): New functions.
14078 * typeck.c (lookup_argument_method): Allow WFL in place of method
14079 DECL_NAME during method definition check
14080
14081 1998-10-09 Tom Tromey <tromey@cygnus.com>
14082
14083 * gjavah.c (decode_signature_piece): New function.
14084 (print_c_decl): Use it. Added `name_override' argument.
14085 (print_method_info): Use name_override argument to print_c_decl.
14086 (seen_fields): Removed.
14087 (print_field_info): Don't update seen_fields.
14088 (struct method_name): New structure.
14089 (method_name_list): New global.
14090 (print_method_info): Add new method to list of methods.
14091 (name_is_method_p): New function.
14092 (print_field_info): If field name has same name as method, then
14093 change field name.
14094 (process_file): Parse methods before fields.
14095 (field_pass): New global.
14096 (HANDLE_END_FIELD): Take field_pass into account.
14097
14098 1998-10-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
14099
14100 * Makefile.in (keyword.h): Add -L KR-C -F ', 0' flags to gperf.
14101 (keyword.h): Regenerate using gperf 2.7.1 (19981006 egcs).
14102
14103 1998-10-03 Anthony Green <green@cygnus.com>
14104
14105 * jvspec.c: Fix bug in jvgenmain_spec patch.
14106
14107 1998-10-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
14108
14109 * Makefile.in (lang.o:): Install dependency on java-tree.def.
14110 * decl.c (soft_exceptioninfo_call_node): New global variable.
14111 (init_decl_processing): Fixed indentation. soft_badarrayindex_node
14112 takes extra integer argument. soft_exceptioninfo_call_node
14113 initialized.
14114 * except.c (java_set_exception_lang_code): New function
14115 (method_init_exceptions): Called here.
14116 (prepare_eh_table_type): New function.
14117 (expand_end_java_handler): Called here.
14118 * expr.c (build_java_throw_out_of_bounds_exception): Now features
14119 one argument. Modified generation of call to
14120 soft_badarrayindex_node to use new argument.
14121 (build_java_arrayaccess): Pass faulty index value to
14122 build_java_throw_out_of_bounds_exception.
14123 (generate_name): New function.
14124 (java_lang_expand_expr): New local variables node, current,
14125 has_finally_p. Expand TRY_EXPR node.
14126 (process_jvm_instruction): Replace top of the stack with thrown
14127 object reference when entering exception handler.
14128 * java-tree.def (TRY_EXPR, CATCH_EXPR, FINALLY_EXPR): New Java
14129 specific tree codes.
14130 * java-tree.h (soft_exceptioninfo_call_node): Declaration of new
14131 global.
14132 (DECL_SPECIFIC_COUNT): New macro.
14133 (prepare_eh_table_type, java_set_exception_lang_code,
14134 generate_name): New function declarations.
14135 (match_java_method): Declaration deleted.
14136 (FINALLY_EXPR_LABEL, FINALLY_EXPR_BLOCK, CATCH_EXPR_GET_EXPR): New
14137 macros.
14138 * lex.c (TRY_TK, CATCH_TK): Generate location information.
14139 * parse.h (redefinition_error, refine_accessible_methods_list,
14140 can_cast_to_p): Function declaration removed.
14141 (classitf_redefinition_error, variable_redefinition_error,
14142 parse_jdk1_1_error, find_applicable_accessible_methods_list,
14143 find_most_specific_methods_list, argument_types_convertible,
14144 enter_a_block, valid_builtin_assignconv_identity_widening_p,
14145 valid_cast_to_p, valid_method_invocation_conversion_p,
14146 try_reference_assignconv, add_stmt_to_compound,
14147 build_jump_to_finally, build_tree_list, patch_try_statement,
14148 java_get_catch_block): New function declarations.
14149 * parse.y (string_buffer_type): Global variable deleted.
14150 (group_of_labels, catches, catch_clause, catch_clause_parameter,
14151 finally): Rules tagged <node>.
14152 (TRY_TK, CATCH_TK): Token tagged <operator>.
14153 (class_body_declaration:, class_member_declaration:,
14154 formal_parameter:, explicit_constructor_invocation:,
14155 interface_member_declaration:, constant_declaration:,
14156 primary_no_new_array:, class_instance_creation_expression:,
14157 array_creation_expression:): Issue error on unsuported JDK1.1
14158 features.
14159 (try_statement:, catches:, finally:): Define actions.
14160 (catch_clause_parameter): New rule.
14161 (catch_clause:): Use new rule catch_clause_parameter.
14162 (parse_jdk1_1_error): New function.
14163 (redefinition_error): Renamed classitf_redefinition_error.
14164 (variable_redefinition_error): New function.
14165 (check_class_interface_creation): Call
14166 classitf_redefinition_error.
14167 (java_complete_tree): Added error message on JDEP_TYPE: case.
14168 (complete_class_report_errors): Fixed indentation.
14169 (declare_local_variables): Call variable_redefinition_error.
14170 (source_end_java_method): Call java_set_exception_lang_code and
14171 emit_handlers where appropriate.
14172 (java_method_add_stmt): Call add_stmt_to_block.
14173 (add_stmt_to_block): New function.
14174 (lookup_method_invoke): Fixed outside comment. new local variable
14175 candicates. Call find_applicable_accessible_methods_list and
14176 find_most_specific_methods_list when searching for a
14177 method. Modified error report to list possible candidates when
14178 applicable.
14179 (find_applicable_accessible_methods_list,
14180 find_most_specific_methods_list, argument_types_convertible): New
14181 function.
14182 (refine_accessible_methods_list): Function deleted.
14183 (java_complete_tree): Handle TRY_EXPR. ARRAY_REF handling: save
14184 expr (if applicable) before calling patch_array_ref.
14185 (build_expr_block): Fixed BLOCK_EXPR_BODY assignment.
14186 (enter_block): Fixed comment.
14187 (enter_a_block): New function.
14188 (patch_assignment): Reorganized. Call try_reference_assignconv for
14189 references. Call valid_cast_to_p instead of can_cast_to_p.
14190 (try_reference_assignconv,
14191 valid_builtin_assignconv_identity_widening_p): New functions.
14192 (valid_ref_assignconv_cast_p): Fixed inverted test on CLASS_FINAL.
14193 (valid_cast_to_p, valid_method_invocation_conversion_p): New
14194 functions.
14195 (build_string_concatenation): Don't resolve StringBuffer.
14196 (patch_cast): Fixed inverted arguments.
14197 (patch_array_ref): Code to save array expr deleted. Call
14198 valid_cast_to_p instead of can_cast_to_p.
14199 (generate_labeled_block): Call generate_name.
14200 (build_jump_to_finally, build_try_statement, java_get_catch_block,
14201 patch_try_statement): New functions.
14202 * typeck.c (match_java_method): Function deleted.
14203
14204 1998-10-02 Anthony Green <green@cygnus.com>
14205
14206 * jvspec.c: jvgenmain_spec uses different temporary file names.
14207
14208 1998-10-02 Anthony Green <green@cygnus.com>
14209
14210 * jvspec.c (lang_specific_driver): Fail if user specifies
14211 --main= when not linking.
14212
14213 1998-09-28 Tom Tromey <tromey@cygnus.com>
14214
14215 * class.c (make_class_data): Push value for `thread' field.
14216 * decl.c (init_decl_processing): Added `thread' field to class.
14217
14218 * class.c (add_field): Always make static fields externally
14219 visible.
14220
14221 1998-09-26 Anthony Green <green@cygnus.com>
14222
14223 * expr.c (build_java_athrow,
14224 build_java_throw_out_of_bounds_exception, expand_invoke,
14225 build_newarray, expand_java_multianewarray, build_java_monitor):
14226 Update comments to reflect _Jv_* function names.
14227
14228 1998-09-25 Per Bothner <bothner@cygnus.com>
14229
14230 * decl.c (complete_start_java_method): DECL_RESULT is always promoted.
14231 * decl.c (start_java_method): Handle PROMOTE_PROTOTYPES target macro.
14232 * parse.y (expand_start_java_method): Likewise.
14233
14234 1998-09-24 Per Bothner <bothner@cygnus.com>
14235
14236 * expr.c (pop_arguments): Handle PROMOTE_PROTOTYPES target macro.
14237
14238 * class.c (push_class): IDENTIFIER_SIGNATURE_TYPE is now POINTER_TYPE.
14239 (add_field): No longer need to convert from RECORD_TYPE to pointer,
14240 * expr.c: Remove no-longer-needed calls to promote_type.
14241 * decl.c (give_name_to_locals): Liekwise.
14242 * jcf-parse.c (get_class_constant): Compensate for new signatures.
14243 * parse.y: Add/remove promote_type calls as appropriate.
14244 * typeck.c (parse_signature_type): Returns POINTER_TYPE for objects.
14245 (parse_signature_string): Likewise.
14246 (build_java_array_type): Fix for now signature convenions.
14247
14248 * lex.c (java_lex): Fix (from Alex) for JC1_LITE problem.
14249
14250 1998-09-23 Tom Tromey <tromey@cygnus.com>
14251
14252 * class.c (init_class_processing): libjava function renamed to
14253 _Jv_RegisterClass.
14254
14255 1998-09-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
14256
14257 * expr.c (java_lang_expand_expr): New case for SWITCH_EXPR.
14258 * java-tree.def: Fixed DEFTREECODE third argument.
14259 (UNARY_PLUS_EXPR, NEW_ARRAY_EXPR, NEW_CLASS_EXPR, THIS_EXPR,
14260 CASE_EXPR, DEFAULT_EXPR): New tree codes for Java.
14261 * java-tree.h: (IS_CRAFTED_STRING_BUFFER_P): New macro.
14262 (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
14263 JAVA_THIS_EXPR): Now replaced by tree code definitions.
14264 (CALL_CONSTRUCTOR_P): Now uses NEW_CLASS_EXPR.
14265 * lang.c (java_tree_code_type, java_tree_code_length,
14266 java_tree_code_name): New arrays.
14267 (lang_init): Append Java tree node definitions to Gcc ones.
14268 * lex.c (expression_obstack): Declared as extern when JC1_LITE
14269 defined.
14270 (java_init_lex): Initialize wfl_append, wfl_string_buffer,
14271 wfl_to_string.
14272 (java_lex): Allow declaration of empty string constants. Retain
14273 location information on CASE_TK and DEFAULT_TK.
14274 * parse.h (JFLOAT_TYPE_P, JINTEGRAL_TYPE_P, JNUMERIC_TYPE_P,
14275 JPRIMITIVE_TYPE_P, JSTRING_TYPE_P, JSTRING_P, JREFERENCE_TYPE_P):
14276 Modified to be more robust.
14277 (BUILD_APPEND, BUILD_STRING_BUFFER): New macros.
14278 (build_new_invocation, try_builtin_assignconv,
14279 patch_switch_statement, string_constant_concatenation,
14280 build_string_concatenation, patch_string_cst, patch_string,
14281 java_expand_switch): New function declarations.
14282 * parse.y: Rules related to switch and EH tagged <node>.
14283 (label_id): Set to NULL_TREE
14284 (wfl_string_buffer, wfl_append, wfl_to_string): New static global
14285 tree nodes.
14286 (this_or_super:): Fixed indentation.
14287 (statement:, statement_nsi:, statement_without_trailing_substatement:,
14288 statement_expression:): Removed call to RULE on all sub-rules.
14289 (switch_expression:, switch_labels:): New rules.
14290 (switch_statement:, switch_block:, switch_block_statement_groups:,
14291 switch_block_statement_group:, switch_labels:, switch_label:):
14292 Defined actions.
14293 (throw_statement:, synchronized_statement:, try_statement:):
14294 Defined temporary actions.
14295 (class_instance_creation_expression:): Call
14296 build_new_invocation. Fixed indentation.
14297 (field_access): Fixed indentation.
14298 (method_invocation): Likewise.
14299 (make_qualified_primary): Use THIS_EXPR.
14300 (resolve_qualified_expression_name): Use NEW_CLASS_EXPR. When
14301 resolving from SUPER, set *type_found.
14302 (qualify_ambiguous_name): Use NEW_CLASS_EXPR.
14303 (java_complete_tree): Removed unused local variable `location'. Case
14304 for SWITCH_EXPR, sharing code with LOOP_EXPR. Use NEW_ARRAY_EXPR,
14305 NEW_CLASS_EXPR, UNARY_PLUS_EXPR and THIS_EXPR. New string handling
14306 on MODIFY_EXPR: and all binary operator tree code cases. Removed
14307 STRING_CST: case. default: checks for patchable strings.
14308 (complete_function_arguments): Transform string constant or
14309 crafted StringBuffer if necessary.
14310 (build_method_invocation): Fixed comments.
14311 (build_new_invocation): New function.
14312 (patch_assignment): Call try_builtin_assignconv to figure a valid
14313 assignment conversion between builtin types.
14314 (try_builtin_assignconv): New function.
14315 (build_binop): Use URSHIFT_EXPR directly to call build.
14316 (operator_string): Use UNARY_PLUS_EXPR.
14317 (patch_binop): Use UNARY_PLUS_EXPR. Handle string concatenation
14318 operator.
14319 (do_merge_string_cste, merge_string_cste,
14320 string_constant_concatenation, build_string_concatenation,
14321 patch_string, patch_string_cst): New function.
14322 (build_unary_op): Use UNARY_PLUS_EXPR and CONVERT_EXPR.
14323 (patch_unaryop): Likewise. New test of valid ++/-- operands.
14324 (build_newarray_node): Use NEW_ARRAY_EXPR.
14325 (build_this): Use THIS_EXPR.
14326 (build_return): Enable debug information on return statement.
14327 (build_if_else_statement): Likewise.
14328 (complete_labeled_statement): Fixed related comment.
14329 (build_loop_body): Fixed comment.
14330 (build_bc_statement): Enable debug information on break/continue
14331 statements.
14332 (patch_bc_statement): Fixed typos. Handle SWITCH statement
14333 context.
14334 (patch_switch_statement, case_identity, java_expand_switch): New
14335 functions.
14336
14337 1998-09-21 Per Bothner <bothner@cygnus.com>
14338
14339 * buffer.h (BUFFER_INIT): New macro.
14340 * jcf-write.c (struct jcf_partial): New type. Put global stuff here.
14341 Pass (struct jcf_partial *state) to most functions.
14342 (jcf_block, jcf_relocation): New types.
14343 Support labels, branches, conditionals, loops.
14344
14345 1998-09-21 Tom Tromey <tromey@cygnus.com>
14346
14347 * decl.c (INT_TYPE_SIZE): Define as BITS_PER_WORD if not defined.
14348
14349 1998-09-21 Per Bothner <bothner@cygnus.com>
14350
14351 * decl.c (integer_type_node): Make it have INT_TYPE_SIZE.
14352 * verify.c (verify_jvm_instructions): Use int_type_not (32 bits),
14353 not integer_type_node (INT_TYPE_SIZ bits).
14354
14355 * parse.y (patch_if_else_statement): Accept promoted_boolean_type_node.
14356
14357 * jcf-reader.c (get_attribute): New HANDLE_EXCEPTION_TABLE hook.
14358 * jcf-dump.c (print_exception_table): New function.
14359 (disassemble_method): Better handling of wide instructions.
14360 Make more robust for bad input.
14361
14362 1998-09-30 Jeffrey A Law (law@cygnus.com)
14363
14364 * jcf-write.c (OP2, OP4): Use "_i", not "_I" to avoid problems on
14365 FreeBSD.
14366
14367 1998-09-17 Jeffrey A Law (law@cygnus.com)
14368
14369 * Makefile.in (jcf-dump, jvgenmain): Link in memmove.o too.
14370
14371 1998-09-17 Tom Tromey <tromey@cygnus.com>
14372
14373 * Makefile.in ($(PARSE_H)): Removed target.
14374
14375 1998-09-17 Jeffrey A Law (law@cygnus.com)
14376
14377 * Makefile.in (JAVA_OBJS): Add memmove.o
14378 (memmove.o): New target & rules.
14379
14380 1998-09-15 Tom Tromey <tromey@cygnus.com>
14381
14382 * expr.c (expand_invoke): Don't generate a call to the class init
14383 code.
14384
14385 1998-09-14 Jeffrey A Law (law@cygnus.com)
14386
14387 * Makefile.in: Add many missing dependencies.
14388 * buffer.c, class.c, constants.c, decl.c: Use system.h and toplev.h
14389 as appropriate.
14390 * except.c, expr.c, jcf-io.c jcf-parse.c, jcf-write.c: Likewise.
14391 * jvgenmain.c lang.c mangle.c typeck.c verify.c: Likewise.
14392
14393 1998-09-11 Per Bothner <bothner@cygnus.com>
14394
14395 * decl.c (complete_start_java_method): If method is static (and
14396 not private) call _Jv_InitClass.
14397 * expr.c (expand_invoke): Don't call build_class_init.
14398
14399 * jvspec.c (jvgenmain_spec): Fix spec for generated .o file.
14400
14401 1998-09-10 Jeffrey A Law (law@cygnus.com)
14402
14403 * Make-lang.in (GCJ): Define before using.
14404
14405 1998-09-09 Jeffrey A Law (law@cygnus.com)
14406
14407 * gjavah.c (java_no_argument): Renamed from no_argument to avoid
14408 losing due to namespace pollution in GNU getopt.h
14409
14410 1998-09-09 Tom Tromey <tromey@cygnus.com>
14411
14412 * Make-lang.in (java.all.build): Don't mention jvgenmain or gcjh.
14413 (java.all.cross): Likewise.
14414 (java.rest.encap): Likewise.
14415
14416 1998-09-08 Jeffrey A Law (law@cygnus.com)
14417
14418 * gjavah.c (print_class_decls): Fix thinko in arglist
14419 * jcv-io.c (find_classfile): Similarly.
14420
14421 1998-09-07 Jeffrey A Law (law@cygnus.com)
14422
14423 * Makefile.in (INCLUDES): Update for recent toplevel gcc changes.
14424
14425 1998-09-05 Tom Tromey <tromey@cygnus.com>
14426
14427 * Make-lang.in (java.maintainer-clean): Don't remove parse.h.
14428 (java.mostlyclean): Remove parse.c and parse-scan.c, not parse.h.
14429 * Makefile.in (PARSE_C): New macro.
14430 (PARSE_H): Likewise.
14431 (PARSE_SCAN_C): Likewise.
14432 ($(PARSE_C)): Target renamed from parse.c.
14433 ($(PARSE_SCAN_C)): Target renamed from parse-scan.c.
14434 (clean): Remove parse-scan.c as well.
14435 (parse.o): Depend on $(PARSE_C).
14436
14437 1998-09-05 Anthony Green <green@cygnus.com>
14438
14439 * README, license.terms: Removed.
14440
14441 * Make-lang.in, Makefile.in, class.c, config-lang.in, constants.c,
14442 decl.c, except.c, expr.c, gjavah.c, java-except.h, java-tree.h,
14443 javaop.def, javaop.h, jcf-dump.c, jcf-io.c, jcf-parse.c,
14444 jcf-reader.c, jcf-write.c, jcf.h, jvgenmain.c, jvspec.c,
14445 keyword.gperf, keyword.h, lang-options.h, lang-specs.h, lang.c,
14446 lex.c, lex.h, mangle.c, parse-scan.y, parse.h, parse.y, typeck.c,
14447 verify.c, zextract.c, zipfile.h: Fixed copyright assignment,
14448 and Java trademark attribution.
14449
14450 1998-09-04 Tom Tromey <tromey@cygnus.com>
14451
14452 * Makefile.in: Use gcjh, not gjavah.
14453 * config-lang.in (stagestuff): Use gcjh, not gjavah.
14454 * Make-lang.in: Changed gjavah to gcjh everywhere.
14455
14456 1998-09-03 Per Bothner <bothner@cygnus.com>
14457
14458 * gjavah.c: Support new -prepend -add -append flags.
14459 (print_method_info): Method is not virtual if class is final.
14460
14461 1998-09-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
14462
14463 * jv-scan.c: Fixed copyright assignment.
14464 * keyword.gperf: Likewise.
14465 * keyword.h: Likewise.
14466 * lex.c: Fixed copyright assignment.
14467 (java_lex): Push unicode back when parsing '<'.
14468 * lex.h: Fixed copyright assignment.
14469 * parse-scan.y: Likewise.
14470 * parse.h: Fixed copyright assignment.
14471 (build_debugable_stmt, complete_for_loop): New function prototypes.
14472 * parse.y: Fixed copyright assignment.
14473 (for_statement:): Call complete_for_loop. Set EXIT_EXPR to be
14474 size_zero_node when completing a loop with no exit condition.
14475 (for_statement_nsi:): Define action.
14476 (for_init:, for_update:): Return size_zero_node when empty.
14477 (declare_local_variables): Call build_debugable_stmt.
14478 (build_debugable_stmt): New function.
14479 (build_loop_body): Build debugable statement around loop
14480 condition part.
14481 (complete_loop_body): Take into account the debugable statement
14482 around the EXIT_EXPR.
14483 (complete_loop_body): New function.
14484 (patch_exit_expr): Fixed condition inversion.
14485
14486 1998-09-02 Tom Tromey <tromey@cygnus.com>
14487
14488 * Make-lang.in (jvspec.o): Use GCC_THREAD_FILE to compute correct
14489 name of thread define.
14490 * jvspec.c (THREAD_NAME): New macro.
14491 (GCLIB): Likewise.
14492 (THREADLIB): Likewise.
14493 (lang_specific_driver): Recognize attempt to link with thread
14494 library or gc library. Recognize -ljava on command line so it
14495 isn't linked against more than once.
14496
14497 1998-09-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
14498
14499 * parse-scan.y (report_main_declaration): Name of the class
14500 containing `main' can be a qualified name.
14501
14502 1998-08-31 Tom Tromey <tromey@cygnus.com>
14503
14504 * config-lang.in: Changed gjavac to gjc everywhere.
14505 * Make-lang.in: Changed gjavac to gjc everywhere.
14506
14507 1998-08-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
14508
14509 * Make-lang.in (JAVA_TARGET_INDEPENDENT_BIN_TOOLS): New variable.
14510 (java.install-common:): Loop over JAVA_TARGET_INDEPENDENT_BIN_TOOLS
14511 and install the files.
14512 * Makefile.in (JAVA_OBJS_LITE): New variable.
14513 (compiler:): Now include jv-scan as a dependency.
14514 (../jv-scan$(exeext), parse-scan.c): New targets.
14515 (../jcf-dump$(exeext)): Was jcf-dump$(exeext) before.
14516 * config-lang.in (compilers): Removed gcj, gjavah from the list.
14517 * jcf-parse.c (parse_source_file): Call java_layout_classes and
14518 check for errors even if parse_only.
14519 * lex.c (java_init_lex): Reorganized and skip parts if JC1_LITE is
14520 defined.
14521 (yylex): New function. Uses java_lex body.
14522 (java_lex): Removed commented out statement. Remove local variable
14523 literal. Use SET_LVAL_NODE_TYPE and SET_LVAL_NODE where
14524 appropriate. Use macros FLOAT_TYPE_NODE, DOUBLE_TYPE_NODE,
14525 DCONST0, SET_FLOAT_HANDLER, SET_REAL_VALUE_ATOF,
14526 SET_LVAL_NODE_TYPE and GET_TYPE_PRECISION. Don't create STRING_CST
14527 if JC1_LITE is defined. Use BUILD_ID_WFL to build identifiers. Use
14528 SET_MODIFIER_CTX, SET_LVAL_NODE, BUILD_ID_WFL and GET_IDENTIFIER
14529 where appropriate.
14530 (java_lex_error): Empty if JC1_LITE is defined.
14531 (java_get_line_col): Return 0 if JC1_LITE is defined.
14532 * lex.h (JAVA_FLOAT_RANGE_ERROR, JAVA_INTEGRAL_RANGE_ERROR,
14533 SET_MODIFIER_CTX): Moved into the section containing the macros
14534 conditionally defined by JC1_LITE.
14535 (BUILD_OPERATOR,BUILD_OPERATOR2): Just return the TOKEN
14536 argument if JC1_LITE is defined.
14537 (HOST_BITS_PER_WIDE_INT, HOST_WIDE_INT, REAL_VALUE_ATOF,
14538 REAL_VALUE_ISINF, REAL_VALUE_ISNAN): Preset to values if JC1_LITE
14539 is defined.
14540 (DCONST0, SET_FLOAT_HANDLER, GET_IDENTIFIER, SET_REAL_VALUE_ATOF,
14541 FLOAT_TYPE, DOUBLE_TYPE, SET_MODIFIER_CTX, GET_TYPE_PRECISION,
14542 SET_LVAL_NODE, SET_LVAL_NODE_TYPE, BUILD_ID_WFL): New macros, set
14543 to different values according to JC1_LITE.
14544 * parse.h (int_fits_type_p, stabilize_reference): Prototype not
14545 declared if JC1_LITE set.
14546 (jdep_code, typedef struct _jdep, typedef struct _jdeplist): Not
14547 defined if JC1_LITE not set.
14548 (struct parser_ctx): Reorganized and skip the jc1 front end part
14549 if JC1_LITE set.
14550 (java_layout_classes): New function definition.
14551 (java_push_parser_context, java_init_lex, yyparse, yylex,
14552 yyerror): Prototype always declared. All other static function
14553 prototypes declared only if JC1_LITE is not set.
14554 * parse.y (yyparse, yylex, yyerror): No longer declared here. Now
14555 declared in parse.h.
14556 (java_layout_classes): New function.
14557 (java_complete_expand_methods): No longer layout the class here.
14558 * parse-scan.y: New file.
14559 * jv-scan.c: New file.
14560
14561 1998-08-25 Tom Tromey <tromey@cygnus.com>
14562
14563 * gjavah.c (main): Handle -friend option.
14564 (friend_specs): New global.
14565 (generate_access): Handle friend_specs.
14566 (process_file): Likewise.
14567 (MAX_FRIENDS): New macro.
14568 (friend_count): New global.
14569 (print_cxx_classname): Added `prefix' argument. Ignore arrays.
14570 Changed all callers.
14571
14572 1998-08-24 Per Bothner <bothner@cygnus.com>
14573
14574 * jcf-dump.c (process_class): Move JCF_FINISH use to main,
14575 (main): Handle processing all the entries of a named .zip archive.
14576 * jcf-io.c (jcf_trim_old_input): New function.
14577 * jcf.h (GET_u2_le,GET_u4_le,JCF_readu2_le,JCF_readu4_le): New macros.
14578
14579 1998-08-24 Per Bothner <bothner@cygnus.com>
14580
14581 * lang.c (flag_assume_compiled): Make default be on.
14582
14583 1998-08-21 Per Bothner <bothner@cygnus.com>
14584
14585 * jcf-dump.c: Add bunches of flags to control output more.
14586 (process_class): New function; support printing more than one class.
14587 (main): Support new --print-main and --javap flags.
14588 * jcf-reader.c (IGNORE_ATTRIBUTE): New hook.
14589 * jcf.h (CPOOL_INDEX_IN_RANGE): New macro.
14590
14591 1998-08-20 Per Bothner <bothner@cygnus.com>
14592
14593 Change mangling of dispatch table to match C++ vtable (w/thunks).
14594 * class.c (build_dtable_decl), java-tree.h: New function.
14595 (make_class_data): Call it.
14596 * decl.c (init_decl_processing): Likewise.
14597
14598 1998-08-19 Warren Levy <warrenl@cygnus.com>
14599
14600 * decl.c (init_decl_processing): Use _Jv_NewObjectArray, not
14601 soft_anewarray; adjust args passed.
14602 * expr.c (build_anewarray): Adjust args for soft_anewarray_node to
14603 match _Jv_NewObjectArray.
14604
14605 1998-08-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
14606
14607 * decl.c (push_labeled_block, pop_labeled_block): New functions.
14608 * expr.c (loopup_label): Call create_label_decl.
14609 (create_label_decl): New function.
14610 (java_lang_expand_expr): Call expand_start_bindings with argument
14611 set to zero.
14612 * java-tree.h Added space after PROTO in function declarations
14613 when necessary.
14614 (IS_FOR_LOOP_P, IS_BREAK_STMT_P): New macros.
14615 (create_label_decl, push_labeled_block): New function
14616 declarations.
14617 * lex.c (label_id): Initialize.
14618 (SUPER_TK, THIS_TK, RETURN_TK): Merged common actions in final
14619 switch.
14620 * parse.h Added space after PROTO in function declarations when
14621 necessary.
14622 (LOOP_EXPR_BODY_MAIN_BLOCK, LOOP_EXPR_BODY_UPDATE_BLOCK,
14623 LOOP_EXPR_BODY_CONDITION_EXPR, LOOP_EXPR_BODY_LABELED_BODY,
14624 LOOP_EXPR_BODY_BODY_EXPR, LOOP_HAS_LABEL_P, LOOP_HAS_LABEL_SKIP_P,
14625 PUSH_LABELED_BLOCK, POP_LABELED_BLOCK, PUSH_LOOP, POP_LOOP): New
14626 macros.
14627 (struct parser_ctxt): New fields current_loop,
14628 current_labeled_block.
14629 (build_if_else_statement, patch_if_else_statement,
14630 add_stmt_to_compound, patch_exit_expr, build_labeled_block,
14631 generate_labeled_block, complete_labeled_statement,
14632 build_bc_statement, patch_bc_statement, patch_loop_statement,
14633 build_new_loop, build_loop_body, complete_loop_body): New function
14634 declarations.
14635 * parse.y (java_warning_count): New global variable.
14636 (label_id): New static variable.
14637 (BREAK_TK, CONTINUE_TK): Token tagged <operator>.
14638 (block:): Return size_zero_node when block is empty.
14639 (empty_statement:): Return size_zero_node.
14640 (statement:): Implement supplemental action when for_statement: is
14641 reduced.
14642 (label_decl:): New rule.
14643 (labeled_statement:): Rewritten using label_decl. Actions
14644 implemented.
14645 (labeled_statement_nsi:): Likewise.
14646 (if_then_statement): Actions implemented.
14647 (while_expression): New rule.
14648 (while_statement:): Rewritten using while_expression. Actions
14649 implemented.
14650 (while_statement_nsi:): Likewise.
14651 (do_statement_begin:): New rule.
14652 (do_statement:): Rewritten using do_statement_begin. Actions
14653 implemented.
14654 (for_statement:): Rewritten using for_begin. Actions implemented.
14655 (for_statement_nsi:): Likewise.
14656 (for_header:, for_begin:): New rules.
14657 (for_init:): Actions implemented.
14658 (statement_expression_list:, break_statement:,
14659 continue_statement:): Likewise.
14660 (yyerror): Count number of issued warning(s).
14661 (java_report_errors): Report error(s) and/or warning(s).
14662 (java_complete_class): Use build_java_argument_signature to
14663 recompute completed method signature.
14664 (java_check_regular_methods): New locals method_wfl and aflags.
14665 Use method_wfl instead of lookup_cl during error reports. Fixed
14666 indentation and modified some error messages. Use
14667 lang_printable_name in method instead of the DECL_NAME. New code
14668 to issue warnings on methods not overriding corresponding methods
14669 private to a different package.
14670 (java_method_add_stmt): Call add_stmt_to_compound.
14671 (add_stmt_to_compound): New function.
14672 (java_complete_tree): Handle LABELED_BLOCK_EXPR, EXIT_BLOCK_EXPR,
14673 LOOP_EXPR, EXIT_EXPR and COND_EXPR.
14674 (build_if_else_statement, patch_if_else_statement,
14675 build_labeled_block, generate_labeled_block,
14676 complete_labeled_statement, build_new_loop, build_loop_body,
14677 complete_loop_body, patch_loop_statement, build_bc_statement,
14678 patch_bc_statement, patch_exit_expr): New functions.
14679 * typeck.c (build_java_signature): Build argument signature before
14680 enclosing it in between parenthesis.
14681
14682 1998-08-17 Warren Levy <warrenl@cygnus.com>
14683
14684 * Make-lang.in (JAVA_SRCS): Created for dependencies * Makefile.in
14685 (JAVA_OBJS): Added reminder comment
14686
14687 1998-08-13 Nick Clifton <nickc@cygnus.com>
14688
14689 * gjavah.c (D_NAN_MASK): Append LL to the constant to force it to
14690 be interpreted as a long long.
14691
14692 1998-08-13 Warren Levy <warrenl@cygnus.com>
14693
14694 * decl.c (init_decl_processing): Use _Jv_InitClass, not
14695 soft_initialise_class. Use _Jv_NewMultiArray, not
14696 soft_multianewarray. Use _Jv_ThrowBadArrayIndex, not
14697 soft_badarrayindex. Use _Jv_CheckCast, not soft_checkcast. Use
14698 _Jv_CheckArrayStore, not soft_checkarraystore. Use
14699 _Jv_LookupInterfaceMethod, not soft_lookupinterfacemethod.
14700
14701 1998-08-12 Per Bothner <bothner@cygnus.com>
14702
14703 * decl.c, java-tree.h (this_identifier_node, super_identifier_node,
14704 length_identifier_node): New global tree node constants.
14705 * parse.y (kw_super, kw_this, kw_length): Removed globals.
14706 Replace uses by super_identifier_node etc.
14707 * lex.c (kw_super, kw_this, kw_length): Don't initialize.
14708
14709 * parse.y (resolve_field_access): Don't special-case ".length" if
14710 flag_emit_class_files.
14711 (patch_array_ref): Leave as ARRAY_REF if flag_emit_class_files.
14712 * jcf-write.c (generate_bytecode_insns): Handle ARRAY_REF opcode
14713 and ARRAY.length.
14714
14715 1998-08-11 Per Bothner <bothner@cygnus.com>
14716
14717 * decl.c (init_decl_processing): Remove unused method_type_node fields.
14718 * class.c (make_method_value): Remove init for removed fields.
14719
14720 * class.c (layout_class): Use build_java_argument_signature.
14721 * java-tree.h (TYPE_ARGUMENT_SIGNATURE): New macro.
14722
14723 * typeck.c (push_java_argument_signature): Removed. Merged into ...
14724 (build_java_argument_signature): Use TYPE_ARGUMENT_SIGNATURE cache.
14725 (build_java_signature): Don't use push_java_argument_signature.
14726
14727 * typeck.c (lookup_argument_method): New function.
14728 * parse.y (java_check_regular_methods): Use lookup_argument_method
14729 instead of lookup_java_method2 followed by lookup_java_method.
14730
14731 * parse.y (check_method_redefinition): Minor optimization.
14732
14733 * jcf-write.c (generate_bytecode_insns): Handle RETURN_EXPR,
14734 MINUS_EXPR, MULT_EXPR, TRUNC_DIV_EXPR, and RDIV_EXPR.
14735
14736 1998-08-10 Tom Tromey <tromey@cygnus.com>
14737
14738 * Make-lang.in (jc1$(exeext)): Don't depend on c-common.o or
14739 c-pragma.o.
14740
14741 * gjavah.c (java_float_finite): Use K&R-style definition.
14742 (java_double_finite): Likewise.
14743 (generate_access): Now returns void. Changed all callers.
14744 (last_access_generated): Removed.
14745 (process_file): Only make a single pass over the .class file.
14746
14747 1998-07-29 Per Bothner <bothner@cygnus.com>
14748
14749 * class.c (get_dispatch_table): Add extra dummy vtable entry,
14750 for compatibility for G++ (with -fvtable-thunks).
14751 * expr.c (build_invokevirtual): Add one for extra dummy vtable entry.
14752
14753 * gjavah.c (process_file): Use public inheritance for super-class.
14754
14755 1998-07-29 Alexandre Petit-Bianco <apbianco@cygnus.com>
14756
14757 * lex.c (java_init_lex): Initialize ctxp->package.
14758 * parse.h (struct parser_ctxt): package and package_len replaced
14759 by tree package, an identifier node. Field method_decl_list is
14760 gone. Fixed comments.
14761 (lookup_field_wrapper, merge_qualified_name, not_accessible,
14762 class_in_current_package): New function prototypes.
14763 * parse.y (array_type:): Set class loaded flag on primitive type
14764 arrays.
14765 (package_declaration:): Assign ctxp->package to the
14766 identifier node.
14767 (method_invocation:): Handle invocation of method qualified by
14768 `super'.
14769 (single_type_import_declaration:): Removed ambiguity check.
14770 (java_pop_parser_context): New local variable `next'. Reset and
14771 set IMPORT_CLASSFILE_NAME flags on current and previous import
14772 list.
14773 (java_accstring_lookup): Use new local macro COPY_RETURN.
14774 (lookup_field_wrapper): New function.
14775 (parser_qualified_classname): Use merge_qualified_name.
14776 (parser_check_super_interface): Broaden error message.
14777 (do_resolve_class): Check for qualified class name in the current
14778 compilation unit if appropriate.
14779 (process_imports): Check for already defined classes.
14780 (check_pkg_class_access): Got rid of call to
14781 get_access_flags_from_decl.
14782 (java_complete_expand_methods): Call safe_layout_class based on
14783 the current class size.
14784 (make_qualified_primary): Build a WFL qualification on primary if
14785 none exists.
14786 (merge_qualified_name): New function.
14787 (make_qualified_name): Use merge_qualified_name.
14788 (resolve_expression_name): Use safe_lookup_field.
14789 (resolve_field_access): Got rid of call to get_access_flags_from_decl.
14790 (resolve_qualified_expression_name): Likewise. Check on resolved
14791 element accessibility.
14792 (not_accessible_p, class_in_current_package): New functions.
14793 (maybe_access_field): Got rid of call to get_access_flags_from_decl.
14794 (patch_method_invocation_stmt): Merged common pieces. Check
14795 accessibility of invoked method.
14796 (check_for_static_method_reference): Add returned type in error
14797 message.
14798 (invocation_mode): Get rid of bogus check on PRIVATE methods.
14799 (refine_accessible_methods_list): Merged two conditions in test.
14800 (java_complete_class): Sanity check on stabilize_ref gone.
14801 * zextract.c (read_zip_archive): Cast lseek second argument to long.
14802
14803 1998-07-28 Per Bothner <bothner@cygnus.com>
14804
14805 * class.c (hashUtf8String): Fix - use new JavaSoft specification.
14806
14807 1998-07-24 Tom Tromey <tromey@cygnus.com>
14808
14809 * gjavah.c (F_NAN): Removed.
14810 (F_NAN_MASK): New macro.
14811 (F_POSITIVE_INFINITY): Removed.
14812 (F_NEGATIVE_INFINITY): Likewise.
14813 (java_float_finite): Rewrote.
14814 (D_NAN_MASK): Renamed.
14815 (java_double_finite): Rewrote.
14816 (D_POSITIVE_INFINITY): Removed.
14817 (D_NEGATIVE_INFINITY): Likewise.
14818
14819 * jcf-dump.c (print_constant): [CONSTANT_Double, CONSTANT_Float]
14820 If verbose, print underlying representation of value in hex.
14821
14822 1998-07-24 Per Bothner <bothner@cygnus.com>
14823
14824 * buffer.h, buffer.c: New files.
14825 * Makefile.in (JAVA_OBJS): Add buffer.o.
14826
14827 Support locals variables and writing their debug entries to .class.
14828 * jcf-write.c: Simplify some by user new buffer type.
14829 (vode_buffer_grow): Removed.
14830 (struct localvar_info): New type.
14831 (localsvars, localvartable): New buffers.
14832 (localvar_alloc, localvar_free): New functions.
14833 (generate_bytecode_insns): Handle local variables.
14834 (generate_classfile): Write LocalVariableTable attribute.
14835
14836 1998-07-24 Alexandre Petit-Bianco <apbianco@cygnus.com>
14837
14838 * jcf-io.c (open_in_zip): Check the zipfile magic number.
14839 * zipfile.h (ZIPMAGIC): New macro.
14840
14841 1998-07-24 Tom Tromey <tromey@cygnus.com>
14842
14843 * Makefile.in (gjavah.o): Updated dependencies.
14844 (jcf-dump.o): Likewise.
14845 (all.indirect): Use ../gjavah.
14846 (../gjavah$(exeext)): Likewise.
14847 (clean): Don't remove gjavah.
14848 (clean): Remove parse.c, not java/parse.c.
14849 * Make-lang.in (java): Added gjavah.
14850 (gjavah$(exeext)): New target.
14851 (GJAVAH_SOURCES): New macro.
14852 (java.all.build): Added gjavah.
14853 (java.all.cross): Likewise.
14854 (java.rest.encap): Likewise.
14855 * config-lang.in (compilers, stagestuff): Added gjavah.
14856
14857 1998-07-23 Tom Tromey <tromey@cygnus.com>
14858
14859 * gjavah.c (java_float_finite): New function.
14860 (java_double_finite): Likewise.
14861 (F_POSITIVE_INFINITY): New macro.
14862 (F_NEGATIVE_INFINITY): Likewise.
14863 (F_NAN): Likewise.
14864 (D_POSITIVE_INFINITY): Likewise.
14865 (D_NEGATIVE_INFINITY): Likewise.
14866 (D_NAN): Likewise.
14867 (print_field_info): Use java_float_finite and java_double_finite.
14868
14869 1998-07-23 Per Bothner <bothner@cygnus.com>
14870
14871 * parse.y (method_header): Name "this" implicit argument.
14872
14873 1998-07-22 Per Bothner <bothner@cygnus.com>
14874
14875 * jcf-write.c: Write out LineNumberTable attribute in .class file.
14876 (linenumber_buffer, linenumber_ptr, linenumber_limit): New statics.
14877 (put_linenumber): New function.
14878 (generate_bytecode_insns, generate_classfile): Write line numbers.
14879
14880 1998-07-22 Alexandre Petit-Bianco <apbianco@cygnus.com>
14881
14882 * java-tree.h (CALL_EXPR_FROM_PRIMARY_P): Changed in PRIMARY_P.
14883 (lookup_name, build_known_method_ref, build_class_init,
14884 build_invokevirtual, invoke_build_dtable, match_java_method,
14885 build_field_ref, pushdecl_force_head, build_java_binop,
14886 binary_numeric_promotion, build_decl_no_layout,
14887 build_java_arrayaccess, build_newarray, build_anewarray,
14888 build_java_array_length_access, build_java_arraynull_check): New
14889 extern function prototypes.
14890 (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
14891 JAVA_THIS_EXPR, CALL_CONSTRUCTOR_P): Macro definition moved in
14892 java-tree.h.
14893 * jcf-parse.c (init_outgoing_cpool): Set current_constant_pool_data_ref
14894 to NULL
14895 * jcf.h (jcf_out_of_synch): New extern function prototype.
14896 * parse.h: Static/global function implemented in parse.y
14897 prototyped and declarations moved at the end of the file.
14898 (DECL_P): Check that the argument isn't null.
14899 (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
14900 JAVA_THIS_EXPR): No longer defined here. See java-tree.h
14901 (QUAL_DECL_TYPE): New macro.
14902 (PARAMS): Macro definition removed.
14903 * parse.y: (yyparse, yyerror): Use PROTO instead of PARAMS.
14904 (return_statement:): Call build_return.
14905 (field_access:): Call make_qualified_primary in sub rule.
14906 (method_invocation:): Build method invocation and call
14907 make_qualified_primary when processing primaries.
14908 (java_complete_class): Set IDENTIFIER_SIGNATURE_TYPE by calling
14909 get_type_from_signature.
14910 (java_check_regular_method): Extra integer 0 argument when calling
14911 lookup_java_method2.
14912 (lookup_java_interface_method2): Extra method DECL argument when
14913 calling lookup_java_interface_method2.
14914 (java_method_add_stmt): Set TREE_SIDE_EFFECTS on newly created
14915 COMPOUND_EXPR node.
14916 (java_complete_expand_method): Layout current class iff not
14917 already done. Don't process interface's methods.
14918 (java_complete_expand_method): Use super class only if it
14919 exists. Use current class otherwise.
14920 (make_qualified_primary): New function.
14921 (resolve_expression_name): Process qualified expression or
14922 expression from primary the same way.
14923 (resolve_expression_name): Two last arguments to
14924 resolve_field_access are now NULL_TREEs.
14925 (resolve_field_access): New variable is_static. Local field must
14926 be DECLs. is_static computed on field DECLs only. Append code in
14927 where_found to the field access if necessary. Use QUAL_DECL_TYPE
14928 to initialize field_type.
14929 (resolve_qualified_expression_name): New local variable,
14930 previous_call_static and is_static. Handle primaries with function
14931 calls, casts, array references and `this'. `super' now handled as
14932 `(super_class)this'. Use is_static to clarify boolean expressions.
14933 Added code to handle case where a proper handle is required to
14934 access a field. Use QUAL_DECL_TYPE where applicable.
14935 (maybe_access_field): New function.
14936 (patch_method_invocation_stmt): New arguments primary, where,
14937 is_static. Branch of the test on CALL_EXPR_FROM_PRIMARY_P
14938 deleted. Use `where' as a type to search from if specified. Check
14939 for static method reference where forbidden. Append primary or
14940 current_this to the argument list if not calling constructor nor
14941 static methods.
14942 (check_for_static_method_reference): New function.
14943 (patch_invoke): Layout the class on which new is done if
14944 necessary.
14945 (lookup_method_invoke): Changed format to report errors on
14946 methods.
14947 (qualify_ambiguous_name): New local variable this_found. Now
14948 handle things from primaries. Method call are considered
14949 expression names.
14950 (identical_subpath_p): NULL_TREE arguments to breakdown_qualified
14951 changed into NULLs.
14952 (not_initialized_as_it_should_p): Comply with the new DECL_P.
14953 (java_complete_tree): New case fo RETURN_EXPR. Process function
14954 call arguments in separate function.
14955 (complete_function_arguments): New function.
14956 (build_method_invocation): Don't use CALL_EXPR_FROM_PRIMARY_P
14957 anymore.
14958 (patch_assignment): Take the return function slot into account as
14959 a RHS. Distinguish assignment from a return.
14960 (valid_ref_assignconv_cast_p): Use build_java_argument_signature
14961 when checking methods in interfaces.
14962 (resolve_type_during_patch): NULL argument to unresolve_type_p
14963 instead of NULL_TREE.
14964 (patch_newarray): Fixed typo in comment.
14965 (buid_this): Build a WFL with `kw_this' instead of a FIELD_DECL.
14966 (build_return, patch_return): New functions.
14967 * typeck.c (lookup_java_constructor): Fixed typo in comment.
14968
14969 1998-07-21 Per Bothner <bothner@cygnus.com>
14970
14971 * constants.c (find_name_and_type_constant, find_fieldref_index,
14972 find_methodref_index): New methods.
14973 * expr.c (build_invoke_non_interface): If flag_emit_class_files,
14974 just return given method. Also, rename to build_known_method_ref.
14975 (expand_invoke): Rename call to build_invoke_non_interface.
14976 * java-tree.h, parse.h: Update prototype.
14977 * parse.y, decl.c, jcf-parse.c: Suppress calls to back-end functions
14978 (such as expand_expr_stmt) if flag_emit_class_files.
14979 * jcf-write.c (RESERVE, OP1, OP2, OP4, NOTE_PUSH, NOTE_POP,
14980 STACK_TARGET, IGNORE_TARGET): New macros.
14981 (code_buffer, code_ptr, code_limit, code_S, code_SP_max): New globals.
14982 (generate_bytecode_insn): New function to generate method's bytecode.
14983 (generate_classfile): Node generate Code attribute for a method.
14984 (code_buffer_grow, push_constant1, push_constant2, push_int_const,
14985 push_long_const, field_op, adjust_typed_op, maybe_wide):
14986 New functions used by generate_bytecode_insn.
14987
14988 * typeck.c (signature_include_return): Remove variable.
14989 (push_java_argument_signature, build_java_argument_signature): New.
14990 (build_java_signature): Use push_java_argument_signature.
14991 * parse.y: Use build_java_argument_signature instead of fiddling
14992 with signature_include_return.
14993
14994 1998-07-17 Tom Tromey <tromey@cygnus.com>
14995
14996 * gjavah.c (print_c_decl): Always generate JArray<>* for array
14997 types.
14998
14999 * Makefile.in (all.indirect): Added gjavah$(exeext).
15000 (gjavah$(exeext)): Added $(exeext).
15001 (clean): Likewise.
15002
15003 1998-07-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
15004
15005 * class.c (layout_class): Call to java_layout_parsed_class replace
15006 by safe_layout_class.
15007 * expr.c (build_java_array_length_access): Removed static storage
15008 class in the function definition.
15009 (build_java_arraynull_check): Likewise.
15010 Also fixed typos in two comments.
15011 * lex.c (java_init_lex): Initialize static global kw_length.
15012 (java_lex): Use BUILD_OPERATOR on RETURN_TK.
15013 * lex.h (JAVA_FLOAT_RANGE_ERROR): Add extra argument to
15014 java_lex_error.
15015 (JAVA_INTEGRAL_RANGE_ERROR): Likewise.
15016 * parse.h (resolve_no_layout): New static function declaration.
15017 (get_identifier_in_static): Declaration removed.
15018 (java_layout_parsed_class): Function name declaration changed to
15019 safe_layout_class.
15020 (build_newarray_node, patch_newarray, resolve_type_during_patch,
15021 not_initialized_as_it_should_p, build_this): New static function
15022 declarations.
15023 (pushdecl_force_head, build_java_binop, int_fits_type_p,
15024 binary_numeric_promotion, stabilize_reference,
15025 build_decl_no_layout, build_java_arrayaccess): Extern function
15026 declarations moved into their own section.
15027 (build_newarray, build_anewarray, build_java_array_length_access,
15028 build_java_arraynull_check): New extern function declarations.
15029 (UNARY_PLUS_EXPR): Macro renamed into JAVA_UNARY_PLUS_EXPR.
15030 (JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR, JAVA_THIS_EXPR): New
15031 fake tree codes.
15032 (CALL_CONSTRUCTOR_P): New macro.
15033 * parse.y (kw_length): New static global tree node.
15034 (return_statement): Tagged <node>.
15035 (RETURN_TK): Tagged <operator>.
15036 (variable_declarator_id:): Build variable declaration with an
15037 empty initialization value if a syntax error was found in the
15038 initialization part of the variable declaration.
15039 (statement_without_trailing_substatement:): return_statement: now
15040 uses the default rule.
15041 (return_statement:): Temporarily fixed to return NULL_TREE.
15042 (primary_no_new_array:): Call build_this when THIS_TK was parsed.
15043 (class_instance_creation_expression:): Class creation rules now
15044 call build_method_invocation upon reduction.
15045 (array_creation_expression:): Rules call build_newarray_node upon
15046 reduction.
15047 (dim_exprs:): Build a list of dimension expressions.
15048 (dim_expr:): Store location of the OSB_TK in the dimension
15049 expression node.
15050 (method_invocation:): Added a new error rule.
15051 (build_unresolved_array_type): WFL argument may also be an array
15052 on a primitive type. Name of the argument changed to reflect this.
15053 (method_declarator): Insert argument type at the beginning of the
15054 argument type list and later reverse the list.
15055 (unresolved_type_p): Argument 'returned' may be optionally
15056 NULL_TREE.
15057 (java_layout_class_from_source): Function renamed
15058 safe_layout_class.
15059 (resolve_and_layout): Now call resolve_no_layout and
15060 safe_layout_class.
15061 (resolve_no_layout): New function.
15062 (purify_type_name): New function.
15063 (complete_class_report_errors): Call purify_type_name during error
15064 report on a type not found.
15065 (process_imports): error_found local variable doesn't need to be
15066 initialized to zero.
15067 (declare_local_variables): New local type_wfl. Fixed typo in error
15068 message. type_wfl assigned to unresolved type and used to register
15069 incomplete type. Build a WFL around the variable initialization
15070 statement so that debug info can be generated on it.
15071 (source_start_java_method): Reverse argument list after they've
15072 been processed.
15073 (current_this): New static global variable.
15074 (java_complete_expand_methods): Set current_this when appropriate.
15075 (resolve_expression_name): Build correct static and non static
15076 field access bearing a simple name.
15077 (resolve_field_access): Resolve the length field of arrays. Handle
15078 f.m() cases.
15079 (patch_method_invocation_stmt): Set the type of the method
15080 invocation to error_mark_node. This value is later overridden by a
15081 valid type, if any. Don't handle qualified constructor invocation
15082 as qualified method invocation. Call lookup_method_invoke with its
15083 new flag. It's no longer necessary to access the selected method
15084 as the value of a tree list. Handle constructor invocation.
15085 (patch_invoke): Reverse argument list when invoking non interface
15086 methods. Insert call to new as the first argument of the
15087 constructor.
15088 (invocation_mode): Return a INVOKE_STATIC is the invoked method is
15089 defined within a final class. Return INVOKE_STATIC if the invoked
15090 method is a constructor.
15091 (lookup_method_invoke): New lc argument is a flag to indicate a
15092 constructor lookup. Now handle constructor lookup. Choose the most
15093 specific method in case several were matching the invocation
15094 requirements. Return a method decl instead of a tree list featuring
15095 one single method decl element.
15096 (refine_accessible_methods_list): New lc flag argument to
15097 indicate that a constructor is being looked up.
15098 (not_initialized_as_it_should_p): New function.
15099 (java_complete_tree): Now process fake tree codes
15100 JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR and JAVA_THIS_EXPR. Call
15101 save_expr on resolved function call arguments. Case on
15102 UNARY_PLUS_EXPR changed into a case on JAVA_UNARY_PLUS_EXPR.
15103 (patch_assignment): LHS can be a field access expression. When
15104 dealing with reference, lhs_type is the promoted type of the
15105 rhs_type, not the RHS. Use not_initialized_as_it_should_p where
15106 applicable.
15107 (operator_string): JAVA_UNARY_PLUS_EXPR replaces UNARY_PLUS_EXPR.
15108 (patch_binop): Use not_initialized_as_it_should_p where
15109 applicable.
15110 (build_unaryop): JAVA_UNARY_PLUS_EXPR replaces UNARY_PLUS_EXPR.
15111 (patch_unaryop): Likewise. And use not_initialized_as_it_should_p
15112 where applicable.
15113 (resolve_type_during_patch): New function.
15114 (patch_cast): Call resolve_type_during_patch to resolve type and
15115 report error accordingly.
15116 (patch_array_ref): Use not_initialized_as_it_should_p where
15117 applicable. Array base expression is saved before being
15118 used. Promote the type of an array elements if it contains non
15119 builtin types.
15120 (build_newarray_node, patch_newarray, build_this): New functions.
15121
15122 1998-07-16 Tom Tromey <tromey@cygnus.com>
15123
15124 * gjavah.c (print_c_decl): UTF8_GET increments pointer; don't
15125 increment it in `for' statement.
15126 (print_field_info): If number is inf or nan, don't print it.
15127 (print_method_info): If method name is `delete', just ignore it.
15128 (print_c_decl): Special-case jstringArray.
15129
15130 * gjavah.c (help): New function.
15131 (no_argument): New function.
15132 (usage): Changed text.
15133 (main): Rewrote argument handling. Now handles -v, --help,
15134 --version.
15135 (version): New function.
15136 (found_error): New global.
15137 (main): Return found_error.
15138 (generate_access): Set found_error.
15139 (print_c_decl): Likewise.
15140
15141 1998-07-15 Tom Tromey <tromey@cygnus.com>
15142
15143 * gjavah.c (print_c_decl): Don't print "," when examining field.
15144 Skip type name when looking at "[L" types.
15145 (process_file): Now static.
15146 (generate_access): Now returns int.
15147 (last_access_generated): New global.
15148 (process_file): Clear last_access_generated; make multiple passes
15149 over the class.
15150 (print_field_info): Just return if generate_access returns true.
15151 (print_method_info): Likewise. Also, allow <init> functions to
15152 pass through.
15153 (print_c_decl): Added is_init argument. Print constructors
15154 properly.
15155 (print_cxx_classname): Use UTF8_GET to extract characters from
15156 string.
15157 (print_base_classname): New function.
15158 (print_class_decls): New function.
15159 (process_file): Use it.
15160 (utf8_cmp): New function.
15161
15162 1998-07-13 Nick Clifton <nickc@cygnus.com>
15163
15164 * lang-options.h: Format changed to match changes in gcc/toplev.c
15165 to implement a --help option.
15166
15167 1998-07-10 Brendan Kehoe <brendan@cygnus.com>
15168
15169 * decl.c (init_decl_processing): Revert change to dtable_type.
15170
15171 1998-07-09 Per Bothner <bothner@cygnus.com>
15172
15173 * java-tree.h (CLASS_P): Changed DECL_LANG_FLAG_7 -> TYPE_LANG_FLAG_4.
15174
15175 1998-07-08 Brendan Kehoe <brendan@cygnus.com>
15176
15177 * decl.c (init_decl_processing): Set CLASS_LOADED_P on dtable_type.
15178
15179 * lang.c (lang_init): Default flag_exceptions to 1, without
15180 checking to see if it's 2 first.
15181
15182 1998-07-08 Jeffrey A Law (law@cygnus.com)
15183
15184 * constants.c: Include "system.h".
15185 * decl.c: Likewise.
15186 * lang.c (flag_new_exceptions): Get via extern now.
15187 (lang_init_options): New functions. Turn on flag_new_exceptions.
15188
15189 1998-07-07 Alexandre Petit-Bianco <apbianco@cygnus.com>
15190
15191 * lex.c (java_lex): Return 0 when we see an invalid character in
15192 the input.
15193
15194 * lex.c (java_read_char): Specify extra argument when calling
15195 java_lex_error.
15196 (java_read_unicode, java_parse_end_comment,
15197 java_parse_escape_sequence): Likewise,
15198 (java_lex): Specify extra argument when calling
15199 java_lex_error. Test that IDs are beginning with a legal character
15200 for IDs. Handle invalid characters with an error message and a
15201 call to java_lex_error.
15202 (java_lex_error): Adjust column position by new argument
15203 `forward'. Issue an error even if in the middle of reporting an
15204 other error.
15205
15206 1998-07-07 Brendan Kehoe <brendan@cygnus.com>
15207
15208 * jcf-io.c (find_class): Zero out BUFFER before we use it, since
15209 we don't explicitly put a null pointer when we're copying it.
15210
15211 1998-07-07 Tom Tromey <tromey@cygnus.com>
15212
15213 * gjavah.c (print_cxx_classname): New function.
15214 (super_class_name): Likewise.
15215 (print_super_fields): Removed.
15216 (in_super): Removed.
15217 (print_field_info): Never generate #defines.
15218 (print_c_decl): Changed generated types to match JNI. No longer
15219 print class name before method name.
15220 (print_method_info): Print "static" before static methods.
15221 Print "virtual" before non-final methods.
15222 (usage): Use exit(1), not exit(-1).
15223 (main): Likewise.
15224 (print_field_info): Use %.17g to print a double.
15225 (last_access): New globals.
15226 (process_file): Initialize last_access.
15227 (usage): Now static.
15228 (ACC_VISIBILITY): New define.
15229 (generate_access): New function.
15230 (print_field_info): Call it.
15231 (print_method_info): Likewise. Also, generate information for all
15232 methods, not just native methods. Return void.
15233 (print_c_decl): Return void.
15234 (print_field_info): Return void.
15235
15236 1998-07-02 Alexandre Petit-Bianco <apbianco@cygnus.com>
15237
15238 * Makefile.in (JAVABISONFLAGS): Specific flag for bison when
15239 processing the jc1 grammar file. Prefix bison functions and
15240 variables with java_.
15241 (parse.c): Dependencies on parse.h and lex.h
15242 * expr.c (build_java_arrayaccess): Function now global.
15243 * java-tree.h: Comment reorganized to carry on previous
15244 classification effort.
15245 (RESOLVE_EXPRESSION_NAME_P, RESOLVE_PACKAGE_NAME_P,
15246 RESOLVE_TYPE_NAME_P): New flags on WFLs.
15247 * jcf-parse.c (parse_source_file): java_parse_source_file renamed
15248 java_parse (new prefix java_ generated by bison).
15249 (java_layout_parsed_class, java_register_parsed_class): Function
15250 call removed.
15251 (yyparse): Removed unnecessary call to init_outgoing_cpool.
15252 * lex.c (static tree wfl_op): Variable deleted.
15253 (java_init_lex): Initialize kw_super and kw_this. Initialize more
15254 ctxp fields to NULL_TREE.
15255 (java_lex): No longer create WFL for operators. Filename caching
15256 mechanism deleted. Call BUILD_OPERATOR for `.', '(', '['. Strings
15257 created as STRING_CST and later expanded. Removed extra argument
15258 to BUILD_OPERATOR and BUILD_OPERATOR2. Build operators for THIS
15259 and SUPER.
15260 (build_wfl_node): Removed code in comments.
15261 * lex.h (BUILD_OPERATOR, BUILD_OPERATOR2): No longer build a WFL but
15262 store token and location data in the current bison token.
15263 * parse.h: Removed pre-processor based symbol prefixes hack. Moved
15264 static/extern function declaration at the beginning of the file.
15265 (struct qualification): Data structure definition deleted.
15266 (RESOLVE_CHAIN_REMAINDER): Macro definition deleted.
15267 (qualify_ambiguous_name): Function declaration modified. Function
15268 now returns nothing.
15269 (build_array_ref, patch_array_ref, make_qualified_name,
15270 resolve_qualified_expression_name, maybe_generate_clinit,
15271 resolve_field_access): New static function declarations.
15272 (build_java_arrayaccess): New extern function declaration.
15273 (enum { RESOLVE_EXPRESION_NAME...}): Enum deleted.
15274 (CALL_EXPR_PRIMARY): Macro deleted.
15275 (EXPR_WFL_QUALIFICATION, QUAL_WFL, QUAL_RESOLUTION): New macros.
15276 (struct parser_ctxt): Field initialized_final
15277 removed. non_static_initialized, static_initialized: New fields.
15278 * parse.y (static tree kw_super, static tree kw_this): New global
15279 static.
15280 (%union): tree wfl field of operator member replaced by int
15281 location. WFLs are non longer created for operators.
15282 (OSB_TK, DOT_TK, THIS_TK, SUPER_TK): Tagged <operator>.
15283 (qualified_name:): Now calls make_qualified_name to build the
15284 identifier.
15285 (type_declaration:): Consider generating <clinit> when class
15286 parsing completed.
15287 (variable_declarator:): Directly build an assignment node when the
15288 variable is initialized when declared.
15289 (this_or_super:): Build a WFL and set current location when THIS
15290 or SUPER are parsed.
15291 (expression_statement:): Wrap statement around a WFL.
15292 (primary_no_new_array:): Fixed typo. Changed value returned by
15293 THIS_TK because of its new type (temporary).
15294 (dim_exprs:): Temporary fix because of OSB_TK's new type.
15295 (field_access:): Build qualified name with SUPER.
15296 (method_invocation:): Fixed returned value because of SUPER's new
15297 type.
15298 (array_access:): Use OSB_TK location information.
15299 (post_increment_expression:, post_decrement_expression:,
15300 unary_expression:, pre_increment_expression:,
15301 pre_decrement_expression:, unary_expression_not_plus_minus:,
15302 cast_expression:, multiplicative_expression:,
15303 additive_expression:, shift_expression:, relational_expression:,
15304 equality_expression:, and_expression:, exclusive_or_expression:,
15305 inclusive_or_expression:, conditional_and_expression:,
15306 conditional_or_expression:, assignment:): Use new location/token
15307 information available on operators.
15308 (create_class): Set super_decl_type to NULL_TREE when processing
15309 java.lang.Object.
15310 (register_fields): Field initialization is now a MODIFY_EXPR
15311 node. Chain initialization code to the matching lists (according
15312 to the field declaration modifiers).
15313 (maybe_generate_clinit): New function.
15314 (method_header): Don't set method's DECL_NAME to a WFL when adding
15315 methods to java.lang.Object.
15316 (resolve_and_layout): Now can return NULL_TREE if the type
15317 resolution fails. Otherwise, return the class DECL instead of its
15318 TYPE.
15319 (check_method_redefinition): Don't patch method DECL_NAME if it
15320 belongs to java.lang.Object.
15321 (process_imports): Simply assign error_found to the value returned
15322 by check_pkg_class_access.
15323 (declare_local_variables): Don't use their init statements (if
15324 any) when parsing error were previously found. Reuse MODIFY_EXPR
15325 build during parsing as an init statement.
15326 (java_method_add_stmt): Now return the current method body.
15327 (java_layout_parsed_class, java_register_parsed_class): Functions
15328 removed.
15329 (java_complete_expand_methods): Initialize the constant pool on a
15330 per class basis. Layout the classes before expanding their method
15331 bodies. Don't try expand artificial constructor code if error were
15332 found. Make the classes data and register them if no error were
15333 found.
15334 (java_complete_expand_method): Retrieve an artificial constructor
15335 argument list before entering its body. Assign the top block to
15336 the artificial constructor function body and set types of declared
15337 blocks and compound statements to void. Walk method body if not an
15338 artificial constructor.
15339 (make_qualified_name, cut_identifier_in_qualified): New functions.
15340 (resolve_expression_name): Fixed comments. Save/restore the
15341 current class CLASS_LOADED_P flag value. Build non qualified
15342 static field access and handle qualified expression names.
15343 (resolve_field_access, resolve_qualified_expression_name): New
15344 functions.
15345 (patch_method_invocation_stmt): Use the new expression resolution
15346 scheme, calling resolve_field_access when the function call is
15347 resolved as an expression.
15348 (qualify_ambiguous_name): Function rewritten to work on qualified
15349 expression produced by make_qualified_name.
15350 (java_complete_tree): Promote type when function's argument are
15351 RECORD_TYPEs. While processing the MODIFY_EXPR case: don't patch
15352 the assignment to discover further errors if RHS is a expression
15353 name that fails to evaluate. Declare LHS initialized even though
15354 the assignment failed. Don't use the location variable and removed
15355 extra argument in patch function calls. Now handle the ARRAY_REF
15356 case and build internal string representation when STRING_CSTs are
15357 walked.
15358 (build_method_invocation): Don't wrap function call around a WFL.
15359 (build_assignment): Likewise. Use the operator location
15360 information.
15361 (patch_assignment): Handle array access LHSs. Handle error
15362 provenance, resulting in a better error report.
15363 (build_binop): Use op_location from operator as binop location
15364 information.
15365 (build_unaryop, build_incdec, build_cast): Likewise.
15366 (patch_binop): Extract location information from the node. Fixed
15367 typo in error message.
15368 (patch_unary_op): Extract location information from the node.
15369 (build_array_ref, patch_array_ref): New functions.
15370
15371 1998-07-01 Tom Tromey <tromey@cygnus.com>
15372
15373 * expr.c (expand_java_INSTANCEOF): Changed calling convention to
15374 match _Jv_IsInstanceOf.
15375 * decl.c (init_decl_processing): Use _Jv_NewArray, not
15376 soft_newarray. Use _Jv_IsInstanceOf, not soft_instanceof.
15377
15378 1998-06-30 Tom Tromey <tromey@cygnus.com>
15379
15380 * decl.c (init_decl_processing): Functions are now named
15381 _Jv_MonitorEnter and _Jv_MonitorExit, and return jint.
15382
15383 1998-06-29 Per Bothner <bothner@cygnus.com>
15384
15385 * java-tree.h (load_class): Add prototype.
15386 * class.c (is_compiled_class): Add missing arg to load_class.
15387 * expr.c (expand_java_NEW): Call load_class.
15388 * parse.y (process_import): Removed bogus use of void return value.
15389
15390 1998-06-25 Per Bothner <bothner@cygnus.com>
15391
15392 * decl.c, java-tree.h (soft_athrow_node): Renamed to soft_node.
15393 Function name is "_Jv_Throw" instead of "soft_athrow".
15394 * decl.c, java-tree.h (soft_new_node): Renamed to alloc_object_node.
15395 Function name is "_Jv_AllocObject" instead of "soft_new".
15396 Takes an extra parameter (object size).
15397 * expr.c: Update calls.
15398
15399 1998-06-24 Per Bothner <bothner@cygnus.com>
15400
15401 * lex.c (java_get_line_col): Handle end-of-file.
15402 * except.c (expand_end_java_handler): Handle null type (i.e. finally).
15403
15404 1998-06-24 Andrew MacLeod <amacleod@cygnus.com>
15405
15406 * lang.c (lang_init): Make -fexceptions the default.
15407 * except.c (maybe_start_try, maybe_end_try): Don't do anything if
15408 exception handling is not turned on.
15409
15410 1998-06-23 Andrew MacLeod <amacleod@cygnus.com>
15411
15412 * lang.c (flag_new_exceptions): Make this this default.
15413 * decl.c (end_java_method): Call emit_handlers.
15414 * except.c (method_init_exceptions): Set language code and version.
15415 (expand_start_java_handler): Enable exception, and call
15416 expand_eh_region_start.
15417 (expand_end_java_handler): Enable exception, and set up catch blocks.
15418 (emit_handlers): New routine to generate the saved handlers.
15419 * java-except.h (emit_handlers): Add prototype.
15420
15421 1998-06-12 Per Bothner <bothner@cygnus.com>
15422
15423 We used to have three different representations of the constant pool:
15424 the CPool structure, the tree_constant_pool, and the constructures
15425 used to build the Class object (which may need class and string
15426 constants) in compiled code. None were appropriate for compiling
15427 to .class files, so I did a major overhaul.
15428
15429 First, the tree_constant_pool array was removed. Things were
15430 modified to the CPool structure in the JCF could be used.
15431 Second, a "capacity" field was added to the CPool, and functions
15432 written to search for a matching constant, adding one if not found.
15433 The code that generated the Class object was changed to use a CPool.
15434 The actual TREE_LISTs used to build the CONSTRUCTORs used for
15435 the static Class object are now only in build_constants_constructor.
15436 Finally, I wrote code which can generate a .class file (including its
15437 constant pool) from the RECORD_TYPE of a class. This is a big step
15438 on the way to compiling Java source into .class files.
15439
15440 * jcf-write.c: New file. Writes out a RECORD_TYPE as a .class file.
15441 * Makefile.in (JAVA_OBJS): Added jcf-write.o.
15442
15443 * java-tree.h (CPOOL_UTF, CONSTANT_ResolvedFlag,
15444 CONSTANT_ResolvedString, CONSTANT_ResolvedClass): New macros.
15445 (NAME_AND_TYPE_NAME, NAME_AND_TYPE_SIGNATURE, COMPONENT_REF_NAME,
15446 COMPONENT_REF_NAME_AND_TYPE, COMPONENT_REF_SIGNATURE): Redefined.
15447 (COMPONENT_REF_CLASS): Replaced by COMPONENT_REF_CLASS_INDEX.
15448 (lang_type): Removed constant_pool field.
15449 * jcf.h (CPool): Renamed size to count. Added field capacity.
15450 (CPOO_COUNT, CPOOL_UINT, CPOOL_USHORT1, CPOOL_USHORT2,
15451 CPOOL_FINISH, CPOOL_INIT, CPOOL_REINIT): New macros.
15452 Rewrite some of the old JCF_XXX in terms of CPOOL_XXX macros.
15453
15454 * constants.c (current_constant_pool_tags, current_constant_pool_data,
15455 current_constant_pool_length), java-tree.h: Replaced by outgoing_cpool.
15456 * constants.c (build_constants_constructor): Use new outgoing_cpool.
15457 (set_constant_entry, find_constant1, find_constant2,
15458 find_class_constant, count_constant_pool_bytes, write_constant_pool,
15459 find_utf8_constant, find_class_or_string_constant): New functions.
15460
15461 * jcf-parse.c (load_class): Don't save/restore tree-constant_pool.
15462 (get_constant): Use current_jcf.cpool instead of tree_constant_pool.
15463 (give_name_to_class, get_class_constant): Likewise.
15464 * jcf-parse.c, java-tree.h (tree_constant_pool): Removed.
15465 (get_name_and_type_constant, get_ref_constant): Removed.
15466 * parse.h (parser_ctxt): Remove field tree_constant_pool.
15467 * parse.y: Don't save/restore tree_constant_pool.
15468 * verify.c (verify_jvm_instructions): Update for new approach.
15469 * expr.c (expand_invoke, expand_java_field_op): Likewise.
15470
15471 * lang-options.h: Added -femit-class-file, -femit-class-files.
15472 * lang.c (flag_emit_class_files), java-tree.h: New flag.
15473 (lang_f_options): Added "emit-class-file(s)".
15474
15475 * expr.c (build_java_arrayaccess): Generate more efficient array
15476 bounds checking, by using unsigned compare.
15477
15478 * expr.c (expand_invoke): Re-arrange error checks to make more robust.
15479
15480 1998-06-10 Alexandre Petit-Bianco <apbianco@cygnus.com>
15481
15482 * parse.h: New comment on the handling of unresolved type
15483 identifiers. JDEPs are now part of the jdep_code enum.
15484 (typedef struct jdep): Now use enum jdep_code or int, depending on
15485 availability. Both are narrowed down to an 8 bits bitfield.
15486 (CALL_EXPR_PRIMARY): Fixed comment.
15487
15488 1998-06-10 Tom Tromey <tromey@cygnus.com>
15489
15490 * Make-lang.in (java): Added gjavac and jvgenmain.
15491 (java.start.encap): Depend on gjavac.
15492 (java.rest.encap): Depend on jvgenmain.
15493
15494 * Make-lang.in (JAVA_INSTALL_NAME): Name is gjavac, not c++.
15495 (JAVA_CROSS_NAME): Likewise.
15496 (java.all.build): Depend on jvgenmain and gjavac.
15497 (java.all.cross): Depend on jvgenmain and gjavac-cross.
15498 (jvgenmain$(exeext)): New target.
15499 (java.install-common): Wrote.
15500 * config-lang.in (compilers, stagestuff): Added gjavac and
15501 jvgenmain.
15502
15503 1998-06-10 Dave Brolley <brolley@cygnus.com>
15504
15505 * lang.c (lang_decode_option): New argc/argv interface.
15506
15507 1998-06-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
15508
15509 * ChangeLog: Fixed entries not compliant with the Gnu Coding Standard.
15510 * decl.c (build_decl_no_layout): New function.
15511 * expr.c (java_lang_expand_expr): Layout declarations found in
15512 blocks before they're pushed.
15513 * jcf-parse.c (load_class): Save current line when parsing class
15514 file.
15515 (parse_source_file): Register class before expanding their
15516 methods.
15517 * lang.c (put_decl_node): Produce `null' when `void *' is
15518 processed.
15519 * lex.c (static tree wfl_op): New static global, for error report
15520 on casts.
15521 (java_init_lex): wfl_operator and wfl_op initialized
15522 here. Filename caching added for wfl_op. Return wfl_op when `(' is
15523 parsed.
15524 * parse.h (build_unaryop, build_incdec, patch_unaryop, build_cast,
15525 patch_cast, valid_ref_assignconv_cast_p, can_cast_to_p,
15526 build_unresolved_array_type): New static function definitions.
15527 (build_decl_no_layout): New extern function declared.
15528 (OBSOLETE_MODIFIER_WARNING): Report error only if the WFL of the
15529 faulty modifier exists.
15530 (TYPE_INTERFACE_P, TYPE_CLASS_P): New macros.
15531 (ERROR_CAST_NEEDED_TO_INTEGRAL): Error message tuned.
15532 (UNARY_PLUS_EXPR): New fake operator.
15533 (struct parser_ctxt): New field osb_number.
15534 * parse.y (static tree wfl_operator): New static WFL for operator
15535 bound error messages.
15536 (DECR_TK, INCR_TK): Moved.
15537 (OP_TK): Tagged <operator>.
15538 (array_type:): Now call build_unresolved_array_type.
15539 (dim_expr:): Count the number of '[' seen.
15540 (post_increment_expression, post_decrement_expression,
15541 pre_increment_expression, pre_decrement_expression,
15542 unary_expression_not_plus_minus, unary_expression:): Actions are
15543 now building the corresponding unary expressions.
15544 (cast_expression:): Actions are now building cast expressions.
15545 (build_unresolved_array_type): New function.
15546 (create_interface): Reset the number of declared interfaces.
15547 (create_class): Likewise.
15548 (method_header): Methods declared within the scope of an interface
15549 are now implicitly set public and abstract.
15550 (java_complete_class): Variable's and parameter's type are patched
15551 with a promoted type.
15552 (declare_local_variables): Resolved non builtin types are promoted
15553 before being used to build a variable decl. Removed type patch
15554 posted on variable initialization statement.
15555 (source_start_java_method): Use build_decl_no_layout to build the
15556 decl of a parameter of incomplete type.
15557 (java_register_parsed_class): Process interfaces too. Call
15558 rest_of_decl_compilation on each processed class declarations.
15559 (java_complete_expand_methods): Don't attempt to expand things in
15560 interfaces.
15561 (java_complete_tree): Process CONVERT_EXPR, even though it always
15562 has a type. Propagate error_mark_node to node's type too. Promote
15563 method's call argument type and return error_mark_node if
15564 argument's completion didn't work. MODIFY_EXPR can have a WFL as a
15565 RHS. Fixed bug in the handling of bogus RHS of a fixed type. Now
15566 handle unary operator nodes.
15567 (build_assignment): Added comment.
15568 (print_int_node): New function.
15569 (patch_assignment): New second argument. New error handling. Use
15570 print_int_node. Handle references. Use can_cast_to_p to issue
15571 different error message according to the context and check upon
15572 the initialization of the RHS.
15573 (can_cast_to_p, valid_ref_assignconv_cast_p): New functions.
15574 (operator_string): Handle more operators.
15575 (patch_binop): No longer use a function static
15576 wfl_operator. Improved error message on shift distance.
15577 (build_unaryop, build_incdec, build_cast, patch_unaryop,
15578 patch_cast): New functions.
15579
15580 1998-06-05 Per Bothner <bothner@cygnus.com>
15581
15582 * jvspec.c: New file.
15583 * Make-lang.in: New rules to build gjavac from jvspec.c and ../gcc.c.
15584
15585 * java-tree.h (identifier_subst): Add declaration.
15586
15587 1998-06-04 Tom Tromey <tromey@cygnus.com>
15588
15589 * jvgenmain.c (main): Generate call to JvRunMain.
15590
15591 * class.c (make_class_data): Push value for "sync_info" field.
15592 * decl.c (init_decl_processing): Push "sync_info" field.
15593
15594 1998-06-03 Per Bothner <bothner@cygnus.com>
15595
15596 * typeck.c (build_java_array_type): Set TYPE_NAME to actual
15597 Java (source) name, not signature.
15598 Set TYPE_ALIGN to (at least) that of element_type.
15599
15600 1998-06-02 Per Bothner <bothner@cygnus.com>
15601
15602 * class.c: Moved classname-mangling-rekated code to ...
15603 * mangle.c: ... this new file.
15604 * jvgenmain.c: New program (needs mangle.c) to generate main program.
15605 * Makefile.in: Update for above changes.
15606
15607 1998-06-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
15608
15609 * expr.c (truthvalue_conversion): Convert integer and floating
15610 point value to their truth value.
15611 * lex.c (java_lex): Handle the `null' literal.
15612 * parse.h (JREFERENCE_TYPE_P, DECL_P): New macros.
15613 (ERROR_CANT_CONVERT_TO_BOOLEAN, ERROR_CANT_CONVERT_TO_NUMERIC,
15614 ERROR_CAST_NEEDED_TO_INTEGRAL, ERROR_VARIABLE_NOT_INITIALIZED):
15615 New macros.
15616
15617 * parse.y: Reorganization/documentation on token declaration.
15618 (binop_lookup[]): New added new tree codes.
15619 (relational_expression): Build corresponding binary operators.
15620 (equality_expression, conditional_and_expression,
15621 conditional_or_expression): Likewise.
15622 (java_complete_class): Fix crash in debug message.
15623 (java_complete_tree): Check initialization of method call
15624 arguments. Further bogus node evaluation to detect more error
15625 during assignments. Handles more binary operators.
15626 (patch_assignment): Use DECL_P.
15627 (build_binop): Fix crash when using URSHIFT_EXPR, a Java only tree
15628 code.
15629 (operator_string): Handle more case. Compacted source.
15630 (patch_binop): Changed function comment. Checking for
15631 uninitialized first operand takes the compound assignment into
15632 account and uses DECL_P. Checking for uninitialized second operand
15633 delayed to routine's end. Use macros to issue type bound error
15634 messages and issue messages on both operands if their types are
15635 different. Force fixed type into node. Handle all binary
15636 operators.
15637
15638 1998-05-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
15639
15640 * java-tree.h (COMPOUND_ASSIGN_P, INITIALIZED_P): New macros.
15641 * lex.c (java_lex): Use BUILD_OPERATOR and BUILD_OPERATOR2 to
15642 build operator node and return tokens.
15643 * lex.h (BUILD_OPERATOR, BUILD_OPERATOR2): New macros.
15644 * parse.h (java_complete_tree): Changed returned type in prototype.
15645 (build_method_invocation, build_assignment, patch_assignment,
15646 patch_binop): New static function declarations.
15647 (JFLOAT_TYPE_P, JNUMERIC_TYPE_P, JPRIMITIVE_TYPE_P, JSTRING_P,
15648 BUILD_EXPR_WFL): New macros.
15649 * parse.y (enum tree_code binop_lookup[]): New static for token to
15650 TREE_CODE lookup.
15651 (%union): Parser union has new sub-structure `operator'.
15652 (ASSIGN_TK, MULT_ASSIGN_TK, DIV_ASSIGN_TK, REM_ASSIGN_TK,
15653 PLUS_ASSIGN_TK, MINUS_ASSIGN_TK, LS_ASSIGN_TK, SRS_ASSIGN_TK,
15654 ZRS_ASSIGN_TK, AND_ASSIGN_TK, XOR_ASSIGN_TK, OR_ASSIGN_TK,
15655 ASSIGN_ANY_TK): Tokens tagged `operator'.
15656 (EQ_TK, GTE_TK, ZRS_TK, SRS_TK, GT_TK, LTE_TK, LS_TK, BOOL_AND_TK,
15657 AND_TK, BOOL_OR_TK, OR_TK, INCR_TK, PLUS_TK, DECR_TK, MINUS_TK,
15658 MULT_TK, DIV_TK, XOR_TK, REM_TK, NEQ_TK, NEG_TK, REL_QM_TK,
15659 REL_CL_TK, NOT_TK, LT_TK): Tokens tagged `operator'.
15660 (assignment_operator:): Rule tagged `operator'.
15661 (expression_statement:): Re-installed default rule.
15662 (method_invocation:): Sub rules call build_method_invocation.
15663 (postfix_expression:): Don't attempt to resolve name here. Just
15664 return an ID.
15665 (multiplicative_expression:): Sub-rules build corresponding binop
15666 expression node.
15667 (additive_expression:, shift_expression:, and_expression:,
15668 exclusive_or_expression:, inclusive_or_expression:): Likewise.
15669 (assignment:): Sub rule invoke build_assignment.
15670 (assignment_operator:): Default rules on sub rules.
15671 (force_error): Added documentation on this variable.
15672 (declare_local_variables): Build initialization calling
15673 build_assignment.
15674 (expand_start_java_method): Removed unused rtx declaration. Mark
15675 arguments as already initialized.
15676 (java_method_add_stmt): Type of built COMPOUND_EXPR set to NULL.
15677 (java_complete_expand_methods): Don't process next method if
15678 completion of the previous one triggered errors.
15679 (java_complete_expand_method): Call source_end_java_method if no
15680 error were found during completion.
15681 (resolve_expression_name): Use IDENTIFIER_LOCAL_VALUE to retrieve
15682 locals declaratilon. Handle names found within a class. Return
15683 error_mark_node when things aren't found.
15684 (patch_method_invocation_stmt): Return error_mark_node on failures.
15685 (patch_invoke): Removed unused local. Return the correct node.
15686 (java_complete_tree): Now returns a value. The BLOCK section binds
15687 local identifiers and the type of a BLOCK is now void. Assign the
15688 result of operand completion on COMPOUND_EXPR. Assign the
15689 encapsulated node of a WFL to the result of its completion, except
15690 when the node is an identifier. Now handle MODIFY_EXPR and several
15691 binary operators. Return error_mark_node on errors.
15692 (build_method_invocation, build_assignment, patch_assignment,
15693 build_binop, operator_string, patch_binop): New functions.
15694 * typeck.c (binary_numeric_promotion): New function.
15695
15696 1998-05-21 Per Bothner <bothner@cygnus.com>
15697
15698 * class.c (identifier_subst): New convenience wrapper for ident_subst.
15699 Replace most uses of ident_subst by identifier_subst.
15700
15701 * class.c (push_class_static_dummy_field): Removed function.
15702 (build_class_ref): Find Class object decl by looking up "CNAME.class",
15703 instead of looking got "class" static field. Create that decl here.
15704 (class_identifier_node): Removed; no longer needed.
15705 (init_class_processing): Don't init class_identifier_node.
15706 * jcf-parse.c (jcf_parse): Don't call push_class_static_dummy_field.
15707 Do nreverse 0 times (instead of twice) for Object and Class.
15708 * parse.y (java_layout_parsed_class): No push_class_static_dummy_field.
15709
15710 1998-05-20 Per Bothner <bothner@cygnus.com>
15711
15712 * jcf-parse.c (parse_class-file): Set lino to smallest line number,
15713 while initializing linenumber_count and linenumber_table.
15714 Do it before init_function_start (which calls emit_line_note).
15715 * expr.c (expand_byte_code): Don't need to clear lineno here.
15716
15717 1998-05-18 Tom Tromey <tromey@cygnus.com>
15718
15719 * class.c (append_gpp_mangled_type): If `qualifications' is >=9,
15720 then mangle number as _N_.
15721
15722 * class.c (mangle_class_field): New function.
15723 (build_class_ref): Set assembler name of class reference using
15724 mangle_class_field.
15725 (push_class_static_dummy_field): Likewise.
15726
15727 1998-05-17 Michael Tiemann <tiemann@cygnus.com>
15728
15729 * parse.y (source_start_java_method): Use TREE_SET_CODE instead
15730 of assigning to TREE_CODE. The latter method exploits a feature
15731 of GCC that is not ANSI compliant.
15732
15733 1998-05-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
15734
15735 * decl.c (pushdecl_force_head): New function.
15736 (pushlevel): Removed conditional printf.
15737 (complete_start_java_method): Don't enter local variable scope if
15738 function is compiled from source code.
15739 * expr.c: parse.h now included
15740 (java_lang_expand_expr): New function.
15741 * jcf-io.c (find_class): Use SOURCE_FRONTEND_DEBUG instead of
15742 printf. Terminate buffer when doing directories.
15743 * jcf-parse.c (parse_source_file): Call lang_init_source before
15744 parsing and before code generation.
15745 * jcf.h (SOURCE_FRONTEND_DEBUG): Macro redefined to conditionally
15746 use printf if the macro is defined.
15747 * lang.c (lang_init): Install lang_expand_expr hook on
15748 java_lang_expand_expr.
15749 (java_dummy_print): New function.
15750 (lang_init_source): New function.
15751 * lex.c (java_lex): Remember location of an opening brace at the
15752 second nesting level.
15753 (java_is_eol): Unget character seen after a CR if it is EOF.
15754 * parse.h: Now includes lex.h
15755 (SOURCE_FRONTEND_DEBUG): Macro redefined to conditionally use
15756 printf if the macro is defined.
15757 (expand_start_java_method, build_expr_block, enter_block,
15758 exit_block, lookup_name_in_blocks, maybe_absorb_scoping_blocks):
15759 New static function declarations.
15760 (pushdecl_force_head): New extern function declaration.
15761 (INCOMPLETE_TYPE_P): New macro.
15762 (JDEP_PARM, JDEP_TYPE): New entries in JDEPs enum.
15763 (BLOCK_CHAIN_DECL, BLOCK_EXPR_DECLS, BLOCK_EXPR_BODY,
15764 BLOCK_EXPR_ORIGIN): New macros.
15765 (DECL_SOURCE_LINE_MERGE, DECL_SOURCE_LINE_FIRST,
15766 DECL_SOURCE_LINE_LAST): New macros.
15767 (struct parser_ctxt): Removed field current_method_decl, redundant
15768 with the field current_function_decl. Added fields
15769 first_ccb_indent1 and pending_block.
15770 * parse.y (method_body, literal, INT_LIT_TK, FP_LIT_TK,
15771 BOOL_LIT_TK, CHAR_LIT_TK, STRING_LIT_TK, NULL_TK, VOID_TK): Rules
15772 tagged <node>
15773 (SOURCE_FRONTEND_DEBUG): Used as macro accepting varargs.
15774 (compilation_unit:): Cosmetic on sub rule.
15775 (type_declaration:): Cosmetic on sub rules. Added an error rule.
15776 (variable_initializer:): Installed default rule on expression:.
15777 (method_declaration:): method_header: starts a new
15778 method. method_body: installs the function body, absorbs blocks
15779 emitted for temporary variable scopings, pops function's body block
15780 and merges function's last statement lineno in DECL_SOURCE_LINE.
15781 (method_body:): Installed default rules.
15782 (block:): Call enter_block when an opening brace is seen. Absorb
15783 scoping blocks and call exit_block when a closing brace is seen.
15784 (block_statement:): Cosmetic changes.
15785 (method_invocation:): Create WFL around CALL_EXPR node.
15786 (patch_stage): Added comment around definition.
15787 (method_header): Try to use first_ccb_indent1 as the first line of
15788 the method, so BP debug info are emitted at the first opening
15789 brace of the function. If the function has no body, use the
15790 location of the function's name. Override currently defined method
15791 name with the matching WFL so we can point redefinition errors
15792 using the location where the function's name was declared.
15793 (check_abstract_method_header): Interprets DECL_NAME as an
15794 identifier or as a WFL, accordingly.
15795 (java_complete_class): New cases for JDEP_TYPE and JDEP_PARM.
15796 (check_method_redefinition): Use DECL_NAME as a WFL. Extract
15797 location and name information out of it and reinstall DECL_NAME to
15798 its original identifier node value.
15799 (lookup_cl): Use DECL_SOURCE_LINE_FIRST (first line of the
15800 function's source code).
15801 (read_import_dir): Test the value returned by find_class and issue
15802 a fatal accordingly.
15803 (declare_local_variables): Push a new block for the scope of the
15804 new variable(s) if code has been already generated at that nesting
15805 level. Pinpoint redefinition errors using the variable id
15806 WFLs. Generate initialization code if necessary. If the variable
15807 type is incomplete, register a patch on its decl.
15808 (source_start_java_method): Rewritten. Define a new block for the
15809 function's parameters. Build parameter decl out of function's
15810 arguments and register them for a patch if their types are
15811 incomplete.
15812 (expand_start_java_method): Includes the part of
15813 source_start_java_method that was pushing the parameter decls and
15814 completing the method start code.
15815 (source_end_java_method): Removed call the expand_end_bindings and
15816 poplevel (already taken care of). Reinstall function's arguments
15817 and get function's last line of code before calling
15818 expand_function_end.
15819 (java_method_add_stmt): New comment before the function's
15820 code. Complement the second operand of the current COMPOUND_EXPR
15821 if necessary.
15822 (java_complete_expand_methods): Don't generate debug info on line
15823 zero when expanding a generated constructor.
15824 (java_complete_expand_method): Set start and end line numbers for
15825 a artificially generated constructor to one and manually call
15826 enter_block and exit_block when defining it. For all methods:
15827 expand function's start calling the new expand_start_java_method
15828 and invoke java_complete_tree on the effective method's body, if
15829 any.
15830 (resolve_expression_name): Now use lookup_name_in_blocks to search
15831 local variable decls and print out an error when variables are
15832 undefined.
15833 (patch_method_invocation_stmt): Inserted comment before the
15834 function's code.
15835 (lookup_method_invoke): Chain method's arguments using chainon
15836 with the current arg list as a second argument. Inserted missing
15837 IDENTIFIER_POINTER when reporting an error on methods not found.
15838 (refine_accessible_methods_list): Don't retain constructors.
15839 (patch_arguments): Function removed.
15840 (java_complete_tree): Inserted comment before the function's
15841 code. New case for BLOCKs. Moved the WFL case a bit
15842 further. Complete function's arguments.
15843 (build_expr_block, enter_block, exit_block, lookup_name_in_blocks,
15844 maybe_absorb_scoping_blocks): New functions.
15845
15846 1998-04-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
15847
15848 * jcf-io.c (find_class): Reset jcf->java_source after JCF_ZERO, if
15849 previously set.
15850 * jcf-parse.c (parse_source_file, java_error_count): New forward
15851 and extern declarations.
15852 (java_parse_abort_on_error): Macro moved.
15853 (jcf_parse_source): fatal called if fopen fails. Now calls
15854 parse_source_file.
15855 (parse_source_file): New parse_only parameter. Reflects the
15856 elimination of the second pass.
15857 (yyparse): parse_source_file called with argument set to 0.
15858 * jcf.h (JCF_ZERO): Sets java_source to zero.
15859 * lex.c (java_init_lex): pass argument is gone. Function modified
15860 to be called once during the analysis of a file.
15861 (java_unget_unicode): Fixed typo in fatal message.
15862 (java_get_line_col): Likewise.
15863 (java_lval): Likewise. String literals no longer built during
15864 second pass.
15865 * lex.h (JAVA_COLUMN_DELTA): Take the tabulation character into
15866 account.
15867 * parse.h (MODIFIER_WFL): New macro.
15868 (parse_check_super, parser_check_super_interface): Now return int.
15869 (parser_chain_incomplete_item, not_builtin_p,
15870 complete_method_decl): Declarations removed.
15871 (build_method_invocation_stmt, build_invoke): Renamed using the
15872 `patch' instead of `build'
15873 (register-incomplete_type, obtain_incomplete_type,
15874 java_complete_tree, java_complete_expand_method,
15875 unresolved_type_p, create_jdep_list): New function declarations.
15876 (IC_TYPE, IC_DEPEND, DEPEND_DECL, DEPEND_WFL, BEGIN_ONLY_PASS,
15877 END_ONLY_PASS, ELSE_ONLY_PASS): Macro deleted.
15878 (jdep): New typedef on new struct _jdep.
15879 (JDEP_DECL, JDEP_DECL_WFL, JDEP_KIND, JDEP_SOLV, JDEP_WFL,
15880 JDEP_MISC, JDEP_APPLY_PATCH, JDEP_GET_PATCH, JDEP_CHAIN,
15881 JDEP_TO_REVOLVE, JDEP_RESOLVED_DECL, JDEP_RESOLVED,
15882 JDEP_RESOLVED_P): New macros.
15883 (JDEP_NO_PATCH, JDEP_SUPER, JDEP_FIELD, JDEP_METHOD,
15884 JDEP_METHOD_RETURN, JDEP_METHOD_END, JDEP_INTERFACE,
15885 JDEP_VARIABLE): New enum values and jdep kinds.
15886 (jdeplist): New typedef on struct _jdeplist.
15887 (CLASSD_FIRST, CLASSD_LAST, CLASSD_CHAIN, JDEP_INSERT): New
15888 macros.
15889 (CALL_EXPR_PRIMARY): New macro.
15890 (struct parser_ctxt): Fields java_pass, current_method_decl,
15891 method_decl_list deleted. New field jdeplist.
15892 (INCOMPLETE_P): Macro deleted.
15893 * parse.y (single_type_import_declaration:): Removed pass switch.
15894 (type_import_on_demand_declaration): Likewise.
15895 (field_declaration:): Removed pass switch on all sub rules.
15896 (class_declaration:): Call the complete_class_decl removed on
15897 class_body rules.
15898 (method_declaration:): Removed second pass switch. No longer chain
15899 methods decl when method_header reduced.
15900 (method_header:): Sub rules no longer depend on pass switch.
15901 (method_declarator:): Likewise.
15902 (method_body:): Likewise.
15903 (abstract_method_declaration:): Likewise.
15904 (block_statement:): Likewise.
15905 (local_variable_declaration:): Likewise.
15906 (argument_list:): Likewise.
15907 (method_invocation:): Likewise. Call to build_method_invocation_stmt
15908 removed. Partial CLASS_EXPR tree node built instead.
15909 (postfix_expression:): Removed pass switch on all sub rules.
15910 (java_pop_parser_context): Free classd_list content.
15911 (yyerror): Call obstrack_grow0 to finalize error message.
15912 (check_class_interface_creation): Comment modified to reflect new
15913 returned value meaning. Removed second pass switch. Return 1 if an
15914 error was found, 0 otherwise. Adjust pointer on filename if a
15915 leading path separator was found.
15916 (maybe_create_class_interface_decl): Removed first pass switch
15917 when linking the class decl to the class_list. Install a new
15918 jdep_list for the class.
15919 (add_superinterfaces): List of unresolved interfaces is
15920 gone. Unresolved interfaces are directly added to the current
15921 dependencies list.
15922 (create_interface): Second pass shortcut removed.
15923 ctpx->modifier_ctx access through MODIFIER_WFL.
15924 (create_class): Second pass shortcut removed. Call to
15925 register_incomplete_type replaces the call to
15926 parser_chain_incomplete_item.
15927 (complete_class_decl): Function removed.
15928 (duplicate_declaration_error): New way of retrieving redeclared
15929 item type.
15930 (register_fields): Call to lookup_modifier_cl replaced by
15931 MODIFIER_WFL. New way of handling unresolved type, using
15932 unresolved_type_p and obtain_incomplete_type.
15933 register_incomplete_type replaces call to parser_chain_incomplete_item.
15934 (patch_stage): New static global variable.
15935 (method_header): New way of handling unresolved type, using
15936 unresolved_type_p and obtain_incomplete_type. patch_stage used to
15937 indicates that the method decl needs to be patched.
15938 (check_abstract_method_header): Call to lookup_modifier_cl
15939 replaced by MODIFIER_WFL.
15940 (method_declarator): Incomplete argument type are registered
15941 calling register_incomplete_type. Patch on the declared method is
15942 issued in that case.
15943 (unresolved_type_p): New function.
15944 (parser_check_super_interface): New comment to reflect function's
15945 modified returned type (int). Function and has a new argument
15946 this_wfl. Call to parse_error_context uses this_wfl instead of
15947 relying on lookup_cl.
15948 (parser_check_super): Comment reflects function's new returned
15949 type (int). Function returns nonzero value on error.
15950 (create_jdep_list, reverse_jdep_list, obtain_incomplete_type,
15951 register_incomplete_type, jdep_resolve_class): New functions to
15952 handle incomplete types in declarations.
15953 (java_complete_class): Rewritten to work with the new incomplete
15954 type handling scheme.
15955 (complete_class_report_errors): Likewise.
15956 (complete_method_decl): Removed: it jobs is now handled by
15957 java_complete_class.
15958 (do_resolve_class): Class loaded in not already loaded and not
15959 found in Java source code.
15960 (java_check_regular_methods, java_check_abstract_methods): Don't
15961 call complete_method_decl anymore.
15962 (lookup_modifier_cl, not_builtin_p): Functions deleted.
15963 (read_import_dir): Got rid of the pass number dependency.
15964 (declare_local_variables): New handling of unresolved types (patch
15965 issued).
15966 (source_start_java_method): New parameter level. Function called
15967 with level set to 1 when argument types are potentially
15968 unresolved. Called to complete the job with level set to 2 once
15969 types are complete.
15970 (source_end_java_method): Call to permanent_allocation
15971 removed. Waiting to be replaced by a more suitable obstack
15972 management.
15973 (java_complete_expand_methods, java_complete_expand_method,
15974 java_expand_finals): New functions.
15975 (build_method_invocation_stmt): Renamed
15976 patch_method_invocation_stmt. Extracts function call expression
15977 (wfl) and arguments (args) from CALL_EXPR tree operands.
15978 (build_invoke): Renamed patch_invoke. Fixed typo in fatal
15979 call. Patch the function and argument operand of the CALL_EXPR
15980 tree argument.
15981 (patch_argument, java_complete_tree): New functions.
15982
15983 1998-04-20 Per Bothner <bothner@cygnus.com>
15984
15985 Recover from missing fields and methods (i.e. error instead of fatal).
15986 * decl.c, java-tree.h (TYPE_identifier_node): New global constant.
15987 * expr.c (expand_invoke): Recover from missing method.
15988 (expand_java_field_op): Recover from missing field.
15989 Inline references to java.lang.{Integer,Char,...}.TYPE.
15990 * typeck.c (get_type_from_signature), java-tree.h: New function.
15991 * class.c (add_method): Use get_type_from_signature.
15992 (build_class_ref): Handle a class that was not found.
15993 * typeck.c (convert): Handle conversion to pointers (for convenience).
15994 * verify.c (verify_jvm_instructions): Use get_type_from_signature
15995 instead of lookup_field to handle missing fields.
15996
15997 * jcf-parse.c (process_zip_dir): Set java_source.
15998
15999 1998-04-20 Brendan Kehoe <brendan@cygnus.com>
16000
16001 * jcf-parse.c (set_source_filename): Use TYPE_NAME, not DECL_NAME.
16002
16003 1998-04-14 Alexandre Petit-Bianco <apbianco@cygnus.com>
16004
16005 * jcf-parse.c (load_class): Don't change input_filename before
16006 calling jcf_parse_source (but still do it before calling
16007 jcf_parse).
16008 (jcf_parse_source): Assign input_filename after having saved the
16009 parser context.
16010 * lex.c (java_init_lex): Chain a WFL node to the import on demand
16011 list. ctxp->modifier_ctx zeroed according to its new
16012 definition. ctxp->filename initialized. Removed
16013 JAVA_MODIFIER_CTX_UNMARK.
16014 (java_unget_unicode): Update the character based column position.
16015 (java_allocate_new_line): ref_count not used anymore. Always free
16016 ctxp->p_line. Initialize c_line->char_col to 0.
16017 (java_get_unicode): Update the character based column position.
16018 (java_lex): Use ctxp->elc to store current position in source
16019 file, at the beginning of the parsed token. Set modifier_ctx entry
16020 corresponding to the parse modifier to a WFL node. Return a WFL
16021 node when an identifier is parsed.
16022 (java_lex_error): Now uses ctxp->elc to store current position in
16023 source.
16024 (build_wfl_node, java_is_eol, java_get_line_col): New functions.
16025 * lex.h (build_wfl_node): New function definitions.
16026 (struct java_line): ref_count and next fields are gone. New field
16027 char_col.
16028 (JAVA_LINE_CHECK, JAVA_LINE_MARK, JAVA_LINE_CHAIN,
16029 JAVA_LINE_UNMARK, ID_NAME, ID_CL): Macro definitions deleted.
16030 (JAVA_COLUMN_DELTA): New macro.
16031 (java_lc): New typedef on new struct _java_lc.
16032 * parse.h (lookup_cl, lookup_modifier_cl): Changed returned types.
16033 (parse_error_context, parse_warning_context): Changed prototypes.
16034 (java_get_line_col): Added as an available global function.
16035 (JAVA_MODIFIER_CTX_UNMARK): Macro removed.
16036 (IC_DECL): Replaced by macro IC_TYPE
16037 (DEPEND_WFL): New macro.
16038 (THIS_MODIFIER_ONLY): Now works with WFL and only remembers the first
16039 wrong modifier.
16040 (exit_java_complete_class): Removed a commented out statement.
16041 (struct parser_ctxt): Added comments on fields. modifier_ctx is
16042 now an array of tree nodes. Deleted fields line_list and
16043 e_line. New field elc, to replace e_line.
16044 * parse.y (array_type:): Build WFL node.
16045 (qualified_name:): Build a single WFL node out of two. Retain
16046 the location information of the first node in the resulting node.
16047 (package_declaration:): Use package name as a WFL node
16048 (single_type_import_declaration:): Use imported name as a WFL node.
16049 (type_import_on_demand_declaration:): Use root of the imported
16050 packages as a WFL node.
16051 (field_declaration:): Removed unused local variable cl.
16052 (method_declaration:): Don't call JAVA_MODIFIER_CTX_UNMARK.
16053 (yyerror): New static elc. Removed static error_line, error_pos.
16054 New local code_from_source. Save ctxp->elc into elc at the first
16055 pass. Call java_get_line_col to get a string of the line where
16056 the error occurred.
16057 (debug_line): Removed static function.
16058 (parse_error_context, parse_warning_context): Parameter cl is now
16059 a WFL node. Use its value to initialize ctxp->elc.
16060 (redefinition_error): Parameter cl is now a WFL node.
16061 (parse_add_interface): New parameter wfl. No longer call
16062 lookup_cl, use wfl instead.
16063 (check_class_interface_creation): Parameter cl is now a WFL node.
16064 (maybe_create_class_interface_decl): Likewise.
16065 (add_superinterfaces): New function.
16066 (create_interface): Removed local cl, node, super_decl,
16067 super_decl_type. Function now uses id as a WFL node. Better
16068 warning/error report on obsolete or forbidden mix of
16069 modifiers. Now calls add_superinterfaces to register interfaces.
16070 (create_class): Removed local cl, node. Local variable id is used
16071 as a WFL node. Better error report on forbidden modifier
16072 mix. Uses add_superinterfaces to register interfaces.
16073 (find_field): Argument cl is now a WFL node. Now store the WFL
16074 node of a fields that needs to be checked for their
16075 initialization.
16076 (method_header): Local variable node non longer used. Local
16077 variable id replaces cl.
16078 (check_modifiers_consistency): Local variable cl is now a WFL
16079 node.
16080 (method_declarator): Local variable cl replaced by parameter id.
16081 (parser_qualified_name): Now uses parameter name as a WFL node.
16082 (parser_check_super_interface): New parameter wfl, for achieve
16083 greater accuracy during error reports.
16084 (parser_chain_incomplete_item): New parameter named location. Used,
16085 along the decl, to construct the incomplete item node.
16086 (java_complete_class): resolve_class now uses WFL node extracted
16087 from the incomplete item node. Macro IC_TYPE replaces TREE_PURPOSE
16088 where appropriate.
16089 (complete_method_decl): Unresolved function's argument types are WFL.
16090 (resolve_class): Parameter cl is now a WFL node.
16091 (resolve_and_layout): Likewise.
16092 (do_resolve_class): Likewise. Try first to use cl and then do the
16093 lookup on the decl when calling check_pkg_class_access.
16094 (complete_class_report_errors): Use IC_TYPE in place of
16095 TREE_PURPOSE where appropriate. Use DEPEND_WFL on dependency
16096 instead of doing a lookup over the decl.
16097 (java_check_final): Use WFL info from field tree list.
16098 (lookup_cl): Rewritten and returns a statically defined WFL node.
16099 (lookup_modifier_cl): Now uses information from WFL nodes.
16100 (process_imports): Likewise.
16101 (read_import_dir): name and cl arguments replaced by a single WFL
16102 node. Function modified accordingly.
16103 (find_in_imports_on_demand): Now uses WFL node.
16104 (check_pkg_class_access): cl argument is now a WFL node.
16105 (declare_local_variables): Fixed to use WFL nodes.
16106 (resolve_expression_name): Likewise.
16107 (build_method_invocation_stmt): name_combo argument renamed
16108 wfl. Function modified to use WFL nodes.
16109 (build_invoke): cl used as a WFL node when calling build_expr_wfl.
16110 (lookup_method_invoke): cl is now a WFL node. Added missing
16111 IDENTIFIER_POINTER to class type decl name.
16112
16113 1998-04-14 Dave Brolley <brolley@cygnus.com>
16114
16115 * lang.c (init_parse): Now returns char* containing the filename.
16116
16117 1998-04-10 Per Bothner <bothner@cygnus.com>
16118
16119 * class.c (layout_class): Mangle repeated arg types to match cc1plus.
16120
16121 * decl.c, java-tree.h (integer_four_node): New INTEGER_CST node.
16122 * class.c (make_class_data): If flag_assume_compiled, initial class
16123 state is CSTATE_PREPARED; make superclass and interfaces direct
16124 references, rather than constant pool indexes.
16125
16126 1998-04-09 Alexandre Petit-Bianco <apbianco@cygnus.com>
16127
16128 * parser.y: Include flags.h. Removed debug variable pl.
16129 (method_declaration:): Uses ctxp->parser_ccb_indent instead of pl.
16130 (block:): Likewise.
16131 (labeled_statement_nsi:): Generate debug info when reducing
16132 expression_statement:.
16133 (check_pkg_class_access): get_access_flags_from_decl invocation
16134 fixed for new CLASS_* flags location.
16135 (source_end_java_method): Save/restore parser context when
16136 entering/leaving this routine. Restore lineno to its right value
16137 before calling expand_end_bindings.
16138 (build_method_invocation_stmt): build_invoke called with the
16139 current line information.
16140 (build_invoke): New argument cl. Wrap the function call around a
16141 wfl node.
16142 (refine_accessible_methods_list): Changed comment, removed
16143 unnecessary code.
16144 * parse.h: Fixed typo in comments.
16145 (CLASS_OR_INTERFACE): Handle the new CLASS_* flags location.
16146 (JAVA_MAYBE_GENERATE_DEBUG_INFO): New macro.
16147 (struct parser_ctxt): New fields ccb_indent, last_ccb_indent1,
16148 parser_ccb_indent.
16149 * lex.c (java_lex): Record the last closing curly bracket of a
16150 function.
16151 * jcf-parse.c (jcf_parse_source): Now calls
16152 java_check_methods. Clarified comment, fixed typo.
16153
16154 1998-04-09 Dave Brolley <brolley@cygnus.com>
16155
16156 * lang.c (init_parse): Expose for non USE_CPPLIB builds.
16157 (finish_parse): Expose for non USE_CPPLIB builds.
16158
16159 1998-04-08 Jeffrey A Law (law@cygnus.com)
16160
16161 * lang.c (lang_print_xnode): New function.
16162
16163 1998-04-03 Per Bothner <bothner@cygnus.com>
16164
16165 * decl.c (class_dtable_decl), java-tree.h: New tree node.
16166 * class.c (get_dispatch_vector, get_dispatch_table): New functions
16167 used to build a class's dispatch table.
16168 (make_class_data): Generate dispatch table if flag_assume_compiled.
16169 Set dtable of class object to address of class_dtable_decl.
16170
16171 * decl.c (int_decl_processing): Make soft_badarrayindex_node
16172 be volatile and have side effects - generates better code.
16173
16174 * class.c, expr.c, parse.y: CLASS_INTERFACE, CLASS_FINAL, etc:
16175 These flags were defined for TYPE_DECLs, but used on RECORD_TYPEs.
16176
16177 * expr.c (expand_invoke): If class is final, method is
16178 effectively final, so can call it directly.
16179
16180 * java-tree.h (TYPE_NVIRTUALS, TYPE_VTABLE): New macros.
16181
16182 * Makefile.in, Make-lang.in: Add missing $(exeext)s.
16183
16184 1998-03-19 Alexandre Petit-Bianco <apbianco@cygnus.com>
16185
16186 * parse.y (build_method_invocation_stmt): Removed extra argument
16187 to build_invoke.
16188
16189 1998-03-16 Alexandre Petit-Bianco <apbianco@cygnus.com>
16190
16191 * expr.c (dtable_indent): Now static global.
16192 (expand_invoke): Now call invoke_build_dtable and
16193 build_invokevirtual.
16194 (invoke_build_dtable, build_invokevirtual): New functions.
16195 * jcf-io.c (find_class): Defer issuing a warning by setting
16196 jcf->outofsynch to 1.
16197 * jcf-parse.c (jcf_out_of_synch): New function.
16198 (load_class): Test this_jcf.outofsynch flag and call
16199 jcf_out_of_synch accordingly.
16200 * jcf.h: (typedef struct JCF): New flag outofsynch. Fixed typo in
16201 comment indentation.
16202 * lex.c (java_get_unicode): Fixed code indentation.
16203 (java_lex): Create string literal. Fixed typo. Removed several
16204 premature obstack_free.
16205 * parse.h: New enums for name resolution and invocation mode.
16206 (struct qualification): New data structure.
16207 (RESOLVE_CHAIN_REMAINDER, BUILD_PTR_FROM_NAME): New macros.
16208 (do_resolve_class, build_method_invocation_stmt,
16209 breakdown_qualified, qualify_ambiguous_name, resolve_and_layout,
16210 debug_line, identical_subpath_p, invocation_mode,
16211 refine_accessible_methods_list, build_invoke,
16212 lookup_method_invoke): New functions declared.
16213 (build_invokevirtual, invoke_build_dtable, match_java_method,
16214 build_field_ref, jcf_out_of_synch): New references to external
16215 functions.
16216 (struct parse_ctxt): Removed artificial_constructor field.
16217 * parse.y: (array_type:): Type defined for this rule.
16218 (class_type:): Installed default rule for interface_type:.
16219 (array_type:): Now build Java array type.
16220 (qualified_name:): Now use obstack_grow0.
16221 (method_declaration:): Skip the artificial constructor added to
16222 the list, if any.
16223 (abstract_method_declaration:): Execute the code only during pass 1.
16224 (block:): Installed default rule in block_statements:.
16225 (block_statement:): Add the statement to the method during pass 2.
16226 (statement_expression): Installed default rule for
16227 method_invocation:.
16228 (argument_list:): Added code to build the argument list.
16229 (method_invocation:): Added call to create the method invocation
16230 node.
16231 (yyerror): Now use obstack_grow0. Removed bogus obstack_free.
16232 (debug_line): New function for debug.
16233 (complete_class_decl): No longer do something during pass 1.
16234 (method_header): Use BUILD_PTR_FROM_NAME.
16235 (parser_qualified_classname): Use obstack_grow0. Removed bogus
16236 obstack_free.
16237 (parser_chain_incomplete_item): Use BUILD_PTR_FROM_NAME. Modified
16238 function's main comment.
16239 (java_complete_class): Set CLASS_LOADED_P on all fixed incomplete
16240 classes.
16241 (complete_method_decl): Use BUILD_PTR_FROM_NAME and promote types.
16242 (resolve_class): Now works with arrays.
16243 (do_resolve_class, resolve_and_layout): New functions.
16244 (java_check_regular_methods): Reverse method list before and after
16245 having processed it. No longer set ctxp->artificial_constructor.
16246 (read_import_dir): Test jcf->outofsynch and call jcf_out_of_synch
16247 accordingly. Fixed typo in issued error message. Now use
16248 obstack_grow0.
16249 (find_in_imports_on_demand): Now use obstack_grow0.
16250 (declare_local_variables): Use BUILD_PTR_FROM_NAME.
16251 (source_end_java_method): Call expand_expr_stmt instead of
16252 expand_expr. Calls it before calling expand_function_end.
16253 (java_method_add_stmt): Do nothing if errors were found during
16254 parsing.
16255 (java_layout_parsed_class): Set CLASS_LOADED_P and fixed typo.
16256 (build_method_invocation_stmt, build_invoke, invocation_mode,
16257 lookup_method_invoke, refine_accessible_methods_list,
16258 qualify_ambiguous_name, breakdown_qualified, identical_subpath_p):
16259 New functions.
16260 * typeck.c (build_java_signature): Properly end method signature
16261 if return type skipped.
16262 (match_java_method): New function.
16263
16264 1998-03-16 Per Bothner <bothner@cygnus.com>
16265
16266 * jcf-io.c (find_classfile): If USE_JCF_STDIO, fopen in binary mode.
16267
16268 1998-02-25 Alexandre Petit-Bianco <apbianco@cygnus.com>
16269
16270 * expr.c (build_invoke_non_interface): New function.
16271 (methods_ident, ncode_ident): Now static globals.
16272 (expand_invoke): Use build_invoke_non_interface.
16273 * java-tree.h (struct lang_decl): New field function_decl_body.
16274 (DECL_FUNCTION_BODY): New macro.
16275 * jcf-parse.c (jcf_parse_source): Deeper check before setting
16276 CLASS_FROM_SOURCE_P.
16277 (parse_source_file): Fixed typos. Call java_layout_parsed_class
16278 before starting pass 2. Call to java_generate_parsed_class replaced
16279 by java_register_parsed_class.
16280 * lex.c: Fixed typo in header. Some line width related formating.
16281 * lex.h: Some line width related formating.
16282 * parse.h (source_end_java_method, resolve_expression_name,
16283 complete_class_decl, maybe_create_class_interface_decl,
16284 check_class_interface_creation): New static function declarations.
16285 (java_layout_parsed_class, java_method_add_stmt): New function
16286 declarations.
16287 (struct parser_ctxt): Field mark_class_generate removed. New
16288 fields class_list and artificial_constructor.
16289 * parse.y: Fixed typo in header.
16290 (class_declaration:): Call complete_class_decl when class body
16291 parsed.
16292 (method_declaration:): Call source_end_java_method in pass 2 when
16293 the method body is defined.
16294 (postfix_expression:): Do expression name resolution on sub-rule
16295 name during pass 2.
16296 (create_class, create_interface): Merged common pieces.
16297 (check_class_interface_creation, maybe_create_class_interface_decl):
16298 New functions.
16299 (complete_class_decl): New function.
16300 (register_fields): Fixed line width related typo.
16301 (method_header): Correctly skip first argument when fixing
16302 argument line. Changed the loop.
16303 (java_check_circular_reference): Now use ctxp->class_list.
16304 (java_complete_class): Removed start/stop marking.
16305 (java_check_regular_methods): Now takes a class decl as an
16306 argument. Add default constructor if none were encountered.
16307 (java_check_methods): Now use ctxp->class_list. Changed call to
16308 java_check_regular_methods.
16309 (source_start_java_method): Set DECL_ARG_TYPE for each function
16310 arguments.
16311 (source_end_java_method, java_method_add_stmt): New functions.
16312 (java_generate_parsed_class): No longer exists.
16313 (java_layout_parsed_class, java_register_parsed_class): New functions.
16314 (resolve_expression_name): New function.
16315
16316 1998-02-12 Alexandre Petit-Bianco <apbianco@cygnus.com>
16317
16318 * jcf-parse.c: (parse_source_file): Check on errors after init lex.
16319 * lex.c: (java_init_lex): Defer ctxp->java_pass initialization
16320 until pass initializations are done. Call read_import_dir with
16321 pass set to 0.
16322 * parse.h: (lookup_modifier_cl): New function declared.
16323 (INTERFACE_FIELD_MODIFIERS): New macro.
16324 (OBSOLETE_MODIFIER_WARNING): New macro.
16325 * parse.y: (register_fields): Class type and current field name in
16326 local variables. Check modifier(s) if adding field(s) to an interface.
16327 (check_abstract_method_header): Now use OBSOLETE_MODIFIER_WARNING
16328 and report errors using the faulty modifier line context.
16329 (lookup_modifier_cl): New function.
16330 (read_import_dir): Detect and report default import processing
16331 failure.
16332
16333 1998-02-11 Brendan Kehoe <brendan@cygnus.com>
16334
16335 Add a pair of -fassume-compiled/-fno-assume-compiled options.
16336 * class.c (is_compiled_class): Return 1 after making sure it
16337 qualifies as loaded, if FLAG_ASSUME_COMPILED is set.
16338 * lang-options.h: Add -fassume-compiled/-fno-assume-compiled.
16339 * java-tree.h (flag_assume_compiled): Add decl.
16340 * lang.c (lang_f_options): Add the flag.
16341 (flag_assume_compiled): Add decl, default to 0.
16342
16343 1998-02-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
16344
16345 * class.c (class_depth): Call to load_class uses extra VERBOSE arg.
16346 (is_compiled_class): Likewise.
16347 (layout_class): Likewise.
16348 (layout_class): Detect and lay out classes defined in source code.
16349 (interface_of_p, add_interface_do, may_add_interface): New
16350 function.
16351 (add_interface): Now use add_interface_do.
16352 (add_method_1): New function.
16353 (add_method): Now use add_method_1.
16354 (pushlevel): Debug message conditional to SOURCE_FRONTEND_DEBUG.
16355 (complete_start_java_method): New function.
16356 (start_java_mehod): Now call complete_start_java_method.
16357 * expr.c (lookup_field): Call to load_class uses extra VERBOSE arg.
16358 (expand_invoke): Likewise and fixed typo.
16359 *gjava.c: (print_super_field): Use new argument to find_class
16360 DO_CLASS_FILE.
16361 (main): Likewise.
16362 *java-tree.h: (CLASS_FROM_SOURCE_P): New flag on RECORD_TYPE.
16363 (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P, IS_A_CLASSFILE_NAME,
16364 QUALIFIED_P, IS_AN_IMPORT_ON_DEMAND_P): New flags on
16365 IDENTIFIER_NODE.
16366 (CLASS_COMPLETE_P): New flag on TYPE_DECL.
16367 (add_method_1, push_class): New prototypes.
16368 *jcf-dump.c: find_class now uses new DO_CLASS_FILE argument.
16369 *jcf-io.c: (open_in_zip): jcf now stores a pointer to the Zip
16370 directory where the class was found.
16371 (find_class): New argument DO_CLASS_FILE. Function find_class
16372 modified accordingly.
16373 *jcf-parse.c: (fix_class_path): New function.
16374 (load_class): Use new VERBOSE argument. load_class now finds and
16375 loads/parses .class/.java files. Save read_state of current_jcf
16376 if necessary.
16377 (java_parser_abort_on_error): New macro.
16378 (jcf_parse_source, parse_source_file): New function.
16379 (jcf_parse): Fixed typo.
16380 (yyparse): Call parse_source_file () only.
16381 (process_zip_dir): Fixed typo, fix zdir->filename_length when
16382 writing the real class name back in the zip directory entry.
16383 (find_in_current_zip): IDENTIFIER_CLASS_VALUE may be null.
16384 (jcf_figure_file_type): Fixed bogus alloc and bcopy.
16385 *jcf.h: (typedef struct JCF): New fields java_source and zipd.
16386 (find_class): Prototype fixed.
16387 *lex.c: Added 1998 time stamp.
16388 Removed all static global variables, moved into the parser
16389 context data structure.. Now include unistd.h if SEEK_SET not
16390 defined.
16391 (java_init_lex): Rewritten.
16392 (java_sneak_unicode): Modified current unicode access in current line.
16393 (java_unget_unicode): Likewise.
16394 (java_allocate_new_line): New allocation management.
16395 (java_read_char): Modified access and storage of unget_utf8_value.
16396 New way of processing current unicode.
16397 (java_store_unicode, java_read_unicode): Fixed typo in declaration.
16398 (java_get_unicode): Now use the parser context.
16399 (java_lineterminator): Likewise.
16400 (java_lex): Now used java_lval argument (pointer to YYSTYPE), part
16401 of the reentrant parser implementation. Function now use the
16402 parser context data structure and java_lval. Fixed production of
16403 the float and double constant "out of range" error message. Fixed
16404 obstack use. Return integer value when hitting a modifier. Now
16405 return type for TRUE, FALSE and other predefined types. Return
16406 identifier as a TREE_LIST list containing the current line context
16407 as the TREE_VALUE sub-node.
16408 (java_unicode_2_utf8): Fixed typo in declaration.
16409 (java_lex_error): Now use the parser context data structure.
16410 *lex.h: Added 1998 time stamp.
16411 (struct java_line): New fields ref_count and next.
16412 (JAVA_LINE_CHECK, JAVA_LINE_MARK, JAVA_LINE_CHAIN,
16413 JAVA_LINE_UNMARK, ID_NAME, ID_CL): New macros.
16414 (JAVA_FLOAT_RANGE_ERROR, JAVA_INTEGRAL_RANGE_ERROR, UNGETC): Fixed.
16415 *parse.h: Added 1998 time stamp.
16416 (java_parse_source_file): Renamed from parse_source_file.
16417 (YYERROR_NOW, YYNOT_TWICE): Fixed.
16418 (CLASS_MODIFIERS, FIELD_MODIFIERS, METHOD_MODIFIERS,
16419 INTERFACE_MODIFIER, INTERFACE_METHOD_MODIFIERS,
16420 JAVA_MODIFIER_CTX_UNMARK, IC_DECL, IC_DEPEND, DEPEND_DECL,
16421 THIS_MODIFIER_ONLY, ABSTRACT_CHECK, BEGIN_ONLY_PASS,
16422 END_ONLY_PASS, ELSE_ONLY_PASS, exit_java_complete_class,
16423 CLASS_OR_INTERFACE, INCOMPLETE_P): New macros.
16424 (struct parser_ctxt): New data structure to keep the parser context.
16425 *parse.y: Added 1998 time stamp, got rid of static global variables.
16426 (java_error_count, ctxp): New global variables.
16427 (%union): New value field.
16428 (numeric_type, integral_type): Rules removed.
16429 (primitive_type): Rule defined to handle integral, float, double and
16430 boolean types.
16431 (qualified_name, package_declaration,
16432 single_type_import_declaration, type_import_on_demand_declaration,
16433 modifiers, class_declaration, super, interfaces,
16434 interface_type_list, class_body, field_declaration,
16435 field_declaration, variable_declarators, variable_declarator,
16436 variable_declarator_id, method_declaration, method_header,
16437 formal_parameter_list, formal_parameter, method_body, block,
16438 static, interface_declaration, extends_interfaces,
16439 abstract_method_declaration, local_variable_declarators): Rules now
16440 define actions.
16441 (force_error, do_warning): New global statics.
16442 (push_parser_context, parser_context_save_global,
16443 parser_context_restore_global, pop_parser_context): New functions.
16444 (yyerror): Now uses the global parser context. Fixed use of obstack.
16445 (parse_error, parse_error_context, parse_warning_context,
16446 java_accstring_lookup, redefinition_error, check_modifiers,
16447 parser_add_interface, create_interface, create_class, find_field,
16448 duplicate_declaration_error, register_fields, method_header,
16449 check_modifiers_consistency, check_abstract_method_header,
16450 method_declarator, parser_qualified_classname,
16451 parser_check_super_interface, parser_check_super,
16452 parser_chain_incomplete_item, java_check_circular_reference,
16453 layout_class_from_source, java_complete_class,
16454 complete_method_decl, resolve_class, complete_class_report_errors,
16455 java_check_final, check_method_redefinition,
16456 java_check_regular_methods, java_check_abstract_methods,
16457 java_check_methods, lookup_java_interface_method2,
16458 lookup_java_method2, lookup_cl, find_name_in_single_imports,
16459 process_imports, find_in_imports, read_import_entry,
16460 read_import_dir, find_in_imports_on_demand,
16461 check_pkg_class_access, not_builtin_p, declare_local_variables,
16462 source_start_java_method, java_generate_parsed_class): New
16463 functions.
16464 *typeck.c: (signature_include_return): New global variable.
16465 (build_java_signature): Use SIGNATURE_INCLUDE_RETURN figure whether
16466 to add the function returned type in the signature.
16467
16468 1998-02-09 Brendan Kehoe <brendan@cygnus.com>
16469
16470 * jcf-io.c (open_in_zip): Use strncmp and LEN.
16471
16472 1998-01-29 Dave Brolley <brolley@cygnus.com>
16473
16474 * Make-lang.in (java.info): Added.
16475 (java.install-info): Added
16476
16477 1998-01-27 Brendan Kehoe <brendan@cygnus.com>
16478
16479 * Makefile.in (clean): Also remove java/parse.c.
16480
16481 1998-01-26 Brendan Kehoe <brendan@cygnus.com>
16482
16483 Add a pair of -fbounds-check/-fno-bounds-check options.
16484 * lang.c (lang_decode_option): Add code to grok arguments.
16485 (flag_bounds_check): Add decl.
16486 (lang_f_options): New array w/ the option in it.
16487 * java-tree.h (flag_bounds_check): Add decl.
16488 * lang-options.h: New file.
16489 * expr.c (build_java_arrayaccess): Use flag_bounds_check instead
16490 of a static macro value.
16491 (JAVA_ARRAY_EXCEPTION): Delete macro.
16492
16493 1998-01-23 Per Bothner <bothner@cygnus.com>
16494
16495 * typeck.c (build_java_array_type): Fix two bugs in previous change.
16496 * expr.c (build_anewarray): Add missing promote_type.
16497
16498 1998-01-22 Per Bothner <bothner@cygnus.com>
16499
16500 Add array types with known length to optimize bounds checking.
16501 * typeck.c (build_java_array_type): Take length parameter.
16502 (java_array_type_length, build_prim_array_type): New functions.
16503 * java-tree.h: Update for new functions.
16504 * expr.c, typeck.c, verify.c: Update build_java_array_type calls.
16505 * class.c: Use build_prim_array_type.
16506 * expr.c (can_widen_reference_to): Handle known-length array types.
16507 (verify_jvm_instructions): Keep track of integer push instructions
16508 followed by newarray/anewarray, so we can build known-length arrays.
16509 (JAVA_ARRAY_DATA_OFFSET): Replace by ...
16510 (java_array_data_offset): New function.
16511 (build_java_array_length_access): New function. Optimize if constant.
16512 (build_java_arrayaccess): Constant fold bounds check.
16513 (expand_java_newarray, expand_java_anewarray): Replaced by ...
16514 (build_newarray, build_anewarray): New functions.
16515 (ARRAY_NEW_NUM, ARRAY_NEW_PTR): Use build_{a,}newarray.
16516 * verify.c (merge_types): Handle known-lengh array types.
16517
16518 1998-01-19 Per Bothner <bothner@cygnus.com>
16519
16520 * expr.c (expand_byte_code): Fix performace bug, which caused
16521 searching linenumber_table to be linear rather than constant.
16522
16523 1997-12-12 Per Bothner <bothner@cygnus.com>
16524
16525 * Makefile.in (BISON, BISONFLAGS): Add missing macros.
16526
16527 * decl.c, java-tree.h (soft_fmod_node): New global.
16528 * decl.c (init_decl_processing): Define __builtin_fmod.
16529 * expr.c (build_java_binop): Implement TRUNC_MOD_EXPR for REAL_TYPE
16530 using __builtin_fmod.
16531
16532 1997-12-04 Alexandre Petit-Bianco <apbianco@cygnus.com>
16533
16534 * keyword.h: New file, output of keyword.gperf as processed by
16535 gperf.
16536 * lex.c (java_lex_init): Initialize java_error_flag.
16537 * parse.c (YYERROR_NOW): Uses java_error_flag.
16538 * parse.y: New static java_error_flag. Useless definition of
16539 buffer_error gone.
16540 * parse.y (java_error): Portable error recovery using
16541 java_error_flag (not yet completely tuned).
16542
16543 1997-12-04 Brendan Kehoe <brendan@lisa.cygnus.com>
16544
16545 * Makefile.in (parse.c): Use $(srcdir) for parse.y.
16546
16547 1997-12-03 Alexandre Petit-Bianco <apbianco@cygnus.com>
16548
16549 * Makefile.in: (JAVA_OBJS): New object jcf-parse.o.
16550 (parse.c, lex.c, keyword.h): New rules for Java source code
16551 front-end.
16552 * parse.c: Renamed into jcf-parse.c.
16553 * jcf-parse.c (yyparse): Invoke the parser to process Java source code.
16554 * keyword.gperf: New file, Java keywords.
16555 * parse.y: New file, Java language grammar.
16556 * parse.h: New file, Java language grammar definitions.
16557 * lex.c: New file, Java language lexer.
16558 * lex.h: New file, Java language lexer definitions.
16559
16560 1997-12-03 Per Bothner <bothner@cygnus.com>
16561
16562 * decl.c (clinit_identifier_node), java-tree.h: New global.
16563 * java-tree.h (IS_METHOD_INIT_P, IS_METHOD_CLINIT_P): Removed.
16564 * verify.c (verify_jvm_instructions): Inline use of removed macros.
16565 * expr.c (expand_java_field_op): Check for invalid assignment
16566 to final field.
16567
16568 * jcf-reader.c (get_attribute): Test for wrong attribute length.
16569
16570 1997-10-27 Per Bothner <bothner@cygnus.com>
16571
16572 * verify.c (verify_jvm_instructions): When processing a handler,
16573 attempt to set the current_subr to the right value.
16574 (More complicated code combines Sep 17 and Oct 22 versions.)
16575
16576 1997-10-24 Per Bothner <bothner@cygnus.com>
16577
16578 * class.c (push_class): Figure out (guess) name of source file.
16579 * parse.c (set_source_filename): Set DECL_SOURCE_FILE of class decl.
16580 (give_name_to_class): Don't guess source name; use DECL_SOURCE_FILE.
16581 (parse_class_file): Change return type from int to void.
16582 Call debug_start_source_file/debug_end_source_file.
16583
16584 * expr.c (build_java_binop): Fix masking 2nd operand.
16585 * decl.c (init_decl_processing): Set sizetype first.
16586
16587 1997-10-22 Per Bothner <bothner@cygnus.com>
16588
16589 * verify.c (verify_jvm_instructions): Don't set current_subr to NULL.
16590 (Revert Sep 17 change.)
16591
16592 1997-10-21 Alexandre Petit-Bianco <apbianco@cygnus.com>
16593
16594 * parse.c (process_zip_dir): Skip ZIP entries not bearing the
16595 .class extension in their name and fix thing so we don't process
16596 them parse_zip_file_entries().
16597 (parse_zip_file_entries): Cleaned unused local variables.
16598
16599 1997-10-20 Per Bothner <bothner@cygnus.com>
16600
16601 * expr.c (can_widen_reference_to): Allows equal array element types.
16602 (expand_byte_code): PRE_RET must expand OPERAND_VALUE (to get index).
16603 * jcf-dump.c (RET): Get (and print) index.
16604
16605 * verify.c (verify_jvm_instructions case OPCODE_anewarray):
16606 Promote element type to POINTER_TYPE.
16607
16608 1997-10-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
16609
16610 * jcf-reader.c, parse.c: (parse_zip_file, process_zip_dir,
16611 find_in_current_zip, jcf_figure_file_type): Moved from
16612 jcf-reader.c to parse.c.
16613 * zextract.c: (read_zip_archive): takes file_comment_length possible
16614 field into account.
16615
16616 1997-10-20 Per Bothner <bothner@cygnus.com>
16617
16618 * verify.c (verify_jvm_instructions): Var can also be promoted to int.
16619
16620 * verify.c (merge_types): Handle array types even better ...
16621
16622 1997-10-17 Per Bothner <bothner@cygnus.com>
16623
16624 * expr.c (java_stack_pop): Fix use of NULL_TREE for TYPE_SECOND.
16625
16626 * java-tree.h (PUSH_FIELD): Set DECL_ARTIFICIAL.
16627 * class.c (make_class_data): Don't build fields_decl if no fields.
16628 When building fields_decl, skip if DECL_ARTIFICIAL.
16629
16630 * expr.c (java_stack_swap): Update stack_type_map.
16631 * verify.c (merge_types): Handle array types better.
16632
16633 1997-10-15 Per Bothner <bothner@cygnus.com>
16634
16635 * class.c (add_field): Don't promote short integral fields to
16636 int any more (unless JAVA_PROMOTE_TO_INT), since Kaffe doesn't.
16637 * expr.c (push_value): Promote and convert short integral values.
16638
16639 * decl.c, java-tree.h (integer_two_node): New constant node.
16640 * verify.c (merge_types): Check for TYPE_RETURN_ADDR.
16641
16642 1997-10-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
16643
16644 * class.c (append_gpp_mangled_type): Use function argument
16645 unpromoted type to generate mangled name.
16646
16647 1997-10-13 Alexandre Petit-Bianco <apbianco@cygnus.com>
16648
16649 * constants.c (build_constant_data_ref): Now uses current_class
16650 instead of main_class.
16651 (build_constants_constructor): Now uses current_class instead of
16652 main_class.
16653 * zipfile.h: (struct ZipFileCache): Now defined here. Declaration
16654 of the global variable SeepZipFiles done here.
16655 * zextract.c (read_zip_archive): extra_field optional field taken
16656 into account while computing the position of the class file in the
16657 archive.
16658 * verify.c (verify_jvm_instructions): Use current_jcf to search
16659 the constant pool.
16660 * parse.c (load_class): First search for the class to load in the
16661 current zip file. Saves current_jcf (restored before returning
16662 from that function). Don't call JCF_FINISH in the class was found
16663 in the current ZIP file.
16664 (jcf_parse): If the class was found in the current ZIP file, save
16665 its tree_constant_pool (for later reuse).
16666 (parse_class_file): New function. Process each method defined in
16667 the current class and record the class as to be later registered.
16668 (yyparse): Rewritten. Figure the type of the current file and switch
16669 accordingly.
16670 * lang.c: New global variable current_jcf.
16671 (lang_init): Removed compiling_from_source test (done later, in
16672 yyparse). Removed call the jcf_parse ().
16673 * jcf.h (JCF_ZIP, JCF_CLASS, JCF_SOURCE): New defined values.
16674 (typedef struct JCF): New fields seen_in_zip (to mark a class found
16675 in the current ZIP file) and zip_offset (offset to the class data in
16676 the current zip file).
16677 * jcf-reader.c: zipfile.h included.
16678 localToFile: New ZipFileCache static global variable
16679 (parse_zip_file_entries): New function. Browse the current ZIP
16680 file directory and process each class found.
16681 (process_zip_dir): New function. Register each class found in the
16682 ZIP file directory. The class aren't parsed but a valid JCF is
16683 link to each of them.
16684 (find_in_current_zip): New function. Search for a class in the
16685 current ZIP file directory. If found, prepare the class so that it
16686 can be loaded.
16687 (jcf_figure_file_type): New function. Examine the file structure
16688 to figure a class file, a ZIP file. If none of these categories are
16689 matched, a source file is assumed.
16690 * jcf-io.c: Removed definition of ZipFileCache (moved in zipfile.h).
16691 SeenZipFile: New global variable.
16692 (open_in_zip): Use zipmember's length to accelerate the search for
16693 a member. If zipmember was NULL and zip file successfully read,
16694 return 0.
16695 * java-tree.h: New global variable current_jcf declared. Added
16696 declaration for current_constant_pool_tags, current_constant_pool_data,
16697 current_constant_pool_length, current_constant_pool_data_ref.
16698 (struct lang_type): Augmented with two fields. struct JCF *jcf (to
16699 store the JCF of classes seen in a zip file) and tree *constant_pool
16700 (to save a loaded class constant pool). current_class declared here.
16701 * expr.c (expand_invoke): Use current_jcf instead of main_jcf to
16702 retrieve method_ref_constant.
16703 (PUSHC): java_push_constant_from_pool now uses current_jcf.
16704 (OBJECT): get_class_constant now uses current_jcf.
16705 (ARRAY_NEW_PTR): get_class_constant now uses current_jcf.
16706 (ARRAY_NEW_MULTI): get_class_constant now uses current_jcf.
16707 (expand_invoke): Now uses current_class instead of main_class
16708 (build_class_init): Now uses current_class instead of main_class
16709 * class.c: New static global variable registered_class.
16710 (register_class): New function.
16711 (emit_register_class): Modified to use registered_class instead of
16712 main_class
16713 (is_compiled_class): Now take into account class seen in the archive.
16714
16715 1997-10-06 Per Bothner <bothner@cygnus.com>
16716
16717 * except.h: Renamed to: java-except.h.
16718 * parse.c, except.c, expr.c, verify.c: Update #include accordingly.
16719 * except.c: Add semi-working (commented out) implementation.
16720
16721 * expr.c (expand_iinc): Add needed flush_quick_stack.
16722 * parse.c (set_source_filename): New function.
16723 (give_name_to_class): Set input_filename from package.classname.java.
16724
16725 * jcf-io.c (find_class): Don't look first in ".".
16726
16727 1997-10-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
16728
16729 * zextract.c (read_zip_archive): Now takes into account the
16730 extra_field field.
16731 * expr.c (can_widen_reference_to): Modified to handle sub-interfaces.
16732
16733 1997-09-20 Per Bothner <bothner@cygnus.com>
16734
16735 * constants.c, java-tree.h (build_internal_class_name): New function.
16736 (alloc_class_constant): Re-implement using build_internal_class_name.
16737 * class.c (make_class_data): Likewise.
16738 * class.c (hashUtf8String): Make hash algorithm match String.hashCode.
16739
16740 1997-09-17 Per Bothner <bothner@cygnus.com>
16741
16742 * verify.c (verify_jvm_instructions): Temporarily set current_subr
16743 to NULL before pushing an exception handler target.
16744
16745 * expr.c (flush_quick_stack): Save from low stack indexes to high.
16746 (java_stack_swap, java_stack_dup): Re-write to be safe from
16747 clobbering registers.
16748 (build_class_init): New function.
16749
16750 1997-09-17 Alexandre Petit-Bianco <apbianco@cygnus.com>
16751
16752 * typeck.c (build_java_array_type): Temporary use
16753 permanent_obstack to create the array 'length' field.
16754 * expr.c (lookup_label): Temporay use permanent_obstack to create
16755 label if not found.
16756 * class.c (push_super_field): Tempory use permanent_obstack.
16757
16758 1997-09-15 Alexandre Petit-Bianco <apbianco@cygnus.com>
16759
16760 * typeck.c (type_for_mode): Now handles double_type_node and
16761 float_type_node.
16762 * verify.c (verify_jvm_instructions): The instruction following
16763 the wide bytecode is checked. OPCODE_ret added to the list of
16764 wide.
16765
16766 1997-09-11 Alexandre Petit-Bianco <apbianco@cygnus.com>
16767
16768 * class.c (make_class): Temporary use permanent_obstack. Set the
16769 class CLASS_P field to 1.
16770 (push_class): Temporary use permanent_obstack.
16771 (set_super_info): Temporary use permanent_obstack.
16772 (add_method): Temporary use permanent_obstack, set
16773 METHOD_TRANSIENT().
16774 (add_field): Temporary use permanent_obstack. Sets
16775 FIELD_VOLATILE() and FIELD_TRANSIENT().
16776 (build_class_ref): Temporary use permanent_obstack if the class
16777 isn't compiled.
16778 (build_static_field_ref): Temporary use permanent_obstack when
16779 creating field's rtl.
16780 (get_access_flags_from_decl): Handle ACC_VOLATILE, ACC_TRANSIENT,
16781 ACC_SYNCHRONIZED, ACC_NATIVE, ACC_ABSTRACT flags for methods
16782 and fields. Function finalized, as far as flag handling.
16783 (push_class_static_dummy_field): Temporary use permanent_obstack.
16784 (emit_register_class): Force generation of class registration at
16785 -O3 or deeper.
16786 * decl.c (end_java_method): Call permanent_allocation() before
16787 returning.
16788 * expr.c (can_widen_reference_to): Added comment to interface
16789 handling, fixed typo.
16790 (lookup_field): Now uses CLASS_P() to correct FIXME
16791 (expand_invoke): Verification on public && !static &&
16792 !abstract moved into soft_lookupinterfacemethod (kaffe).
16793 Use Object class dtable if objectref is an array when expanding
16794 invokeinterface.
16795 (java_push_constant_from_pool): Temporary use permanent_obstack
16796 for CONSTANT_string
16797 * parse.c (get_ref_constant): Temporary use permanent_obstack to
16798 create constant references.
16799 (get_constant): Temporary use permanent_obstack to create constant.
16800 (load_class): Temporary use permanent_obstack to load class.
16801 (jcf_parse): Temporary use permanent_obstack to perform class
16802 layout.
16803 * typeck.c: (parse_signature_string): Temporary use permanent_obstack.
16804 (build_java_signature): Temporary use permanent_obstack.
16805 * verify.c: (verify_jvm_instruction): removed unnecessary verification
16806 on ACC_SUPER flag.
16807 * java-tree.h (METHOD_NATIVE, METHOD_TRANSIENT): Defined.
16808 (FIELD_VOLATILE, FIELD_TRANSIENT): Defined.
16809 (CLASS_P): Defined
16810
16811 1997-09-11 Per Bothner <bothner@cygnus.com>
16812
16813 * class.c (append_gpp_mangled_type): Fix typo.
16814 (emit_register_class): Use main_class to get class object, rather
16815 than looking for no-longer-existing static decl starting with _CL.
16816 * typeck.c (parse_signature_type): Promote array element type
16817 if it is a RECORD_TYPE.
16818
16819 1997-09-10 Per Bothner <bothner@cygnus.com>
16820
16821 * class.c (push_class_static_dummy_field): New function.
16822 (mangle_static_field): New. Do G++-style mangling of static fields.
16823 (layout_class): Mandle static fields here, not in add_field.
16824 (build_class_ref): The class object is now a dummy static field.
16825 * decl.c (find_local_variable): Look for best, instead of first match.
16826 * expr.c (push_type): Always promote_type, not just for RECORD_TYPE.
16827 (build_java_athrow): Don't check here if exception is Throwable.
16828 * java-tree.h (TYPE_UNSET): Renamed to TYPE_UNKNOWN.
16829 (TYPE_USED): Removed. No longer used ...
16830 * parse.c (jcf_parse): Call push_class_static_dummy_field.
16831 * verify.c (push_pending_label): New function.
16832 (push_pending_block): Renamed to check_pending_block.
16833 (merge_types): Remove unneeded suuport for TYPE_UNUSED.
16834 (verify_jvm_instructions): Only reset prev_eh_ranges (to force
16835 re-checking possible handlers) after a store (less wasted work).
16836 Check for null handler (finally) before calling add_handler.
16837 Various changes to (finally?) correctly handle try/finally.
16838
16839 1997-09-09 Brendan Kehoe <brendan@lisa.cygnus.com>
16840
16841 * class.c: Include stdio.h.
16842
16843 1997-09-04 Per Bothner <bothner@cygnus.com>
16844
16845 * expr.c (expand_invoke): Use COMPOUND_EXPR (and TREE_SIDE_EFFECTS)
16846 to make sure class is initialized before static/special invoke.
16847
16848 * verify.c (verify_jvm_instructions): On a store instruction,
16849 call find_local_variable to force pre-allocation of decl and rtx.
16850 * decl.c (push_jvm_slot): Set DECL_REGISTER on stack slots.
16851
16852 1997-09-03 Per Bothner <bothner@cygnus.com>
16853
16854 * class.c (build_class_ref): Strip off "promoted_" if need be.
16855 (make_field_value): Call build_java_signature when needed.
16856 (layout_class): Don't make_function_rtl if METHOD_ABSTRACT.
16857 * expr.c (build_java_athrow): Don't push_value of exception.
16858 (build_java_binop): Implement COMPARE_L_EXPR and COMPARE_G_EXPR to
16859 match specification of [fd]cmp[lg] for NaNs.
16860 (expand_byte_code): Add support for exception handler ranges.
16861 * except.c: Add skeleton for EH code-generation.
16862 * verify.c (merge_types): Treat all promoted integral types as equal.
16863 * constants.c (build_constants_constructor): To force creation of
16864 current_constant_pool_data_ref, call build_constant_data_ref.
16865
16866 * javaop.def (lload): Fix typo.
16867 * jcf-dump.c (main): Clear filename to prevent possibly-bad free.
16868
16869 1997-09-02 Brendan Kehoe <brendan@lisa.cygnus.com>
16870
16871 * parse.c: Don't include function.h.
16872
16873 1997-08-27 Per Bothner <bothner@cygnus.com>
16874
16875 * except.[ch]: New files.
16876 * Makefile.in (JAVA_OBJS): Add except.o
16877 * expr.c: Temporary warning about unimplemented exceptions.
16878 * verify.c: Verify exception handlers.
16879
16880 * jcf-dump.c (disassemble_method): Print exception table.
16881
16882 1997-08-27 Alexandre Petit-Bianco <apbianco@cygnus.com>
16883
16884 * expr.c (verify_jvm_instructions): Started a thorough
16885 verification of invoke* bytecodes.
16886 (expand_byte_code): flush quick stack if PC is the target of a
16887 branch. and undef RET (conflicting with config/i386/i386.h).
16888 (expand_java_arrayload): Fixed bogus cast, when Boolean type is
16889 used.
16890 (expand_invoke): Now handles invokeinterface and do more
16891 verification according to the bytecode.
16892 (lookup_field): Don't try to load the class if processing
16893 dtable_type.
16894 (can_widen_reference_to): Now handles interfaces.
16895 * decl.c (init_decl_processing): New global variable
16896 soft_lookupinterfacemethod_node, declared in java-tree.h.
16897 Call set_super_info on string_type_node.
16898 * java-tree.h (CLASS_INTERFACE, CLASS_ABSTRACT, CLASS_SUPER): Now
16899 defined.
16900 * class.c (set_super_info): Fills the CLASS_* flags according to
16901 access_flags.
16902 (get_access_flags_from_decl): Handles all class flags.
16903
16904 1997-08-26 Per Bothner <bothner@cygnus.com>
16905
16906 * class.c (add_method): Zero out newly-allocated DECL_LANG_SPECIFIC.
16907 * parse.c (yyparse): Check for abstract method, and missing code.
16908 * expr.c (expand_byte_code): Change interface.
16909 * lang.c (put_decl_node): Print promoted types prettier.
16910 * verify.c (verify_jvm_instruction): Change interface.
16911 Partial support for scanning exception table.
16912 For load instructions, handle promoted integral types.
16913
16914 1997-08-21 Per Bothner <bothner@cygnus.com>
16915
16916 * verify.c: New file, with contents moved from expr.c.
16917 * expr.c: Bunch of stuff (mostly verification) moved to verify.c.
16918 * typeck.c (is_array_type_p): Moved here from expr.c.
16919 * java-tree.h: Add some now-needed function declarations.
16920 * Makefile.in (JAVA_OBJS): Added verify.o.
16921
16922 1997-08-20 Alexandre Petit-Bianco <apbianco@cygnus.com>
16923
16924 * class.c (add_method): Sets the METHOD_SYNCHRONIZED flag, sets the
16925 METHOD_ABSTRACT flag.
16926
16927 * java-tree.h (METHOD_SYNCHRONIZED): Set to DECL_LANG_FLAG_4.
16928 (IS_METHOD_CLINIT_P, IS_METHOD_INIT_P): New macros.
16929 (METHOD_ABSTRACT): Set to DECL_LANG_FLAG_5
16930
16931 * decl.c (soft_monitorenter_node, soft_monitorexit_node): New global
16932 variables.
16933 (start_java_method): Hook for SYNCHRONIZED methods.
16934
16935 * expr.c (build_java_jsr, build_java_ret): New functions
16936 (JSR,PRE): New macros
16937 (PRE_TABLE_SWITCH, PRE_LOOKUP_SWITCH): Fixed and secured.
16938 (verify_jvm_instructions): tableswitch, lookupswitch,
16939 monitorenter, monitorexit, goto_w: verified.
16940 (LOOKUP_SWITCH, TABLE_SWITCH): Fixed generation of default: label
16941 (build_java_monitor): New function.
16942 (MONITOR_OPERATION): Modified to call build_java_monitor()
16943 (verify_jvm_instructions): Started a thorough verification of
16944 invoke* bytecodes.
16945
16946 1997-08-19 Per Bothner <bothner@cygnus.com>
16947
16948 Support verification of jsr/ret subroutines (used for try/finally).
16949 * decl.c (return_address_type_node): New type node.
16950 * java-tree.h (LABEL_RETURN_LABEL, LABEL_RETURN_TYPE_STATE,
16951 RETURN_MAP_ADJUSTED, LABEL_RETURN_LABELS, LABEL_IN_SUBR,
16952 LABEL_SUBR_START, LABEL_SUBR_CONTEXT, BCODE_VERIFIED): New macros.
16953 (TYPE_UNSET, TYPE_SECOND, TYPE_NULL, TYPE_RETURN_ADDR, TYPE_UNUSED,
16954 TYPE_USED): New macros for special types in type_map.
16955
16956 * java-tree.h (BCODE_JUMP_TARGET): Renamed to BCODE_TARGET.
16957 (BCODE_BACKWARDS_TARGET, CODE_FORWARDS_TARGET): Replaced by
16958 BCODE_JUMP_TARGET.
16959 * expr.c (expand_byte_code): Fix logic to warn of unused instructions.
16960
16961 * expr.c (can_widen_reference_to): New function.
16962 (pop_type): Use it.
16963 (merge_type_state): Support handling start of subroutine.
16964 (push_pending_block): Return char* error message, instead of calling
16965 fatal on an error. Also handle subroutines.
16966 (verify_jvm_instructions): Handle errors from push_poending_block.
16967 Support jsr and ret instructions.
16968
16969 1997-08-19 Per Bothner <bothner@cygnus.com>
16970
16971 * jcf-io.c (find_classfile): Fix thinko.
16972 * jcf-dump.c: Add CONVERT2 (to match changed javaop.def).
16973
16974 1997-08-12 Jason Merrill <jason@yorick.cygnus.com>
16975
16976 * Makefile.in (BISON): Remove.
16977
16978 1997-08-07 Per Bothner <bothner@cygnus.com>
16979
16980 * Makefile.in: Convert to autoconf.
16981 * config-lang.in (outputs): Added java/Makefile.
16982
16983 * Make-lang.in, lang-specs.h, config-lang.in, Makefile.in:
16984 Rename cc1java to jc1.
16985
16986 * lang.c (init_parse, finihs_parse): New functions #ifdef USE_CPPLIB.
16987 * Makefile.in (INTERNAL_CFLAGS): Add @extra_c_flags.
16988
16989 * class.c (class_depth): Do load_class if needed.
16990
16991 Mostly better verification.
16992 * decl.c (pushdecl): Set TYPE_STUB_DECL for a type.
16993 (init_decl_processing): Change return type of soft_checkcast.
16994 * expr.c (expand_java_CHECKCAST): Do push_value of the "casted" value.
16995 * lang.c (put_decl_string, put_decl_node, lang_printable_name,
16996 lang_print_error): New functions.
16997 (lang_init): Set global hook print_error_function to lang_print_error.
16998 * expr.c: In the type_map ptr_type_node is only used for null now.
16999 (pop_type, merge_types): Hence ptr_type_node matches any reference.
17000 (merge_types): Dererence pointer to record types before comparing.
17001 (decode_newarray_type, merge_types): On error just return NULL.
17002 (build_java_binop): Add preliminary implementation (with warning)
17003 for COMPARE_L_EXPR and COMPARE_G_EXPR (i.e. [fd]cmp[lg]).
17004 (lookup_label): Set DECL_IGNORED_P (for dwarf2out).
17005 (expand_compare, expand_java_goto, expand_java_call): Don't
17006 push_pending_block, since that only makes sense when verifying.
17007 (merge_type_state): Different return codes.
17008 (push_pending_block): A block may need to be verified more than once.
17009 (expand_byte_code): Warn about unused code at code generation time.
17010 (verify_jvm_instruction): Changed logic, since code may need to be
17011 re-verified if type-state has changed. Also, better error handling.
17012 Implement acmpeq, acmpne, pop, pop2, swap, checkcast, instanceof.
17013 Improve newarray, anewarray, ?aload, athrow,
17014 * java-tree.h (LABEL_CHANGED): New macro.
17015
17016 1997-08-05 Alexandre Petit-Bianco <apbianco@cygnus.com>
17017
17018 * decl.c (soft_athrow_node): New global variable initialized.
17019 * javaop.def (i2b, i2c, i2s): Invoke CONVERT2
17020 * typeck.c (convert): Added support for REAL_TYPE.
17021 (convert_to_char): New function.
17022 (convert): Handle CHAR_TYPE.
17023 * expr.c (expand_java_arraystore): Modified because CHAR/BYTE/BOOLEAN/
17024 SHORT now expect INT but store as CHAR/BYTE/BOOLEAN/SHORT.
17025 (expand_java_arrayload): CHAR/BYTE/BOOLEAN/SHORT now convert result to
17026 promoted type.
17027 (verify_jvm_instructions): Added break a the end of bogus unop: label.
17028 (OPCODE_<b|c|s>astore): Pop an int operand from the type stack
17029 (OPCODE_<b|c|s>astore): Push the promoted type onto the stack
17030 (process_jvm_instruction): New macro CONVERT2 for i2c, i2s and i2b.
17031 (JAVA_ARRAY_LENGTH_OFFSET, JAVA_ARRAY_DATA_OFFSET): Modified
17032 to Use The Right Things.
17033 (pop_type): Accept CHAR/BYTE/BOOLEAN/SHORT promoted type as
17034 compatible with INT. BOOLEAN is made equivalent to BYTE.
17035 (OPCODE_athrow, OPCODE_aconst_null, OPCODE_ifnull,
17036 OPCODE_ifnonnull): Now supported.
17037 (build_java_athrow): New function.
17038
17039 1997-08-04 Per Bothner <bothner@cygnus.com>
17040
17041 Rename method name <init> to match G++ (and fix mangling).
17042 * class.c (layout_class): Replace method name of <init> by class name.
17043 (make_method_value): Do inverse renaming of constructor from <init>.
17044 * java-tree.h (DECL_CONSTRUCTOR_P): New macro.
17045 * typeck.c (lookup_java_constructor): New function.
17046 * expr.c (expand_invoke): If method_name is <init>, call
17047 lookup_java_constructor to find constructor.
17048
17049 * parse.c (get_constant): Handle CONSTANT_Float and CONSTANT_Double.
17050
17051 1997-08-01 Alexandre Petit-Bianco <apbianco@cygnus.com>
17052
17053 * parse.c (get_class_constant): Modified to handle array "classes"
17054 * typeck.c (set_local_type): Bug fixed when filling type_map[] with
17055 wide type.
17056 (convert): Modified to handle real type.
17057 * java-tree.h (soft_badarrayindex_node, soft_anewarray_node,
17058 soft_multianewarray, soft_newarray_node, soft_throw_node): New global
17059 variables declared.
17060 * decl.c (soft_badarrayindex_node, soft_anewarray_node,
17061 soft_multianewarray, soft_newarray_node, soft_throw_node): New
17062 global variables initialized.
17063 (find_local_variable): Handles the case of a pointer
17064 (end_java_method): Restore the use of one more scope
17065 * expr.c (build_java_arraynull_check, build_java_arrayaccess,
17066 build_java_array_length_access, expand_java_arrayload,
17067 expand_java_arraystore, expand_java_array_length,
17068 expand_java_multianewarray, expand_java_anewarray,
17069 build_java_check_indexed_type, is_array_type_p,
17070 build_java_throw_out_of_bound_exception): New functions.
17071 (STORE_INTERNAL): Now forces type of the decl to be type of the value.
17072 (OPCODE_arraylength, OPCODE_newarray, OPCODE_<t>astore,
17073 OPCODE_<t>aload): Implemented code for verification.
17074 (ARRAY_STORE, ARRAY_LOAD, ARRAY_LENGTH, ARRAY_NEW_PTR, ARRAY_NEW_NUM
17075 ARRAY_NEW_MULTI): Macro defined.
17076 (CONVERT): Modified to invoke convert().
17077 (case OPCODE_aload2): Fixed index typo from 2 to 1.
17078
17079 1997-07-31 Per Bothner <bothner@cygnus.com>
17080
17081 * class.c (push_class): Set DECL_ARTIFICIAL (for dbxout.c).
17082 (build_class_ref, is_compiled_class): Handle pointer-to-record types.
17083 (make_class_data): Field name needs '/' as package prefix.
17084 * expr.c (type_stack_dup, java_stack_dup): Fix fencepost errors.
17085
17086 1997-07-25 Per Bothner <bothner@cygnus.com>
17087
17088 Implement debug information for local variables.
17089 * java-tree.h (DECL_CODE_LENGTH, DECL_ARG_SLOT_COUNT,
17090 DECL_LOCAL_SLOT_NUMBER, DECL_LOCAL_START_PC, DECL_LOCAL_END_PC,
17091 DECL_LOCAL_SLOT_CHAIN): New macros.
17092 (struct lang_decl_var): New type.
17093 * parse.c (give_name_to_locals): Move to decl.c.
17094 * decl.c (give_name_to_locals): Re-written to Do The Right Thing.
17095 (start_java_method): Re-write parameter handling.
17096 (pending_local_decls): New global variable.
17097 (push_jvm_slot, maybe_pushlevels, maybe_poplevels): New functions.
17098 (find_local_variable): Accept pc so we can skips decls not in range.
17099 (struct binding_level): Add end_pc field.
17100 * expr.c (expand_byte_code): Call maybe_pushlevels and maybe_poplevels.
17101 (various): Change so current pc gets passed to find_local_variable.
17102
17103 * decl.c (init_decl_processing): Re-arrange fields in
17104 class_type_node and and method_type_node to match kaffe 0.9.1.
17105 * class.c (make_method_value, make_class_data): Update
17106 initializations to match.
17107
17108 1997-07-16 Per Bothner <bothner@cygnus.com>
17109
17110 * class.c (unicode_mangling_length, emit_unicode_mangled_name,
17111 append_gpp_mangled_name, append_gpp_mangled_type): New functions.
17112 (push_super_field): New function.
17113 (make_class_data): Handle inheritance of class static initializer.
17114 (layout_class): New name mangling.
17115 * constants.c (build_constant_data_ref): Init type of data array
17116 to a one-element array.
17117 (build_constants_constructor): Set DECL_SIZE from complete array type.
17118 * decl.c: Rename class_type, object_type etc to class_type_node,
17119 object_type_node etc. Make former inherit from latter.
17120 * expr.c (expand_invoke): Add cast of function address.
17121 * java-tree.h (TYPE_ARRAY_ELEMENT, PUSH_SUPER_VALUE): New.
17122 * parse.c (yyparse): Don't call layout_class here.
17123 * typeck.c (build_java_array_type): Set TYPE_ARRAY_ELEMENT.
17124
17125 1997-06-14 Per Bothner <bothner@cygnus.com>
17126
17127 * decl.c, class.c: Update method type to match latest Kaffe snapshot.
17128 * constants.c (lookup_name_constant): Renamed to alloc_name_constant.
17129 (alloc_class_constant): New.
17130 * expr.c (expand_invoke): Make sure method's class is initialized.
17131 * class.c (interits_from_p, emit_register_class): New functions.
17132 * parse.c (yyparse): Call emit_register_class.
17133
17134 1997-06-09 Per Bothner <bothner@cygnus.com>
17135
17136 * constants.c: New file, to handle constant pool.
17137 * Makefile.in (JAVA_OBJS): Add constants.o.
17138 * decl.c (init_decl_processing): Update, fix, finish various structs.
17139 (pushdecl_top_level): New.
17140 * parse.c (layout_class): Moved to class.c.
17141 * expr.c (java_push_constant_from_pool): New function.
17142 * class.c (build_class_ref): Make work fully
17143 (make_class_data): Emit super-class, constant pool, interface vector.
17144
17145 1997-06-03 Per Bothner <bothner@cygnus.com>
17146
17147 java-tree.h (DECL_SIGNATURE, BCODE_EMITTED): Remove.
17148 (LABEL_VERIFIED, BCODE_EXCEPTION_TARGET, TYPE_ARRAY_P): New.
17149 * class.c (class_depth): New function.
17150 (lookup_named_class): Replaced by new function lookup_class.
17151 * decl.c (object_type_node, string_type_node): New.
17152 Remove various types that we no longer need.
17153 * expr.c (verify_jvm_instructions): New separate verifier pass.
17154 (push_type, pop_type): New functions for verifier.
17155 (type_stack_dup, pop_argument_types, merge_types): Likewise.
17156 (expand_byte_code): Simplify, since we assume already verified.
17157 (expand_invoke): Now mostly works.
17158 * javaop.def: Rename ldc1->ldc, ldc2->ldc_w, ldc2w->ldc2_w.
17159 * lang.c (main_class): Move to parse.c. Don't make_class yet.
17160 * parse.c: Wait to allocate class object until we know its name.
17161 (layout_class): Calculate DECL_VINDEX for each virtual method.
17162 * typeck.c (get_array_type): Rename to ...
17163 (build_java_array_type): ... and provide working implementation.
17164 (build_java_signature): New function - build Java signature of type.
17165 (set_java_signature): New function - cache signature with type.
17166 (lookup_java_method): New function.
17167
17168 1997-05-06 Per Bothner <bothner@deneb.cygnus.com>
17169
17170 * class.c (ident_subst): Take extra SUFFIX parameter.
17171 (add_field): Set DECL_ASSEMBLER_NAME of static fields; more.
17172 (set_constant_value, build_static_field_ref, is_compiled_class): New.
17173 (build_class_ref): Actually implement.
17174 * decl.c, java-tree.h: Renamed some xx_type to xx_type_node.
17175 * decl.c (builtin_function): New.
17176 (init_decl_processing): Update for current Kaffe. Declare some
17177 builtin Kaffe functions.
17178 * expr.c (build_address_of): New.
17179 (expand_java_NEW, expand_java_INSTANCEOF, expand_java_CHECKCAST):
17180 Renamed (from expand_java_new etc), and added working implementations.
17181 (build_field_ref): Now also handle static fields.
17182 (expand_invoke): Implement invokestatic, and start implement rest.
17183 * java-opcodes.h: Use javaop.def to avoid duplicated list.
17184 * javaop.def: Rename invokevirt -> invokevirtual.
17185 * lang.c (use_handles): Removed.
17186 * parse.c: Add support for ConstantValue attribute.
17187 Handle nested loading of a class. (JPOOL_UTF): New.
17188
17189 1997-03-11 Per Bothner <bothner@deneb.cygnus.com>
17190
17191 * expr.c (expand_java_pushc): Support #ifndef REAL_ARITHMETIC case.
17192
17193 1997-02-27 Per Bothner <bothner@deneb.cygnus.com>
17194
17195 * Make-lang.in (java.install-man): New empty rule.
17196 * typeck.c (set_local_type): New function.
17197 * expr.c (STORE_INTERNAL): Call find_local_variable,
17198 not find_stack_slot. Call set_local_type.
17199
17200 1997-02-12 Per Bothner <bothner@kalessin.cygnus.com>
17201
17202 * java-tree.h: Various new macros for constructing RECORD_TYPEs,
17203 and building RECORD_TYPE CONSTRUCTORs.
17204 Also support for creating Utf8Const objects from an INDETIFIER_NODE.
17205
17206 * lang.c (use_handles): Change the default to 0.
17207 * decl.c: Define and build class_type, field_type, utf8const_type.
17208 * class.c (make_class_data, make_field_value,
17209 get_access_flags_from_decl, build_class_ref, build_utf8_ref,
17210 hashUtf8String, strLengthUtf8, mangled_classname:
17211 Functions to build reflective data structures.
17212 * parse.c (yyparse): Call make_class_data.
17213
17214 * jcf-io.c (open_class, find_classfile): New functions.
17215 * jcf-dump.c: Support reading classfile from explicitly-named
17216 class file (without CLASSPATH searching).
17217
17218 1996-10-24 Per Bothner <bothner@deneb.cygnus.com>
17219
17220 * jcf-reader.c: Add parameter list to HANDLE_CONSTANT_Utf8.
17221 * parse.c (JPOOL_UTF_LENGTH, JPOOL_UTF_DATA, HANDLE_CONSTANT_Utf8):
17222 Override jcf-reader macros so CONSTANT_Utf8 becomes tree node here.
17223 (get_constant): Now trivial for CONSTANT_Utf8.
17224
17225 * jcf.h: Make NEW_CPOOL the default.
17226 * jcf.h, jcf-reader.c, parse.c: Remove support for !NEW_CPOOL.
17227
17228 1996-10-24 Per Bothner <bothner@deneb.cygnus.com>
17229
17230 New directory.