[multiple changes]
[platform/upstream/gcc.git] / gcc / java / ChangeLog
1 Sat May 22 13:54:41 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2
3         * parse.y (formal_parameter:): Construct argument tree list
4         element even if a yet unsupported final parameter was encountered.
5
6 Tue May 18 00:28:58 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
7
8         * parse.y (finish_method_declaration): Issue errors for native or
9         abstract methods declared with a method body, as well as for non
10         native or non abstract methods with no method body.
11
12 1999-05-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13
14         * class.c (build_utf8_ref): Initialize variable `field'.
15
16         * decl.c (init_decl_processing): Initialize variable `field'.
17
18         * expr.c (build_known_method_ref): Mark parameters `method_type',
19         `method_signature' and `arg_list' with ATTRIBUTE_UNUSED.
20         (process_jvm_instruction): Likewise for parameter `length'.
21
22         * jvspec.c (lang_specific_driver): Mark variables `saw_math',
23         `saw_libc', `saw_gc', `saw_threadlib' and `saw_libgcj' with
24         ATTRIBUTE_UNUSED.
25
26         * parse.y (maybe_generate_clinit): Remove unused variable
27         `has_non_primitive_fields'.
28         (find_in_imports_on_demand): Initialize variables `node_to_use'
29         and `cl'.
30         (patch_binop): Likewise for variable `prom_type'.
31         (patch_unaryop): Likewise for variable `prom_type'.
32
33         * verify.c (verify_jvm_instructions): Likewise for variable `last'.
34
35         * xref.c (xref_table): Add missing initializer.
36
37 1999-05-14  Tom Tromey  <tromey@cygnus.com>
38
39         * java-except.h (struct eh_range): Removed unused `next' member.
40         * verify.c (verify_jvm_instructions): Call check_nested_ranges
41         after adding all exception handlers.  Sort exception ranges in
42         order of start PC.
43         (struct pc_index): New structure.
44         (start_pc_cmp): New function.
45         * except.c (add_handler): Return `void'.  Don't call link_handler;
46         instead construct an ordinary linked list and do range
47         coalescing.
48         (check_nested_ranges): New function.
49         (link_handler): Changed interface to allow merging of eh_ranges.
50         Split overlapping ranges.  Return `void'.
51
52 Mon May 17 19:20:24 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
53
54         * parse.y (constructor_block_end:): New rule, tagged <node>.
55         (constructor_body:): Use `constructor_block_end' instead of
56         `block_end'.
57
58 Mon May 17 18:01:40 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
59
60         * parse.y (statement_nsi:): Pop `for' statement block.
61         (java_complete_lhs): Labeled blocks containing no statement are
62         marked as completing normally.
63
64 Fri May 14 12:31:08 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
65
66         * xref.c (xref_set_current_fp): New function, defined.
67         * xref.h (xref_set_current_fp): New function, prototyped.
68
69 Fri May 14 11:57:54 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
70
71         * check-init.c (check_init): Take into account that
72         LABELED_BLOCK_STMT can be empty.
73
74 Thu May 13 18:30:48 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
75
76         * parse.y (java_check_regular_methods): Warning check on not
77         overriding methods with default access in other packages does not
78         apply to `<clinit>'.
79         (java_complete_lhs): If block body is an empty_stmt_node, replace
80         it by NULL_TREE. This prevents gcc from generating an irrelevant
81         warning.
82
83 Thu May 13 13:23:38 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
84
85         * check-init.c (check_init): Removed code accepting to see things
86         falling through default:, when doing xrefs.
87         * java-tree.h (do_not_fold): New global variable, declared.
88         * parse.y (do_not_fold): New global variable, defined.
89         (java_complete_expand_method): Set `do_not_fold' to the value of
90         `flag_emit_xref'. When doing xrefs: copy the thrown exceptions,
91         and reinstall them after them have been purged; do not check for
92         initializations; do not issue missing return errors.
93         (java_complete_lhs): Do not attempt to patch INSTANCEOF_EXPR nodes
94         when doing xrefs.
95         (patch_binop): Skip the fold part when doing xrefs.
96         (build_string_concatenation): Skip the concatenation part when
97         doing xrefs.
98         (patch_synchronized_statement): Do not generate a try-finally when
99         doing xrefs.
100         (patch_throw_statement): When doing xrefs, do not call BUILD_THROW
101         and keep the location where the throw was seen.
102         * typeck.c (convert): When `do_not_fold' is set, do not attempt
103         any treatment on the converted node an simply return a NOP_EXPR of
104         the targeted type.
105         * xref.c (xref_get_data): New function, defined.
106         * xref.h (xref_get_data): New function, declared.
107         (XREF_GET_DATA): Use xref_get_data.
108         
109 1999-05-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
110
111         * gjavah.c (print_include): Cast the result of `strlen' to int
112         when comparing against a signed value.
113         (add_namelet): Likewise.
114
115 1999-05-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
116
117         * expr.c (expand_invoke): Mark parameter `nargs' with
118         ATTRIBUTE_UNUSED.
119         (PRE_LOOKUP_SWITCH): Likewise for variable `match'.
120
121         * jcf-io.c (jcf_unexpected_eof): Mark parameter `count' with
122         ATTRIBUTE_UNUSED.
123
124         * jcf-reader.c (get_attribute): Cast a value to long
125         when comparing against a signed expression.  Likewise.
126
127         * lex.h: Never define HOST_WIDE_INT, HOST_BITS_PER_WIDE_INT or
128         HOST_BITS_PER_CHAR.
129
130 1999-05-11  Andrew Haley  <aph@cygnus.com>
131
132         * parse.y (source_end_java_method): If the current method contains
133         any exception handlers, force asynchronous_exceptions: this is
134         necessary because signal handlers in libjava may throw exceptions.
135         * decl.c (end_java_method): Ditto.
136
137 1999-05-11  Tom Tromey  <tromey@cygnus.com>
138
139         * Make-lang.in (jvspec.o): Don't define WITH_THREAD_x or WITH_GC_x
140         flags.
141         * jvspec.c (THREAD_NAME): Removed.
142         (GC_NAME): Likewise.
143         (MATHLIB): Likewise.
144         (WITHLIBC): Likewise.
145         (GCLIB): Likewise.
146         (THREADLIB): Likewise.
147         (MATH_LIBRARY): Likewise.
148         (lang_specific_driver): Don't add `-l' options to command line.
149         Instead, add a single --specs option.  Recognize `-L' options and
150         use them to search for spec file.
151         (find_spec_file): New function.
152         (SPEC_FILE): New define.
153
154 Tue May 11 11:46:36 1999  Dave Brolley  <brolley@cygnus.com>
155
156         * lang-options.h: -MD, -MMD, -M and -MM not needed here for
157         cpplib-enabled build.
158
159 1999-05-05  Per Bothner  <bothner@cygnus.com>
160
161         * class.c (make_field_value):  DECL_INITIAL may be a string literal;
162         temporarily zero it while calling rest_of_decl_compilation.
163
164         * java-tree.h (string_ptr_type_node):  Add declaration.
165         * decl.c:  Define and initialize string_ptr_type_node.
166         * parse.y (patch_string_cst):  Use string_ptr_type_node.
167
168         * parse.h (LOOP_HAS_LABEL_P, LOOP_HAS_LABEL_SKIP_P):  Removed.
169         * parse.y (for_statement):  Now unconditionally exit_block.
170         (finish_labeled_statement):  No longer exit_block if for-loop.
171         (patch_loop_statement):  Check harder if the loop is already labeled.
172
173         * parse.y (patch_initialized_static_field):  Removed function.
174         (maybe_generate_clinit):  Removed special handling for interfaces.
175         (java_complete_expand_methods):  Do a preliminary java_complete_tree
176         on <clinit> to determine if it can be removed.
177         (java_complete_expand_method):  Remove special handling for <clinit>.
178         (java_complete_lhs):  For BLOCK and EXPR_WITH_FILE_LOCATION
179         optimize if we get back empty_stmt_node.
180         For MODIFY_EXPR, re-do checking of static initializers.
181         (fold_constant_for_init):  Don't return immediate if VAR_DECL.
182         For VAR_DECL, pass correct context.
183
184         * verify.c (verify_jvm_instructions):  Better error messages.
185
186 1999-05-03  Tom Tromey  <tromey@cygnus.com>
187
188         * parse-scan.y (interface_declaration): Call
189         report_class_declaration for interfaces.
190
191 1999-04-30 20:54 -0400  Zack Weinberg  <zack@rabi.columbia.edu>
192
193         * Makefile.in: Remove -v from bison command lines.
194
195 Fri Apr 30 17:54:40 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
196
197         * check-init.c (check_init): Exclude a case of error when doing
198         xrefs.
199         * class.c (layout_class_method): Don't generate the error message
200         twice when compiling from source.
201         * lang-options.h: Added `-Wredundant-modifers' and
202         `-Wunusupported-jdk11' flags and help text.
203         * lang.c (lang_decode_option): Added support for
204         `-Wunsupported-jdk11' and `-Wredundant-modifiers'. 
205         flag_static_local_jdk11 and flag_redundant set accordingly.
206         * lex.c (java_lex): Call BUILD_OPERATOR on CCB_TK.
207         * parse.h (EXPR_WFL_ADD_COL): New macro.
208         (DECL_END_SOURCE_LINE): Likewise.
209         (DECL_INHERITED_SOURCE_LINE): Likewise.
210         * parse.y (static_ref_err): New function, prototyped.
211         (CCB_TK): Now tagged <operator>.
212         (class_body:): Remember the location of the closing '}' of a class
213         definition when doing xrefs.
214         (block:): Likewise.
215         (block_end:): Likewise.
216         (create_class): Remember the location of the inherited class
217         identifier when doing xrefs.
218         (register_fields): Added test on first operand of `init' before
219         testing it TREE_CODE.
220         (method_header): Store the location of the class identifier in the
221         class decl when doing xrefs.
222         (finish_method_declaration): Don't combine first/last method line
223         when doing xref.
224         (java_check_regular_methods): Warning check on not overriding
225         methods with default access on other packages move before check on
226         static methods. Initialization of `aflags' also moved up.
227         (resolve_expression_name): Call static_ref_err to report the error.
228         (static_ref_err): New function, implemented.
229         (resolve_field_access): Returned simplified static field access
230         when doing xrefs.
231         (resolve_qualified_expression_name): Check for illegal use of
232         static fields in a non static context. Call static_ref_err to
233         report error in various places.
234         (java_complete_tree): Do not fold initialized static fields when
235         doing xrefs.
236         (java_complete_lhs): Likewise.
237
238 1999-04-29  Anthony Green  <green@cygnus.com>
239
240         * expr.c (generate_name): Use ASM_GENERATE_INTERNAL_LABEL to
241         create internal labels.
242         (lookup_label): Ditto.
243
244 Sat Apr 24 16:50:19 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
245
246         * class.c (layout_class_method): Generate <clinit>'s rtl for
247         interfaces.
248         * decl.c (complete_start_java_method): Don't call _Jv_InitClass
249         for interfaces' <clinit>.
250         * expr.c (lookup_field): Search for fields in interfaces.
251         (expand_invoke): Fixed indentation.
252         (expand_java_field_op): Likewise. Use IS_CLINIT.
253         * parse.h (JPRIMITIVE_TYPE_OR_VOID_P): Macro removed.
254         (IS_CLINIT): New macro.
255         * parse.y (type_declaration:): Call maybe_generate_clinit after an
256         interface was parsed.
257         (maybe_generate_clinit): Don't generate if the current class is an
258         interface with only fields of primitive types.
259         (reset_method_name): Use IS_CLINIT.
260         (java_complete_expand_method): Expand <clinit> when it exists for
261         interfaces. Use IS_CLINIT.
262         (resolve_expression_name): Use DECL_CONTEXT instead of
263         current_class to build static field references.
264         (java_complete_lhs): Use IS__CLINIT. Don't use SAVE_EXPR on
265         ARRAY_REF when doing xreferencing.
266         (check_final_assignment): Fixed typo in leading comment. Use
267         IS_CLINIT.
268         (patch_array_ref): Don't fully expand array references when
269         xreferencing.
270         (patch_return): Use IS_CLINIT.
271         (patch_throw_statement): Likewise.
272
273 1999-04-22  Tom Tromey  <tromey@cygnus.com>
274
275         * Make-lang.in (JAVA_SRCS): Added check-init.c.
276
277 Wed Apr 21 11:13:36 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
278
279         * decl.c (predef_filenames, predef_filenames_size): New globals
280         (init_decl_processing): predef_filenames and predef_filenames_size
281         initialized.
282         * java-tree.h (predef_filenames, predef_filenames_size): Declared
283         extern.
284         * jcf-parse.c (predefined_filename_p): New function.
285         (yyparse): Check that files on the command line are specified only
286         once and issue a warning otherwise.
287         * parse.h (JPRIMITIVE_TYPE_OR_VOID_P): New macro.
288         * parse.y (source_end_java_method): Nullify NOP method bodies, to
289         avoid a gcc warning with -W -Wall turned on.
290         (java_expand_classes): Abort if errors were encountered.
291         (java_complete_lhs): If the cross reference flag is set, wrap
292         field DECL node around a WFL when resolving expression name.
293         
294 Mon Apr 19 14:44:48 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
295
296         * lang.c (lang_decode_option): Fixed returned value when parsing
297         `-fxref=...' and `-Wall'.
298         * parse.y (source_end_java_method): Do not generate code when
299         flag_emit_xref is set.
300         (resolve_expression_name): Do not build static field access when
301         flag_emit_xref is set.
302         (resolve_field_access): No special treatment on `length' when
303         flag_emit_xref is set. Do not build qualified static field access
304         when flag_emit_xref is set.
305         (patch_invoke): Keep the method DECL as operand 0 of the CALL_EXPR
306         when flag_emit_xref is set.
307         (patch_assignment): Do not generate array store runtime check when
308         flag_emit_xref is set.
309         * xref.c (xref_flag_value): Fixed function declaration
310         indentation.
311         (xset_set_data): New function.
312         * xref.h (xref_set_data): Added prototype for new function.
313         (typedef struct xref_flag_table): New field data.
314         (XREF_GET_DATA): New macro.
315
316 1999-04-19  Tom Tromey  <tromey@cygnus.com>
317
318         * xref.h (enum): Removed trailing comma.
319
320         * parse.y (resolve_qualified_expression_name): Added missing
321         `break'.
322
323 Thu Apr 15 13:08:03 1999  Anthony Green  <green@cygnus.com>
324
325         * gjavah.c: New prototypes for java_float_finite and
326         java_double_finite.
327
328 Mon Apr 12 18:27:32 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
329
330         * parse.y (patch_unaryop): Fixed ++/-- operator check on array
331         references.
332
333 Tue Apr  6 23:15:52 1999  Jeffrey A Law  (law@cygnus.com)
334
335         * Makefile.in (TREE_H): Add tree-check.h.
336         (RTL_H): Add genrtl.h.
337
338 Tue Apr  6 15:15:51 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
339
340         * parse.y (patch_assignment): Added ArrayStoreException runtime
341         check.
342
343 1999-04-06  Per Bothner  <bothner@cygnus.com>
344
345         * expr.c (pop_type_0):  New function.
346         (pop_type):  Use pop_type_0.
347         * java-tree.h (pop_type_0):  New declaration.
348         * verify.c (verify_jvm_instructions):  Check return instructions.
349
350         * parse.y (patch_binop):  Don't fold if non-constant and emiting
351         class files.
352
353 Mon Apr  5 16:06:09 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
354
355         * Makefile.in (gjavah.o): Depend on $(JAVA_TREE_H).
356
357         * gjavah.c: Include math.h earlier.  Include tree.h/java-tree.h.
358         (main_jcf): Don't define.
359         (process_file): Don't set `main_jcf'.
360         
361         * java-tree.h (main_jcf): Don't declare.
362
363         * jcf-parse.c (main_jcf): Add static definition.
364
365         * lang.c (main_jcf): Don't define.
366
367 Mon Apr  5 15:43:51 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
368
369         * class.c (add_method_1): Cast the argument of `bzero' to PTR.
370
371         * decl.c (copy_lang_decl): Likewise for `bcopy'.
372
373         * jcf-depend.c: Include "config.h", not <config.h>.
374
375         * jcf-parse.c (jcf_figure_file_type): Cast the arguments of
376         `bcopy' to PTR.
377
378         * jcf-path.c: Include "config.h", not <config.h>.
379
380         * lex.c: Don't include various system header files.
381         (java_init_lex): Cast the argument of `bzero' to PTR
382
383         * parse-scan.y (java_push_parser_context): Likewise.
384
385         * parse.y (java_push_parser_context): Likewise.
386         (patch_bc_statement): Match format specifier to variable argument.
387
388         * xref.c: Don't include <stdio.h>.
389
390 Mon Apr  5 11:24:19 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
391
392         * parse.y (struct parser_ctxt *ctxp): Now global.
393         (declare_local_variables): Use WFL compound value for the
394         declaration source line value, when doing cross-referencing.
395
396 1999-03-31  Tom Tromey  <tromey@cygnus.com>
397
398         * gjavah.c (print_field_info): Allow constants of other types.
399         (print_include): Generate include when new name is proper prefix
400         of already printed name.
401         (add_namelet): Likewise.
402         (cxx_keyword_subst): New function.
403         (print_method_info): Use it.
404         (print_field_name): New function.
405         (get_field_name): New function.
406         (print_field_info): Use get_field_name and print_field_name.
407
408 Wed Mar 31 11:00:32 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
409
410         * Makefile.in (keyword.h): Generate using gperf language 'C', not
411         'KR-C', so gperf uses the `const' keyword on strings.
412
413         * keyword.gperf (java_keyword): Const-ify a char*.
414
415 Tue Mar 30 11:31:53 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
416
417         * parse.y (patch_bc_statement): Fixed identation and a bogus
418         `printf' format.
419
420 Tue Mar 30 11:29:29 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
421
422         * parse.y (patch_assignment): Allow static variables in other
423         classes to be assigned.
424
425 Sun Mar 28 22:12:10 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
426
427         * class.c (maybe_add_interface): Remove unused variable
428         `interface_binfo'.
429         (make_class_data): Use = for assignment, not ==.  Likewise.
430         (emit_register_classes): Remove unused variable `decl'.
431
432         * lex.c: Fix comment so as not to contain an embedded `/*'.
433
434         * verify.c (verify_jvm_instructions): Remove unused variable
435         `self_type'.    
436
437 Sat Mar 27 15:49:18 1999  Per Bothner  <bothner@cygnus.com>
438
439         * parse.y (complete_loop_body):  Rename to finish_loop_body.
440         (complete_labeled_statement):  Rename to finish_labeled_statement.
441         (complete_for_loop):  Rename to finish_for_loop.
442         (complete_method_declaration):  Rename to finish_method_declaration.
443
444         * java-tree.h (continue_identifier_node):  New global node.
445         * decl.c:  Define and initialize continue_identifier_node.
446         * parse.y (generate_labeled_block):  Remove - no longer needed.
447         (build_loop_body):  Use continue_identifier_node for continue block.
448         (finish_labeled_statement):  Also do pop_labeled_block actions.
449         (java_complete_lhs):  POP_LOOP even if error.
450         (build_labeled_block):  Special handling for continue_identifier_node.
451         (patch_loop_statement):  Re-organize.
452         (patch_bc_statement):  Re-write.
453
454 Sat Mar 27 15:13:21 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
455
456         * parse.h (EXPR_WFL_GET_LINECOL): Set a line and column count
457         using a WFL compound value.
458         * parse.y (xref.h): Include.
459         (maybe_create_class_interface_decl): Set DECL_SOURCE_LINE to the
460         WFL compound value.
461         (register_fields): Set WFL compound value to lineno if doing
462         xrefs.
463         (java_complete_expand_method): Call expand_xref if flag_emit_xref
464         is set.
465         * xref.c (system.h, jcf.h, parse.h, obstack.h): Include.
466         * xref.h (expand_xref): Prototype renamed from xref_generate.
467
468 Sat Mar 27 14:16:32 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
469
470         * parse.h (BLOCK_CHAIN_DECL): New use GET_CURRENT_BLOCK.
471         (GET_CURRENT_BLOCK): New macro.
472         * parse.y (current_static_block): New global variable.
473         (method_body:): Define action.
474         (complete_method_declaration): Set current_function_decl to NULL
475         when work on the current method is done.
476         (declare_local_variables): Use GET_CURRENT_BLOCK.
477         (java_method_add_stmt): Likewise.
478         (java_complete_expand_method): Disable the use of `this' when
479         expanding <clinit>.
480         (enter_a_block): If no current method exist, use
481         current_static_block to link static initializer blocks.
482         (exit_block): Rewritten to use current_static_block when no current
483         method decl exists.
484         (lookup_name_in_blocks): Use GET_CURRENT_BLOCK.
485         (patch_return): Forbid the use of `return' in static initializers.
486         (patch_throw_statement): Fixed indentation. Issue specific error
487         for uncaught thrown checked exception in static initializer
488         blocks. Removed FIXME.
489
490 1999-03-25  Zack Weinberg  <zack@rabi.columbia.edu>
491
492         * java/Make-lang.in: Remove all references to gcj.o/gcj.c.
493         Link gcj from gcc.o.
494
495 Tue Mar 23 10:48:24 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
496
497         * parse.y (find_applicable_accessible_methods_list): When dealing
498         with interface: ensure that a given interface or java.lang.Object
499         are searched only once.
500
501 Tue Mar 23 10:05:27 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
502
503         * gjavah.c (print_c_decl): Remove unused argument `flags'.
504
505         * jcf-dump.c (print_access_flags): Add braces around if-else.
506
507         * jvspec.c (lang_specific_driver): Wrap variable `len' in macro
508         COMBINE_INPUTS.
509
510         * lex.c (build_wfl_node): Add static prototype.
511
512         * lex.h (build_wfl_node): Remove static prototype.
513
514         * parse.y: Include lex.c early enough to declare everything needed.
515         Ensure calls to `build_wfl_node' pass the proper arguments.
516         (create_class): Remove unused variable `super_decl'.
517         (get_printable_method_name): Initialize variable `name'.
518         
519 Mon Mar 22 20:14:26 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
520
521         * Changelog: Fixed 1999-03-22 typos.
522         * lang.c (lang_decode_option): Fixed typo in error string in the
523         XARG section.
524
525 1999-03-22  Alexandre Petit-Bianco  <apbianco@cygnus.com>
526
527         * Makefile.in (JAVA_OBJS): Added entry xref.o.
528         (xref.o): New rule.
529         * java-tree.h (flag_emit_xref): Declared extern.
530         * lang.c (xref.h): Included.
531         (flag_emit_xref): New global variable.
532         (lang_decode_option): Added support for -fxref.
533         * xref.c: Created.
534         * xref.h: Likewise.
535
536 1999-03-21  Manfred Hollstein  <manfred@s-direktnet.de>
537
538         * Make-lang.in ($(GCJ)$(exeext)): Add intl.o to list of files to be
539         linked with.
540
541 Sun Mar 21 08:30:30 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
542
543         * Makefile.in (jcf-dump.o): Depend on $(CONFIG_H)
544         $(srcdir)/../system.h and $(JAVA_TREE_H).
545         (jcf-io.o): Depend on $(JAVA_TREE_H).
546         (mangle.o): Likewise.
547
548         * check-init.c (check_cond_init): Add static prototype.
549
550         * class.c (build_java_method_type, hashUtf8String,
551         make_field_value, get_dispatch_vector, get_dispatch_table,
552         append_gpp_mangled_type, mangle_static_field): Likewise.
553         (strLengthUtf8): Hide unused definition.
554         (hashUtf8String): Const-ify.
555         (make_field_value): Un-ANSI-fy.
556
557         * constants.c: Move inclusion of jcf.h above java-tree.h.
558         (set_constant_entry, find_class_or_string_constant,
559         find_name_and_type_constant, get_tag_node,
560         build_constant_data_ref): Add static prototype.
561
562         * decl.c (push_jvm_slot, builtin_function,
563         lookup_name_current_level): Likewise.
564         (builtin_function): Const-ify.
565
566         * except.c (expand_start_java_handler, expand_end_java_handler):
567         Add static prototype.
568
569         * expr.c (flush_quick_stack, push_value, pop_value,
570         java_stack_swap, java_stack_dup, build_java_athrow,
571         build_java_jsr, build_java_ret, expand_java_multianewarray,
572         expand_java_arraystore, expand_java_arrayload,
573         expand_java_array_length, build_java_monitor, expand_java_pushc,
574         expand_java_return, expand_java_NEW, expand_java_INSTANCEOF,
575         expand_java_CHECKCAST, expand_iinc, expand_java_binop, note_label,
576         expand_compare, expand_test, expand_cond, expand_java_goto,
577         expand_java_call, expand_java_ret, pop_arguments, expand_invoke,
578         expand_java_field_op, java_push_constant_from_pool): Likewise.
579
580         (decode_newarray_type, expand_iinc): Un-ANSI-fy.
581         (build_java_arraynull_check): Mark parameters `node' and `type'
582         with ATTRIBUTE_UNUSED.
583         (note_label): Likewise for parameter `current_pc'.
584         (expand_java_call, expand_java_ret): Hide unused definition.
585
586         * java-tree.h (make_class, build_constants_constructor,
587         java_set_exception_lang_code, pop_labeled_block, emit_handlers,
588         init_outgoing_cpool, register_class, emit_register_classes,
589         java_layout_seen_class_methods): Prototype.
590         (unicode_mangling_length): Const-ify.
591         (append_gpp_mangled_name, append_gpp_mangled_classtype,
592         emit_unicode_mangled_name, format_int, format_uint,
593         jcf_trim_old_input, jcf_print_utf8, jcf_print_char,
594         jcf_print_utf8_replace, open_class): Prototype.
595
596         * jcf-dump.c: Include "config.h", not <config.h>.  Don't include
597         <stdio.h>.  Include tree.h/java-tree.h.
598         (utf8_equal_string usage, process_class): Add static prototype.
599         (open_class): Don't prototype this here.
600         (utf8_equal_string): Match arguments to format specifiers.
601         (HANDLE_CODE_ATTRIBUTE, BRANCH, JSR, RET, LOOKUP_SWITCH,
602         TABLE_SWITCH, disassemble_method): Likewise.
603
604         * jcf-io.c: Include tree.h/java-tree.h.
605         (open_class, find_classfile, jcf_print_utf8,
606         jcf_print_utf8_replace): Const-ify.
607
608         * jcf-parse.c (parse_zip_file_entries, process_zip_dir,
609         parse_class_file): Add static prototype.
610         (find_in_current_zip): Match definition to existing static
611         prototype.
612         
613         * jcf-write.c: Include jcf.h before tree.h/java-tree.h.
614         (alloc_chunk, append_chunk, append_chunk_copy, gen_jcf_label,
615         finish_jcf_block, define_jcf_label, get_jcf_label_here,
616         put_linenumber, localvar_alloc, localvar_free, get_access_flags,
617         write_chunks, adjust_typed_op, generate_bytecode_conditional,
618         generate_bytecode_return, perform_relocations, init_jcf_state,
619         init_jcf_method, release_jcf_state, generate_classfile):
620         Add static prototype.
621         (emit_unop): Mark parameter `type' with ATTRIBUTE_UNUSED.
622         (make_class_file_name): Const-ify.
623
624         * jcf.h (find_classfile): Const-ify.
625
626         * jv-scan.c (reset_report): Remove prototype.
627
628         * jvgenmain.c: Include jcf.h/tree.h/java-tree.h.
629         (error): Rewrite to allow varargs.
630
631         * lang.c (lang_f_options): Const-ify.
632
633         * lex.c (java_parse_escape_sequence): Add static prototype.
634         (java_allocate_new_line): Match definition to existing static
635         prototype.
636         
637         * mangle.c Include tree.h/java-tree.h.
638         (unicode_mangling_length, emit_unicode_mangled_name,
639         append_gpp_mangled_name, append_gpp_mangled_classtype): Const-ify.
640
641         * parse.h (jdep_code): Remove trailing comma in enumeration.
642         (java_get_line_col): Move prototype outside of !JC1_LITE test.
643         (reset_report): Add prototype.
644
645         * verify.c (push_pending_label, merge_types): Add static
646         prototypes.
647
648         * zipfile.h (opendir_in_zip, open_in_zip): Prototype.
649         
650 1999-03-19  Alexandre Petit-Bianco  <apbianco@cygnus.com>
651
652         * parse.y (find_applicable_accessible_methods_list): Extend the
653         search to superinterfaces when relevant.
654         (search_applicable_methods_list): New function.
655
656 1999-03-18  Alexandre Petit-Bianco  <apbianco@cygnus.com>
657
658         * class.c (unmangle_classname): Implemented stricter testing
659         before setting the QUALIFIED_P flag on an identifier.
660
661 Tue Mar 16 15:15:41 1999  Per Bothner  <bothner@cygnus.com>
662
663         * parse.y (java_complete_lhs):  Call force_evaluation_order
664         after patch_newarray.
665         (patch_binop):  Don't call fold if there are side effects.
666
667 1999-03-16  Alexandre Petit-Bianco  <apbianco@cygnus.com>
668
669         * parse.y (java_stabilize_reference): Use save_expr instead of
670         building a SAVE_EXPR node.
671         (java_complete_lhs): Patch the resulting string of the `+='
672         operator (if necessary) and complete the RHS after having built
673         the cast.
674
675 Mon Mar 15 12:18:29 1999  Per Bothner  <bothner@cygnus.com>
676
677         * class.c (make_class):  Don't set CLASS_P here (because
678         this function is also called by build_java_array_type).
679         (push_class):  Set CLASS_P here instead.
680         * parse.h (TYPE_CLASS_P):  Check for TYPE_ARRAY_P is redundant.
681
682         * jcf-dump.c (print_access_flags):  Take extra parameter to indicate
683         context.  If the context is class, perfer "super" over "synchronized".
684         * jcf-write.c (generate_classfile):  Don't add ACC_SUPER if interface.
685
686         * parse.y (create_class):  Don't call parser_check_super here;
687         it is not robust.  Always wait until later.
688
689         * parse.y (method_header):  For interfaces, set ACC_ABSTRACT (to
690         match what JDK 1.2 does), but don't set ACC_PUBLIC.
691
692 Sat Mar 13 18:16:34 1999  Per Bothner  <bothner@cygnus.com>
693
694         * lex.c (java_read_char):  UNGET invalid non-initial utf8 character.
695         * lex.h (UNGETC):  Change misleading macro.
696
697 1999-03-12  Alexandre Petit-Bianco  <apbianco@cygnus.com>
698
699         * parse.y (java_stabilize_reference): Return NODE when patching a
700         COMPOUND_EXPR.
701         (java_complete_lhs): Put parenthesis around truth values.
702
703 1999-03-12  Alexandre Petit-Bianco  <apbianco@cygnus.com>
704
705         * class.c (layout_class_method): Don't make rtl for interface
706         methods.
707         * parse.h (GET_TYPE_NAME): New macro.
708         * parse.y (if_then_statement:): Fixed indentation.
709         (if_then_else_statement:): Likewise.
710         (for_statement:): Fixed spacing.
711         (try_statement:): Fixed indentation.
712         (create_interface): Don't force interfaces to be abstract.
713         (method_header): Abstract methods are OK in interfaces.
714         (declare_local_variables): Fixed typo in comment.
715         (java_complete_expand_method): Fixed indentation.
716         (resolve_qualified_expression_name): Use GET_TYPE_NAME to report
717         non accessible fields.
718         (java_stabilize_reference): New function.
719         (java_complete_lhs): Fixed indentation. Use
720         java_stabilize_reference in compound assignement. Insert the
721         cast. If not processing `+' fix string constants before processing
722         binop.
723
724 Fri Mar 12 19:42:55 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
725
726         * constants.c (find_class_or_string_constant): Cast variable `j'
727         to a `jword' when comparing against one.
728
729         * expr.c (java_lang_expand_expr): Remove unused variables
730         `has_finally_p' and `op0'.
731
732         * gjavah.c (print_field_info): Cast a value to jint when comparing
733         against one.  Likewise for a jlong.
734         (add_namelet): Likewise cast a `sizeof' to an int when comparing
735         against a signed quantity.
736         
737         * jcf-dump.c (print_signature_type): Remove unused variable `digit'.
738         (print_signature): Don't needlessly dereference variable `str'
739
740         * jcf-reader.c (get_attribute): Mark variables `max_stack' and
741         `max_locals' with ATTRIBUTE_UNUSED.
742         (jcf_parse_class): Likewise for variable `index'.
743
744         * parse.h (reverse_jdep_list): Remove static prototype.
745
746         * parse.y (build_jump_to_finally): Remove prototype and definition.
747         (reverse_jdep_list): Add static prototype.
748
749         * typeck.c (convert_ieee_real_to_integer): Remove unused variables
750         `assignment' and `expr_decl'.
751
752         * verify.c (verify_jvm_instructions): Remove unused label `bad_ldc'.
753
754 1999-03-12  Andrew Haley  <aph@cygnus.com>
755
756         * jcf-path.c (add_entry): alloca len+2 rather than len+1 bytes;
757         we'll need a directory separator and a null character.
758
759 Wed Mar 10 23:20:11 1999  Per Bothner  <bothner@cygnus.com>
760
761         * jcf-write.c (generate_bytecode_insns):  Handle __builtin_fmod, for %.
762
763   Tue Mar  9 11:52:08 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
764   
765         * parse.y (method_header): Don't set ACC_ABSTRACT flags on
766         interfaces.
767   
768 Fri Mar  5 15:17:29 1999  Per Bothner  <bothner@cygnus.com>
769
770         * lex.c (java_parse_end_comment):  Take extra parameter (next char).
771
772         * class.c (build_utf8_ref):  Fix possible name class/ambiguity.
773
774         * class.c (layout_class_method):  A static method in a base class
775         is never overridden, so treat it like it doesn't exist.
776         However, do complain about private non-static method overriding
777         public static method.
778
779         * parse.y:  Don't set unused INITIALIZED_P flag.
780         * java-tree.h (INITIALIZED_P):  Removed no-longer needed flag.
781
782         * parse.y (find_expr_with_wfl):  Optimize tail-calls.
783         (build_array_from_name):  Re-order &index[string] to &string[index].
784
785         * parse.y (java_complete_lhs):  Don't call patch_assignment if rhs is
786         error_mark (it might catch more errors, but it is more likely to lose).
787
788 Sat Mar  6 11:17:16 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
789
790         * Makefile.in (jcf-parse.o): Depend on $(PARSE_H).
791         (parse-scan.o): Depend on toplev.h.
792
793         * class.c (make_method_value): Add prototype.  Make it static.
794         Remove unused second argument, caller changed.
795
796         * expr.c (java_lang_expand_expr): Remove unused variable
797         `return_label'.
798
799         * java-tree.h: Don't prototype find_in_current_zip.
800         Add prototypes for verify_constant_pool, start_java_method,
801         end_java_method, give_name_to_locals, expand_byte_code,
802         open_in_zip, set_constant_value, find_constant1, find_constant2,
803         find_utf8_constant, find_string_constant, find_class_constant,
804         find_fieldref_index, find_methodref_index, write_constant_pool,
805         count_constant_pool_bytes and encode_newarray_type.
806
807         * jcf-dump.c: Remove unused variable `LONG_temp'.
808
809         * jcf-parse.c: Include parse.h.
810         (jcf_parse_source): Remove unused parameter, all callers changed.
811         (jcf_figure_file_type): Add static prototype.
812         (find_in_current_zip): Likewise.  Also remove unused parameter,
813         all callers changed.
814         (read_class): Initialize variable `saved_pos'.
815         
816         * jcf-reader.c (jcf_parse_preamble): Mark variables
817         `minor_version' and `major_version' with ATTRIBUTE_UNUSED.
818
819         * lex.c (java_is_eol): Wrap prototype and definition in !JC1_LITE.
820         (java_init_lex): Wrap variable `java_lang_imported' in !JC1_LITE.
821         (java_parse_doc_section): Initialize variable `seen_star'.
822         (java_lex): Wrap variable `number_beginning' in !JC1_LITE.
823         (java_lex_error): Mark parameters `msg' and `forward' with
824         ATTRIBUTE_UNUSED.
825         (java_get_line_col): Mark parameters `filename' and `line' with
826         ATTRIBUTE_UNUSED.
827
828         * parse-scan.y: Include toplev.h.
829         (yyerror): Mark parameter `msg' with ATTRIBUTE_UNUSED.
830
831         * parse.h: use `struct JCF', not plain `JCF'.
832         (java_parser_context_save_global, java_expand_classes
833         java_parser_context_restore_global, java_parse): Add prototypes.
834
835         * typeck.c (convert_ieee_real_to_integer): Remove unused variable
836         `node'.
837
838 Wed Feb 24 16:13:59 1999  Per Bothner  <bothner@deneb.cygnus.com>
839
840         *  check-init.c (check_init):  COPYN takes word count, not bit count.
841
842 Fri Feb 26 14:06:21 1999  Per Bothner  <bothner@cygnus.com>
843
844         * typeck.c (convert_ieee_real_to_integer):  Use save_expr instead of
845         explicit build_decl.  (Avoids crash in reload when optimizing.)
846
847 Thu Feb 25 21:05:04 1999  Per Bothner  <bothner@cygnus.com>
848
849         * decl.c (complete_start_java_method):  Handle synchronized method
850         even when compiling from bytecode.
851
852 1999-02-26  Tom Tromey  <tromey@cygnus.com>
853
854         * gjavah.c (add_class_decl): Only generate `#include' if outer
855         class is not the name of the class we are processing.  Correctly
856         append `.h' in #include.
857         (process_file): Clean up newlines around generated `#include's.
858         (decode_signature_piece): Correctly handle inner classes.
859         (struct include): New structure.
860         (all_includes): New global.
861         (print_include): New function.
862         (add_class_decl): Use it.
863         (process_file): Likewise.
864         (add_class_decl): Generate include for java-array.h if array
865         seen.
866         (process_file): Don't generate java-array.h include.
867
868         * gjavah.c (add_namelet): Check for standard package names here.
869         (add_class_decl): Don't check for standard package names here.
870
871 1999-02-25  Tom Tromey  <tromey@cygnus.com>
872
873         * parse.y (read_import_dir): Use `|=', not `+=', to set `found'.
874         When reading a zip file, only use strncmp if both strings are
875         bigger than the buffer length.  Initialize `k' when looping
876         through zip file.
877
878 1999-02-24  Tom Tromey  <tromey@cygnus.com>
879
880         * gjavah.c (struct namelet): New structure.
881         (add_namelet): New function.
882         (print_namelet): New function.
883         (print_class_decls): Use add_namelet and print_namelet to generate
884         namespaces and not classes.
885         (method_printed): New global.
886         (HANDLE_END_METHOD): Examine method_printed.
887         (print_method_info): Set method_printed when required.  Print
888         error if function to be ignored is marked virtual.  Handle $finit$
889         method.
890         (METHOD_IS_FINAL): New macro.
891         (print_field_info): Use it.
892         (HANDLE_METHOD): Clear method_printed.
893         (method_pass): New global.
894         (HANDLE_END_FIELD): Call add_class_decl on the first pass.
895         (process_file): Do two passes over both fields and methods.
896         (HANDLE_METHOD): Examine method_pass.
897         (root): New global.
898         (add_class_decl): New function.
899         (print_class_decls): Don't scan over entire constant pool.
900
901 1999-02-23  Tom Tromey  <tromey@cygnus.com>
902
903         * jvspec.c (lang_specific_driver): Recognize -fsyntax-only and
904         disable linking in that case.
905
906 1999-02-20  Tom Tromey  <tromey@cygnus.com>
907
908         * jcf.h (UTF8_GET): Mask first byte of 3-byte encoding with 0x0f,
909         not 0x1f.
910
911 Sun Feb 21 14:56:11 1999  Per Bothner  <bothner@cygnus.com>
912
913         * decl.c (build_result_decl), java-tree.h:  New method.
914         (complete_start_java_method):  Handle synchronized methods.
915         Don't build DECL_RESULT here.  (Ordering dependency problem.)
916         (start_java_method):  Call build_result_decl here instead  ...
917         * parse.y (java_complete_expand_method):  ... and here.
918         (expand_start_java_method): Don't call complete_start_java_method here.
919         (java_complete_expand_method):  Call it here instead.
920         * parse.h (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT):  Moved to ..
921         * java-tree.h:  ... here.
922
923         * expr.c (force_evaluation_order):  Fix typo, don't handle ARRAY_REF.
924         * parse.y (java_complete_lhs):  Don't call force_evaluation_order
925         for ARRAY_REF - it doesn't work when array bounds are checked.
926         (patch_array_ref):  Handle it here instead.
927
928         * jcf-write.c (generate_classfile):  Emit "Exceptions" attribute.
929
930 Fri Feb 19 15:35:01 1999  Per Bothner  <bothner@cygnus.com>
931
932         Force left-to-right evaluation of binary operations etc.
933         * expr.c (force_evaluation_order), java-tree.h:  New function.
934         * parse.y (java_complete_lhs):  Pass binary operations, procedure
935         calls, and ARRAY_REFs to force_evaluation_order.
936         (various):  Set TREE_SIDE_EFFECTS more carefully.
937
938         Tolerate random (non-UTF8) encoding in comments without complaining.
939         * lex.c (java_read_char):  Return 0xFFFE if bad UTF8 encoding.
940         (java_is_eol):  Handle '\r' followed by '\n' instead of vice versa.
941
942         * parse.y (resolve_qualified_expression_name):  Handle error_mark.
943         (java_complete_node case EXPR_WITH_FILE_LOCATION):  Likewise.
944
945         * parse.y (java_complete_lhs):  Ignore an empty statement in a
946         COMPOUND_EXPR.  Don't complain about empty statement after return.
947         
948 Fri Feb 19 13:00:56 1999  Per Bothner  <bothner@cygnus.com>
949
950         * parse.y (obtain_incomplete_type):  Don't wrap unknown types
951         in TREE_LIST - just chain the POINTER_TYPEs together.
952         (resolve_class):  If type already resolved, return decl.
953         After resolving, update TREE_TYPE(class_type), and name (if array).
954         * parse.h (do_resolve_class), parse.y:  Make non-static.        
955         * class.c (maybe_layout_super_class):  Take this_class argument.
956         Do do_resolve_class if necessary.
957         (layout_class, layout_class_methods): Adjust calls appropriately.
958         * parse.h (JDEP_TO_RESOLVE, JDEP_RESOLVED_DECL, JDEP_RESOLVED,
959         JDEP_RESOLVED_P):  Redefined for new TREE_LIST-less convention.
960         * typeck.c (build_java_array_type):  Don't call layout_class.
961
962 Wed Feb 17 15:47:20 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
963
964         * parse.y (check_pkg_class_access): Allow private class access
965         within the same package.
966         (strip_out_static_field_access_decl): New function.
967         (patch_unaryop): Call strip_out_static_field_access_decl on ++/--
968         operator argument before testing its nature.
969
970 Wed Feb  3 12:38:43 1999  Per Bothner  <bothner@cygnus.com>
971
972         * java-tree.def (FINALLY_EXPR):  Removed.  (Now uses TRY_FINALLY_EXPR.)
973         (TRY_EXPR):  Simplify - it no longer has a finally clause.
974         * check-init.c (check_init):  Handle TRY_FINALLY_EXPR.
975         Simpler handling of TRY_EXPR, which no longer has a finally clause.
976         * expr.c (java_lang_expand_expr):  Likewise.
977         * java-tree.h (CATCH_EXPR_GET_EXPR):  Removed - no longer needed.
978         * parse.h (java_get_catch_block), parse.y:  Removed - no longer needed.
979         * parse.y (java_complete_lhs):  Add support for TRY_FIANLLY_EXPR.
980         (build_try_statement):  Remove finally parameter and handling.
981         (build_try_finally_statement):  New function.
982         (patch_try_statement):   No longer need to support finally clause.
983         (try_statement):  Update grammar action rules.
984         * jcf-write.c (generate_bytecode_insns):  Handle TRY_FINALLY_EXPR.
985         Simpler handling of TRY_EXPR, which no longer has a finally clause.
986
987 1998-11-26  Andrew Haley  <aph@viagra.cygnus.co.uk>
988
989         * jcf-parse.c (get_constant): Add braces around computation of 'd'
990         when REAL_ARITHMETIC is not defined.  [Oct 26 fix got overwritten -PB]
991
992 1999-02-17  Andrew Haley  <aph@cygnus.com>
993
994         * class.c (build_utf8_ref): Back out broken patch which was
995         intended to to output signatures using '.' as a separator.
996
997         * class.c (make_class_data): Output signatures using '.' as a
998         separator, rather than '/'.
999         (mangled_classname): Likewise.
1000         (make_field_value): Likewise.
1001         (make_method_value): Likewise.
1002         * constants.c (alloc_class_constant): Likewise.
1003         * expr.c (build_invokeinterface): Likewise.
1004
1005 Thu Feb 11 21:25:51 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1006  
1007         * parse.y (valid_builtin_assignconv_identity_widening_p): Got rid
1008         of an ancient workaround.
1009
1010 Wed Feb 10 23:27:33 1999  Jeffrey A Law  (law@cygnus.com)
1011
1012         * jvspec.c (xmalloc): Kill the prototype.  It does not belong
1013         here anymore.
1014
1015 1999-02-10  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1016         
1017         * lex.c (yylex): Encode \0 as UTF8.
1018
1019 1999-02-10  Tom Tromey  <tromey@cygnus.com>
1020
1021         * jvspec.c (lang_specific_driver): Use libgcj, not libjava.
1022         * Makefile.in (jcf-path.o): Define LIBGCJ_ZIP_FILE.
1023         (libgcj_zip): Renamed.
1024         * jcf-path.c (add_entry): Use LIBGCJ_ZIP_FILE, not
1025         LIBJAVA_ZIP_FILE.
1026         (jcf_path_init): Use LIBGCJ_ZIP_FILE.
1027
1028         * jvspec.c (THREAD_NAME): Renamed -lqthreads to -lgcjcoop.
1029         (GC_NAME): Renamed -lgc to -lgcjgc.
1030
1031 Tue Feb  9 19:31:09 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1032
1033         * lex.c (java_lang_cloneable): Initialize.
1034         * parse.y (java_lang_cloneable): New static variable.
1035         (qualify_ambiguous_name): Take CONVERT_EXPR into account when
1036         doing one more qualification round.
1037         (valid_ref_assignconv_cast_p): Reject null source or
1038         destination. Allow an array to be cast into java.lang.Cloneable.
1039         (patch_cast): Swapped two first arguments to first call to
1040         valid_ref_assignconv_cast_p.
1041
1042 Mon Feb  8 11:50:50 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1043
1044         * parse.h: DECL_P renamed JDECL_P.
1045         * parse.y: DECL_P replaced by JDECL_P.
1046         (build_array_from_name): Always use pointer's type.
1047         (patch_bc_statement): Extra code to search continue target in a
1048         for loop. Fixed comments. Continue target is current loop when
1049         unlabeled.
1050
1051 1999-02-05  Andrew Haley  <aph@cygnus.com>
1052
1053         * class.c (make_class_data): The superclass of an interface should
1054         be null, not class Object.
1055
1056         * lex.c (java_lex): Sign extend hex literals.
1057
1058 1999-02-04  Andrew Haley  <aph@cygnus.com>
1059
1060         * class.c (build_utf8_ref): Output signatures using '.' as a
1061         separator, rather than '/'.
1062         (make_class_data): Likewise.
1063
1064 Wed Feb  3 22:50:17 1999  Marc Espie <Marc.Espie@liafa.jussieu.fr>
1065
1066         * Make-lang.in ($(GCJ)(exeext)): Remove choose-temp.o, pexecute.o and
1067         mkstemp.o.  Get them from libiberty now.
1068
1069 Tue Feb  2 19:49:12 1999  Jeffrey A Law  (law@cygnus.com)
1070
1071         * jcf-io.c: Do not include sys/stat.h or sys/wait.h
1072
1073 Tue Feb  2 20:04:50 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1074
1075         * jvspec.c (xmalloc): Fix the prototype to match the one obtained
1076         from libiberty.h
1077
1078 Tue Feb  2 10:39:47 1999  Per Bothner  <bothner@cygnus.com>
1079
1080         Optimize: `return (a ? b : c)' as: `if (a) return b; else return c;'.
1081         * jcf-write.c (generate_bytecode_return):  New function.
1082         (generate_bytecode_insns):  Use it, for RETURN_EXPR.
1083
1084         * jcf-write.c (generate_bytecode_insns):  For REAL_CST that is 0 or 1,
1085         generate special [fd]const_[01] instructions.
1086         
1087         * jcf-parse.c (yyparse):  Don't emit_register_classes if -fsyntax-only.
1088
1089         * verify.c (verify_jvm_instructions):  Do INVALIDATE_PC after
1090         handling OPCODE_lookupswitch or OPCODE_tableswitch.
1091
1092 Mon Feb  1 20:44:47 1999  Per Bothner  <bothner@cygnus.com>
1093
1094         * parse.y (patch_method_invocation):  Handle calling static methods,
1095         even in the form EXPR.METHOD(ARGS), not just TYPE.METHOD(ARGS).
1096
1097         * parse.y (java_complete_lhs):  Don't complain about unreachable
1098         exit condition in a do-while statement.
1099         
1100 Fri Jan 29 18:19:02 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1101
1102         * lex.c (java_read_char): Fixed utf8 decoding.
1103         (java_unicode_2_utf8): Fixed utf8 encoding in the 0x800-0xffff
1104         range.
1105         * parse.y (valid_builtin_assignconv_identity_widening_p): Fixed
1106         comments. Local variable `all_primitive' is gone. Broadened
1107         acceptance of `0' to floating point targets. `long' can now be
1108         widened to `double' or `float'.
1109         (valid_method_invocation_conversion_p): Added leading
1110         comment. Fixed tabulation.
1111         (build_string_concatenation): Optimize out left or right empty
1112         string constants.
1113
1114 Thu Jan 28 18:51:26 1999  Per Bothner  <bothner@cygnus.com>
1115
1116         * jcf-write.c (localvar_alloc):  Only emit entry for
1117         LocalVariableTable if debug_info_level > DINFO_LEVEL_TERSE.
1118         (generate_bytecode_insns):  Only call put_linenumber if
1119         debug_info_level > DINFO_LEVEL_NONE.
1120         * jvspec.c (lang_specific_driver):  If no -O* or -g* option
1121         is specified, add -g1 (for compatibility wih javac).
1122
1123 Thu Jan 28 09:17:51 1999  Hans-Peter Nilsson  <hp@axis.se>
1124
1125         * java/Makefile.in: Add missing dependencies for jcf-dump.o,
1126         gjavah.o, check-init.o, jv-scan.o
1127
1128 Mon Feb  1 09:50:48 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1129
1130         * Makefile.in (gjavah.o): Depend on $(CONFIG_H) and system.h.
1131
1132         * gjavah.c: Include config.h and system.h.
1133
1134         * javaop.h (inline): Don't define, its handled by system.h.
1135         (WORD_TO_FLOAT, WORDS_TO_LONG, WORDS_TO_DOUBLE): Change these
1136         from `inline' to `static inline'.
1137
1138         * jcf.h (inline): Don't define, its handled by system.h.
1139
1140         * lex.c (inline): Likewise.
1141
1142 Sun Jan 31 20:34:29 1999  Zack Weinberg  <zack@rabi.columbia.edu>
1143
1144         * lang-specs.h: Map -Qn to -fno-ident.
1145
1146 Fri Jan 29 16:51:56 1999  Richard Henderson  <rth@cygnus.com>
1147
1148         * check-init.c (check_init): Fix CLEANUP_POINT_EXPR typo.
1149
1150 1999-01-29  Tom Tromey  <tromey@cygnus.com>
1151
1152         * parse.h (BUILD_APPEND): If ARG is a non-String object reference,
1153         then cast it to Object before calling `append' method.
1154
1155 Thu Jan 28 14:45:39 1999  Per Bothner  <bothner@cygnus.com>
1156
1157         * check-init.c (check_bool2_init, check_bool_init, check_init):
1158         Handle TRUTH_AND_EXPR, TRUTH_OR_EXPR, and TRUTH_XOR_EXPR.
1159         * jcf-write.c (generate_bytecode_insns):  Likewise.
1160
1161 Thu Jan 28 11:50:11 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1162
1163         * jcf-parse.c (jcf_parse): Don't parse the same class file twice.
1164         * parse.y (patch_cast): Allow a boolean to be cast into a
1165         boolean.
1166
1167 Wed Jan 27 10:19:29 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1168
1169         * parse.y: (class_declaration:): Fixed indentation.
1170         (class_member_declaration:): Extra `;' after field declaration now
1171         accepted.
1172         (interface_declaration:): Removed debug messages in error reports.
1173         (patch_binop): Nodes created and returned inherit the orignal
1174         node's COMPOUND_ASSIGN_P flag value.
1175         (patch_cast): Fix cast from char to floating point.
1176
1177 Mon Jan 25 17:39:19 1999  Andrew Haley  <aph@cygnus.com>
1178
1179         * except.c, java-except.h (expand_resume_after_catch): new
1180         function.
1181         * expr.c (java_lang_expand_expr): call expand_resume_after_catch
1182         to branch back to main flow of control after a catch block.
1183
1184 Sat Jan 23 23:02:43 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1185
1186         * Makefile.in (parse.o): Depend on $(CONFIG_H) and
1187         $(srcdir)/../system.h.
1188         (class.o): Depend on $(PARSE_H) and $(srcdir)/../output.h.
1189         (jcf-parse.o): Depend on $(srcdir)/../toplev.h.
1190         (jcf-write.o): Likewise.
1191         (jv-scan.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
1192         (mangle.o): Depend on $(srcdir)/../toplev.h.
1193         (parse-scan.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
1194         (zextract.o): Depend on $(CONFIG_H) and $(srcdir)/../system.h.
1195
1196         * class.c: Include output.h and parse.h.
1197         (mangled_classname): Add the `const' keyword to a char*.
1198         (find_named_method): Hide unused function definition.
1199         (build_utf8_ref): Change type of variable `c' to unsigned char.
1200         Use ISALPHA/ISDIGIT instead of isalpha/isdigit.
1201         (build_class_ref): Add the `const' keyword to a char*.
1202         (layout_class_method): Remove unused variable `buf'.
1203
1204         * decl.c (find_local_variable): Remove unused variable `rtl'.
1205         (pushdecl): Likewise for variables `different_binding_level' and
1206         `oldglobal'.
1207         (pushlevel): Mark parameter `unused' with ATTRIBUTE_UNUSED.
1208         (maybe_build_cleanup): Likewise for parameter `decl'.
1209
1210         * except.c (expand_start_java_handler): Mark parameter `range'
1211         with ATTRIBUTE_UNUSED.
1212
1213         * expr.c: Include except.h.
1214         (pop_type): Remove unused variable `i'.
1215         (pop_value): Likewise for variables `n_words' and `i'.
1216         (expand_java_arrayload): Likewise for variable `convert'.
1217         (java_lang_expand_expr): Likewise for variables `op0', `type',
1218         `mode', `unsignedp', `node' and `elements'.
1219         (expand_byte_code): Likewise for variables `prev_eh_ranges' and
1220         `eh_ranges'.
1221         (process_jvm_instruction): Add a `const' qualifier to a char*.
1222
1223         * gjavah.c (output_directory): Add the `const' keyword to a char*.
1224         (temp_directory): Likewise.
1225         (print_c_decl): Likewise.
1226         (print_method_info): Likewise.
1227         (decode_signature_piece): Likewise.
1228         (print_mangled_classname): Likewise.
1229
1230         * java-except.h: Provide prototypes for maybe_start_try,
1231         maybe_end_try and add_handler.
1232
1233         * java-tree.h (mangled_classname): Add the `const' keyword to a char*.
1234         (parse_error_context): Likewise.  Also add ATTRIBUTE_PRINTF_2.
1235         (pushdecl_top_level, alloc_class_constant, unicode_mangling_length,
1236         init_expr_processing, push_super_field, init_class_processing,
1237         can_widen_reference_to, class_depth, verify_jvm_instructions,
1238         maybe_pushlevels, maybe_poplevels, process_jvm_instruction,
1239         set_local_type, merge_type_state, push_type, load_type_state,
1240         add_interface, find_in_current_zip, append_gpp_mangled_classtype,
1241         emit_unicode_mangled_name): Add prototypes.
1242
1243         * jcf-dump.c (print_constant): Add the `const' keyword to a char*.
1244         (print_signature_type): Use ISDIGIT, not isdigit.
1245         (print_signature): Remove unused variable `j'.
1246
1247         * jcf-io.c (jcf_filbuf_from_stdio): Cast the result of `fread' to
1248         int when comparing against one.
1249
1250         * jcf-parse.c: Include toplev.h.
1251
1252         * jcf-write.c: Likewise.  Don't include <string.h> or <sys/stat.h>.
1253         (localvar_free): Remove unused variable `i'.
1254         (generate_bytecode_conditional): Likewise for variable `kind'.
1255
1256         * jv-scan.c: Include config.h and system.h.  Remove redundant
1257         OS header and gansidecl.h includes.
1258         (warning): Add the `const' keyword to a char*.  Also add
1259         ATTRIBUTE_PRINTF_1 to the prototype.  Check ANSI_PROTOTYPES, not
1260         __STDC__, when determining whether to use ANSI-isms.
1261         (fatal): Likewise.  Also add ATTRIBUTE_UNUSED.
1262         (xmalloc): Don't redundantly prototype here.
1263         (main): Remove unused parameter `envp'.  Also fix the arguments
1264         passed to function `fatal' to match the format specifier.
1265
1266         * lang.c (java_tree_code_name): Add the `const' keyword to a char*.
1267
1268         * mangle.c: Include toplev.h.
1269         (emit_unicode_mangled_name): Declare parameter `len'.
1270
1271         * parse.y (parse_warning_context): Add the `const' keyword to a
1272         char*.  Also add ATTRIBUTE_PRINTF_2 to the prototype.  Check
1273         `ANSI_PROTOTYPES' not `__STDC__' for whether to use ANSI-isms.
1274         (issue_warning_error_from_context): Add the `const' keyword to
1275         a char*.
1276         (parse_error_context): Likewise.  Also check `ANSI_PROTOTYPES'
1277         not `__STDC__' for whether to use ANSI-isms.
1278
1279         * typeck.c (incomplete_type_error): Mark parameters `value' and
1280         `type' with ATTRIBUTE_UNUSED.
1281         (parse_signature_type): Use ISDIGIT, not isdigit.
1282
1283         * verify.c (check_pending_block): Add the `const' keyword to a char*.
1284         (verify_jvm_instructions): Likewise.  Remove unused variables
1285         `field_name' and `default_val'.
1286         
1287         * zextract.c: Include config.h and system.h.  Remove redundant
1288         OS header includes.
1289         
1290         * zipfile.h: Prototype `read_zip_archive'.
1291
1292 Thu Jan 21 16:00:06 1999  Andrew Haley  <aph@cygnus.com>
1293
1294         * typeck.c (convert): Allow conversions to void type: some
1295         optimizations in gcc do this.
1296
1297 Thu Jan 21 15:21:49 1999  Andrew Haley  <aph@cygnus.com>
1298
1299         * typeck.c (convert_ieee_real_to_integer): New function.
1300         (convert): When not using fast-math and using hardware fp, convert
1301         an IEEE NaN to zero.
1302  
1303 1999-01-18  Andrew Haley  <aph@cygnus.com>
1304
1305         * parse.y (patch_binop): Do a type conversion from signed to
1306         unsigned and then back to signed when a ">>>" is found.
1307
1308 Sun Jan 17 22:34:22 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1309
1310         * java-tree.h: (check_for_initialization): Added prototype.
1311         * lex.c (java_parse_doc_section): `\n' breaks the `*/' string.
1312         * parse.y (do_resolve_class): Removed unused locals.
1313         (read_import_dir): Likewise.
1314         (resolve_qualified_expression_name): Array creation
1315         expressions are valid primary expressions.
1316         (qualify_ambiguous_name): Likewise.
1317         (patch_synchronized_statement): Removed unused local.
1318
1319 Sun Jan 17 21:55:42 1999  Jeffrey A Law  (law@cygnus.com)
1320
1321         * Makefile.in (zextract.o): Add dependencies.
1322
1323         * Makefile.in: Do not put ^Ls at the start of a line.
1324
1325 Fri Jan 15 20:16:20 1999  Per Bothner  <bothner@cygnus.com>
1326
1327         * expr.c (process_jvm_instruction):  Coerce to correct Throwable
1328         sub-type the result of the call that gets the exception value.
1329
1330         * parse.y (java_complete_expand_methods):  If flags_syntax_only,
1331         don't call finish_class.
1332
1333         * parse.y (java_check_regular_methods):  If METHOD_PRIVATE,
1334         clear found before continuing.
1335
1336         * verify.c (verify_jvm_instructions):  On an array load, allow
1337         and handle top of stack to be TYPE_NULL.
1338
1339         * gjavah.c (generate_access):  Translate Java package private or
1340         protected access to C++ public, but with a comment.
1341
1342 1999-01-13  Andrew Haley  <aph@cygnus.com>
1343
1344         * expr.c (generate_name): Name prefix changed to avoid clashes
1345         with assembler temp labels.
1346
1347         * parse.y (patch_synchronized_statement): Set TREE_SIDE_EFFECTS on
1348         MODIFY_EXPR.  Without this, code for the assignement may not be
1349         generated at all and the synchronized statement will read an
1350         uninitialized variable.
1351         
1352 Wed Jan 13 01:24:54 1999  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1353
1354         * class.c (maybe_layout_super_class): Fixed returned value.
1355         * lex.c: Added 1999 to the copyright.
1356         (java_init_lex): Initialize java_lang_imported.
1357         * lex.h: Added 1999 to the copyright.
1358         * parse.h: Added 1999 to the copyright.
1359         (REGISTER_IMPORT): Fixed typo in trailing macro.
1360         (CURRENT_OSB): New macro.
1361         (struct parser_ctxt): New fields osb_depth, osb_limit.
1362         * parse.y (java_lang_id): New global variable.
1363         (type_import_on_demand_declaration): Don't import java.lang.* twice.
1364         (array_creation_expression:): Use CURRENT_OSB.
1365         (dims:): Uses a stack to keep track of array dimensions.
1366         (cast_expression:): Use CURRENT_OSB.
1367         (find_expr_with_wfl): Return NULL if node found doesn't meet the
1368         conditions.
1369         (register_fields): Fixed typos in comment.
1370         (check_method_redefinition): Fixed comment indentation.
1371         (java_check_regular_methods): Set saved found wfl to NULL after
1372         having reinstalled it in the previously found DECL_NAME.
1373
1374 Sun Jan 10 13:36:14 1999  Richard Henderson  <rth@cygnus.com>
1375
1376         * gjavah.c (java_float_finite): Use a union to do type punning.
1377         (java_double_finite): Likewise.
1378
1379 Sat Jan  9 11:25:00 1999  Per Bothner  <bothner@cygnus.com>
1380
1381         * parse.y (build_new_array_init):  Don't set EXPR_WFL_LINECOL
1382         on CONSTRUCTOR (since that trashes TREE_CST_RTL).
1383         (patch_new_array_init):  Clear TREE_CONSTANT also if INDIRECT_REF.
1384         (register_fields):  Set TREE_STATIC on NEW_ARRAY_INIT, not on
1385         CONSTRUCTOR (which causes expand_expr to call output_constant_def).
1386         * expr.c (java_lang_expand_expr):  Check TREE_STATIC of NEW_ARRAY_INIT.
1387
1388 Fri Jan  8 15:48:03 1999  Per Bothner  <bothner@cygnus.com>
1389
1390         * check-init.c (check_init):  If compiling to native, we don't
1391         see THROW_EXPR.  Instead, look for a call to throw_node (_Jv_Throw).
1392
1393 1999-01-08  Tom Tromey  <tromey@cygnus.com>
1394
1395         * parse-scan.y (variable_declarator_id): Set or increment
1396         bracket_count.
1397         (bracket_count): New global.
1398         (formal_parameter): Handle case where bracket pairs trail variable
1399         declarator id.
1400
1401 1999-01-07  Andrew Haley  <aph@viagra.cygnus.co.uk>
1402
1403         * jcf-parse.c (yyparse): variable len changed from a char to an
1404         int to prevent overflow.
1405
1406 Wed Jan  6 17:19:46 1999  Per Bothner  <bothner@cygnus.com>
1407
1408         * java-tree.h:  Declare read_class.
1409         * jcf-parse.c (read_class):  New function.
1410         (load_class):  Now just call read_class.
1411
1412         * java-tree.h (java_parse_abort_on_error):  Only return if new errors.
1413         * jcf-parse.c (parse_source_file):  Declare save_error_count,
1414         which is needed by java_parse_abort_on_error macro,
1415         * parse.y (java_layout_classes, java_expand_classes):  Likewise.
1416
1417         * parse.y (register_fields):  Set TREE_STATIC flag of NEW_ARRAY_INIT
1418         constructor, if initializing a static field.
1419         (patch_new_array_init):  Set TREE_CONSTANT if it is.
1420         * expr.c (java_lang_expand_expr):  For a static array constructor
1421         of primitive elements, allocate the array itself statically.
1422         Disabled until we can set the vtable field statically.
1423         
1424         * check-init.c:  New file.  Checks for definite assignment.
1425         * Makefile.in (JAVA_OBJS):  Add check-init.o.
1426         * parse.y (java_complete_expand_method): Call check_for_initialization.
1427         * parse.h (BLOCK_EXPR_DECLS, BLOCK_EXPR_BODY):  Moved to java-tree.h.
1428
1429 Wed Jan  6 14:53:10 1999  Graham <grahams@rcp.co.uk>
1430
1431         * parse.y : include system.h instead of including
1432         standard headers directly with the exception of <dirent.h>.
1433
1434 Wed Jan  6 16:20:06 1999  Per Bothner  <bothner@cygnus.com>
1435
1436         * lex.h:  Moved static function declarations to lex.c,
1437         to shut up some -Wall warnings.
1438         * lex.c:  Static function declarations moved here.
1439         * jcf-dump.c:  Small fixes to shut up -Wall warnings.
1440
1441 Tue Jan  5 22:15:40 1999  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1442
1443         * Make-lang.in ($(GCJ).o): Depend on prefix.h.
1444
1445 Tue Dec 22 11:25:19 1998  Per Bothner  <bothner@cygnus.com>
1446
1447         * expr.c (process_jvm_instruction):  Do load_type_state after JSR.
1448         * verify.c (verify_jvm_instructions):  Fix off-by-one error.
1449
1450         * jcf-write.c (CHECK_PUT):  Add (void) cast to avoid -Wall warnings.
1451         (localvar_alloc):  Change return type to void,
1452         (emit_unop):  Remove unused variable size.
1453         
1454         * jcf-write.c (struct jcf_block):  Add new union.
1455         (PENDING_CLEANUP_PC, PENDING_EXIT_PC, UNDEFINED_PC):  New macros.
1456         (call_cleanups):  New functions.
1457         (struct jcf_partial):  New fields num_finalizers and return_value_decl.
1458         (generate_bytecode_insns):  Support CLEANUP_POINT_EXPR and
1459         WITH_CLEANUP_EXPR.  Handle cleanups in RETURN_EXPR and EXIT_BLOCK_EXPR.
1460         * lang.c (lang_init):  Call using_eh_for_cleanups.
1461         * parse.y (java_complete_lhs):  For SYNCHRONIZED_EXPR, defer
1462         completing operands to patch_synchronized_statement.
1463         Support CLEANUP_POINT_EXPR, WITH_CLEANUP_EXPR.
1464         (patch_synchronized_statement): Re-write suing CLEANUP_POINT_EXPR and
1465         WITH_CLEANUP_EXPR instead of TRY_EXPR.  
1466
1467 Sun Dec 20 16:15:44 1998  John F. Carr  <jfc@mit.edu>
1468
1469         * Make-lang.in: Comment out control-Ls; they upset some makes.
1470
1471 1998-12-18  Tom Tromey  <tromey@cygnus.com>
1472
1473         * parse.y (check_class_interface_creation): Use DIR_SEPARATOR
1474         consistently.
1475
1476 1998-12-17  Tom Tromey  <tromey@cygnus.com>
1477
1478         * parse.y (DIR_SEPARATOR): New define.
1479         (check_class_interface_creation): Use it.
1480
1481         * parse-scan.y (report_main_declaration): Recognize
1482         `java.lang.String' in argument to main.
1483
1484 Wed Dec 16 16:18:59 1998  Per Bothner  <bothner@cygnus.com>
1485
1486         * parse.y (create_interface):  Remove bogus test.
1487
1488 Wed Dec 16 14:42:19 1998  Per Bothner  <bothner@cygnus.com>
1489
1490         * jcf-parse.c (get_constant):  Set TREE_TYPE for string constants.
1491         (HANDLE_CONSTANTVALUE):  If flag_emit_class_files, call get_constant.
1492
1493 1998-12-16  Tom Tromey  <tromey@cygnus.com>
1494
1495         * parse-scan.y (qualified_name): Use correct sprintf format.
1496
1497 1998-12-15  Tom Tromey  <tromey@cygnus.com>
1498
1499         * gjavah.c (print_field_info): Changed how most negative number is
1500         printed.
1501
1502 Mon Dec 14 18:49:29 1998  Per Bothner  <bothner@cygnus.com>
1503
1504         * parse.y (fold_constant_for_init):  New function.
1505         (resolve_expression_name):  Don't replace static final
1506         constant-initialized fields by its value.
1507         (java_complete_lhs):  New.  Same as java_complete_tree, except does
1508         not replace static final constant-initialized fields by their values.
1509         (register_fields):  If there is an initializer, set DECL_INITIAL and
1510         MODIFY_EXPR_FROM_INITIALIZATION_P.
1511         (java_complete_tree):  For MODIFY_EXPR, use java_complete_lhs for lhs.
1512         Only call patch_initialized_static_field if
1513         MODIFY_EXPR_FROM_INITIALIZATION_P.
1514         (patch_initialized_static_field):  If not valid constant, clear
1515         DECL_INITIAL.
1516
1517         * parse.y (lookup_field_wrapper):  Fix thinko.
1518
1519         * parse.y (java_complete_tree):  In EXPR_WITH_FILE_LOCATION,
1520         set and restore global lineno.
1521
1522 1998-12-14  Tom Tromey  <tromey@cygnus.com>
1523
1524         * gjavah.c (print_field_info): If value to print is the smallest
1525         value of its size, then print as hex to avoid later warnings from
1526         C++ compiler.
1527
1528 1998-12-14  Tom Tromey  <tromey@cygnus.com>
1529
1530         * gjavah.c (decompile_method): Decompile `return null'.
1531         (process_file): Generate `#pragma interface'.
1532         (method_declared): New global.
1533         (print_method_info): Set it.
1534         (HANDLE_CODE_ATTRIBUTE): Only print it method_declared set.
1535         (print_method_info): Handle abstract methods.
1536
1537 Sun Dec 13 17:31:40 1998  Per Bothner  <bothner@cygnus.com>
1538
1539         * parse.y (patch_method_invocation):  If class_decl is null
1540         (e.g. an array type), use original type.
1541
1542         * parse.y (check_thrown_exceptions):  Temporary hack to suppress
1543         errors about uncaught exception from clone (of array, specifically).
1544
1545 1998-12-13  Tom Tromey  <tromey@cygnus.com>
1546
1547         * gjavah.c (decompile_method): Handle all types of `return'
1548         opcode.  Decompile `return this' and `return'.
1549         (method_access): New global.
1550         (print_method_info): Set it.
1551         (decompile_method): Don't decompile a synchronized method.
1552
1553 1998-12-13  Tom Tromey  <tromey@cygnus.com>
1554
1555         * jcf-reader.c (jcf_parse_one_method): Recognize
1556         HANDLE_END_METHOD.
1557         * gjavah.c (HANDLE_END_METHOD): New macro.
1558         (HANDLE_CODE_ATTRIBUTE): New macro.
1559         (decompile_method): New function.
1560         (print_method_info): Don't print `;\n' at end of function decl.
1561         Include java-opcodes.h.
1562         (decompiled): New global.
1563
1564 Sat Dec 12 20:13:19 1998  Per Bothner  <bothner@cygnus.com>
1565
1566         * class.c (build_class_ref):  Handle PRIMTYPE.class if
1567         flag_emit_class_files.
1568         * expr.c (expand_java_field_op):  Don't optimize java.lang.XXX.TYPE
1569         if flag_emit_class_files.
1570         * parse.y (java_complete_tree):  Pre-liminary support for
1571         COMPONENT_REF - only to handle PRIMCLASS.TYPE.
1572
1573         * parse.y (patch_synchronized_statement):   Don't call monitorexit
1574         unless block CAN_COMPLETE_NORMALLY.  Propagate that flag properly.
1575
1576         * java-tree.h (DECL_LOCAL_STATIC_VALUE):  Removed - no longer used.
1577
1578         * zipfile.h (opendir_in_zip):  New declaration.
1579         * jcf-io.c (saw_java_source):  Moved to jcf-parse.c.
1580         (opendir_in_zip):  New function, using code from open_in_zip.
1581         (open_in_zip):  Call opendir_in_zip.
1582         (find_class):  Remove no-longer-used do_class_file parameter,
1583         but add source_ok parameter.  Change logic so if we find a .java file,
1584         we don't look for .class in later classpath emtries.
1585         * jcf-parse.c (load_class):  Pass saw_java_source to find_class.
1586         (jcf_figure_file_type):  Only call open_in_zip if correct magic number.
1587         * gjavah.c: Update call to find_class.
1588         * jcf-dump.c:  Likewise.
1589
1590         * jcf-write.c (put_linenumber):  Handle duplicate line numbers.
1591         (generate_bytecode_insns):  For EXPR_WITH_FILE_LOCATION, do
1592         nothing if body is empty_stmt_node.
1593         Various little fixes so SP gets correctly adjusted.
1594         For NEW_ARRAY_INIT, handle IGNORE_TARGET.
1595         For CALL_EXPR, test if static first.
1596         (generate_classfile):  Ignore fields that are DECL_ARTIFICIAL,
1597         such as the ones we create for Object and Class.
1598         Set and restore current_function_decl.
1599         * parse.y:  Check/set IS_AN_IMPORT_ON_DEMAND_P in read_import_dir.
1600         (note_possible_classname):  New function.
1601         (read_import_entry):  Removed.  Merged with read_import_dir.
1602         (read_import_dir):  Don't call find_class - that only gives us
1603         the first classpath entry having the needed package.
1604         Use the struct buffer data structure from buffer.h.
1605         (read_import_dir, find_in_imports_on_demand):  The remembered
1606         class names now use '.' (not '/') as package separator.
1607
1608         * parse.y (java_complete_expand_methods):  Call write_classfile
1609         here, and not in java_expand_classes (which only gets first class).
1610
1611 Sat Dec 12 19:46:04 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1612
1613         * parse.y (<type_declaration>):  Do maybe_generate_clinit last.
1614         (register_fields):  If a static fields has an initializer, just
1615         chain it on ctxp->static_initialized, and handle later.
1616         (java_complete_expand_methods):  Force <clinit> first.
1617         (resolve_expression_name, resolve_field_access):  Just get DECL_INITIAL
1618         - it's already been completed.
1619         (patch_initialized_static_field):  New function.
1620         (java_complete_field):  Call it.
1621
1622 Sat Dec 12 19:21:11 1998  Per Bothner  <bothner@cygnus.com>
1623
1624         * expr.c (encode_newarray_type, build_new_array):  New functions.
1625         * java-tree.h:  Declare build_new_array.
1626         * jcf-write.c (patch_newarray):  Use build_new_array.
1627
1628         * expr.c (java_lang_expand_exp):  Support NEW_ARRAY_INIT.
1629         * jcf-write.c (generate_bytecode_insns):  Support NEW_ARRAY_INIT.
1630
1631         * parse.y (patch_new_array_init):  Re-organize.
1632         Now is passed the actual array (pointer) type of the value.
1633         Set the type of the CONSTRUCTOR to be an ARRAY_TYPE.
1634         (patch_array_constructor):  Removed - merged into patch_new_array_init.
1635         (java_complete_tree):  Update patch_new_array_init.
1636
1637         * jcf-write.c (find_constant_index):  New function.
1638         (generate_bytecode_insns):  Use find_constant_index.
1639         (generate_classfile):  Use find_constant_index for ConstantValue.
1640
1641 1998-12-11  Tom Tromey  <tromey@cygnus.com>
1642
1643         * expr.c (invoke_build_dtable): Renamed dtable -> vtable.
1644         * decl.c (init_decl_processing): Renamed dtable -> vtable.
1645         * class.c (make_class_data): Renamed dtable -> vtable, and
1646         dtable_method_count -> vtable_method_count.
1647
1648 Thu Dec 10 20:00:54 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1649
1650         * decl.c (long_zero_node, float_zero_node, double_zero_node): New
1651         global variables, initialized.
1652         * java-tree.h (long_zero_node, float_zero_node, double_zero_node):
1653         Declared new global variables.
1654         * lex.c (java_lex): Return long_zero_node, float_zero_node,
1655         double_zero_node, integer_zero_node upon direct matching.
1656         * parse.y (purify_type_name): Added function prototype.
1657         (duplicate_declaration_error_p): Consider new_type as potentially
1658         being a incomplete type. Use purify_type_name on type string.
1659         (method_header): saved_type: unused variable removed. Don't figure
1660         return type if method name is invalid.
1661         (java_complete_tree): Set CAN_COMPLETE_NORMALLY after `node' was
1662         processed by patch_unaryop.
1663         (patch_unaryop): Fixed typo in comment. Re-convert pre/post
1664         increment/decrement node into its original type after binary
1665         numeric promotion on its operands.
1666
1667 Thu Dec 10 11:02:49 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1668
1669         * parse.y (array_initializer:): Array init operand is NULL_TREE
1670         instead of a TREE_LIST of NULL_TREEs when parsing `{}'. `{,}' is
1671         now an error. Fixed indentation problems.
1672         (patch_string): Handle error_mark_node as an argument.
1673         (patch_new_array_init): Fixed indentation problems.
1674         (array_constructor_check_entry): Removed check on null wfl_value.
1675         Return an error if wfl_value's walk returns an error.
1676
1677 Wed Dec  9 15:37:05 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1678
1679         * java-tree.def (NEW_ARRAY_INIT): New Java tree code.
1680         * lex.c (java_lex): Remember column position before advancing one
1681         token. Retain location information on OCB_TK.
1682         * lex.h (typedef struct java_lc): Added new field.
1683         * parse.h (GET_SKIP_TYPE): New macro.
1684         (QUAL_DECL_TYPE): Redefined using GET_SKIP_TYPE.
1685         * parse.y (build_new_array_init, patch_new_array_init,
1686         patch_array_constructor, maybe_build_array_element_wfl,
1687         array_constructor_check_entry): New function prototypes.
1688         (switch_block:): Tagged <node>.
1689         (OCB_TK): Tagged <operator>.
1690         (array_initializer:): Installed actions.
1691         (variable_initializer): Build location information on element if
1692         necessary.
1693         (switch_statement:): Fixed indentation typo.
1694         (switch_block:): Redefined default action.
1695         (java_complete_tree): Handle NEW_ARRAY_INIT in MODIFY_EXPR:.
1696         (patch_assignment): Removed duplicate code.
1697         (maybe_build_array_element_wfl, build_new_array_init,
1698         patch_new_array_init, patch_array_constructor,
1699         array_constructor_check_entry): New functions.
1700
1701 Mon Dec  7 15:13:52 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1702
1703         * parse.y (array_initializer): Tagged <node>.
1704         (variable_initializer:): Use default rule.
1705         (array_initializer:): Defined actions.
1706         (variable_initializers:): Likewise.
1707         (resolve_qualified_expression_name): Use DECL_CONTEXT to build
1708         non-static field accesses.
1709         (patch_invoke): Fixed indentation typo.
1710         (java_complete_tree): Likewise.
1711         (build_labeled_block): Changed leading comment. Generate an error
1712         in case of duplicate loop labels.
1713         (patch_conditional_expr): Patch results of string concatenation
1714         operations.
1715
1716 Sun Dec  6 13:45:00 1998  Per Bothner  <bothner@cygnus.com>
1717
1718         * constants.c (find_methodref_index):  When the class is an interface,
1719         generate CONSTANT_InterfaceMethodref instead of a CONSTANT_MethodRef.
1720
1721         * decl.c (finit_identifier_node):  Use "$finit$", rather than
1722         "<finit>" (which Sun's verifier rejects).
1723         * parse.y (maybe_generate_finit):  Leave out meaningless final flag.
1724         (generate_field_initialization_code):  Removed.
1725         (fix_constructors)  Don't add call to $finit$ here (wrong order).
1726         (patch_method_invocation):  Add $finit$ call here.
1727
1728         * java-tree.h (CALL_USING_SUPER):  New macro.
1729         * parse.y (patch_invoke):  Remove im local variable.
1730         (patch_method_invocation, patch_invoke):  Don't pass super parameter.
1731         (patch_invoke):  Use CALL_USING_SUPER instead of from_super parameter. 
1732         (resolve_qualified_expression_name):  Maybe set CALL_USING_SUPER.
1733
1734         * jcf-write.c (get_access_flags):  Fix typo ACC_PUBLIC -> ACC_FINAL.
1735
1736         * parse.y (java_complete_tree):  Don't complain about unreachable
1737         statement if it is empty_stmt_node.
1738
1739         * jcf-write.c (find_constant_wide):  New function.
1740         (push_long_const):  Use find_constant_wide.
1741
1742         * jcf-write.c (generate_bytecode_insn):  Fix bug in switch handling.
1743         (generate_bytecode_insn):  Use correct dup variant for MODIFY_EXPR.
1744         Add "redundant" NOTE_PUSH/NOTE_POP uses so code_SP_max gets set.
1745         Emit invokeinterface when calling an interface method.
1746         Emit invokespecial also when calling super or private methods.
1747
1748         * jcf-write.c (generate_classfile):  Emit ConstantValue attributes.
1749
1750 Sun Dec  6 13:21:18 1998  Per Bothner  <bothner@cygnus.com>
1751
1752         * jcf-dump.c (INVOKE):  If invokeinterface, print number of args.
1753
1754 Thu Dec  3 17:11:12 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1755
1756         * java-tree.h (java_layout_seen_class_methods): New function
1757         prototype.
1758         (LAYOUT_SEEN_CLASS_METHODS): Macro removed.
1759         * jcf-parse.c (parse_class_file): Call java_layout_seen_class_methods.
1760         * parse.h (PROMOTE_RECORD_IF_COMPLETE): New macro.
1761         * parse.y (method_declarator:): Defined action.
1762         (issue_warning_error_from_context): input_filename saved, set to
1763         the appropriate value and restored after java_error is called.
1764         (build_unresolved_array_type): Fixed comment.
1765         (register_fields): Use PROMOTE_RECORD_IF_COMPLETE.
1766         (method_header): Deal with return type the same way type are
1767         handled for fields and method's parameters and local variables
1768         types are handled.
1769         (check_method_redefinition): Removed extra CR.
1770         (declare_local_variables): Use PROMOTE_RECORD_IF_COMPLETE.
1771         (java_layout_seen_class_methods): New function.
1772         (java_layout_classes): Call java_layout_seen_class_methods.
1773         
1774 Thu Dec  3 15:56:50 1998  Per Bothner  <bothner@cygnus.com>
1775
1776         * parse,y (patch_synchronized_statement):  Set CAN_COMPLETE_NORMALLY.
1777
1778 Thu Dec  3 15:08:30 1998  Per Bothner  <bothner@cygnus.com>
1779
1780         * jcf-dump.c (main):  Fix error message.
1781         * jcf-path.c (add_entry):  Style fix.
1782
1783 Wed Dec  2 15:52:25 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1784
1785         * class.c (layout_class_method): Call build_java_argument_signature
1786         on constructors too.
1787         * parse.y (check_method_redefinition): Use TYPE_ARGUMENT_SIGNATURE.
1788         (patch_method_invocation): Define a primary when resolving an
1789         expression name. Augmented comment on code checking illegal `this'
1790         usage. Loosened it test by accepting NEW_CLASS_EXPR.
1791
1792 Tue Dec  1 13:53:24 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1793
1794         * class.c (layout_class_method): Don't report error on non-static
1795         overriding static if the method is private.
1796         * java-tree.h (finish_class): Prototype added.
1797         * lex.c (java_get_line_col): Handle col argument -2 value.
1798         * parse.h: All static method declarations moved to parse.y.
1799         * parse.y: Now contains all static method declarations previously
1800         found in parse.h.
1801         (find_expr_with_wfl, missing_return_error,
1802         unreachable_stmt_error): New functions.
1803         (java_get_real_method_name): Identify constructors bearing class
1804         names in source code compiled classes only.
1805         (java_complete_expand_methods): Call missing_return_error.
1806         (invocation_mode): Private methods invoked as static methods.
1807         (java_complete_tree): Call unreachable_stmt_error.
1808
1809 1998-12-01  Tom Tromey  <tromey@cygnus.com>
1810
1811         * Makefile.in (+target): Removed.
1812         (+xmake_file): Likewise.
1813         (+tmake_file): Likewise.
1814         (.NOEXPORT): Removed duplicate.
1815
1816 Fri Nov 27 13:20:51 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1817
1818         * Makefile.in (jc1, jv-scan): Link with $(SUBDIR_OBSTACK).
1819
1820         * jv-scan.c: Fix xmalloc prototype.  Provide an xmalloc definition.
1821         
1822         * jvgenmain.c: Remove the xmalloc prototype, we get it from
1823         libiberty.h.  Provide an xmalloc definition.
1824
1825         * jvspec.c: Remove the xmalloc prototype.
1826
1827         * parse-scan.y: Include config.h and system.h.  Don't include
1828         OS headers or gansidecl.h.  Don't prototype xmalloc/xstrdup.
1829         Provide an xstrdup definition.
1830
1831 Thu Nov 26 22:03:58 1998  Alexandre Oliva  <oliva@dcc.unicamp.br>
1832
1833         * jcf-path.c (add_entry): Recognize ".jar" too.
1834         * lang-specs.h: Likewise.
1835
1836 Thu Nov 26 12:44:07 1998  Per Bothner  <bothner@cygnus.com>
1837
1838         * jcf-write.c (generate_bytecode_insns):  In Call_EXPR, handle
1839         soft_monitorenter_node, soft_monitorexit_node, throw_node.
1840
1841         * jcf-write.c (generate_bytecode_insns):
1842         Handle pre/post-increment/decrement of long.
1843
1844         * jcf-write.c (generate_bytecode_insns):
1845         Handle missing exception handler (finally for synchronized).
1846
1847 Wed Nov 25 09:47:15 1998  Per Bothner  <bothner@cygnus.com>
1848
1849         * java-tree.h (end_params_node):  Declare global.
1850         * decl.c (end_params_node):  New global.
1851         (init_decl_processing, start_java_method):  Use end_params_node for
1852         end of list of parameter types.  Follows correct gcc conventions.
1853         * expr.c (pop_argument_types, pop_arguments):  Likewise.
1854         * lang.c (put_decl_node):  Likewise.
1855         * typeck.c (various places):  Likewise.
1856         * class.y (various places):  Likewise.
1857         * parse.y (various places):  Likewise.
1858
1859         * parse.y (java_complete_tree):  Move CAN_COMPLETE_NORMALLY.
1860         (build_jump_to_finally):  Add missing CAN_COMPLETE_NORMALLY.
1861
1862         * class.c:  Add #include flags.h, remove no-longer needed declaration.
1863
1864         * class.c (layout_class_method):  Remove commented-out code, re-format.
1865         Don't add vtable entry (or index) for private methods.
1866         * expr.c (expand_invoke):  A private method is implicitly final.
1867         * class.c (make_class_data):  If inlining or optimizing,
1868         skip private methods.
1869
1870         * class.c (finish_class):  New function.  Calls existing methods,
1871         but alls emits deferred inline functions.
1872         * jcf-parse.c (parse_class_file):  Call finish_class.
1873         * parse.y (java_complete_expand_methods):  Likewise.
1874
1875         * expr.c (build_java_binop):  Explicit default, to silence -Wall.
1876
1877         * expr.c (CHECK_PC_IN_RANGE):  Add void cast to kill warnings.
1878
1879 Wed Nov 25 00:50:58 1998  Marc Espie <espie@quatramaran.ens.fr>
1880
1881         * jcf-write.c (generate_bytecode_conditional): Fix typo.
1882
1883 Tue Nov 24 17:06:38 1998  Per Bothner  <bothner@cygnus.com>
1884
1885         * (generate_classfile): Always write class access flag with
1886         ACC_SUPER set.
1887
1888 Tue Nov 24 16:34:33 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1889
1890         * class.c (maybe_layout_super_class): New function.
1891         (layout_class): Reorganized. Loop on class methods dispatched into
1892         a new function. Call maybe_layout_super_class.
1893         (layout_class_methods, layout_class_method): New functions.
1894         * expr.c (expand_java_NEW): Call layout_class_methods on loaded
1895         class.
1896         (expand_invoke): Likewise.
1897         * java-tree.h (all_class_list): New global variable declared.
1898         (layout_class_methods, layout_class_method): New function
1899         prototypes.
1900         (LAYOUT_SEEN_CLASS_METHODS): New macro.
1901         * jcf-parse.c (all_class_list): New global variable.
1902         (load_class): Extended what class_or_name can be. Use parser
1903         context mechanism to save globals before calling jcf_parse.
1904         (jcf_parse_source): Don't parse twice if HAS_BEEN_ALREADY_PARSED_P
1905         is set on the file name.
1906         (jcf_parse): Layout class methods when Object is loaded, otherwise
1907         record class in all_class_list for delayed method layout.
1908         (parse_class_file): Use LAYOUT_SEEN_CLASS_METHODS.
1909         * lang.c (put_decl_node): Decode <init> into the decl context
1910         class name.
1911         * lex.c (java_allocate_new_line): Use xmalloc.
1912         * parse.h (INCOMPLETE_TYPE_P): Redefined to work with incomplete
1913         pointers, not TREE_LIST elements.
1914         (struct parser_ctxt): Fixed comment indentations, added comments
1915         and reordered some fields.
1916         (java_check_methods): Function prototype removed.
1917         * parse.y (java_push_parser_context): Use xmalloc.
1918         (java_parser_context_restore_global): Pop extra pushed ctxp only
1919         when there's nothing next.
1920         (maybe_create_class_interface_decl): Fixed comment, add new
1921         created class decl to all_class_list.
1922         (method_header): Use GET_REAL_TYPE on argument's types.
1923         (method_declarator): Use GET_REAL_TYPE, change type to the real
1924         type in TREE_LIST dependency node. Build argument list with the
1925         real type.
1926         (create_jdep_list): Use xmalloc. Removed allocation error message.
1927         (obtain_incomplete_type): Fixed leading comment. Broadened
1928         incoming argument meaning.
1929         (register_incomplete_type): Use xmalloc. Removed allocation error
1930         message.
1931         (safe_layout_class): Fixed leading comment.
1932         (jdep_resolve_class): Reversed if statement condition and switch
1933         if and else bodies.
1934         (resolve_and_layout): Fixed leading comment. Broadened incoming
1935         argument meaning.
1936         (complete_class_report_errors): New local variable name, for
1937         clarity. purify_type_name used for all error cases.
1938         (java_get_real_method_name): Stricter check on constructors.
1939         (java_check_regular_methods): Reverse methods list only if not
1940         already laid out. Layout artificial constructor.
1941         (java_check_methods): Deleted.
1942         (source_start_java_method): Obtain incomplete type for patchable
1943         method arguments.
1944         (java_layout_classes): Fixed leading comment. Use
1945         LAYOUT_SEEN_CLASS_METHODS, use a loop to check methods. Added else
1946         statement to layout operation, reuse LAYOUT_SEEN_CLASS_METHODS
1947         before returning. Fixed comments.
1948         (java_expand_classes): Check for errors up front.
1949         (patch_method_invocation): Class to search is resolved and laid
1950         out.
1951         
1952 Tue Nov 24 12:57:13 1998  Per Bothner  <bothner@cygnus.com>
1953
1954         * expr.c (java_lang_expand_expr):  Add missing emit_queue.
1955
1956         * javaop.h (int8):  Removed - not used.
1957         (jbyte):  Redefine portably with correct signedness.
1958
1959         * jcf-write.c (generate_bytecode_insns):  Don't free sw_state.cases.
1960
1961         * jcf-write.c (generate_bytecode_insns):  Fix typo
1962         OPCODE_getstatic to OPCODE_getfield.
1963
1964         * java-tree.def (CASE_EXPR, DEFAULT_EXPR):  Kind is 'x', not '1'.
1965         * parse.y (java_complete_tree):  For CASE_EXPR and DEFAULT_EXPR,
1966         set TREE_SIDE_EFFECTS (otherwise expand_expr may skip them).
1967
1968 Thu Nov 19 11:16:55 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1969
1970         * jcf-parse.c (jcf_parse_source): Function returned type is
1971         void. Added prototype.
1972         (jcf_parse): Function returned type is void.
1973         (yyparse): Remove call to fclose on the last parsed file.
1974
1975         * java-tree.h (jcf_parse): Changed jcf_parse prototype.
1976
1977 Wed Nov 18 23:54:53 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1978
1979         * class.c (unmangle_classname): Set QUALIFIED_P when appropriate.
1980         (layout_class): Cope with methods featuring WFL in decl names.
1981         * decl.c (unqualified_object_id_node): New global variable,
1982         initialized.
1983         (build_decl_no_layout): Removed.
1984         * expr.c (build_primtype_type_ref): Handle Double.
1985         (java_lang_expand_expr): Fixed indentations.
1986         * java-tree.h (CLASS_METHOD_CHECKED_P): Flag deleted.
1987         (flag_wall, flag_redundant, flag_not_overriding,
1988         flag_static_local_jdk1_1, unqualified_object_id_node): Global
1989         variable declarations.
1990         (build_decl_no_layout): Removed prototype.
1991         (java_get_real_method_name): Added prototype.
1992         (IS_UNCHECKED_EXPRESSION_P): Renamed IS_UNCHECKED_EXCEPTION_P.
1993         (java_parse_abort_on_error): Macro now just returns.
1994         * jcf-parse.c (jcf_parse_source): Check fclose returned
1995         value. Call emit_register_classes if java_report_errors returns
1996         zero.
1997         * lanc.c (flag_wall, flag_redundant, flag_not_overriding,
1998         flag_static_local_jdk1_1): New integer flags.
1999         (lang_decode_option): New flags set here.
2000         * parse.h (GET_REAL_TYPE, GET_METHOD_NAME): New macros.
2001         (OBSOLETE_MODIFIER_WARNING): Issue error message conditionally to
2002         the flag_redundant variable.
2003         (SET_TYPE_FOR_RESOLUTION): Consider Object being java.lang.Object
2004         when parsing java.lang.Object class.
2005         (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT): Added terminal
2006         NULL_TREE to build.
2007         (resolve_qualified_expression_name): Fixed indentation.
2008         (patch_array_ref): Changed prototype.
2009         (not_initialized_as_it_should_p): Prototype removed.
2010         (java_report_errors): Added function prototype.
2011         * parse.y (formal_parameter:): Changed error message for not yet
2012         supported final parameters.
2013         (class_type_list:): Set both PURPOSE and VALUE of created
2014         TREE_LIST to be class_type.
2015         (primary_no_new_array:): Handle class literals on primitive types.
2016         (parse_warning_context): Reinstalled correct force_error and
2017         do_warning flags setups.
2018         (java_report_errors): Changed prototype. Return java_error_count
2019         value.
2020         (variable_redefinition_error): Consider treating variable type as
2021         a fake pointer.
2022         (create_interface): Warn about redundant abstract modifier if
2023         flag_redundant is set. Changed error message.
2024         (lookup_field_wrapper): Save/restore globals before/after looking
2025         up field.
2026         (duplicate_declaration_error_p): Consider treating declaration
2027         type as a fake pointer.
2028         (register_fields): Extract real type from dependency node. Check
2029         for duplicate field declaration after type adjustment. Use
2030         DECL_INITIAL to store static final initialized values.
2031         (method_header): Extract real function type from dependency node.
2032         (check_abstract_method_header): Use GET_METHOD_NAME.
2033         (obtain_incomplete_type): Layout fake pointer type.
2034         (safe_layout_class): Don't try to check for methods before layout.
2035         (java_complete_class): Don't check for correct throws clause
2036         elements inheritance here.
2037         (resolve_and_layout): Broadened name parameter meaning.
2038         (reset_method_name): Use GET_METHOD_NAME.
2039         (java_get_real_method_name): New function.
2040         (java_check_regular_methods): Don't check methods in
2041         java.lang.Object.  Verify lineage of throws clause elements. Use
2042         flag_no_overriding in warning report.
2043         (check_throws_clauses): Don't check if class was from
2044         bytecode. Use IS_UNCHECKED_EXCEPTION_P macro.
2045         (java_check_methods): Don't set CLASS_METHOD_CHECKED_P flag.
2046         (declare_local_variables): Use flag_static_local_jdk1_1 to report
2047         warning on unsupported final local variables. Use build_decl
2048         instead of build_decl_no_layout. Get real local variable type from
2049         dependency node.
2050         (source_start_java_method): Get real parameter type from
2051         dependency node. Call build_decl instead of build_decl_no_layout.
2052         (java_layout_classes): Reverse tree and layout type and class as
2053         required. Mark class as loaded when done.
2054         (resolve_field_access): Fixed indentation. Restricted condition
2055         leading to static field access code generation. Set field_type
2056         decl's TREE_TYPE if QUAL_DECL_TYPE not available.
2057         (resolve_qualified_expression_name): Initialize type_found to
2058         null. Handle static field resolved during qualification. Fixed
2059         layout on non primitive field decl types.
2060         (not_accessible_p): Fixed typo in comment.
2061         (patch_method_invocation): Resolve and layout class to search from
2062         type.
2063         (lookup_method_invoke): Keep integer constant 0 as is. Resolve and
2064         layout non primitive type, if necessary. Make method node only to
2065         report errors.
2066         (find_applicable_accessible_methods_list): Consider WFL'ed method
2067         decl names. Fixed indentation.
2068         (argument_types_convertible): Resolve and layout target type if
2069         necessary.
2070         (java_complete_tree): Fixed indentation problems. Rewrote
2071         CALL_EXPR thrown exceptions check. Re-installed further processing
2072         of the assignment in certain cases.
2073         (patch_assignment): Call maybe_build_primttype_type_ref to perform
2074         inlining on class literals.
2075         (valid_builtin_assignconv_identity_widening_p): Cope with constant
2076         0 literal.
2077         (valid_method_invocation_conversion_p): Likewise.
2078         (patch_string): Temporary disable forbidden use of `this' in
2079         explicit constructor invocations when doing string concatenation
2080         within their scope.
2081         (patch_unaryop): Added comment. Reinstalled code to disable
2082         further check on assignment operation with cast expression RHS.
2083         (patch_switch_statement): Fixed indentation.
2084         (build_try_statement): Call build_decl instead of
2085         build_decl_no_layout.
2086         (patch_synchronized_statement): Likewise.
2087         (patch_throw_statement): Use IS_UNCHECKED_EXCEPTION_P instead of
2088         IS_UNCHECKED_EXPRESSION_P.
2089         (check_thrown_exceptions_do): Changed leading comment. Resolve and
2090         layout argument exception type.
2091         (purge_unchecked_exceptions): Use IS_UNCHECKED_EXCEPTION_P instead
2092         of IS_UNCHECKED_EXPRESSION_P.
2093         
2094 Wed Nov 18 14:21:48 1998  Anthony Green  <green@cygnus.com>
2095
2096         * jcf-parse.c (yyparse): Open class file in binary mode.
2097
2098 Sun Nov 15 17:14:17 1998  Per Bothner  <bothner@cygnus.com>
2099
2100         * jvgenmain.c:  Need to #include "gansidecl.h" (to get PROTO).
2101
2102         * jcf-write.c (perform_relocations):  Move check out one loop.
2103
2104 Sun Nov 15 15:09:56 1998  Anthony Green  <green@hoser.cygnus.com>
2105
2106         * Make-lang.in: Fix reference to srcdir.
2107         * jv-scan.c: Add missing xmalloc prototype.
2108         * jvgenmain.c: Ditto.
2109
2110 Sun Nov 15 14:36:29 1998  Per Bothner  <bothner@cygnus.com>
2111
2112         * decl.c (error_mark_node), java-tree.h:  New global.
2113         * parse.y:  Use empty_stmt_node instead of size_zero_node.
2114         (build_if_else_statement):  If missing else, use empty_stmt_node.
2115
2116         * parse.y (not_initialized_as_it_should_p):  Removed, with its callers.
2117         (java_complete_expand_method):  Complain if return is missing.
2118         (java_check_regular_methods):  Comment out incorrect error check.
2119         (not_accessible_p):  Fix incorrect handling of protected methods.
2120         (patch_method_invocation):  Pass correct context to not_accessible_p.
2121         (find_applicable_accessible_methods_list):  Likewise.
2122         (qualify_ambiguous_name):  If ARRAY_REF, it's an expression name.
2123         (java_complete_tree):  For CASE_EXPR and DEFAULT_EXPR, set
2124         TREE_TYPE (to void_type_node);  otherwise expand_expr crashes.
2125         (patch_if_else_statement):  Fix setting of CAN_COMPLETE_NORMALLY.
2126
2127         * jcf-write.c (CHECK_OP, CHECK_PUT):  Add some error checking.
2128         (push_int_const):  Remove reundant NOTE_PUSH.
2129         (generate_bytecode_insns - case STRING_CST):  Do NOTE_PUSH.
2130         (- case SWITCH_EXPR):  Fix code generation bug.
2131         (- case PREDECREMENT_EXPR etc):  Remove redundant NOTE_PUSH.
2132         (generate_classfile):  More robust for abstract methods.
2133
2134 Sun Nov 15 13:52:39 1998  Anthony Green  <green@cygnus.com>
2135
2136         * Makefile.in: jv-scan and jvgenmain all require libiberty.
2137         * Make-lang.in: Ditto.
2138
2139         * jv-scan.c: Remove xmalloc and xstrdup definitions.
2140         * jvgenmain: Ditto.
2141
2142 Sun Nov 15 14:10:56 1998  Per Bothner  <bothner@cygnus.com>
2143
2144         * jcf-parse.c (HANDLE_EXCEPTIONS_ATTRIBUTE):  New macro.
2145
2146         * jcf-io.c (find_class):  Simpler/cleaner structure fixes a bug.
2147
2148 Sat Nov 14 17:19:18 1998  Per Bothner  <bothner@cygnus.com>
2149
2150         Allow uses of interface types to verify.  This is not really
2151         type-safe, but it matches what Sun does, and is OK as long as
2152         there are appropriate run-time checks.
2153         * verify.c (merge_types):  If merging two interface types,
2154         just set the result to java.lang.Object.
2155         * expr.c (pop_type):  Any interface is matches by java.lang.Object.
2156
2157 1998-11-13  Tom Tromey  <tromey@cygnus.com>
2158
2159         * gjavah.c (main): Handle --output-class-directory argument.
2160         * jvspec.c (lang_specific_driver): Translate `-d' into
2161         -foutput-class-dir.
2162         * jcf.h (jcf_write_base_directory): Declare.
2163         * lang.c (lang_decode_option): Recognize -foutput-class-dir.
2164         * lang-options.h: Mention -foutput-class-dir.
2165         * jcf-write.c (jcf_write_base_directory): New global.
2166         (make_class_file_name): Put generated .class file into `-d'
2167         directory, or into source directory if -d not given.  Function now
2168         static.
2169         (write_classfile): Free class file name.  Handle case where class
2170         file name is NULL.
2171         (DIR_SEPARATOR): New macro.
2172         Include <sys/stat.h>
2173
2174         * Makefile.in (prefix): New macro.
2175
2176 Thu Nov 12 14:15:07 1998  Per Bothner  <bothner@cygnus.com>
2177
2178         * parse.y (patch_invoke):  Do less if flag_emit_class_files.
2179         * expr.c (build_known_method_ref):  Don't check flag_emit_class_files
2180         here (done in patch_invoke instead).
2181         (case_identity):  Moved here from parse.y.
2182
2183         * java-tree.h (CAN_COMPLETE_NORMALLY):  New macro.
2184         * parse.y (java_complete_tree etc):  Maybe set CAN_COMPLETE_NORMALLY.
2185         * parse.y (java_complete_tree):  Re-order COMPOUND_EXPR in BLOCK
2186         so they can be efficiently scanned without recursion.
2187         Error it ! CAN_COMPLETE_NORMALLY first part of COMPOUND_EXPR.
2188         * expr.c (java_lang_expand_expr):  Expand statements of COMPOUND_EXPR
2189         in BLOCK iteratively, rather than recursively.
2190
2191         * parse.y (do_unary_numeric_promotion):  New function.
2192         (patch_unaryop, patch_binop, patch_array_ref):  Use it.
2193
2194         * parse.y (patch_newarray):  Various fixes.
2195
2196         Re-do handling of switch statements (for proper block scoping).
2197         * parse.y:  Add just a single block for the enture switch block,
2198         but don't create any "case blocks".
2199         (group_of_labels):  Rmeoved unneeded non-terminal.
2200         CASE_EXPR and DEFAULT_EXPR are added to current block.
2201         * expr.c (java_lang_expand_expr):  Inline SWITCH_EXPR here.
2202         Now also need to handle CASE_EXPR and DEFAULT_EXPR.
2203         * java-tree.h (SWITCH_HAS_DEFAULT):  New macro.
2204         * parse.y (wfl_operator, print_int_node): Make non-static.
2205         (java_complete_tree):  CASE_EXPR and DEFAULT_EXPR are now processed
2206         as part of recursive scan of block.
2207         (java_expand_switch ):  Removed - inlined into java_lang_expand_expr.
2208         (patch_switch_statement):  Most tests move dinto java_complete_tree.
2209         
2210         * parse.y:  Make various production be non-typed (void).
2211         * parse.y (parse_error):  Merged into issue_warning_error_from_context.
2212         * parse.y (add_stmt_to_compound):  Don't create/change extra node.
2213         (patch_method_invocation_stmt):  Renamed to patch_method_invocation.
2214
2215         * jcf-write.c (struct jcf_handler):  New type.
2216         (struct jcf_switch_state):  New type.
2217         (SWITCH_ALIGN_RELOC, BLOCK_START_RELOC):  New relocation kinds.
2218         (alloc_handler, emit_unop, emit_reloc):  New functions.
2219         (adjust_typed_op):  Add extra parameter ("max type" offset).
2220         (emit_switch_reloc, emit_case-reloc):  New function.
2221         (generate_bytecode_conditional):  Handle REAL_TYPE comparisons.
2222         (generate_bytecode_insns):  Support REAL_CST, switch statements,
2223         exception handling, method calls, object/array creation, and more.
2224         
2225         * class.c:  Remove some unused variables.
2226         * constants.c (find_string_constant):  New function.
2227         (count_constant_pool_bytes):  Fix to correctly handle wide constants.
2228         * decl.c (complete_start_java_method):  Don't _Jv_InitClass
2229         if flag_emit_class_files.
2230
2231 1998-11-12  Tom Tromey  <tromey@cygnus.com>
2232
2233         * jcf-io.c (find_class): Added explanatory comment.
2234
2235         * jcf-path.c (add_entry): Look for `.zip' at end of filename.  Add
2236         trailing slash to `.zip' entries.
2237
2238         * jvspec.c (lang_specific_driver): Correctly handle case where
2239         GC_NAME not defined.
2240
2241 1998-11-11  Tom Tromey  <tromey@cygnus.com>
2242
2243         * jvspec.c (GC_NAME): New define.
2244         (lang_specific_driver): Use GC_NAME.  Add GC_NAME to command line
2245         if required.
2246         * Make-lang.in (jvspec.o): Define WITH_GC_<name>.
2247
2248 Wed Nov 11 19:08:52 1998  Per Bothner  <bothner@cygnus.com>
2249
2250         * jcf-dump.c (TABLE_SWITCH):  Fix typos.
2251
2252 1998-11-11  Tom Tromey  <tromey@cygnus.com>
2253
2254         * jcf-dump.c (main): Correctly recognize `--'-style long options.
2255
2256 Tue Nov 10 12:34:03 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2257
2258         * class.c (is_compiled_class): Call safe_layout_class for class
2259         compiled from source.
2260         * conver.h (convert_to_integer, convert_to_real,
2261         convert_to_pointer): Added prototypes.
2262         * decl.c (init_decl_processing): Non longer push the decls of
2263         `methodtable', `constants', `Class', `Field', `dispatchTable'
2264         `jexception' and `Method'.
2265         * expr.c (build_invokeinterface): New function.
2266         (expand_invoke): static variable CLASS_IDENT now in
2267         build_invokeinterface. Use build_invokeinterface.
2268         (expand_java_field_op): Moved code to inline
2269         java.lang.PRIMTYPE.TYPE into a function.
2270         (build_primtype_type_ref): New function.
2271         * java-tree.def (INSTANCEOF_EXPR): New tree code.
2272         * java-tree.h (CLASS_METHOD_CHECKED_P, METHOD_DEPRECATED,
2273         FIELD_DEPRECATED, CLASS_DEPRECATED): New flag macros.
2274         (DECL_CONSTRUCTOR_P): Fixed typo in comment.
2275         (DECL_LOCAL_STATIC_VALUE): New macro.
2276         (build_invokeinterface, build_primtype_type_ref): New function
2277         prototypes.
2278         (java_parse_abort_on_error): Macro rewritten.
2279         * jcf-parse.c (current_method): Add comment to declaration.
2280         (parse_zip_file_entries, process_zip_dir, void parse_source_file):
2281         Function prototypes fixed.
2282         (jcf_parse_source): push/pop parser context. save/restore global.
2283         (parse_source_file): Fixed leading comment. Now take a
2284         IDENTIFIER_NODE as an argument. Doesn't check methods, layout
2285         classes and pop the parser context anymore.
2286         (yyparse): Push parser context, save globals, parse the source
2287         file, restore globals and pop the parser context when processing a
2288         source file.
2289         * jcf.h (VERBOSE_SKELETON): Replaces SOURCE_FRONTEND_DEBUG define.
2290         * lex.c (java_parse_doc_section): New function.
2291         (java_lex): Call java_parse_doc_section when appropriate. Build an
2292         operator around INSTANCEOF_TK.
2293         * lex.h (java_lineterminator, java_sprint_unicode,
2294         java_unicode_2_utf8, java_lex_error, java_store_unicode):
2295         Prototypes rewritten.
2296         (java_parse_escape_sequence, java_letter_or_digit_p,
2297         java_parse_doc_section, java_parse_end_comment, java_get_unicode,
2298         java_read_unicode, java_store_unicode, java_read_char,
2299         java_allocate_new_line, java_unget_unicode, java_sneak_unicode):
2300         Added function prototypes.
2301         * parse.h (VERBOSE_SKELETON): Replaces SOURCE_FRONTEND_DEBUG
2302         define.
2303         (JNULLP_TYPE_P, CHECK_METHODS, CHECK_DEPRECATED, REGISTER_IMPORT):
2304         New macros
2305         (struct parser_ctxt): New fields: deprecated,
2306         current_parsed_class_un, gclass_list.
2307         (fix_method_argument_names, issue_warning_error_from_context,
2308         resolve_package, lookup_package_type): New function prototypes.
2309         (resolve_expression_name): Fixed function prototype.
2310         (find_applicable_accessible_methods_list): Fixed indentation, added
2311         extra argument in prototype.
2312         (check_final_assignment, build_null_of_type, check_deprecation,
2313         check_method_redefinition, reset_method_name,
2314         java_check_regular_methods, java_check_abstract_methods,
2315         maybe_build_primttype_type_ref): New function prototype.
2316         * parse.y (conver.h): Include.
2317         (INSTANCEOF_TK): Tagged <operator>.
2318         (single_type_import_declaration): Use REGISTER_IMPORT macro.
2319         (relational_expression:): Build binop for instanceof.
2320         (java_push_parser_context): Remember ctxp->gclass_list across
2321         contexts.
2322         (java_pop_parser_context): Simply return if no context
2323         exists. Remember gclass_list across contexts.
2324         (issue_warning_error_from_context): New function.
2325         (parse_error_context): Don't setup ctxp->elc here. Call
2326         issue_warning_error_from_context instead.
2327         (parse_warning_context): Likewise.
2328         (maybe_create_class_interface_decl): Removed DECL_ARTIFICIAL
2329         setup. Link new class/interface to ctxp->gclass_list.
2330         (add_superinterfaces): Register interface as incomplete if not
2331         loaded.
2332         (create_class): Remember class unqualified name in
2333         ctxp->current_parsed_class_un. Check class deprecation.
2334         (register_fields): Check field deprecation. Remember static final
2335         field value in DECL_LOCAL_STATIC_VALUE. Changed comment in part
2336         processing INIT.
2337         (method_header): New local variable ORIG_ARG. Use unqualified
2338         current class name for check on constructor errors. Promote return
2339         type if of record type. Argument list fix moved in
2340         fix_method_argument_names, called here. Check method deprecation.
2341         (fix_method_argument_names): New function.
2342         (method_declarator): Promote record typed arguments.
2343         (safe_layout_class): Check class methods before layout.
2344         (java_complete_class): Compute field layout when patched.
2345         (do_resolve_class): Try to load class after having it renamed
2346         after the package name.
2347         (get_printable_method_name): Use DECL_CONTEXT.
2348         (reset_method_name): New function.
2349         (check_method_redefinition): Use reset_method_name.
2350         (java_check_regular_methods): New local variable
2351         SAVED_FOUND_WFL. Temporarily reinstall overriding/hiding method
2352         names for error report. Check for compile-time error when method
2353         found has default (package) access.
2354         (java_check_abstract_methods): Now takes an interface DECL node as
2355         an argument. Also reinstall real name on unchecked
2356         overriding/hiding methods for error report.
2357         (java_check_methods): Fixed leading comment. Get classes to verify
2358         from ctxp->gclass_list. Use CHECK_METHODS macro and set
2359         CLASS_METHOD_CHECKED_P on class verification.
2360         (lookup_java_method2): Get real method name if necessary.
2361         (find_in_imports): Don't check package class access here.
2362         (resolve_package, lookup_package_type): New functions.
2363         (java_layout_classes): Fixed leading comment. Take classes to be
2364         laid out from ctxp->gclass_list.
2365         (java_complete_expand_methods): Don't expand native and abstract
2366         methods.
2367         (java_expand_classes): New function.
2368         (resolve_expression_name): Use additional argument ORIG.  Retrieve
2369         values of static final field of primitive types.
2370         (resolve_field_access): Handles static final field of promotive
2371         type.
2372         (resolve_qualified_expression_name): Handle STRING_CST as
2373         primaries and package name resolution. Check deprecation on found
2374         decls. Set where_found and type_found on non static field resolved
2375         during qualification. Layout non primitive field decl types.
2376         (check_deprecation): New function.
2377         (maybe_access_field): Simplified.
2378         (patch_method_invocation_stmt): Local variable CLASS_TYPE
2379         removed. Reverse method's argument when primary is a type. Don't
2380         use CLASS_TYPE to report problems, use IDENTIFIER_WFL
2381         instead. Include abstract class in the list of class searchable
2382         for constructors. Use DECL_CONTEXT of found method for access
2383         checks. Check method deprecation.
2384         (patch_invoke): Pay extra care to NEW_CLASS_EXPR type call when
2385         converting arguments. Handle INVOKE_INTERFACE.
2386         (lookup_method_invoke): Search constructor using existing
2387         infrastructure (don't rely on lookup_java_constructor anymore).
2388         (find_applicable_accessible_methods_list): Extra argument flag
2389         LC. Now include constructor in the search.
2390         (qualify_ambiguous_name): Conditional expression are primaries.
2391         (not_initialized_as_it_should_p): static final are always
2392         initialized.
2393         (java_complete_tree): Pass extra NULL argument to
2394         resolve_expression_name. Stricter test to carry on patching
2395         assignments. New case for INSTANCEOF_EXPR.
2396         (complete_function_arguments): Inline PRIMTYPE.TYPE read access.
2397         (check_final_assignment, maybe_build_primttype_type_ref): New
2398         functions.
2399         (patch_assignment): Detect resolved static finals and carry normal
2400         assignment error check on them. Inline PRIMTYPE.TYPE read access.
2401         (try_builtin_assignconv): Access constant 0 on all primitive
2402         types.
2403         (valid_builtin_assignconv_identity_widening_p): Accept identical
2404         types. Accept all promoted type on int type.
2405         (valid_ref_assignconv_cast_p): Accept a null pointer to be
2406         assigned to a reference.
2407         (valid_method_invocation_conversion_p): Accept to check null
2408         pointers.
2409         (build_binop): Merge declaration and initialization of local
2410         variable BINOP.
2411         (patch_binop): New case for INSTANCEOF_EXPR. NE_EXPR to accept all
2412         numeric types. Improved validity test for qualify operators on
2413         references.
2414         (patch_unaryop): Broadened rejection test for PREDECREMENT_EXPR
2415         and PREINCREMENT_EXPR. Also detect resolved static finals of a
2416         primitive type and issue the appropriate error message.
2417         (resolve_type_during_patch): Mark class loaded when resolved.
2418         (patch_cast): Allow null to be cased to reference types.
2419         (build_null_of_type): New function.
2420         (patch_array_ref): Handle array on references correctly.
2421         (patch_return): Removed unused local variable MODIFY. Force
2422         boolean to be returned as integers. Allows null to be returned by
2423         a function returning a reference.
2424         * typeck.c (convert_to_integer, convert_to_real,
2425         convert_to_pointer): Prototypes moved to convert.h
2426         (lookup_argument_method): Use method real name, if necessary.
2427
2428 1998-10-30  Tom Tromey  <tromey@cygnus.com>
2429
2430         * class.c (build_class_ref): Changed name of primitive classes to
2431         start with `_Jv_'.
2432
2433         * class.c (make_class_data): Renamed fields: nmethods to
2434         method_count, method_count to dtable_method_count.  Always set
2435         `state' field to 0.
2436         * decl.c (init_decl_processing): Likewise.
2437
2438 Wed Oct 28 08:03:31 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2439
2440         * class.c (layout_class): Don't mangle <finit>, produce
2441         __finit<class> instead. Don't verify artificial methods.
2442         * decl.c (finit_identifier_node): New declared global.
2443         (init_decl_processing): finit_identifier_node initialized.
2444         * java-tree.def (CONDITIONAL_EXPR): New Java tree code.
2445         * java-tree.h (finit_identifier_node): Declared as extern.
2446         (struct lang_decl): New field called_constructor.
2447         (DECL_CONSTRUCTOR_CALLS): Access macro to called_constructor.
2448         (CLASS_HAS_FINIT_P): New macro.
2449         (CALL_CONSTRUCTOR_P): Leading comment changed. Macro now checks
2450         explicit constructor invocation.
2451         (CALL_EXPLICIT_CONSTRUCTOR_P, CALL_THIS_CONSTRUCTOR_P,
2452         CALL_SUPER_CONSTRUCTOR_P): New macros.
2453         (write_classfile): Added prototype.
2454         * jcf-parse.c (jcf_parse_source): Parse and remember for
2455         generation if the file was seen on the command line.
2456         (parse_source_file): Don't write the class file here.
2457         (yyparse): Loop on files rewritten. Set current_jcf.
2458         (parse_zip_file_entries): Parse class file only if it was found.
2459         * lang.c (init_parse): Don't open command line provided filename
2460         here.
2461         (lang_parse): Don't set main_jcf anymore.
2462         * parse.h (ABSTRAC_CHECK): Capitalized arguments.
2463         (JCONSTRUCTOR_CHECK): New macro.
2464         (JBSC_TYPE_P): New macro.
2465         (IN_TRY_BLOCK_P, EXCEPTIONS_P): Fixed leading comment.
2466         (COMPLETE_CHECK_OP_2): New macro.
2467         (struct parse_ctxt): New field explicit_constructor_p.
2468         (check_class_interface_creation): Fixed prototype indentation.
2469         (patch_method_invocation_stmt): Prototype reflects added argument.
2470         (patch_invoke): Likewise.
2471         (complete_method_declaration, build_super_invocation,
2472         verify_constructor_circularity,
2473         build_this_super_qualified_invocation, get_printable_method_name,
2474         patch_conditional_expr, maybe_generate_finit, fix_constructors,
2475         verify_constructor_super, create_artificial_method,
2476         start_artificial_method_body, end_artificial_method_body,
2477         generate_field_initialization_code): New function prototypes.
2478         * parse.y: Fixed leading comment
2479         (constructor_header:, constructor_body:, block_end:): Rules tagged
2480         <node>.
2481         (type_declaration:): Call maybe_generate_finit.
2482         (method_declaration:): Action for method_body: placed in new
2483         function complete_method_declaration, called here.
2484         (constructor_declaration:): Defined actions. Removed leading
2485         FIXME.
2486         (constructor_header:): New rule with action.
2487         (constructor_body:): Rule rewritten using block_begin: and
2488         block_end:. Defined actions.
2489         (constructor_declarator:, explicit_constructor_invocation:):
2490         Defined actions.
2491         (block:): Use new rules block_begin: block_end:.
2492         (block_begin:, block_end:): New rules and actions.
2493         (block_statements:): Fixed error message for explicit
2494         constructors.
2495         (method_invocation:): Call build_this_super_qualified_invocation
2496         if primary is `this' or `super' was seen.
2497         (conditional_expression:): Action defined.
2498         (extra_ctxp_pushed_p): New static global flag.
2499         (java_parser_context_save_global): Create parser context if
2500         necessary. Use extra_ctxp_pushed_p to remember it.
2501         (java_parser_context_restore_global): Pop extra parser context if
2502         one exists.
2503         (build_array_from_name): Array on primitive types are marked
2504         loaded.
2505         (register_fields): Restore new name in field initializer
2506         expression if type was altered. Non static fields initialized upon
2507         declaration marked initialized.
2508         (maybe_generate_finit): New function.
2509         (maybe_generate_clinit): Use create_artificial_method,
2510         start_artificial_method_body, end_artificial_method_body. Generate
2511         debug info for enclosed initialization statements.
2512         (method_header): Fixed leading comment. Check constructor
2513         flags. Detect constructor declarations and set DECL_CONSTRUCTOR_P
2514         accordingly.
2515         (complete_method_declaration, constructor_circularity_msg,
2516         verify_constructor_circularity): New functions.
2517         (get_printable_method_name): New function.
2518         (check_method_redefinition): Don't rename <finit> methods. Fix
2519         declared constructor names. Error message for
2520         constructors modified.
2521         (java_check_regular_methods): Local variable seen_constructor
2522         renamed saw_constructor. Skip verification on constructors. Create
2523         default constructor with create_artificial_method.
2524         (java_check_methods): Removed unnecessary empty line.
2525         (create_artificial_method, start_artificial_method_body,
2526         end_artificial_method_body): New functions.
2527         (java_layout_classes): Changed leading comment. Reverse fields
2528         list if necessary. Always layout java.lang.Object if being
2529         defined.
2530         (java_complete_expand_methods): Verify constructor circularity.
2531         (java_complete_expand_method): Call fix_constructor on
2532         constructors.  Local variable no_ac_found removed. Restore
2533         bindings if method body expansion failed.
2534         (fix_constructors, verify_constructor_super,
2535         generate_field_initialization_code): New function.
2536         (java_expand_classes): Fixed leading comment. Write class file
2537         here.
2538         (resolve_expression_name): Check for illegal instance variable
2539         usage within the argument scope of an explicit constructor
2540         invocation.
2541         (resolve_qualified_expression_name): Pass extra from_super flag
2542         when invoking patch_method_invocation_stmt. New case for
2543         conditional expression when used as a primary. Check for error
2544         when acquiring super.
2545         (patch_method_invocation_stmt): Added extra argument super. New
2546         local variable is_static_flag. Set class_to_search according to
2547         the nature of the constructor invocation. Don't add `this'
2548         argument when expanding NEW_CLASS_EXPR. Check for illegal method
2549         invocation within the argument scope of explicit constructor
2550         invocation. Set is_static according to is_static_flag. Provide
2551         extra `super' argument to patch_invoke invocation.
2552         (patch_invoke): New argument from_super. Loop on arguments
2553         indentation fixed. Pass from_super to invocation_mode. New switch
2554         case INVOKE_SUPER. Fixed error message in switch default case.
2555         Don't use CALL_CONSTRUCTOR_P but rather a test on the tree node
2556         value.
2557         (invocation_mode): Return INVOKE_SUPER mode when appropriate.
2558         (lookup_method_invoke): Fixed prototypes in candidates list. Error
2559         message takes constructors into account.
2560         (find_applicable_accessible_methods_list): Fixed indentation.
2561         (qualify_ambiguous_name): Take explicit constructor invocation
2562         into account. Deal with a conditional expression as a primary to
2563         a method call.
2564         (java_complete_tree): Added local wfl_op3. New CONDITIONAL_EXPR
2565         case. Added extra argument to patch_method_invocation_stmt.
2566         Register calls made to explicit constructor `this'. Don't call
2567         save_expr in ARRAY_REF case when emitting class files. Check for
2568         illegal use of this when expanding explicit constructor invocation
2569         arguments.
2570         (complete_function_arguments): Set and reset parser context
2571         explicit_constructor_p field value when appropriate.
2572         (build_super_invocation, build_this_super_qualified_invocation):
2573         New functions.
2574         (patch_assignment): Fixed typo.
2575         (patch_unaryop): Check on final fields occurs only when a decl
2576         exits.
2577         (patch_return): Take constructors into account.
2578         (patch_conditional_expr): New function.
2579         * typeck.c (build_java_signature): Removed unnecessary empty line.
2580         
2581 Wed Oct 28 00:46:15 1998  Jeffrey A Law  (law@cygnus.com)
2582
2583         * Makefile.in (jcf-dump, gcjh): Link in $(LIBS) too.
2584
2585 1998-10-28  Tom Tromey  <tromey@cygnus.com>
2586
2587         * decl.c (init_decl_processing): Renamed fields.
2588         * class.c (make_class_data): Renamed bfsize, nfields, nsfields,
2589         interface_len, msize fields.
2590
2591         * class.c (make_class_data): Removed subclass_head and
2592         subclass_next fields.
2593         * decl.c (init_decl_processing): Removed subclass_head and
2594         subclass_next fields.
2595
2596 Wed Oct 28 00:46:15 1998  Jeffrey A Law  (law@cygnus.com)
2597
2598         * jcf-write.c (emit_load_or_store): Avoid implicit int arguments.
2599         * mangle.c (emit_unicode_mangled_name): Similarly.
2600
2601 Mon Oct 26 12:17:23 1998  Nick Clifton  <nickc@cygnus.com>
2602
2603         * jcf-parse.c (get_constant): Place braces around code to compute
2604         'd' when REAL_ARITHMETIC is not defined.
2605
2606 Sun Oct 25 14:58:05 1998  H.J. Lu  (hjl@gnu.org)
2607
2608         * Make-lang.in (jv-scan$(exeext)): Add stamp-objlist to
2609         dependency.
2610
2611 1998-10-23  Tom Tromey  <tromey@cygnus.com>
2612
2613         * lang-specs.h: `.zip' files are input to jc1.
2614
2615 Thu Oct 22 23:01:54 1998  Per Bothner  <bothner@cygnus.com>
2616
2617         * jvspecs.c:  Add (but don't enable) support for combining multiple
2618         .class and .java input filenames to a single jc1 invocation.
2619         Add support for -C flag (copile to .class files).
2620         Translate -classpath and -CLASSPATH arguments.
2621         * lang-specs.h:  Don't set %2 spec.
2622
2623 1998-10-22  Tom Tromey  <tromey@cygnus.com>
2624
2625         * jcf-path.c (add_entry): Don't add trailing separator if entry is
2626         a .zip file.
2627         (add_path): Don't add trailing separator to non-empty path
2628         elements.
2629
2630         * lang.c (lang_decode_option): Check for -fclasspath and
2631         -fCLASSPATH before examining other `-f' options.
2632
2633         * java-tree.h (finalize_identifier_node): Don't declare.
2634         * class.c (make_class_data): Don't push "final" field.
2635         * decl.c (init_decl_processing): Don't push "final" field.
2636         (finalize_identifier_node): Removed.
2637         (init_decl_processing): Don't set finalize_identifier_node.
2638
2639         * config-lang.in (stagestuff): Added jcf-dump and jv-scan.
2640
2641 Sun Oct 11 10:31:52 1998  Anthony Green  <green@cygnus.com>
2642
2643         * Make-lang.in (java): Depend on jcf-dump and jv-scan.
2644         (JV_SCAN_SOURCES): New macro.
2645         (JCF_DUMP_SOURCES): Likewise.
2646         (jcf-dump$(exeext)): New target.
2647         (jv-scan$(exeext)): New target.
2648
2649 1998-10-22  Tom Tromey  <tromey@cygnus.com>
2650
2651         * Makefile.in (LEX): Removed.
2652         (LEXFLAGS): Likewise.
2653         (SET_BISON): New macro.
2654         (BISON): Removed.
2655         ($(PARSE_C)): Use SET_BISON.  Run bison from srcdir to avoid
2656         spurious diffs in parse.c.
2657         ($(PARSE_SCAN_C)): Likewise.
2658         (PARSE_DIR): New macro.
2659         (PARSE_C): Use it.
2660         (PARSE_SCAN_C): Likewise.
2661         (PARSE_RELDIR): New macro.
2662
2663         * jcf-io.c (saw_java_source): Define here, not in jcf-parse.c.
2664
2665         * jcf-io.c (find_class): Use saw_java_source to determine when to
2666         look for `.java' file.
2667         * jcf-parse.c (saw_java_source): New global.
2668         (yyparse): Set it if `.java' file seen.
2669
2670         * Make-lang.in (JAVA_SRCS): Added jcf-path.c.
2671         (GCJH_SOURCES): Likewise.
2672         * Makefile.in (datadir): New macro.
2673         (libjava_zip): Likewise.
2674         (JAVA_OBJS): Added jcf-path.o.
2675         (../jcf-dump$(exeext)): Depend on and link with jcf-depend.o.
2676         (../gcjh$(exeext)): Likewise.
2677         (jcf-path.o): New target.
2678         * java-tree.h (fix_classpath): Removed decl.
2679         * jcf-parse.c (fix_classpath): Removed.
2680         (load_class): Don't call fix_classpath.
2681         * parse.y (read_import_dir): Don't call fix_classpath.
2682         * lex.h: Don't mention classpath.
2683         * lex.c (java_init_lex): Don't initialize classpath.
2684         * jcf-io.c (classpath): Removed global.
2685         (find_class): Use jcf_path iteration functions.  Correctly search
2686         class path for .java file.
2687         (open_in_zip): New argument `is_system'.
2688         * jcf-dump.c (main): Call jcf_path_init.  Recognize all new
2689         classpath-related options.
2690         * lang.c (lang_decode_option): Handle -fclasspath, -fCLASSPATH,
2691         and -I.
2692         (lang_init): Call jcf_path_init.
2693         * lang-options.h: Mention -I, -fclasspath, and -fCLASSPATH.
2694         * lang-specs.h: Handle -I.  Minor cleanup to -M options.
2695         Correctly put braces around second string in each entry.
2696         * gjavah.c (main): Call jcf_path_init.  Recognize all the new
2697         classpath-related options.
2698         (help): Updated for new options.
2699         * jcf.h: Declare functions from jcf-path.c.  Don't mention
2700         `classpath' global.
2701         * jcf-path.c: New file.
2702
2703         * jcf-depend.c: Include jcf.h.
2704
2705         * jcf-write.c (localvar_alloc): Returns `void'.
2706         (localvar_free): Removed unused variable.
2707
2708         * lang.c (OBJECT_SUFFIX): Define if not already defined.
2709         (init_parse): Use OBJECT_SUFFIX, not ".o".
2710
2711 Wed Oct 21 07:54:11 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2712
2713         * class.c (emit_register_classes): Renamed from
2714         emit_register_class.
2715         * java-tree.h (emit_register_classes): Prototype renamed from
2716         emit_register_class.
2717         * jcf-parse.c (yyparse): Call emit_register_classes once before
2718         returning.
2719         * parse.y (java_expand_classes): No longer register classes.
2720
2721 Tue Oct 20 09:15:38 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2722
2723         * class.c (is_compiled_class): New local variable
2724         seen_in_zip. Identify classes found in currently compiled source
2725         file(s).
2726         * decl.c (complete_start_java_method): Fixed typo.
2727         * java-tree.h (CLASS_FROM_CURRENTLY_COMPILED_SOURCE_P,
2728         HAS_BEEN_ALREADY_PARSED_P, IS_A_COMMAND_LINE_FILENAME_P): New macros.
2729         (CLASS_P): Moved around.
2730         (java_parse_abort_on_error): Macro moved from jcf-parse.c
2731         * jcf-parse.c (java_parse_abort_on_error): Macro moved to
2732         java-parse.h
2733         (jcf_parse_source): Changed leading comment. Removed unnecessary
2734         fclose and CLASS_FROM_SOURCE_P marking.
2735         (parse_source_file): New local variables remember_for_generation
2736         and filename. Mark parsed file name identifier node. Removed block
2737         executed when parse_only was null. Set remember_for_generation. 
2738         Use it as an argument to java_pop_parser_context.
2739         (yyparse): New local variables several_files, list, next node and
2740         current_file_list. Split ampersand separated file names into
2741         current_file_list. Iterate through the list and parse accordingly.
2742         * parse.h (java_pop_parser_context): New function prototype.
2743         * parse.y (ctxp_for_generation): New static global variable.
2744         (java_pop_parser_context): New argument generate. Link popped ctxp
2745         to ctxp_for_generation list accordingly.
2746         (java_complete_expand_methods): Fixed indentation.
2747         (java_expand_classes): New function.
2748         
2749 Sat Oct 17 11:25:21 1998  Per Bothner  <bothner@cygnus.com>
2750
2751         * Makefile.in:  Link with libiberty.a instead of memmove.o.
2752
2753 Fri Oct 16 10:59:01 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2754
2755         * lex.c (setjmp.h): No longer included.
2756         * lex.h (setjmp.h): Included.
2757         * parse.h (SET_TYPE_FOR_RESOLUTION): New macro.
2758         (duplicate_declaration_error_p): Renamed from
2759         duplicate_declaration_error.
2760         (build_array_from_name): New function prototype.
2761         * parse.y (setjmp.h): No longer included.
2762         (variable_declarator_id): Define action.
2763         (build_array_from_name): New function.
2764         (duplicate_declaration_error_p): Renamed from
2765         duplicate_declaration_error.  Fixed leading comment.
2766         (register_fields): Main `for' loop reorganized. Uses
2767         SET_TYPE_FOR_RESOLUTION and build_array_from_name.
2768         (method_declarator): Uses SET_TYPE_FOR_RESOLUTION and call
2769         build_array_from_name.
2770         (resolve_class): Set CLASS_LOADED_P on newly build array dimension
2771         types.
2772         (read_import_dir): Don't try to skip `.' and `..'.
2773         (declare_local_variables): Uses SET_TYPE_FOR_RESOLUTION and
2774         build_array_from_name. Main `for' loop reorganized.
2775         (resolve_qualified_expression_name): When building access to a
2776         field, use the type where the field was found, not its own type.
2777         (maybe_access_field): Use field DECL_CONTEXT if the type where the
2778         field was found is null.
2779         (qualify_ambiguous_name): Sweep through all successive array
2780         dimensions.
2781         
2782 Wed Oct 14 18:21:29 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2783
2784         * java-tree.h (pop_labeled_block, lang_printable_name,
2785         maybe_add_interface, set_super_info, get_access_flags_from_decl,
2786         interface_of_p, inherits_from_p, fix_classpath,
2787         complete_start_java_method, emit_handlers, init_outgoing_cpool,
2788         make_class_data, register_class, alloc_name_constant): New
2789         function prototypes.
2790         * lang.c (lang_decode_option): Set argc argument unused. Fixed
2791         indentation. Added cast to remove warning.
2792         (lang_printable_name): Set v argument unused.
2793         (lang_print_error): Added argument to lang_printable_name call.
2794         (java_dummy_print, print_lang_decl, print_lang_type,
2795         print_lang_identifier, lang_print_xnode): All argument marked
2796         unused.
2797         * lex.c (java_unget_unicode): Removed unnecessary argument.
2798         (java_allocate_new_line): Unused local variable is gone.
2799         (java_read_char): Added parenthesis in expressions to remove
2800         warnings.  Added final return statement.
2801         (java_read_unicode): Added parenthesis in expression to remove
2802         warning.
2803         (java_parse_end_comment): Fixed java_unget_unicode invocation.
2804         (java_parse_escape_sequence): Likewise.
2805         (java_lex): Unused local variables are gone. Fixed
2806         java_unget_unicode invocation.
2807         * lex.h (set_float_handler): Prototype added when JC1_LITE not
2808         defined.
2809         * parse.h (ERROR_CANT_CONVERT_TO_BOOLEAN): Fixed
2810         lang_printable_name invocation in macro.
2811         (ERROR_CANT_CONVERT_TO_NUMERIC, ERROR_CAST_NEEDED_TO_INTEGRAL):
2812         Likewise.
2813         (duplicate_declaration_error): Suppressed unused argument in
2814         prototype.
2815         (identical_subpath_p): Function declaration is gone.
2816         (patch_invoke): Suppressed unused argument in prototype.
2817         (patch_cast, build_labeled_block, check_thrown_exceptions):
2818         Likewise.
2819         * parse.y (setjmp.h): Included
2820         (toplev.h): Likewise.
2821         (field_declaration:): Suppressed unused local
2822         (label_decl:): Fixed build_labeled_block invocation.
2823         (java_pop_parser_context): Put extra parenthesis around assignment
2824         in if.
2825         (yyerror): Suppressed unused local variables.
2826         (variable_redefinition_error): Fixed lang_printable_name
2827         invocation.
2828         (create_interface): Suppressed unused local variables.
2829         (create_class): Likewise.
2830         (duplicate_declaration_error): Suppressed unused argument. Fixed
2831         lang_printable_name invocation.
2832         (register_fields): Suppressed unused local variable. Fixed
2833         duplicate_declaration_error invocation.
2834         (method_header): Suppressed unused local variable.
2835         (method_declarator, parser_check_super): Likewise.
2836         (java_complete_class): Suppressed unused local variable. Fixed
2837         fatal error message.
2838         (complete_class_report_errors): Added default: in switch.
2839         (java_check_regular_methods): Fixed lang_printable_name
2840         invocations.
2841         (check_throws_clauses): Likewise.
2842         (java_check_abstract_methods): Suppressed unused local
2843         variable. Fixed lang_printable_name invocation.
2844         (read_import_entry): Added supplemental return statement.
2845         (read_import_dir): Suppressed unused local variables.
2846         (check_pkg_class_access, declare_local_variables): Likewise.
2847         (source_start_java_method): Suppressed unused extern variable
2848         declarations
2849         (expand_start_java_method): Suppressed unused extern and local
2850         variable declarations.
2851         (java_complete_expand_methods): Likewise.
2852         (java_complete_expand_method): Suppressed unused local variables.
2853         (make_qualified_name): Likewise.
2854         (resolve_qualified_expression_name): Added default: in
2855         switch. Fixed lang_printable_name invocation.
2856         (class_instance_creation_expression): Added parenthesis around
2857         expressions.
2858         (patch_method_invocation_stmt): Fixed lang_printable_name and
2859         patch_invoke invocations.
2860         (check_for_static_method_reference): Fixed lang_printable_name
2861         invocation.
2862         (patch_invoke): Suppressed unused arguments and local variables.
2863         (lookup_method_invoke): Suppressed unused local variables.
2864         (qualify_ambiguous_name): Added default: in switch.
2865         (identical_subpath_p): Function removed.
2866         (patch_assignment): Suppressed unused local variables. Suppressed
2867         unnecessary if statement. Fixed lang_printable_name invocations.
2868         (try_builtin_assignconv): Fixed lang_printable_name invocations.
2869         (valid_ref_assignconv_cast_p): Parenthesis around
2870         expression. Suppressed unused local variables.
2871         (build_binop): Suppressed unused local variables. fixed
2872         lang_printable_name invocations.
2873         (string_constant_concatenation): Suppressed unused local
2874         variables.
2875         (patch_unaryop): Fixed lang_printable_name invocation.
2876         (patch_cast): Suppressed unnecessary argument. Fixed
2877         lang_printable_name invocation.
2878         (patch_array_ref): Fixed lang_printable_name invocation.
2879         (patch_newarray, patch_return, patch_if_else_statement): Likewise.
2880         (build_labeled_block): Suppressed unused argument.
2881         (generate_labeled_block): Fixed build_labeled_block invocation.
2882         (build_loop_body): Suppressed unused local variables.
2883         (patch_loop_statement): Likewise.
2884         (patch_exit): Fixed lang_printable_name invocation.
2885         (patch_switch_statement): Likewise.
2886         (case_identity): First argument marked unused.
2887         (patch_try_statement): Fixed lang_printable_name invocations.
2888         (patch_synchronized_statement, patch_throw_statement): Likewise.
2889         (check_thrown_exceptions): Fixed check_thrown_exceptions and
2890         lang_printable_name invocations.
2891         (check_thrown_exceptions_do): Suppressed unused argument.
2892
2893 1998-10-14  Tom Tromey  <tromey@cygnus.com>
2894
2895         * jcf-write.c (write_classfile): Add output class file as target.
2896         * lang-options.h: Added -MD, -MMD, -M, and -MM.
2897         * jcf.h: Added declarations for dependency-tracking functions.
2898         * lang-specs.h: Handle -M, -MM, MD, and -MMD.
2899         * lang.c (lang_decode_option): Recognize -MD and -MMD.
2900         (finish_parse): Call jcf_dependency_write.
2901         (dependency_tracking): New global.
2902         (DEPEND_SET_FILE): New define.
2903         (DEPEND_ENABLE): New define.
2904         (init_parse): Enable dependency tracking if required.
2905         Include "flags.h".
2906         * Makefile.in (JAVA_OBJS): Added jcf-depend.o.
2907         (../jcf-dump$(exeext)): Depend on and link with jcf-depend.o.
2908         (../gcjh$(exeext)): Likewise.
2909         (jcf-depend.o): New target.
2910         * Make-lang.in (JAVA_SRCS): Added jcf-depend.c.
2911         (GCJH_SOURCES): Likewise.
2912         * jcf-io.c (open_class): Call jcf_dependency_add_file.  Added
2913         dep_name argument.
2914         (find_classfile): Added dep_name argument.
2915         (find_class): Compute name of dependency.
2916         (open_in_zip): Call jcf_dependency_add_file.
2917         * gjavah.c (output_file): No longer global.
2918         (usage): Don't mention "gjavah".
2919         (help): Likewise.
2920         (java_no_argument): Likewise.
2921         (version): Likewise.
2922         (main): Recognize and handle -M family of options.
2923         (print_mangled_classname): Return is void.
2924         (process_file): Handle case where output is suppressed.
2925         (HANDLE_END_FIELD): Likewise.
2926         (HANDLE_METHOD): Likewise.
2927         * jcf-depend.c: New file.
2928
2929 Tue Oct 13 23:34:12 1998  Jeffrey A Law  (law@cygnus.com)
2930
2931         * java-tree.def: Add missing newline at EOF.
2932
2933 1998-10-13  Tom Tromey  <tromey@cygnus.com>
2934
2935         * jcf-dump.c (process_class): Use FATAL_EXIT_CODE, not -1.
2936         (main): Likewise.  Exit with SUCCESS_EXIT_CODE at end of
2937         function.
2938         Include <config.h> and "system.h".
2939         (disassemble_method): Undefine RET to avoid clash with
2940         config/i386/i386.h.
2941
2942 Tue Oct 13 03:50:28 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
2943
2944         * decl.c (runtime_exception_type_node, error_exception_type_node):
2945         New global variables.
2946         (init_decl_processing): Initialized.
2947         * expr.c (java_lang_expand_expr): Set caught exception type to
2948         null if catch handler argument doesn't exit.
2949         * java-tree.def (SYNCHRONIZED_EXPR, THROW_EXPR): New Java specific
2950         tree codes.
2951         * java-tree.h (runtime_exception_type_node,
2952         error_exception_type_node): Global variables declared.
2953         (DECL_FUNCTION_THROWS): New macro.
2954         (DECL_FUNCTION_BODY): Modified comment.
2955         (DECL_SPECIFIC_COUNT): Likewise.
2956         (struct lang_decl): New field throws_list.
2957         (IS_UNCHECKED_EXPRESSION_P): New macro.
2958         * lex.c (java_lex): Generate location information for THROW_TK.
2959         * parse.h (PUSH_EXCEPTIONS, POP_EXCEPTIONS, IN_TRY_BLOCK_P,
2960         EXCEPTIONS_P): New macros.
2961         (enum jdep_code): New value JDEP_EXCEPTION.
2962         (BUILD_MONITOR_ENTER, BUILD_MONITOR_EXIT,
2963         BUILD_ASSIGN_EXCEPTION_INFO, BUILD_THROW, SET_WFL_OPERATOR,
2964         PATCH_METHOD_RETURN_ERROR): New macros.
2965         (patch_method_invocation_stmt): Added new argument to prototype.
2966         (patch_synchronized_statement, patch_throw_statement,
2967         check_thrown_exceptions, check_thrown_exceptions_do,
2968         purge_unchecked_exceptions, check_throws_clauses): New function
2969         prototypes.
2970         * parse.y Fixed typo in keyword section.
2971         (throw:): Rule tagged <node>.
2972         (THROW_TK): Keyword tagged <operator>.
2973         (method_header:): Last argument to call to method_header passed
2974         from throws: rule.
2975         (throws:, class_type_list:, throw_statement:,
2976         synchronized_statement:, synchronized:): Defined actions.
2977         (method_header): New local variable current. Register exceptions
2978         from throws clause.
2979         (java_complete_tree): Complete and verify exceptions from throws
2980         clause.
2981         (complete_class_report_errors): Error message on exceptions not
2982         found
2983         (java_check_regular_methods): Fixed typo. Shortcut on private
2984         overriding methods. Changed error message on method
2985         redefinition. Check for throws clause compatibility.
2986         (check_throws_clauses): New function.
2987         (java_check_abstract_methods): Use DECL_NAME for wfl or current
2988         method. Changed error message on method redefinition.
2989         (currently_caught_type_list): New static variable.
2990         (java_complete_expand_methods): Purge unchecked exceptions from
2991         throws clause list. Call PUSH_EXCEPTIONS before walk and
2992         POP_EXCEPTIONS after.
2993         (resolve_qualified_expression_name): Pass new argument as NULL to
2994         patch_method_invocation_stmt.
2995         (patch_method_invocation_stmt): New argument ref_decl. Invoke
2996         PATCH_METHOD_RETURN_ERROR when returning with error. Reverse
2997         argument list when appropriate. Use new argument if non null to
2998         store selected method decl.
2999         (patch_invoke): Convert if necessary args of builtin types before
3000         forming CALL_EXPR. Argument list no longer reversed here.
3001         (invocation_mode): Treat final methods as static methods.
3002         (java_complete_tree): New cases for THROW_EXPR: and
3003         SYNCHRONIZED_EXPR:. Check thrown exceptions when completing
3004         function call.
3005         (complete_function_arguments): No more RECORD_TYPE
3006         conversion. Function parameter nodes no longer saved.
3007         (valid_ref_assignconv_cast_p): Avoid handling null type.
3008         (patch_binop): Fixed null constant reference handling.
3009         (build_try_statement): Use BUILD_ASSIGN_EXCEPTION_INFO and
3010         BUILD_THROW macros.
3011         (patch_try_statement): Fixed comments. Record caught types in
3012         list, push the list, expand try block and pop the list.
3013         (patch_synchronized_statement, patch_throw_statement,
3014         check_thrown_exceptions, check_thrown_exceptions_do,
3015         purge_unchecked_exceptions): New functions.
3016         * typeck.c (lookup_argument_method): Allow WFL in place of method
3017         DECL_NAME during method definition check
3018         
3019 1998-10-09  Tom Tromey  <tromey@cygnus.com>
3020
3021         * gjavah.c (decode_signature_piece): New function.
3022         (print_c_decl): Use it.  Added `name_override' argument.
3023         (print_method_info): Use name_override argument to print_c_decl.
3024         (seen_fields): Removed.
3025         (print_field_info): Don't update seen_fields.
3026         (struct method_name): New structure.
3027         (method_name_list): New global.
3028         (print_method_info): Add new method to list of methods.
3029         (name_is_method_p): New function.
3030         (print_field_info): If field name has same name as method, then
3031         change field name.
3032         (process_file): Parse methods before fields.
3033         (field_pass): New global.
3034         (HANDLE_END_FIELD): Take field_pass into account.
3035
3036 Wed Oct  7 12:10:48 1998  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3037
3038         * Makefile.in (keyword.h): Add -L KR-C -F ', 0' flags to gperf.
3039         (keyword.h): Regenerate using gperf 2.7.1 (19981006 egcs).
3040
3041 Sat Oct  3 13:29:46 1998  Anthony Green  <green@cygnus.com>
3042
3043         * jvspec.c: Fix bug in jvgenmain_spec patch.
3044
3045 Fri Oct  2 17:22:52 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3046
3047         * Makefile.in (lang.o:): Install dependency on java-tree.def.
3048         * decl.c (soft_exceptioninfo_call_node): New global variable.
3049         (init_decl_processing): Fixed indentation. soft_badarrayindex_node
3050         takes extra integer argument. soft_exceptioninfo_call_node
3051         initialized.
3052         * except.c (java_set_exception_lang_code): New function
3053         (method_init_exceptions): Called here.
3054         (prepare_eh_table_type): New function.
3055         (expand_end_java_handler): Called here.
3056         * expr.c (build_java_throw_out_of_bounds_exception): Now features
3057         one argument. Modified generation of call to
3058         soft_badarrayindex_node to use new argument.
3059         (build_java_arrayaccess): Pass faulty index value to
3060         build_java_throw_out_of_bounds_exception.
3061         (generate_name): New function.
3062         (java_lang_expand_expr): New local variables node, current,
3063         has_finally_p. Expand TRY_EXPR node.
3064         (process_jvm_instruction): Replace top of the stack with thrown
3065         object reference when entering exception handler.
3066         * java-tree.def (TRY_EXPR, CATCH_EXPR, FINALLY_EXPR): New Java
3067         specific tree codes.
3068         * java-tree.h (soft_exceptioninfo_call_node): Declaration of new
3069         global.
3070         (DECL_SPECIFIC_COUNT): New macro.
3071         (prepare_eh_table_type, java_set_exception_lang_code,
3072         generate_name): New function declarations.
3073         (match_java_method): Declaration deleted.
3074         (FINALLY_EXPR_LABEL, FINALLY_EXPR_BLOCK, CATCH_EXPR_GET_EXPR): New
3075         macros.
3076         * lex.c (TRY_TK, CATCH_TK): Generate location information.
3077         * parse.h (redefinition_error, refine_accessible_methods_list,
3078         can_cast_to_p): Function declaration removed.
3079         (classitf_redefinition_error, variable_redefinition_error,
3080         parse_jdk1_1_error, find_applicable_accessible_methods_list,
3081         find_most_specific_methods_list, argument_types_convertible,
3082         enter_a_block, valid_builtin_assignconv_identity_widening_p,
3083         valid_cast_to_p, valid_method_invocation_conversion_p,
3084         try_reference_assignconv, add_stmt_to_compound,
3085         build_jump_to_finally, build_tree_list, patch_try_statement,
3086         java_get_catch_block): New function declarations.
3087         * parse.y (string_buffer_type): Global variable deleted.
3088         (group_of_labels, catches, catch_clause, catch_clause_parameter,
3089         finally): Rules tagged <node>.
3090         (TRY_TK, CATCH_TK): Token tagged <operator>.
3091         (class_body_declaration:, class_member_declaration:,
3092         formal_parameter:, explicit_constructor_invocation:,
3093         interface_member_declaration:, constant_declaration:,
3094         primary_no_new_array:, class_instance_creation_expression:,
3095         array_creation_expression:): Issue error on unsuported JDK1.1
3096         features.
3097         (try_statement:, catches:, finally:): Define actions.
3098         (catch_clause_parameter): New rule.
3099         (catch_clause:): Use new rule catch_clause_parameter.
3100         (parse_jdk1_1_error): New function.
3101         (redefinition_error): Renamed classitf_redefinition_error.
3102         (variable_redefinition_error): New function.
3103         (check_class_interface_creation): Call
3104         classitf_redefinition_error.
3105         (java_complete_tree): Added error message on JDEP_TYPE: case.
3106         (complete_class_report_errors): Fixed indentation.
3107         (declare_local_variables): Call variable_redefinition_error.
3108         (source_end_java_method): Call java_set_exception_lang_code and
3109         emit_handlers where appropriate.
3110         (java_method_add_stmt): Call add_stmt_to_block.
3111         (add_stmt_to_block): New function.
3112         (lookup_method_invoke): Fixed outside comment. new local variable
3113         candicates.  Call find_applicable_accessible_methods_list and
3114         find_most_specific_methods_list when searching for a
3115         method. Modified error report to list possible candidates when
3116         applicable.
3117         (find_applicable_accessible_methods_list,
3118         find_most_specific_methods_list, argument_types_convertible): New
3119         function.
3120         (refine_accessible_methods_list): Function deleted.
3121         (java_complete_tree): Handle TRY_EXPR. ARRAY_REF handling: save
3122         expr (if applicable) before calling patch_array_ref.
3123         (build_expr_block): Fixed BLOCK_EXPR_BODY assignment.
3124         (enter_block): Fixed comment.
3125         (enter_a_block): New function.
3126         (patch_assignment): Reorganized. Call try_reference_assignconv for
3127         references. Call valid_cast_to_p instead of can_cast_to_p.
3128         (try_reference_assignconv,
3129         valid_builtin_assignconv_identity_widening_p): New functions.
3130         (valid_ref_assignconv_cast_p): Fixed inverted test on CLASS_FINAL.
3131         (valid_cast_to_p, valid_method_invocation_conversion_p): New
3132         functions.
3133         (build_string_concatenation): Don't resolve StringBuffer.
3134         (patch_cast): Fixed inverted arguments.
3135         (patch_array_ref): Code to save array expr deleted. Call
3136         valid_cast_to_p instead of can_cast_to_p.
3137         (generate_labeled_block): Call generate_name.
3138         (build_jump_to_finally, build_try_statement, java_get_catch_block,
3139         patch_try_statement): New functions.
3140         * typeck.c (match_java_method): Function deleted.
3141         
3142 Fri Oct  2 13:48:36 1998  Anthony Green  <green@cygnus.com>
3143
3144         * jvspec.c: jvgenmain_spec uses different temporary file names.
3145
3146 Fri Oct  2 12:50:19 1998  Anthony Green  <green@cygnus.com>
3147
3148         * jvspec.c (lang_specific_driver): Fail if user specifies
3149         --main= when not linking.
3150
3151 Mon Sep 28 13:48:33 1998  Tom Tromey  <tromey@cygnus.com>
3152
3153         * class.c (make_class_data): Push value for `thread' field.
3154         * decl.c (init_decl_processing): Added `thread' field to class.
3155
3156         * class.c (add_field): Always make static fields externally
3157         visible.
3158
3159 Sat Sep 26 08:22:47 1998  Anthony Green  <green@cygnus.com>
3160
3161         * expr.c (build_java_athrow,
3162         build_java_throw_out_of_bounds_exception, expand_invoke,
3163         build_newarray, expand_java_multianewarray, build_java_monitor):
3164         Update comments to reflect _Jv_* function names.
3165
3166 Fri Sep 25 16:03:02 1998  Per Bothner  <bothner@cygnus.com>
3167
3168         * decl.c (complete_start_java_method):  DECL_RESULT is always promoted.
3169         * decl.c (start_java_method):  Handle PROMOTE_PROTOTYPES target macro.
3170         * parse.y (expand_start_java_method):  Likewise.
3171
3172 Thu Sep 24 12:20:35 1998  Per Bothner  <bothner@cygnus.com>
3173
3174         * expr.c (pop_arguments):  Handle PROMOTE_PROTOTYPES target macro.
3175
3176         * class.c (push_class):  IDENTIFIER_SIGNATURE_TYPE is now POINTER_TYPE.
3177         (add_field):  No longer need to convert from RECORD_TYPE to pointer,
3178         * expr.c:  Remove no-longer-needed calls to promote_type.
3179         * decl.c (give_name_to_locals):  Liekwise.
3180         * jcf-parse.c (get_class_constant):  Compensate for new signatures.
3181         * parse.y:  Add/remove promote_type calls as appropriate.
3182         * typeck.c (parse_signature_type):  Returns POINTER_TYPE for objects.
3183         (parse_signature_string):  Likewise.
3184         (build_java_array_type):  Fix for now signature convenions.
3185
3186         * lex.c (java_lex):  Fix (from Alex) for JC1_LITE problem.
3187
3188 Wed Sep 23 14:49:35 1998  Tom Tromey  <tromey@cygnus.com>
3189
3190         * class.c (init_class_processing): libjava function renamed to
3191         _Jv_RegisterClass.
3192
3193 Tue Sep 22 12:00:02 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3194
3195         * expr.c (java_lang_expand_expr): New case for SWITCH_EXPR.
3196         * java-tree.def: Fixed DEFTREECODE third argument.
3197         (UNARY_PLUS_EXPR, NEW_ARRAY_EXPR, NEW_CLASS_EXPR, THIS_EXPR,
3198         CASE_EXPR, DEFAULT_EXPR): New tree codes for Java.
3199         * java-tree.h: (IS_CRAFTED_STRING_BUFFER_P): New macro.
3200         (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
3201         JAVA_THIS_EXPR): Now replaced by tree code definitions.
3202         (CALL_CONSTRUCTOR_P): Now uses NEW_CLASS_EXPR.
3203         * lang.c (java_tree_code_type, java_tree_code_length,
3204         java_tree_code_name): New arrays.
3205         (lang_init): Append Java tree node definitions to Gcc ones.
3206         * lex.c (expression_obstack): Declared as extern when JC1_LITE
3207         defined.
3208         (java_init_lex): Initialize wfl_append, wfl_string_buffer,
3209         wfl_to_string.
3210         (java_lex): Allow declaration of empty string constants. Retain
3211         location information on CASE_TK and DEFAULT_TK.
3212         * parse.h (JFLOAT_TYPE_P, JINTEGRAL_TYPE_P, JNUMERIC_TYPE_P,
3213         JPRIMITIVE_TYPE_P, JSTRING_TYPE_P, JSTRING_P, JREFERENCE_TYPE_P):
3214         Modified to be more robust.
3215         (BUILD_APPEND, BUILD_STRING_BUFFER): New macros.
3216         (build_new_invocation, try_builtin_assignconv,
3217         patch_switch_statement, string_constant_concatenation,
3218         build_string_concatenation, patch_string_cst, patch_string,
3219         java_expand_switch): New function declarations.
3220         * parse.y: Rules related to switch and EH tagged <node>.
3221         (label_id): Set to NULL_TREE
3222         (wfl_string_buffer, wfl_append, wfl_to_string): New static global
3223         tree nodes.
3224         (this_or_super:): Fixed indentation.
3225         (statement:, statement_nsi:, statement_without_trailing_substatement:,
3226         statement_expression:): Removed call to RULE on all sub-rules.
3227         (switch_expression:, switch_labels:): New rules.
3228         (switch_statement:, switch_block:, switch_block_statement_groups:,
3229         switch_block_statement_group:, switch_labels:, switch_label:):
3230         Defined actions.
3231         (throw_statement:, synchronized_statement:, try_statement:):
3232         Defined temporary actions.
3233         (class_instance_creation_expression:): Call
3234         build_new_invocation. Fixed indentation.
3235         (field_access): Fixed indentation.
3236         (method_invocation): Likewise.
3237         (make_qualified_primary): Use THIS_EXPR.
3238         (resolve_qualified_expression_name): Use NEW_CLASS_EXPR. When
3239         resolving from SUPER, set *type_found.
3240         (qualify_ambiguous_name): Use NEW_CLASS_EXPR.
3241         (java_complete_tree): Removed unused local variable `location'. Case
3242         for SWITCH_EXPR, sharing code with LOOP_EXPR. Use NEW_ARRAY_EXPR,
3243         NEW_CLASS_EXPR, UNARY_PLUS_EXPR and THIS_EXPR. New string handling
3244         on MODIFY_EXPR: and all binary operator tree code cases. Removed
3245         STRING_CST: case. default: checks for patchable strings.
3246         (complete_function_arguments): Transform string constant or
3247         crafted StringBuffer if necessary.
3248         (build_method_invocation): Fixed comments.
3249         (build_new_invocation): New function.
3250         (patch_assignment): Call try_builtin_assignconv to figure a valid
3251         assignment conversion between builtin types.
3252         (try_builtin_assignconv): New function.
3253         (build_binop): Use URSHIFT_EXPR directly to call build.
3254         (operator_string): Use UNARY_PLUS_EXPR.
3255         (patch_binop): Use UNARY_PLUS_EXPR. Handle string concatenation
3256         operator.
3257         (do_merge_string_cste, merge_string_cste,
3258         string_constant_concatenation, build_string_concatenation,
3259         patch_string, patch_string_cst): New function.
3260         (build_unary_op): Use UNARY_PLUS_EXPR and CONVERT_EXPR.
3261         (patch_unaryop): Likewise. New test of valid ++/-- operands.
3262         (build_newarray_node): Use NEW_ARRAY_EXPR.
3263         (build_this): Use THIS_EXPR.
3264         (build_return): Enable debug information on return statement.
3265         (build_if_else_statement): Likewise.
3266         (complete_labeled_statement): Fixed related comment.
3267         (build_loop_body): Fixed comment.
3268         (build_bc_statement): Enable debug information on break/continue
3269         statements.
3270         (patch_bc_statement): Fixed typos. Handle SWITCH statement
3271         context.
3272         (patch_switch_statement, case_identity, java_expand_switch): New
3273         functions.
3274
3275 Mon Sep 21 13:21:35 1998  Per Bothner  <bothner@cygnus.com>
3276
3277         * buffer.h (BUFFER_INIT):  New macro.
3278         * jcf-write.c (struct jcf_partial):  New type.  Put global stuff here.
3279         Pass (struct jcf_partial *state) to most functions.
3280         (jcf_block, jcf_relocation):  New types.
3281         Support labels, branches, conditionals, loops.
3282
3283 Mon Sep 21 15:08:48 1998  Tom Tromey  <tromey@cygnus.com>
3284
3285         * decl.c (INT_TYPE_SIZE): Define as BITS_PER_WORD if not defined.
3286
3287 Mon Sep 21 13:21:35 1998  Per Bothner  <bothner@cygnus.com>
3288
3289         * decl.c (integer_type_node):  Make it have INT_TYPE_SIZE.
3290         * verify.c (verify_jvm_instructions):  Use int_type_not (32 bits),
3291         not integer_type_node (INT_TYPE_SIZ bits).
3292
3293         * parse.y (patch_if_else_statement):  Accept promoted_boolean_type_node.
3294
3295         * jcf-reader.c (get_attribute):  New HANDLE_EXCEPTION_TABLE hook.
3296         * jcf-dump.c (print_exception_table):  New function.
3297         (disassemble_method):  Better handling of wide instructions.
3298         Make more robust for bad input.
3299
3300 Wed Sep 30 20:53:51 1998  Jeffrey A Law  (law@cygnus.com)
3301
3302         * jcf-write.c (OP2, OP4): Use "_i", not "_I" to avoid problems on
3303         FreeBSD.
3304
3305 Thu Sep 17 19:45:01 1998  Jeffrey A Law  (law@cygnus.com)
3306
3307         * Makefile.in (jcf-dump, jvgenmain): Link in memmove.o too.
3308
3309 Thu Sep 17 16:21:52 1998  Tom Tromey  <tromey@cygnus.com>
3310
3311         * Makefile.in ($(PARSE_H)): Removed target.
3312
3313 Thu Sep 17 01:57:07 1998  Jeffrey A Law  (law@cygnus.com)
3314
3315         * Makefile.in (JAVA_OBJS): Add memmove.o
3316         (memmove.o): New target & rules.
3317
3318 Tue Sep 15 23:21:55 1998  Tom Tromey  <tromey@cygnus.com>
3319
3320         * expr.c (expand_invoke): Don't generate a call to the class init
3321         code.
3322
3323 Mon Sep 14 10:14:47 1998  Jeffrey A Law  (law@cygnus.com)
3324
3325         * Makefile.in: Add many missing dependencies.
3326         * buffer.c, class.c, constants.c, decl.c: Use system.h and toplev.h
3327         as appropriate.
3328         * except.c, expr.c, jcf-io.c jcf-parse.c, jcf-write.c: Likewise.
3329         * jvgenmain.c lang.c mangle.c typeck.c verify.c: Likewise.
3330
3331 Fri Sep 11 14:05:21 1998  Per Bothner  <bothner@cygnus.com>
3332
3333         * decl.c (complete_start_java_method):  If method is static (and
3334         not private) call _Jv_InitClass.
3335         * expr.c (expand_invoke):  Don't call build_class_init.
3336
3337         * jvspec.c (jvgenmain_spec):  Fix spec for generated .o file.
3338
3339 Thu Sep 10 10:33:31 1998  Jeffrey A Law  (law@cygnus.com)
3340
3341         * Make-lang.in (GCJ): Define before using.
3342
3343 Wed Sep  9 21:23:10 1998  Jeffrey A Law  (law@cygnus.com)
3344
3345         * gjavah.c (java_no_argument): Renamed from no_argument to avoid
3346         losing due to namespace pollution in GNU getopt.h
3347
3348 Wed Sep  9 13:33:39 1998  Tom Tromey  <tromey@cygnus.com>
3349
3350         * Make-lang.in (java.all.build): Don't mention jvgenmain or gcjh.
3351         (java.all.cross): Likewise.
3352         (java.rest.encap): Likewise.
3353
3354 Tue Sep  8 10:34:05 1998  Jeffrey A Law  (law@cygnus.com)
3355
3356         * gjavah.c (print_class_decls): Fix thinko in arglist
3357         * jcv-io.c (find_classfile): Similarly.
3358
3359 Mon Sep  7 13:59:49 1998  Jeffrey A Law  (law@cygnus.com)
3360
3361         * Makefile.in (INCLUDES): Update for recent toplevel gcc changes.
3362
3363 Sat Sep  5 16:08:01 1998  Tom Tromey  <tromey@cygnus.com>
3364
3365         * Make-lang.in (java.maintainer-clean): Don't remove parse.h.
3366         (java.mostlyclean): Remove parse.c and parse-scan.c, not parse.h.
3367         * Makefile.in (PARSE_C): New macro.
3368         (PARSE_H): Likewise.
3369         (PARSE_SCAN_C): Likewise.
3370         ($(PARSE_C)): Target renamed from parse.c.
3371         ($(PARSE_SCAN_C)): Target renamed from parse-scan.c.
3372         (clean): Remove parse-scan.c as well.
3373         (parse.o): Depend on $(PARSE_C).
3374
3375 Sat Sep  5 08:48:40 1998  Anthony Green  <green@cygnus.com>
3376
3377         * README, license.terms: Removed.
3378
3379         * Make-lang.in, Makefile.in, class.c, config-lang.in, constants.c,
3380         decl.c, except.c, expr.c, gjavah.c, java-except.h, java-tree.h,
3381         javaop.def, javaop.h, jcf-dump.c, jcf-io.c, jcf-parse.c,
3382         jcf-reader.c, jcf-write.c, jcf.h, jvgenmain.c, jvspec.c,
3383         keyword.gperf, keyword.h, lang-options.h, lang-specs.h, lang.c,
3384         lex.c, lex.h, mangle.c, parse-scan.y, parse.h, parse.y, typeck.c,
3385         verify.c, zextract.c, zipfile.h: Fixed copyright assignment,
3386         and Java trademark attribution.
3387
3388 Fri Sep  4 10:42:05 1998  Tom Tromey  <tromey@cygnus.com>
3389
3390         * Makefile.in: Use gcjh, not gjavah.
3391         * config-lang.in (stagestuff): Use gcjh, not gjavah.
3392         * Make-lang.in: Changed gjavah to gcjh everywhere.
3393
3394 Thu Sep  3 18:04:09 1998  Per Bothner  <bothner@cygnus.com>
3395
3396         * gjavah.c:  Support new -prepend -add -append flags.
3397         (print_method_info):  Method is not virtual if class is final.  
3398
3399 Thu Sep  3 12:03:53 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3400
3401         * jv-scan.c: Fixed copyright assignment.
3402         * keyword.gperf: Likewise.
3403         * keyword.h: Likewise.
3404         * lex.c: Fixed copyright assignment.
3405         (java_lex): Push unicode back when parsing '<'.
3406         * lex.h: Fixed copyright assignment.
3407         * parse-scan.y: Likewise.
3408         * parse.h: Fixed copyright assignment.
3409         (build_debugable_stmt, complete_for_loop): New function prototypes.
3410         * parse.y: Fixed copyright assignment.
3411         (for_statement:): Call complete_for_loop. Set EXIT_EXPR to be
3412         size_zero_node when completing a loop with no exit condition.
3413         (for_statement_nsi:): Define action.
3414         (for_init:, for_update:): Return size_zero_node when empty.
3415         (declare_local_variables): Call build_debugable_stmt.
3416         (build_debugable_stmt): New function.
3417         (build_loop_body): Build debugable statement around loop
3418         condition part.
3419         (complete_loop_body): Take into account the debugable statement
3420         around the EXIT_EXPR.
3421         (complete_loop_body): New function.
3422         (patch_exit_expr): Fixed condition inversion.
3423
3424 Wed Sep  2 11:53:58 1998  Tom Tromey  <tromey@cygnus.com>
3425
3426         * Make-lang.in (jvspec.o): Use GCC_THREAD_FILE to compute correct
3427         name of thread define.
3428         * jvspec.c (THREAD_NAME): New macro.
3429         (GCLIB): Likewise.
3430         (THREADLIB): Likewise.
3431         (lang_specific_driver): Recognize attempt to link with thread
3432         library or gc library.  Recognize -ljava on command line so it
3433         isn't linked against more than once.
3434
3435 Wed Sep  2 11:28:35 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3436
3437         * parse-scan.y (report_main_declaration): Name of the class
3438         containing `main' can be a qualified name.
3439
3440 Mon Aug 31 13:25:58 1998  Tom Tromey  <tromey@cygnus.com>
3441
3442         * config-lang.in: Changed gjavac to gjc everywhere.
3443         * Make-lang.in: Changed gjavac to gjc everywhere.
3444
3445 Thu Aug 27 02:28:27 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3446
3447         * Make-lang.in (JAVA_TARGET_INDEPENDENT_BIN_TOOLS): New variable.
3448         (java.install-common:): Loop over JAVA_TARGET_INDEPENDENT_BIN_TOOLS
3449         and install the files.
3450         * Makefile.in (JAVA_OBJS_LITE): New variable.
3451         (compiler:): Now include jv-scan as a dependency.
3452         (../jv-scan$(exeext), parse-scan.c): New targets.
3453         (../jcf-dump$(exeext)): Was jcf-dump$(exeext) before.
3454         * config-lang.in (compilers): Removed gcj, gjavah from the list.
3455         * jcf-parse.c (parse_source_file): Call java_layout_classes and
3456         check for errors even if parse_only.
3457         * lex.c (java_init_lex): Reorganized and skip parts if JC1_LITE is
3458         defined.
3459         (yylex): New function. Uses java_lex body.
3460         (java_lex): Removed commented out statement. Remove local variable
3461         literal. Use SET_LVAL_NODE_TYPE and SET_LVAL_NODE where
3462         appropriate.  Use macros FLOAT_TYPE_NODE, DOUBLE_TYPE_NODE,
3463         DCONST0, SET_FLOAT_HANDLER, SET_REAL_VALUE_ATOF,
3464         SET_LVAL_NODE_TYPE and GET_TYPE_PRECISION. Don't create STRING_CST
3465         if JC1_LITE is defined. Use BUILD_ID_WFL to build identifiers. Use
3466         SET_MODIFIER_CTX, SET_LVAL_NODE, BUILD_ID_WFL and GET_IDENTIFIER
3467         where appropriate.
3468         (java_lex_error): Empty if JC1_LITE is defined.
3469         (java_get_line_col): Return 0 if JC1_LITE is defined.
3470         * lex.h (JAVA_FLOAT_RANGE_ERROR, JAVA_INTEGRAL_RANGE_ERROR,
3471         SET_MODIFIER_CTX): Moved into the section containing the macros
3472         conditionally defined by JC1_LITE.
3473         (BUILD_OPERATOR,BUILD_OPERATOR2): Just return the TOKEN
3474         argument if JC1_LITE is defined.
3475         (HOST_BITS_PER_WIDE_INT, HOST_WIDE_INT, REAL_VALUE_ATOF,
3476         REAL_VALUE_ISINF, REAL_VALUE_ISNAN): Preset to values if JC1_LITE
3477         is defined.
3478         (DCONST0, SET_FLOAT_HANDLER, GET_IDENTIFIER, SET_REAL_VALUE_ATOF,
3479         FLOAT_TYPE, DOUBLE_TYPE, SET_MODIFIER_CTX, GET_TYPE_PRECISION,
3480         SET_LVAL_NODE, SET_LVAL_NODE_TYPE, BUILD_ID_WFL): New macros, set
3481         to different values according to JC1_LITE.
3482         * parse.h (int_fits_type_p, stabilize_reference): Prototype not
3483         declared if JC1_LITE set.
3484         (jdep_code, typedef struct _jdep, typedef struct _jdeplist): Not
3485         defined if JC1_LITE not set.
3486         (struct parser_ctx): Reorganized and skip the jc1 front end part
3487         if JC1_LITE set.
3488         (java_layout_classes): New function definition.
3489         (java_push_parser_context, java_init_lex, yyparse, yylex,
3490         yyerror): Prototype always declared. All other static function
3491         prototypes declared only if JC1_LITE is not set.
3492         * parse.y (yyparse, yylex, yyerror): No longer declared here. Now
3493         declared in parse.h.
3494         (java_layout_classes): New function.
3495         (java_complete_expand_methods): No longer layout the class here.
3496         * parse-scan.y: New file.
3497         * jv-scan.c: New file.
3498
3499 Tue Aug 25 10:17:54 1998  Tom Tromey  <tromey@cygnus.com>
3500
3501         * gjavah.c (main): Handle -friend option.
3502         (friend_specs): New global.
3503         (generate_access): Handle friend_specs.
3504         (process_file): Likewise.
3505         (MAX_FRIENDS): New macro.
3506         (friend_count): New global.
3507         (print_cxx_classname): Added `prefix' argument.  Ignore arrays.
3508         Changed all callers.
3509
3510 Mon Aug 24 20:19:27 1998  Per Bothner  <bothner@cygnus.com>
3511
3512         * jcf-dump.c (process_class):  Move JCF_FINISH use to main,
3513         (main):  Handle processing all the entries of a named .zip archive.
3514         * jcf-io.c (jcf_trim_old_input):  New function.
3515         * jcf.h (GET_u2_le,GET_u4_le,JCF_readu2_le,JCF_readu4_le):  New macros.
3516
3517 Mon Aug 24 07:35:13 1998  Per Bothner  <bothner@cygnus.com>
3518
3519         * lang.c (flag_assume_compiled):  Make default be on.
3520
3521 Fri Aug 21 17:29:04 1998  Per Bothner  <bothner@cygnus.com>
3522
3523         * jcf-dump.c:  Add bunches of flags to control output more.
3524         (process_class):  New function;  support printing more than one class.
3525         (main): Support new --print-main and --javap flags.
3526         * jcf-reader.c (IGNORE_ATTRIBUTE):  New hook.
3527         * jcf.h (CPOOL_INDEX_IN_RANGE):  New macro.
3528
3529 Thu Aug 20 14:24:47 1998  Per Bothner  <bothner@cygnus.com>
3530
3531         Change mangling of dispatch table to match C++ vtable (w/thunks).
3532         * class.c (build_dtable_decl), java-tree.h:  New function.
3533         (make_class_data):  Call it.
3534         * decl.c (init_decl_processing):  Likewise.
3535
3536 Wed Aug 19 17:57:07 1998  Warren Levy  <warrenl@cygnus.com>
3537
3538         * decl.c (init_decl_processing): Use _Jv_NewObjectArray, not
3539         soft_anewarray; adjust args passed.
3540         * expr.c (build_anewarray): Adjust args for soft_anewarray_node to
3541         match _Jv_NewObjectArray.
3542         
3543 Wed Aug 19 09:33:23 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3544
3545         * decl.c (push_labeled_block, pop_labeled_block): New functions.
3546         * expr.c (loopup_label): Call create_label_decl.
3547         (create_label_decl): New function.
3548         (java_lang_expand_expr): Call expand_start_bindings with argument
3549         set to zero.
3550         * java-tree.h Added space after PROTO in function declarations
3551         when necessary.
3552         (IS_FOR_LOOP_P, IS_BREAK_STMT_P): New macros.
3553         (create_label_decl, push_labeled_block): New function
3554         declarations.
3555         * lex.c (label_id): Initialize.
3556         (SUPER_TK, THIS_TK, RETURN_TK): Merged common actions in final
3557         switch.
3558         * parse.h Added space after PROTO in function declarations when
3559         necessary.
3560         (LOOP_EXPR_BODY_MAIN_BLOCK, LOOP_EXPR_BODY_UPDATE_BLOCK,
3561         LOOP_EXPR_BODY_CONDITION_EXPR, LOOP_EXPR_BODY_LABELED_BODY,
3562         LOOP_EXPR_BODY_BODY_EXPR, LOOP_HAS_LABEL_P, LOOP_HAS_LABEL_SKIP_P,
3563         PUSH_LABELED_BLOCK, POP_LABELED_BLOCK, PUSH_LOOP, POP_LOOP): New
3564         macros.
3565         (struct parser_ctxt): New fields current_loop,
3566         current_labeled_block.
3567         (build_if_else_statement, patch_if_else_statement,
3568         add_stmt_to_compound, patch_exit_expr, build_labeled_block,
3569         generate_labeled_block, complete_labeled_statement,
3570         build_bc_statement, patch_bc_statement, patch_loop_statement,
3571         build_new_loop, build_loop_body, complete_loop_body): New function
3572         declarations.  
3573         * parse.y (java_warning_count): New global variable.
3574         (label_id): New static variable.
3575         (BREAK_TK, CONTINUE_TK): Token tagged <operator>.
3576         (block:): Return size_zero_node when block is empty.
3577         (empty_statement:): Return size_zero_node.
3578         (statement:): Implement supplemental action when for_statement: is
3579         reduced.
3580         (label_decl:): New rule.
3581         (labeled_statement:): Rewritten using label_decl. Actions
3582         implemented.
3583         (labeled_statement_nsi:): Likewise.
3584         (if_then_statement): Actions implemented.
3585         (while_expression): New rule.
3586         (while_statement:): Rewritten using while_expression. Actions
3587         implemented.
3588         (while_statement_nsi:): Likewise.
3589         (do_statement_begin:): New rule.
3590         (do_statement:): Rewritten using do_statement_begin. Actions
3591         implemented.
3592         (for_statement:): Rewritten using for_begin. Actions implemented.
3593         (for_statement_nsi:): Likewise.
3594         (for_header:, for_begin:): New rules.
3595         (for_init:): Actions implemented.
3596         (statement_expression_list:, break_statement:,
3597         continue_statement:): Likewise.
3598         (yyerror): Count number of issued warning(s).
3599         (java_report_errors): Report error(s) and/or warning(s).
3600         (java_complete_class): Use build_java_argument_signature to
3601         recompute completed method signature.
3602         (java_check_regular_methods): New locals method_wfl and aflags.
3603         Use method_wfl instead of lookup_cl during error reports. Fixed
3604         indentation and modified some error messages. Use
3605         lang_printable_name in method instead of the DECL_NAME. New code
3606         to issue warnings on methods not overriding corresponding methods
3607         private to a different package.
3608         (java_method_add_stmt): Call add_stmt_to_compound.
3609         (add_stmt_to_compound): New function.
3610         (java_complete_tree): Handle LABELED_BLOCK_EXPR, EXIT_BLOCK_EXPR,
3611         LOOP_EXPR, EXIT_EXPR and COND_EXPR.
3612         (build_if_else_statement, patch_if_else_statement,
3613         build_labeled_block, generate_labeled_block,
3614         complete_labeled_statement, build_new_loop, build_loop_body,
3615         complete_loop_body, patch_loop_statement, build_bc_statement,
3616         patch_bc_statement, patch_exit_expr): New functions.
3617         * typeck.c (build_java_signature): Build argument signature before
3618         enclosing it in between parenthesis.
3619         
3620 Mon Aug 17 17:44:24 1998  Warren Levy  <warrenl@cygnus.com>
3621
3622         * Make-lang.in (JAVA_SRCS): Created for dependencies * Makefile.in
3623         (JAVA_OBJS): Added reminder comment
3624
3625 Thu Aug 13 10:01:45 1998  Nick Clifton  <nickc@cygnus.com>
3626
3627         * gjavah.c (D_NAN_MASK): Append LL to the constant to force it to
3628         be interpreted as a long long.
3629
3630 Thu Aug 13 14:34:07 1998  Warren Levy  <warrenl@cygnus.com>
3631
3632         * decl.c (init_decl_processing): Use _Jv_InitClass, not
3633         soft_initialise_class.  Use _Jv_NewMultiArray, not
3634         soft_multianewarray.  Use _Jv_ThrowBadArrayIndex, not
3635         soft_badarrayindex.  Use _Jv_CheckCast, not soft_checkcast.  Use
3636         _Jv_CheckArrayStore, not soft_checkarraystore.  Use
3637         _Jv_LookupInterfaceMethod, not soft_lookupinterfacemethod.
3638         
3639 Wed Aug 12 14:23:13 1998  Per Bothner  <bothner@cygnus.com>
3640
3641         * decl.c, java-tree.h (this_identifier_node, super_identifier_node,
3642         length_identifier_node):  New global tree node constants.
3643         * parse.y (kw_super, kw_this, kw_length):  Removed globals.
3644         Replace uses by super_identifier_node etc.
3645         * lex.c (kw_super, kw_this, kw_length):  Don't initialize.
3646
3647         * parse.y (resolve_field_access):  Don't special-case ".length" if
3648         flag_emit_class_files.
3649         (patch_array_ref):  Leave as ARRAY_REF if flag_emit_class_files.
3650         * jcf-write.c (generate_bytecode_insns):  Handle ARRAY_REF opcode
3651         and ARRAY.length.
3652
3653 Tue Aug 11 11:31:55 1998  Per Bothner  <bothner@cygnus.com>
3654
3655         * decl.c (init_decl_processing): Remove unused method_type_node fields.
3656         * class.c (make_method_value):  Remove init for removed fields.
3657
3658         * class.c (layout_class):  Use build_java_argument_signature.
3659         * java-tree.h (TYPE_ARGUMENT_SIGNATURE):  New macro.
3660
3661         * typeck.c (push_java_argument_signature):  Removed.  Merged into ...
3662         (build_java_argument_signature):  Use TYPE_ARGUMENT_SIGNATURE cache.
3663         (build_java_signature):  Don't use push_java_argument_signature.
3664
3665         * typeck.c (lookup_argument_method):  New function.
3666         * parse.y (java_check_regular_methods):  Use lookup_argument_method
3667         instead of lookup_java_method2 followed by lookup_java_method.
3668         
3669         * parse.y (check_method_redefinition):  Minor optimization.
3670         
3671         * jcf-write.c (generate_bytecode_insns):  Handle RETURN_EXPR,
3672         MINUS_EXPR, MULT_EXPR, TRUNC_DIV_EXPR, and RDIV_EXPR.
3673
3674 Mon Aug 10 09:57:15 1998  Tom Tromey  <tromey@cygnus.com>
3675
3676         * Make-lang.in (jc1$(exeext)): Don't depend on c-common.o or
3677         c-pragma.o.
3678
3679         * gjavah.c (java_float_finite): Use K&R-style definition.
3680         (java_double_finite): Likewise.
3681         (generate_access): Now returns void.  Changed all callers.
3682         (last_access_generated): Removed.
3683         (process_file): Only make a single pass over the .class file.
3684
3685 Wed Jul 29 17:50:23 1998  Per Bothner  <bothner@cygnus.com>
3686
3687         * class.c (get_dispatch_table):  Add extra dummy vtable entry,
3688         for compatibility for G++ (with -fvtable-thunks).
3689         * expr.c (build_invokevirtual):  Add one for extra dummy vtable entry.
3690
3691         * gjavah.c (process_file):  Use public inheritance for super-class.
3692
3693 Wed Jul 29 13:19:03 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3694
3695         * lex.c (java_init_lex): Initialize ctxp->package.
3696         * parse.h (struct parser_ctxt): package and package_len replaced
3697         by tree package, an identifier node. Field method_decl_list is
3698         gone. Fixed comments.
3699         (lookup_field_wrapper, merge_qualified_name, not_accessible,
3700         class_in_current_package): New function prototypes.
3701         * parse.y (array_type:): Set class loaded flag on primitive type
3702         arrays.
3703         (package_declaration:): Assign ctxp->package to the
3704         identifier node.
3705         (method_invocation:): Handle invocation of method qualified by
3706         `super'.
3707         (single_type_import_declaration:): Removed ambiguity check.
3708         (java_pop_parser_context): New local variable `next'. Reset and
3709         set IMPORT_CLASSFILE_NAME flags on current and previous import
3710         list.
3711         (java_accstring_lookup): Use new local macro COPY_RETURN.
3712         (lookup_field_wrapper): New function.
3713         (parser_qualified_classname): Use merge_qualified_name.
3714         (parser_check_super_interface): Broaden error message.
3715         (do_resolve_class): Check for qualified class name in the current
3716         compilation unit if appropriate.
3717         (process_imports): Check for already defined classes.
3718         (check_pkg_class_access): Got rid of call to
3719         get_access_flags_from_decl.
3720         (java_complete_expand_methods): Call safe_layout_class based on
3721         the current class size.
3722         (make_qualified_primary): Build a WFL qualification on primary if
3723         none exists.
3724         (merge_qualified_name): New function.
3725         (make_qualified_name): Use merge_qualified_name.
3726         (resolve_expression_name): Use safe_lookup_field.
3727         (resolve_field_access): Got rid of call to get_access_flags_from_decl.
3728         (resolve_qualified_expression_name): Likewise. Check on resolved
3729         element accessibility.
3730         (not_accessible_p, class_in_current_package): New functions.
3731         (maybe_access_field): Got rid of call to get_access_flags_from_decl.
3732         (patch_method_invocation_stmt): Merged common pieces. Check
3733         accessibility of invoked method.
3734         (check_for_static_method_reference): Add returned type in error
3735         message.
3736         (invocation_mode): Get rid of bogus check on PRIVATE methods.
3737         (refine_accessible_methods_list): Merged two conditions in test.
3738         (java_complete_class): Sanity check on stabilize_ref gone.
3739         * zextract.c (read_zip_archive): Cast lseek second argument to long.
3740         
3741 Tue Jul 28 21:39:22 1998  Per Bothner  <bothner@cygnus.com>
3742
3743         * class.c (hashUtf8String):  Fix - use new JavaSoft specification.
3744
3745 Fri Jul 24 10:43:25 1998  Tom Tromey  <tromey@cygnus.com>
3746
3747         * gjavah.c (F_NAN): Removed.
3748         (F_NAN_MASK): New macro.
3749         (F_POSITIVE_INFINITY): Removed.
3750         (F_NEGATIVE_INFINITY): Likewise.
3751         (java_float_finite): Rewrote.
3752         (D_NAN_MASK): Renamed.
3753         (java_double_finite): Rewrote.
3754         (D_POSITIVE_INFINITY): Removed.
3755         (D_NEGATIVE_INFINITY): Likewise.
3756
3757         * jcf-dump.c (print_constant): [CONSTANT_Double, CONSTANT_Float]
3758         If verbose, print underlying representation of value in hex.
3759
3760 Fri Jul 24 14:14:32 1998  Per Bothner  <bothner@cygnus.com>
3761
3762         * buffer.h, buffer.c:  New files.
3763         * Makefile.in (JAVA_OBJS):  Add buffer.o.
3764
3765         Support locals variables and writing their debug entries to .class.
3766         * jcf-write.c:  Simplify some by user new buffer type.
3767         (vode_buffer_grow):  Removed.
3768         (struct localvar_info):  New type.
3769         (localsvars, localvartable):  New buffers.
3770         (localvar_alloc, localvar_free):  New functions.
3771         (generate_bytecode_insns):  Handle local variables.
3772         (generate_classfile):  Write LocalVariableTable attribute.
3773
3774 Fri Jul 24 13:46:59 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3775
3776         * jcf-io.c (open_in_zip): Check the zipfile magic number.
3777         * zipfile.h (ZIPMAGIC): New macro.
3778
3779 Fri Jul 24 10:43:25 1998  Tom Tromey  <tromey@cygnus.com>
3780
3781         * Makefile.in (gjavah.o): Updated dependencies.
3782         (jcf-dump.o): Likewise.
3783         (all.indirect): Use ../gjavah.
3784         (../gjavah$(exeext)): Likewise.
3785         (clean): Don't remove gjavah.
3786         (clean): Remove parse.c, not java/parse.c.
3787         * Make-lang.in (java): Added gjavah.
3788         (gjavah$(exeext)): New target.
3789         (GJAVAH_SOURCES): New macro.
3790         (java.all.build): Added gjavah.
3791         (java.all.cross): Likewise.
3792         (java.rest.encap): Likewise.
3793         * config-lang.in (compilers, stagestuff): Added gjavah.
3794
3795 Thu Jul 23 18:33:56 1998  Tom Tromey  <tromey@cygnus.com>
3796
3797         * gjavah.c (java_float_finite): New function.
3798         (java_double_finite): Likewise.
3799         (F_POSITIVE_INFINITY): New macro.
3800         (F_NEGATIVE_INFINITY): Likewise.
3801         (F_NAN): Likewise.
3802         (D_POSITIVE_INFINITY): Likewise.
3803         (D_NEGATIVE_INFINITY): Likewise.
3804         (D_NAN): Likewise.
3805         (print_field_info): Use java_float_finite and java_double_finite.
3806
3807 Thu Jul 23 15:28:24 1998  Per Bothner  <bothner@cygnus.com>
3808
3809         * parse.y (method_header):  Name "this" implicit argument.
3810
3811 Wed Jul 22 15:47:30 1998  Per Bothner  <bothner@cygnus.com>
3812
3813         * jcf-write.c:  Write out LineNumberTable attribute in .class file.
3814         (linenumber_buffer, linenumber_ptr, linenumber_limit):  New statics.
3815         (put_linenumber):  New function.
3816         (generate_bytecode_insns, generate_classfile):  Write line numbers.
3817
3818 Wed Jul 22 14:39:00 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3819
3820         * java-tree.h (CALL_EXPR_FROM_PRIMARY_P): Changed in PRIMARY_P.
3821         (lookup_name, build_known_method_ref, build_class_init,
3822         build_invokevirtual, invoke_build_dtable, match_java_method,
3823         build_field_ref, pushdecl_force_head, build_java_binop,
3824         binary_numeric_promotion, build_decl_no_layout,
3825         build_java_arrayaccess, build_newarray, build_anewarray,
3826         build_java_array_length_access, build_java_arraynull_check): New
3827         extern function prototypes.
3828         (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
3829         JAVA_THIS_EXPR, CALL_CONSTRUCTOR_P): Macro definition moved in
3830         java-tree.h.
3831         * jcf-parse.c (init_outgoing_cpool): Set current_constant_pool_data_ref
3832         to NULL 
3833         * jcf.h (jcf_out_of_synch): New extern function prototype.
3834         * parse.h: Static/global function implemented in parse.y
3835         prototyped and declarations moved at the end of the file.
3836         (DECL_P): Check that the argument isn't null.
3837         (JAVA_UNARY_PLUS_EXPR, JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR,
3838         JAVA_THIS_EXPR): No longer defined here. See java-tree.h
3839         (QUAL_DECL_TYPE): New macro.
3840         (PARAMS): Macro definition removed.
3841         * parse.y: (yyparse, yyerror): Use PROTO instead of PARAMS.
3842         (return_statement:): Call build_return.
3843         (field_access:): Call make_qualified_primary in sub rule.
3844         (method_invocation:): Build method invocation and call
3845         make_qualified_primary when processing primaries.
3846         (java_complete_class): Set IDENTIFIER_SIGNATURE_TYPE by calling
3847         get_type_from_signature.
3848         (java_check_regular_method): Extra integer 0 argument when calling
3849         lookup_java_method2.
3850         (lookup_java_interface_method2): Extra method DECL argument when
3851         calling lookup_java_interface_method2.
3852         (java_method_add_stmt): Set TREE_SIDE_EFFECTS on newly created
3853         COMPOUND_EXPR node.
3854         (java_complete_expand_method): Layout current class iff not
3855         already done. Don't process interface's methods.
3856         (java_complete_expand_method): Use super class only if it
3857         exists. Use current class otherwise.
3858         (make_qualified_primary): New function.
3859         (resolve_expression_name): Process qualified expression or
3860         expression from primary the same way.
3861         (resolve_expression_name): Two last arguments to
3862         resolve_field_access are now NULL_TREEs.
3863         (resolve_field_access): New variable is_static. Local field must
3864         be DECLs. is_static computed on field DECLs only. Append code in
3865         where_found to the field access if necessary. Use QUAL_DECL_TYPE
3866         to initialize field_type.
3867         (resolve_qualified_expression_name): New local variable,
3868         previous_call_static and is_static. Handle primaries with function
3869         calls, casts, array references and `this'. `super' now handled as
3870         `(super_class)this'. Use is_static to clarify boolean expressions.
3871         Added code to handle case where a proper handle is required to
3872         access a field. Use QUAL_DECL_TYPE where applicable.
3873         (maybe_access_field): New function.
3874         (patch_method_invocation_stmt): New arguments primary, where,
3875         is_static. Branch of the test on CALL_EXPR_FROM_PRIMARY_P
3876         deleted. Use `where' as a type to search from if specified. Check
3877         for static method reference where forbidden. Append primary or
3878         current_this to the argument list if not calling constructor nor
3879         static methods.
3880         (check_for_static_method_reference): New function.
3881         (patch_invoke): Layout the class on which new is done if
3882         necessary.
3883         (lookup_method_invoke): Changed format to report errors on
3884         methods.
3885         (qualify_ambiguous_name): New local variable this_found. Now
3886         handle things from primaries. Method call are considered
3887         expression names.
3888         (identical_subpath_p): NULL_TREE arguments to breakdown_qualified
3889         changed into NULLs.
3890         (not_initialized_as_it_should_p): Comply with the new DECL_P.
3891         (java_complete_tree): New case fo RETURN_EXPR. Process function
3892         call arguments in separate function. 
3893         (complete_function_arguments): New function.
3894         (build_method_invocation): Don't use CALL_EXPR_FROM_PRIMARY_P
3895         anymore.
3896         (patch_assignment): Take the return function slot into account as
3897         a RHS. Distinguish assignment from a return.
3898         (valid_ref_assignconv_cast_p): Use build_java_argument_signature
3899         when checking methods in interfaces.
3900         (resolve_type_during_patch): NULL argument to unresolve_type_p
3901         instead of NULL_TREE.
3902         (patch_newarray): Fixed typo in comment.
3903         (buid_this): Build a WFL with `kw_this' instead of a FIELD_DECL.
3904         (build_return, patch_return): New functions.
3905         * typeck.c (lookup_java_constructor): Fixed typo in comment.
3906         
3907 Tue Jul 21 12:10:04 1998  Per Bothner  <bothner@cygnus.com>
3908
3909         * constants.c (find_name_and_type_constant, find_fieldref_index,
3910         find_methodref_index):  New methods.
3911         * expr.c (build_invoke_non_interface):  If flag_emit_class_files,
3912         just return given method.  Also, rename to build_known_method_ref.
3913         (expand_invoke):  Rename call to build_invoke_non_interface.
3914         * java-tree.h, parse.h:  Update prototype.
3915         * parse.y, decl.c, jcf-parse.c:  Suppress calls to back-end functions
3916         (such as expand_expr_stmt) if flag_emit_class_files.
3917         * jcf-write.c (RESERVE, OP1, OP2, OP4, NOTE_PUSH, NOTE_POP,
3918         STACK_TARGET, IGNORE_TARGET):  New macros.
3919         (code_buffer, code_ptr, code_limit, code_S, code_SP_max):  New globals.
3920         (generate_bytecode_insn):  New function to generate method's bytecode.
3921         (generate_classfile):  Node generate Code attribute for a method.
3922         (code_buffer_grow, push_constant1, push_constant2, push_int_const,
3923         push_long_const, field_op, adjust_typed_op, maybe_wide):
3924         New functions used by generate_bytecode_insn.
3925         
3926         * typeck.c (signature_include_return):  Remove variable.
3927         (push_java_argument_signature, build_java_argument_signature):  New.
3928         (build_java_signature):  Use push_java_argument_signature.
3929         * parse.y:  Use build_java_argument_signature instead of fiddling
3930         with signature_include_return.
3931
3932 Fri Jul 17 09:48:51 1998  Tom Tromey  <tromey@cygnus.com>
3933
3934         * gjavah.c (print_c_decl): Always generate JArray<>* for array
3935         types.
3936
3937         * Makefile.in (all.indirect): Added gjavah$(exeext).
3938         (gjavah$(exeext)): Added $(exeext).
3939         (clean): Likewise.
3940
3941 Thu Jul 16 15:29:20 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
3942
3943         * class.c (layout_class): Call to java_layout_parsed_class replace
3944         by safe_layout_class.
3945         * expr.c (build_java_array_length_access): Removed static storage
3946         class in the function definition.
3947         (build_java_arraynull_check): Likewise.  
3948         Also fixed typos in two comments.
3949         * lex.c (java_init_lex): Initialize static global kw_length.
3950         (java_lex): Use BUILD_OPERATOR on RETURN_TK.
3951         * lex.h (JAVA_FLOAT_RANGE_ERROR): Add extra argument to
3952         java_lex_error.
3953         (JAVA_INTEGRAL_RANGE_ERROR): Likewise.
3954         * parse.h (resolve_no_layout): New static function declaration.
3955         (get_identifier_in_static): Declaration removed.
3956         (java_layout_parsed_class): Function name declaration changed to
3957         safe_layout_class.
3958         (build_newarray_node, patch_newarray, resolve_type_during_patch,
3959         not_initialized_as_it_should_p, build_this): New static function
3960         declarations.
3961         (pushdecl_force_head, build_java_binop, int_fits_type_p,
3962         binary_numeric_promotion, stabilize_reference,
3963         build_decl_no_layout, build_java_arrayaccess): Extern function
3964         declarations moved into their own section.
3965         (build_newarray, build_anewarray, build_java_array_length_access,
3966         build_java_arraynull_check): New extern function declarations.
3967         (UNARY_PLUS_EXPR): Macro renamed into JAVA_UNARY_PLUS_EXPR.
3968         (JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR, JAVA_THIS_EXPR): New
3969         fake tree codes.
3970         (CALL_CONSTRUCTOR_P): New macro.
3971         * parse.y (kw_length): New static global tree node.
3972         (return_statement): Tagged <node>.
3973         (RETURN_TK): Tagged <operator>.
3974         (variable_declarator_id:): Build variable declaration with an
3975         empty initialization value if a syntax error was found in the
3976         initialization part of the variable declaration.
3977         (statement_without_trailing_substatement:): return_statement: now
3978         uses the default rule.
3979         (return_statement:): Temporarily fixed to return NULL_TREE.
3980         (primary_no_new_array:): Call build_this when THIS_TK was parsed.
3981         (class_instance_creation_expression:): Class creation rules now
3982         call build_method_invocation upon reduction.
3983         (array_creation_expression:): Rules call build_newarray_node upon
3984         reduction.
3985         (dim_exprs:): Build a list of dimension expressions.
3986         (dim_expr:): Store location of the OSB_TK in the dimension
3987         expression node.
3988         (method_invocation:): Added a new error rule.
3989         (build_unresolved_array_type): WFL argument may also be an array
3990         on a primitive type. Name of the argument changed to reflect this.
3991         (method_declarator): Insert argument type at the beginning of the
3992         argument type list and later reverse the list.
3993         (unresolved_type_p): Argument 'returned' may be optionally
3994         NULL_TREE.
3995         (java_layout_class_from_source): Function renamed
3996         safe_layout_class.
3997         (resolve_and_layout): Now call resolve_no_layout and
3998         safe_layout_class.
3999         (resolve_no_layout): New function.
4000         (purify_type_name): New function.
4001         (complete_class_report_errors): Call purify_type_name during error
4002         report on a type not found.
4003         (process_imports): error_found local variable doesn't need to be
4004         initialized to zero.
4005         (declare_local_variables): New local type_wfl. Fixed typo in error
4006         message. type_wfl assigned to unresolved type and used to register
4007         incomplete type. Build a WFL around the variable initialization
4008         statement so that debug info can be generated on it.
4009         (source_start_java_method): Reverse argument list after they've
4010         been processed.
4011         (current_this): New static global variable.
4012         (java_complete_expand_methods): Set current_this when appropriate.
4013         (resolve_expression_name): Build correct static and non static
4014         field access bearing a simple name.
4015         (resolve_field_access): Resolve the length field of arrays. Handle
4016         f.m() cases.
4017         (patch_method_invocation_stmt): Set the type of the method
4018         invocation to error_mark_node. This value is later overridden by a
4019         valid type, if any. Don't handle qualified constructor invocation
4020         as qualified method invocation. Call lookup_method_invoke with its
4021         new flag. It's no longer necessary to access the selected method
4022         as the value of a tree list. Handle constructor invocation.
4023         (patch_invoke): Reverse argument list when invoking non interface
4024         methods. Insert call to new as the first argument of the
4025         constructor.
4026         (invocation_mode): Return a INVOKE_STATIC is the invoked method is
4027         defined within a final class. Return INVOKE_STATIC if the invoked
4028         method is a constructor.
4029         (lookup_method_invoke): New lc argument is a flag to indicate a
4030         constructor lookup. Now handle constructor lookup. Choose the most
4031         specific method in case several were matching the invocation
4032         requirements. Return a method decl instead of a tree list featuring
4033         one single method decl element.
4034         (refine_accessible_methods_list): New lc flag argument to
4035         indicate that a constructor is being looked up.
4036         (not_initialized_as_it_should_p): New function.
4037         (java_complete_tree): Now process fake tree codes
4038         JAVA_NEW_ARRAY_EXPR, JAVA_NEW_CLASS_EXPR and JAVA_THIS_EXPR. Call
4039         save_expr on resolved function call arguments. Case on
4040         UNARY_PLUS_EXPR changed into a case on JAVA_UNARY_PLUS_EXPR.
4041         (patch_assignment): LHS can be a field access expression. When
4042         dealing with reference, lhs_type is the promoted type of the
4043         rhs_type, not the RHS. Use not_initialized_as_it_should_p where
4044         applicable.
4045         (operator_string): JAVA_UNARY_PLUS_EXPR replaces UNARY_PLUS_EXPR.
4046         (patch_binop): Use not_initialized_as_it_should_p where
4047         applicable.
4048         (build_unaryop): JAVA_UNARY_PLUS_EXPR replaces UNARY_PLUS_EXPR.
4049         (patch_unaryop): Likewise. And use not_initialized_as_it_should_p
4050         where applicable.
4051         (resolve_type_during_patch): New function.
4052         (patch_cast): Call resolve_type_during_patch to resolve type and
4053         report error accordingly.
4054         (patch_array_ref): Use not_initialized_as_it_should_p where
4055         applicable. Array base expression is saved before being
4056         used. Promote the type of an array elements if it contains non
4057         builtin types.
4058         (build_newarray_node, patch_newarray, build_this): New functions.
4059
4060 Thu Jul 16 10:46:47 1998  Tom Tromey  <tromey@cygnus.com>
4061
4062         * gjavah.c (print_c_decl): UTF8_GET increments pointer; don't
4063         increment it in `for' statement.
4064         (print_field_info): If number is inf or nan, don't print it.
4065         (print_method_info): If method name is `delete', just ignore it.
4066         (print_c_decl): Special-case jstringArray.
4067
4068         * gjavah.c (help): New function.
4069         (no_argument): New function.
4070         (usage): Changed text.
4071         (main): Rewrote argument handling.  Now handles -v, --help,
4072         --version.
4073         (version): New function.
4074         (found_error): New global.
4075         (main): Return found_error.
4076         (generate_access): Set found_error.
4077         (print_c_decl): Likewise.
4078
4079 Wed Jul 15 10:36:27 1998  Tom Tromey  <tromey@cygnus.com>
4080
4081         * gjavah.c (print_c_decl): Don't print "," when examining field.
4082         Skip type name when looking at "[L" types.
4083         (process_file): Now static.
4084         (generate_access): Now returns int.
4085         (last_access_generated): New global.
4086         (process_file): Clear last_access_generated; make multiple passes
4087         over the class.
4088         (print_field_info): Just return if generate_access returns true.
4089         (print_method_info): Likewise.  Also, allow <init> functions to
4090         pass through.
4091         (print_c_decl): Added is_init argument.  Print constructors
4092         properly.
4093         (print_cxx_classname): Use UTF8_GET to extract characters from
4094         string.
4095         (print_base_classname): New function.
4096         (print_class_decls): New function.
4097         (process_file): Use it.
4098         (utf8_cmp): New function.
4099
4100 Mon Jul 13 14:21:47 1998  Nick Clifton  <nickc@cygnus.com>
4101
4102         * lang-options.h: Format changed to match changes in gcc/toplev.c
4103         to implement a --help option.
4104
4105 1998-07-10  Brendan Kehoe  <brendan@cygnus.com>
4106
4107         * decl.c (init_decl_processing): Revert change to dtable_type.
4108
4109 Thu Jul  9 18:22:12 1998  Per Bothner  <bothner@cygnus.com>
4110
4111         * java-tree.h (CLASS_P):  Changed DECL_LANG_FLAG_7 -> TYPE_LANG_FLAG_4.
4112
4113 1998-07-08  Brendan Kehoe  <brendan@cygnus.com>
4114
4115         * decl.c (init_decl_processing): Set CLASS_LOADED_P on dtable_type.
4116
4117         * lang.c (lang_init): Default flag_exceptions to 1, without
4118         checking to see if it's 2 first.
4119
4120 Wed Jul  8 03:01:32 1998  Jeffrey A Law  (law@cygnus.com)
4121
4122         * constants.c: Include "system.h".
4123         * decl.c: Likewise.
4124         * lang.c (flag_new_exceptions): Get via extern now.
4125         (lang_init_options): New functions.  Turn on flag_new_exceptions.
4126         
4127 Tue Jul  7 12:56:48 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4128
4129         * lex.c (java_lex): Return 0 when we see an invalid character in
4130         the input.
4131
4132         * lex.c (java_read_char): Specify extra argument when calling
4133         java_lex_error.
4134         (java_read_unicode, java_parse_end_comment,
4135         java_parse_escape_sequence): Likewise,
4136         (java_lex): Specify extra argument when calling
4137         java_lex_error. Test that IDs are beginning with a legal character
4138         for IDs. Handle invalid characters with an error message and a
4139         call to java_lex_error.
4140         (java_lex_error): Adjust column position by new argument
4141         `forward'. Issue an error even if in the middle of reporting an
4142         other error.
4143
4144 1998-07-07  Brendan Kehoe  <brendan@cygnus.com>
4145
4146         * jcf-io.c (find_class): Zero out BUFFER before we use it, since
4147         we don't explicitly put a null pointer when we're copying it.
4148
4149 Tue Jul  7 09:38:38 1998  Tom Tromey  <tromey@cygnus.com>
4150
4151         * gjavah.c (print_cxx_classname): New function.
4152         (super_class_name): Likewise.
4153         (print_super_fields): Removed.
4154         (in_super): Removed.
4155         (print_field_info): Never generate #defines.
4156         (print_c_decl): Changed generated types to match JNI.  No longer
4157         print class name before method name.
4158         (print_method_info): Print "static" before static methods.
4159         Print "virtual" before non-final methods.
4160         (usage): Use exit(1), not exit(-1).
4161         (main): Likewise.
4162         (print_field_info): Use %.17g to print a double.
4163         (last_access): New globals.
4164         (process_file): Initialize last_access.
4165         (usage): Now static.
4166         (ACC_VISIBILITY): New define.
4167         (generate_access): New function.
4168         (print_field_info): Call it.
4169         (print_method_info): Likewise.  Also, generate information for all
4170         methods, not just native methods.  Return void.
4171         (print_c_decl): Return void.
4172         (print_field_info): Return void.
4173
4174 Thu Jul  2 16:53:16 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4175
4176         * Makefile.in (JAVABISONFLAGS): Specific flag for bison when
4177         processing the jc1 grammar file. Prefix bison functions and
4178         variables with java_.
4179         (parse.c): Dependencies on parse.h and lex.h
4180         * expr.c (build_java_arrayaccess): Function now global.
4181         * java-tree.h: Comment reorganized to carry on previous
4182         classification effort.
4183         (RESOLVE_EXPRESSION_NAME_P, RESOLVE_PACKAGE_NAME_P,
4184         RESOLVE_TYPE_NAME_P): New flags on WFLs.
4185         * jcf-parse.c (parse_source_file): java_parse_source_file renamed
4186         java_parse (new prefix java_ generated by bison).
4187         (java_layout_parsed_class, java_register_parsed_class): Function
4188         call removed.
4189         (yyparse): Removed unnecessary call to init_outgoing_cpool.
4190         * lex.c (static tree wfl_op): Variable deleted.
4191         (java_init_lex): Initialize kw_super and kw_this. Initialize more
4192         ctxp fields to NULL_TREE.
4193         (java_lex): No longer create WFL for operators. Filename caching
4194         mechanism deleted. Call BUILD_OPERATOR for `.', '(', '['. Strings
4195         created as STRING_CST and later expanded. Removed extra argument
4196         to BUILD_OPERATOR and BUILD_OPERATOR2. Build operators for THIS
4197         and SUPER.
4198         (build_wfl_node): Removed code in comments.
4199         * lex.h (BUILD_OPERATOR, BUILD_OPERATOR2): No longer build a WFL but
4200         store token and location data in the current bison token.
4201         * parse.h: Removed pre-processor based symbol prefixes hack. Moved
4202         static/extern function declaration at the beginning of the file.
4203         (struct qualification): Data structure definition deleted.
4204         (RESOLVE_CHAIN_REMAINDER): Macro definition deleted.
4205         (qualify_ambiguous_name): Function declaration modified. Function
4206         now returns nothing.
4207         (build_array_ref, patch_array_ref, make_qualified_name,
4208         resolve_qualified_expression_name, maybe_generate_clinit,
4209         resolve_field_access): New static function declarations.
4210         (build_java_arrayaccess): New extern function declaration.
4211         (enum { RESOLVE_EXPRESION_NAME...}): Enum deleted.
4212         (CALL_EXPR_PRIMARY): Macro deleted.
4213         (EXPR_WFL_QUALIFICATION, QUAL_WFL, QUAL_RESOLUTION): New macros.
4214         (struct parser_ctxt): Field initialized_final
4215         removed. non_static_initialized, static_initialized: New fields.
4216         * parse.y (static tree kw_super, static tree kw_this): New global
4217         static.
4218         (%union): tree wfl field of operator member replaced by int
4219         location. WFLs are non longer created for operators.
4220         (OSB_TK, DOT_TK, THIS_TK, SUPER_TK): Tagged <operator>.
4221         (qualified_name:): Now calls make_qualified_name to build the
4222         identifier.
4223         (type_declaration:): Consider generating <clinit> when class
4224         parsing completed.
4225         (variable_declarator:): Directly build an assignment node when the
4226         variable is initialized when declared.
4227         (this_or_super:): Build a WFL and set current location when THIS
4228         or SUPER are parsed.
4229         (expression_statement:): Wrap statement around a WFL.
4230         (primary_no_new_array:): Fixed typo. Changed value returned by
4231         THIS_TK because of its new type (temporary).
4232         (dim_exprs:): Temporary fix because of OSB_TK's new type.
4233         (field_access:): Build qualified name with SUPER.
4234         (method_invocation:): Fixed returned value because of SUPER's new
4235         type.
4236         (array_access:): Use OSB_TK location information.
4237         (post_increment_expression:, post_decrement_expression:,
4238         unary_expression:, pre_increment_expression:,
4239         pre_decrement_expression:, unary_expression_not_plus_minus:,
4240         cast_expression:, multiplicative_expression:,
4241         additive_expression:, shift_expression:, relational_expression:,
4242         equality_expression:, and_expression:, exclusive_or_expression:,
4243         inclusive_or_expression:, conditional_and_expression:,
4244         conditional_or_expression:, assignment:): Use new location/token
4245         information available on operators.
4246         (create_class): Set super_decl_type to NULL_TREE when processing
4247         java.lang.Object.
4248         (register_fields): Field initialization is now a MODIFY_EXPR
4249         node. Chain initialization code to the matching lists (according
4250         the the field declaration modifiers).
4251         (maybe_generate_clinit): New function.
4252         (method_header): Don't set method's DECL_NAME to a WFL when adding
4253         methods to java.lang.Object.
4254         (resolve_and_layout): Now can return NULL_TREE if the type
4255         resolution fails. Otherwise, return the class DECL instead of its
4256         TYPE.
4257         (check_method_redefinition): Don't patch method DECL_NAME if it
4258         belongs to java.lang.Object.
4259         (process_imports): Simply assign error_found to the value returned
4260         by check_pkg_class_access.
4261         (declare_local_variables): Don't use their init statements (if
4262         any) when parsing error were previously found. Reuse MODIFY_EXPR
4263         build during parsing as an init statement.
4264         (java_method_add_stmt): Now return the current method body.
4265         (java_layout_parsed_class, java_register_parsed_class): Functions
4266         removed.
4267         (java_complete_expand_methods): Initialize the constant pool on a
4268         per class basis. Layout the classes before expanding their method
4269         bodies. Don't try expand artificial constructor code if error were
4270         found. Make the classes data and register them if no error were
4271         found.
4272         (java_complete_expand_method): Retrieve an artificial constructor
4273         argument list before entering its body. Assign the top block to
4274         the artificial constructor function body and set types of declared
4275         blocks and compound statements to void. Walk method body if not an
4276         artificial constructor.
4277         (make_qualified_name, cut_identifier_in_qualified): New functions.
4278         (resolve_expression_name): Fixed comments. Save/restore the
4279         current class CLASS_LOADED_P flag value. Build non qualified
4280         static field access and handle qualified expression names.
4281         (resolve_field_access, resolve_qualified_expression_name): New
4282         functions.
4283         (patch_method_invocation_stmt): Use the new expression resolution
4284         scheme, calling resolve_field_access when the function call is
4285         resolved as an expression.
4286         (qualify_ambiguous_name): Function rewritten to work on qualified
4287         expression produced by make_qualified_name.
4288         (java_complete_tree): Promote type when function's argument are
4289         RECORD_TYPEs. While processing the MODIFY_EXPR case: don't patch
4290         the assignment to discover further errors if RHS is a expression
4291         name that fails to evaluate. Declare LHS initialized even though
4292         the assignment failed. Don't use the location variable and removed
4293         extra argument in patch function calls. Now handle the ARRAY_REF
4294         case and build internal string representation when STRING_CSTs are
4295         walked.
4296         (build_method_invocation): Don't wrap function call around a WFL.
4297         (build_assignment): Likewise. Use the operator location
4298         information.
4299         (patch_assignment): Handle array access LHSs. Handle error
4300         provenance, resulting in a better error report.
4301         (build_binop): Use op_location from operator as binop location
4302         information.
4303         (build_unaryop, build_incdec, build_cast): Likewise.
4304         (patch_binop): Extract location information from the node. Fixed
4305         typo in error message.
4306         (patch_unary_op): Extract location information from the node.
4307         (build_array_ref, patch_array_ref): New functions.
4308         
4309 Wed Jul  1 13:11:36 1998  Tom Tromey  <tromey@cygnus.com>
4310
4311         * expr.c (expand_java_INSTANCEOF): Changed calling convention to
4312         match _Jv_IsInstanceOf.
4313         * decl.c (init_decl_processing): Use _Jv_NewArray, not
4314         soft_newarray.  Use _Jv_IsInstanceOf, not soft_instanceof.
4315
4316 Tue Jun 30 14:12:54 1998  Tom Tromey  <tromey@cygnus.com>
4317
4318         * decl.c (init_decl_processing): Functions are now named
4319         _Jv_MonitorEnter and _Jv_MonitorExit, and return jint.
4320
4321 Mon Jun 29 14:47:10 1998  Per Bothner  <bothner@cygnus.com>
4322
4323         * java-tree.h (load_class):  Add prototype.
4324         * class.c (is_compiled_class):  Add missing arg to load_class.
4325         * expr.c (expand_java_NEW):  Call load_class.
4326         * parse.y (process_import):  Removed bogus use of void return value.
4327
4328 Thu Jun 25 11:50:48 1998  Per Bothner  <bothner@cygnus.com>
4329
4330         * decl.c, java-tree.h (soft_athrow_node):  Renamed to soft_node.
4331         Function name is "_Jv_Throw" instead of "soft_athrow".
4332         * decl.c, java-tree.h (soft_new_node):  Renamed to alloc_object_node.
4333         Function name is "_Jv_AllocObject" instead of "soft_new".
4334         Takes an extra parameter (object size).
4335         * expr.c:  Update calls.
4336
4337 Wed Jun 24 13:59:02 1998  Per Bothner  <bothner@cygnus.com>
4338
4339         * lex.c (java_get_line_col):  Handle end-of-file.
4340         * except.c (expand_end_java_handler):  Handle null type (i.e. finally).
4341
4342 Wed Jun 24 09:22:34 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
4343
4344         * lang.c (lang_init): Make -fexceptions the default.
4345         * except.c (maybe_start_try, maybe_end_try): Don't do anything if
4346         exception handling is not turned on.
4347
4348 Tue Jun 23 10:17:09 EDT 1998  Andrew MacLeod  <amacleod@cygnus.com>
4349
4350         * lang.c (flag_new_exceptions): Make this this default.
4351         * decl.c (end_java_method): Call emit_handlers.
4352         * except.c (method_init_exceptions): Set language code and version.
4353         (expand_start_java_handler): Enable exception, and call 
4354         expand_eh_region_start.
4355         (expand_end_java_handler): Enable exception, and set up catch blocks.
4356         (emit_handlers): New routine to generate the saved handlers.
4357         * java-except.h (emit_handlers): Add prototype.
4358
4359 Fri Jun 12 11:31:24 1998  Per Bothner  <bothner@cygnus.com>
4360
4361         We used to have three different representations of the constant pool:
4362         the CPool structure, the tree_constant_pool, and the constructures
4363         used to build the Class object (which may need class and string
4364         constants) in compiled code.  None were appropriate for compiling
4365         to .class files, so I did a major overhaul.
4366
4367         First, the tree_constant_pool array was removed.  Things were
4368         modified to the CPool structure in the JCF could be used.
4369         Second, a "capacity" field was added to the CPool, and functions
4370         written to search for a matching constant, adding one if not found.
4371         The code that generated the Class object was changed to use a CPool.
4372         The actual TREE_LISTs used to build the CONSTRUCTORs used for
4373         the static Class object are now only in build_constants_constructor.
4374         Finally, I wrote code which can generate a .class file (including its
4375         constant pool) from the RECORD_TYPE of a class.  This is a big step
4376         on the way to compiling Java source into .class files.
4377         
4378         * jcf-write.c:  New file. Writes out a RECORD_TYPE as a .class file.
4379         * Makefile.in (JAVA_OBJS):  Added jcf-write.o.
4380
4381         * java-tree.h (CPOOL_UTF, CONSTANT_ResolvedFlag,
4382         CONSTANT_ResolvedString, CONSTANT_ResolvedClass):  New macros.
4383         (NAME_AND_TYPE_NAME, NAME_AND_TYPE_SIGNATURE, COMPONENT_REF_NAME,
4384         COMPONENT_REF_NAME_AND_TYPE, COMPONENT_REF_SIGNATURE): Redefined.
4385         (COMPONENT_REF_CLASS):  Replaced by COMPONENT_REF_CLASS_INDEX.
4386         (lang_type):  Removed constant_pool field.
4387         * jcf.h (CPool):  Renamed size to count.  Added field capacity.
4388         (CPOO_COUNT, CPOOL_UINT, CPOOL_USHORT1, CPOOL_USHORT2,
4389         CPOOL_FINISH, CPOOL_INIT, CPOOL_REINIT):  New macros.
4390         Rewrite some of the old JCF_XXX in terms of CPOOL_XXX macros.
4391
4392         * constants.c (current_constant_pool_tags, current_constant_pool_data,
4393         current_constant_pool_length), java-tree.h: Replaced by outgoing_cpool.
4394         * constants.c (build_constants_constructor):  Use new outgoing_cpool.
4395         (set_constant_entry, find_constant1, find_constant2,
4396         find_class_constant, count_constant_pool_bytes, write_constant_pool,
4397         find_utf8_constant, find_class_or_string_constant):  New functions.
4398         
4399         * jcf-parse.c (load_class):  Don't save/restore tree-constant_pool.
4400         (get_constant):  Use current_jcf.cpool instead of tree_constant_pool.
4401         (give_name_to_class, get_class_constant):  Likewise.
4402         * jcf-parse.c, java-tree.h (tree_constant_pool):  Removed.
4403         (get_name_and_type_constant, get_ref_constant):  Removed.
4404         * parse.h (parser_ctxt):  Remove field tree_constant_pool.
4405         * parse.y:  Don't save/restore tree_constant_pool.
4406         * verify.c (verify_jvm_instructions):  Update for new approach.
4407         * expr.c (expand_invoke, expand_java_field_op): Likewise.
4408
4409         * lang-options.h:  Added -femit-class-file, -femit-class-files.
4410         * lang.c (flag_emit_class_files), java-tree.h:  New flag.
4411         (lang_f_options):  Added "emit-class-file(s)".
4412
4413         * expr.c (build_java_arrayaccess):  Generate more efficient array
4414         bounds checking, by using unsigned compare.
4415
4416         * expr.c (expand_invoke):  Re-arrange error checks to make more robust.
4417
4418 Wed Jun 10 17:34:42 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4419
4420         * parse.h: New comment on the handling of unresolved type
4421         identifiers. JDEPs are now part of the jdep_code enum.
4422         (typedef struct jdep): Now use enum jdep_code or int, depending on
4423         availability. Both are narrowed down to an 8 bits bitfield.
4424         (CALL_EXPR_PRIMARY): Fixed comment.
4425
4426 Wed Jun 10 10:54:39 1998  Tom Tromey  <tromey@cygnus.com>
4427
4428         * Make-lang.in (java): Added gjavac and jvgenmain.
4429         (java.start.encap): Depend on gjavac.
4430         (java.rest.encap): Depend on jvgenmain.
4431
4432         * Make-lang.in (JAVA_INSTALL_NAME): Name is gjavac, not c++.
4433         (JAVA_CROSS_NAME): Likewise.
4434         (java.all.build): Depend on jvgenmain and gjavac.
4435         (java.all.cross): Depend on jvgenmain and gjavac-cross.
4436         (jvgenmain$(exeext)): New target.
4437         (java.install-common): Wrote.
4438         * config-lang.in (compilers, stagestuff): Added gjavac and
4439         jvgenmain.
4440
4441 Wed Jun 10 12:19:04 1998  Dave Brolley  <brolley@cygnus.com>
4442
4443         * lang.c (lang_decode_option): New argc/argv interface.
4444
4445 Tue Jun  9 18:12:46 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4446
4447         * ChangeLog: Fixed entries not compliant with the Gnu Coding Standard.
4448         * decl.c (build_decl_no_layout): New function.
4449         * expr.c (java_lang_expand_expr): Layout declarations found in
4450         blocks before they're pushed.
4451         * jcf-parse.c (load_class): Save current line when parsing class
4452         file.
4453         (parse_source_file): Register class before expanding their
4454         methods.
4455         * lang.c (put_decl_node): Produce `null' when `void *' is
4456         processed.
4457         * lex.c (static tree wfl_op): New static global, for error report
4458         on casts.
4459         (java_init_lex): wfl_operator and wfl_op initialized
4460         here. Filename caching added for wfl_op. Return wfl_op when `(' is
4461         parsed.
4462         * parse.h (build_unaryop, build_incdec, patch_unaryop, build_cast,
4463         patch_cast, valid_ref_assignconv_cast_p, can_cast_to_p,
4464         build_unresolved_array_type): New static function definitions.
4465         (build_decl_no_layout): New extern function declared.
4466         (OBSOLETE_MODIFIER_WARNING): Report error only if the WFL of the
4467         faulty modifier exists.
4468         (TYPE_INTERFACE_P, TYPE_CLASS_P): New macros.
4469         (ERROR_CAST_NEEDED_TO_INTEGRAL): Error message tuned.
4470         (UNARY_PLUS_EXPR): New fake operator.
4471         (struct parser_ctxt): New field osb_number.
4472         * parse.y (static tree wfl_operator): New static WFL for operator
4473         bound error messages.
4474         (DECR_TK, INCR_TK): Moved.
4475         (OP_TK): Tagged <operator>.
4476         (array_type:): Now call build_unresolved_array_type.
4477         (dim_expr:): Count the number of '[' seen.
4478         (post_increment_expression, post_decrement_expression,
4479         pre_increment_expression, pre_decrement_expression,
4480         unary_expression_not_plus_minus, unary_expression:): Actions are
4481         now building the corresponding unary expressions.
4482         (cast_expression:): Actions are now building cast expressions.
4483         (build_unresolved_array_type): New function.
4484         (create_interface): Reset the number of declared interfaces.
4485         (create_class): Likewise.
4486         (method_header): Methods declared within the scope of an interface
4487         are now implicitly set public and abstract.
4488         (java_complete_class): Variable's and parameter's type are patched
4489         with a promoted type.
4490         (declare_local_variables): Resolved non builtin types are promoted
4491         before being used to build a variable decl. Removed type patch
4492         posted on variable initialization statement.
4493         (source_start_java_method): Use build_decl_no_layout to build the
4494         decl of a parameter of incomplete type.
4495         (java_register_parsed_class): Process interfaces too. Call
4496         rest_of_decl_compilation on each processed class declarations.
4497         (java_complete_expand_methods): Don't attempt to expand things in
4498         interfaces.
4499         (java_complete_tree): Process CONVERT_EXPR, even though it always
4500         has a type. Propagate error_mark_node to node's type too. Promote
4501         method's call argument type and return error_mark_node if
4502         argument's completion didn't work. MODIFY_EXPR can have a WFL as a
4503         RHS. Fixed bug in the handling of bogus RHS of a fixed type. Now
4504         handle unary operator nodes.
4505         (build_assignment): Added comment.
4506         (print_int_node): New function.
4507         (patch_assignment): New second argument. New error handling. Use
4508         print_int_node. Handle references. Use can_cast_to_p to issue
4509         different error message according to the context and check upon
4510         the initialization of the RHS.
4511         (can_cast_to_p, valid_ref_assignconv_cast_p): New functions.
4512         (operator_string): Handle more operators.
4513         (patch_binop): No longer use a function static
4514         wfl_operator. Improved error message on shift distance.
4515         (build_unaryop, build_incdec, build_cast, patch_unaryop,
4516         patch_cast): New functions.
4517         
4518 Fri Jun  5 18:03:07 1998  Per Bothner  <bothner@cygnus.com>
4519
4520         * jvspec.c:  New file.
4521         * Make-lang.in:  New rules to build gjavac from jvspec.c and ../gcc.c.
4522
4523         * java-tree.h (identifier_subst):  Add declaration.
4524
4525 Thu Jun  4 13:44:23 1998  Tom Tromey  <tromey@cygnus.com>
4526
4527         * jvgenmain.c (main): Generate call to JvRunMain.
4528
4529         * class.c (make_class_data): Push value for "sync_info" field.
4530         * decl.c (init_decl_processing): Push "sync_info" field.
4531
4532 Wed Jun  3 20:39:14 1998  Per Bothner  <bothner@cygnus.com>
4533
4534         * typeck.c (build_java_array_type):  Set TYPE_NAME to actual
4535         Java (source) name, not signature.
4536         Set TYPE_ALIGN to (at least) that of element_type.
4537
4538 Tue Jun  2 15:19:19 1998  Per Bothner  <bothner@cygnus.com>
4539
4540         * class.c:  Moved classname-mangling-rekated code to ...
4541         * mangle.c:  ... this new file.
4542         * jvgenmain.c:  New program (needs mangle.c) to generate main program.
4543         * Makefile.in:  Update for above changes.        
4544
4545 Mon Jun  1 09:58:36 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4546
4547         * expr.c (truthvalue_conversion): Convert integer and floating
4548         point value to their truth value.
4549         * lex.c (java_lex): Handle the `null' literal.
4550         * parse.h (JREFERENCE_TYPE_P, DECL_P): New macros.
4551         (ERROR_CANT_CONVERT_TO_BOOLEAN, ERROR_CANT_CONVERT_TO_NUMERIC,
4552         ERROR_CAST_NEEDED_TO_INTEGRAL, ERROR_VARIABLE_NOT_INITIALIZED):
4553         New macros.
4554
4555         * parse.y: Reorganization/documentation on token declaration.
4556         (binop_lookup[]): New added new tree codes.
4557         (relational_expression): Build corresponding binary operators.
4558         (equality_expression, conditional_and_expression,
4559         conditional_or_expression): Likewise.
4560         (java_complete_class): Fix crash in debug message.
4561         (java_complete_tree): Check initialization of method call
4562         arguments. Further bogus node evaluation to detect more error
4563         during assignments. Handles more binary operators.
4564         (patch_assignment): Use DECL_P.
4565         (build_binop): Fix crash when using URSHIFT_EXPR, a Java only tree
4566         code.
4567         (operator_string): Handle more case. Compacted source.
4568         (patch_binop): Changed function comment. Checking for
4569         uninitialized first operand takes the compound assignment into
4570         account and uses DECL_P. Checking for uninitialized second operand
4571         delayed to routine's end. Use macros to issue type bound error
4572         messages and issue messages on both operands if their types are
4573         different. Force fixed type into node. Handle all binary
4574         operators.
4575         
4576 Wed May 27 10:30:31 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4577
4578         * java-tree.h (COMPOUND_ASSIGN_P, INITIALIZED_P): New macros.
4579         * lex.c (java_lex): Use BUILD_OPERATOR and BUILD_OPERATOR2 to
4580         build operator node and return tokens.
4581         * lex.h (BUILD_OPERATOR, BUILD_OPERATOR2): New macros.
4582         * parse.h (java_complete_tree): Changed returned type in prototype.
4583         (build_method_invocation, build_assignment, patch_assignment,
4584         patch_binop): New static function declarations.
4585         (JFLOAT_TYPE_P, JNUMERIC_TYPE_P, JPRIMITIVE_TYPE_P, JSTRING_P,
4586         BUILD_EXPR_WFL): New macros.
4587         * parse.y (enum tree_code binop_lookup[]): New static for token to
4588         TREE_CODE lookup.
4589         (%union): Parser union has new sub-structure `operator'.
4590         (ASSIGN_TK, MULT_ASSIGN_TK, DIV_ASSIGN_TK, REM_ASSIGN_TK,
4591         PLUS_ASSIGN_TK, MINUS_ASSIGN_TK, LS_ASSIGN_TK, SRS_ASSIGN_TK,
4592         ZRS_ASSIGN_TK, AND_ASSIGN_TK, XOR_ASSIGN_TK, OR_ASSIGN_TK,
4593         ASSIGN_ANY_TK): Tokens tagged `operator'.
4594         (EQ_TK, GTE_TK, ZRS_TK, SRS_TK, GT_TK, LTE_TK, LS_TK, BOOL_AND_TK,
4595         AND_TK, BOOL_OR_TK, OR_TK, INCR_TK, PLUS_TK, DECR_TK, MINUS_TK,
4596         MULT_TK, DIV_TK, XOR_TK, REM_TK, NEQ_TK, NEG_TK, REL_QM_TK,
4597         REL_CL_TK, NOT_TK, LT_TK): Tokens tagged `operator'.
4598         (assignment_operator:): Rule tagged `operator'.
4599         (expression_statement:): Re-installed default rule.
4600         (method_invocation:): Sub rules call build_method_invocation.
4601         (postfix_expression:): Don't attempt to resolve name here. Just
4602         return an ID.
4603         (multiplicative_expression:): Sub-rules build corresponding binop
4604         expression node.
4605         (additive_expression:, shift_expression:, and_expression:,
4606         exclusive_or_expression:, inclusive_or_expression:): Likewise.
4607         (assignment:): Sub rule invoke build_assignment.
4608         (assignment_operator:): Default rules on sub rules.
4609         (force_error): Added documentation on this variable.
4610         (declare_local_variables): Build initialization calling
4611         build_assignment.
4612         (expand_start_java_method): Removed unused rtx declaration. Mark
4613         arguments as already initialized.
4614         (java_method_add_stmt): Type of built COMPOUND_EXPR set to NULL.
4615         (java_complete_expand_methods): Don't process next method if
4616         completion of the previous one triggered errors.
4617         (java_complete_expand_method): Call source_end_java_method if no
4618         error were found during completion.
4619         (resolve_expression_name): Use IDENTIFIER_LOCAL_VALUE to retrieve
4620         locals declaratilon. Handle names found within a class. Return
4621         error_mark_node when things aren't found.
4622         (patch_method_invocation_stmt): Return error_mark_node on failures.
4623         (patch_invoke): Removed unused local. Return the correct node.
4624         (java_complete_tree): Now returns a value. The BLOCK section binds
4625         local identifiers and the type of a BLOCK is now void. Assign the
4626         result of operand completion on COMPOUND_EXPR. Assign the
4627         encapsulated node of a WFL to the result of its completion, except
4628         when the node is an identifier. Now handle MODIFY_EXPR and several
4629         binary operators. Return error_mark_node on errors.
4630         (build_method_invocation, build_assignment, patch_assignment,
4631         build_binop, operator_string, patch_binop): New functions.
4632         * typeck.c (binary_numeric_promotion): New function.
4633
4634 Thu May 21 12:01:04 1998  Per Bothner  <bothner@cygnus.com>
4635
4636         * class.c (identifier_subst):  New convenience wrapper for ident_subst.
4637         Replace most uses of ident_subst by identifier_subst.
4638
4639         * class.c (push_class_static_dummy_field):  Removed function.
4640         (build_class_ref):  Find Class object decl by looking up "CNAME.class",
4641         instead of looking got "class" static field.  Create that decl here.
4642         (class_identifier_node):  Removed;  no longer needed.
4643         (init_class_processing):  Don't init class_identifier_node.
4644         * jcf-parse.c (jcf_parse):  Don't call push_class_static_dummy_field.
4645         Do nreverse 0 times (instead of twice) for Object and Class.
4646         * parse.y (java_layout_parsed_class): No push_class_static_dummy_field.
4647
4648 Wed May 20 16:35:04 1998  Per Bothner  <bothner@cygnus.com>
4649
4650         * jcf-parse.c (parse_class-file):  Set lino to smallest line number,
4651         while initializing linenumber_count and linenumber_table.
4652         Do it before init_function_start (which calls emit_line_note).
4653         * expr.c (expand_byte_code):  Don't need to clear lineno here.
4654
4655 Mon May 18 16:23:32 1998  Tom Tromey  <tromey@cygnus.com>
4656
4657         * class.c (append_gpp_mangled_type): If `qualifications' is >=9,
4658         then mangle number as _N_.
4659
4660         * class.c (mangle_class_field): New function.
4661         (build_class_ref): Set assembler name of class reference using
4662         mangle_class_field.
4663         (push_class_static_dummy_field): Likewise.
4664
4665 Sun May 17 12:52:35 1998  Michael Tiemann <tiemann@cygnus.com>
4666
4667         * parse.y (source_start_java_method): Use TREE_SET_CODE instead
4668         of assigning to TREE_CODE.  The latter method exploits a feature
4669         of GCC that is not ANSI compliant.
4670
4671 Thu May 12 13:44:27 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4672
4673         * decl.c (pushdecl_force_head): New function.
4674         (pushlevel): Removed conditional printf.
4675         (complete_start_java_method): Don't enter local variable scope if
4676         function is compiled from source code.
4677         * expr.c: parse.h now included
4678         (java_lang_expand_expr): New function.
4679         * jcf-io.c (find_class): Use SOURCE_FRONTEND_DEBUG instead of
4680         printf. Terminate buffer when doing directories.
4681         * jcf-parse.c (parse_source_file): Call lang_init_source before
4682         parsing and before code generation.
4683         * jcf.h (SOURCE_FRONTEND_DEBUG): Macro redefined to conditionally
4684         use printf if the macro is defined.
4685         * lang.c (lang_init): Install lang_expand_expr hook on
4686         java_lang_expand_expr.
4687         (java_dummy_print): New function.
4688         (lang_init_source): New function.
4689         * lex.c (java_lex): Remember location of an opening brace at the
4690         second nesting level.
4691         (java_is_eol): Unget character seen after a CR if it is EOF.
4692         * parse.h: Now includes lex.h
4693         (SOURCE_FRONTEND_DEBUG): Macro redefined to conditionally use
4694         printf if the macro is defined.
4695         (expand_start_java_method, build_expr_block, enter_block,
4696         exit_block, lookup_name_in_blocks, maybe_absorb_scoping_blocks):
4697         New static function declarations.
4698         (pushdecl_force_head): New extern function declaration.
4699         (INCOMPLETE_TYPE_P): New macro.
4700         (JDEP_PARM, JDEP_TYPE): New entries in JDEPs enum.
4701         (BLOCK_CHAIN_DECL, BLOCK_EXPR_DECLS, BLOCK_EXPR_BODY,
4702         BLOCK_EXPR_ORIGIN): New macros.
4703         (DECL_SOURCE_LINE_MERGE, DECL_SOURCE_LINE_FIRST,
4704         DECL_SOURCE_LINE_LAST): New macros.
4705         (struct parser_ctxt): Removed field current_method_decl, redundant
4706         with the field current_function_decl. Added fields
4707         first_ccb_indent1 and pending_block.
4708         * parse.y (method_body, literal, INT_LIT_TK, FP_LIT_TK,
4709         BOOL_LIT_TK, CHAR_LIT_TK, STRING_LIT_TK, NULL_TK, VOID_TK): Rules
4710         tagged <node>
4711         (SOURCE_FRONTEND_DEBUG): Used as macro accepting varargs.
4712         (compilation_unit:): Cosmetic on sub rule.
4713         (type_declaration:): Cosmetic on sub rules. Added an error rule.
4714         (variable_initializer:): Installed default rule on expression:.
4715         (method_declaration:): method_header: starts a new
4716         method. method_body: installs the function body, absorbs blocks
4717         emitted for temporary variable scopings, pops function's body block
4718         and merges function's last statement lineno in DECL_SOURCE_LINE.
4719         (method_body:): Installed default rules.
4720         (block:): Call enter_block when an opening brace is seen.  Absorb
4721         scoping blocks and call exit_block when a closing brace is seen.
4722         (block_statement:): Cosmetic changes.
4723         (method_invocation:): Create WFL around CALL_EXPR node.
4724         (patch_stage): Added comment around definition.
4725         (method_header): Try to use first_ccb_indent1 as the first line of
4726         the method, so BP debug info are emitted at the first opening
4727         brace of the function. If the function has no body, use the
4728         location of the function's name. Override currently defined method
4729         name with the matching WFL so we can point redefinition errors
4730         using the location where the function's name was declared.
4731         (check_abstract_method_header): Interprets DECL_NAME as an
4732         identifier or as a WFL, accordingly.
4733         (java_complete_class): New cases for JDEP_TYPE and JDEP_PARM.
4734         (check_method_redefinition): Use DECL_NAME as a WFL. Extract
4735         location and name information out of it and reinstall DECL_NAME to
4736         its original identifier node value.
4737         (lookup_cl): Use DECL_SOURCE_LINE_FIRST (first line of the
4738         function's source code).
4739         (read_import_dir): Test the value returned by find_class and issue
4740         a fatal accordingly.
4741         (declare_local_variables): Push a new block for the scope of the
4742         new variable(s) if code has been already generated at that nesting
4743         level. Pinpoint redefinition errors using the variable id
4744         WFLs. Generate initialization code if necessary. If the variable
4745         type is incomplete, register a patch on its decl.
4746         (source_start_java_method): Rewritten. Define a new block for the
4747         function's parameters. Build parameter decl out of function's
4748         arguments and register them for a patch if their types are
4749         incomplete.
4750         (expand_start_java_method): Includes the part of
4751         source_start_java_method that was pushing the parameter decls and
4752         completing the method start code.
4753         (source_end_java_method): Removed call the expand_end_bindings and
4754         poplevel (already taken care of). Reinstall function's arguments
4755         and get function's last line of code before calling
4756         expand_function_end.
4757         (java_method_add_stmt): New comment before the function's
4758         code. Complement the second operand of the current COMPOUND_EXPR
4759         if necessary.
4760         (java_complete_expand_methods): Don't generate debug info on line
4761         zero when expanding a generated constructor.
4762         (java_complete_expand_method): Set start and end line numbers for
4763         a artificially generated constructor to one and manually call
4764         enter_block and exit_block when defining it. For all methods:
4765         expand function's start calling the new expand_start_java_method
4766         and invoke java_complete_tree on the effective method's body, if
4767         any.
4768         (resolve_expression_name): Now use lookup_name_in_blocks to search
4769         local variable decls and print out an error when variables are
4770         undefined.
4771         (patch_method_invocation_stmt): Inserted comment before the
4772         function's code.
4773         (lookup_method_invoke): Chain method's arguments using chainon
4774         with the current arg list as a second argument. Inserted missing
4775         IDENTIFIER_POINTER when reporting an error on methods not found.
4776         (refine_accessible_methods_list): Don't retain constructors.
4777         (patch_arguments): Function removed.
4778         (java_complete_tree): Inserted comment before the function's
4779         code. New case for BLOCKs. Moved the WFL case a bit
4780         further. Complete function's arguments.
4781         (build_expr_block, enter_block, exit_block, lookup_name_in_blocks,
4782         maybe_absorb_scoping_blocks): New functions.
4783         
4784 Mon Apr 27 10:50:05 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4785
4786         * jcf-io.c (find_class): Reset jcf->java_source after JCF_ZERO, if
4787         previously set.
4788         * jcf-parse.c (parse_source_file, java_error_count): New forward
4789         and extern declarations.
4790         (java_parse_abort_on_error): Macro moved.
4791         (jcf_parse_source): fatal called if fopen fails. Now calls
4792         parse_source_file.
4793         (parse_source_file): New parse_only parameter. Reflects the
4794         elimination of the second pass.
4795         (yyparse): parse_source_file called with argument set to 0.
4796         * jcf.h (JCF_ZERO): Sets java_source to zero.
4797         * lex.c (java_init_lex): pass argument is gone. Function modified
4798         to be called once during the analysis of a file.
4799         (java_unget_unicode): Fixed typo in fatal message.
4800         (java_get_line_col): Likewise.
4801         (java_lval): Likewise. String literals no longer built during
4802         second pass.
4803         * lex.h (JAVA_COLUMN_DELTA): Take the tabulation character into
4804         account.
4805         * parse.h (MODIFIER_WFL): New macro.
4806         (parse_check_super, parser_check_super_interface): Now return int.
4807         (parser_chain_incomplete_item, not_builtin_p,
4808         complete_method_decl): Declarations removed.
4809         (build_method_invocation_stmt, build_invoke): Renamed using the
4810         `patch' instead of `build'
4811         (register-incomplete_type, obtain_incomplete_type,
4812         java_complete_tree, java_complete_expand_method,
4813         unresolved_type_p, create_jdep_list): New function declarations.
4814         (IC_TYPE, IC_DEPEND, DEPEND_DECL, DEPEND_WFL, BEGIN_ONLY_PASS,
4815         END_ONLY_PASS, ELSE_ONLY_PASS): Macro deleted.
4816         (jdep): New typedef on new struct _jdep.
4817         (JDEP_DECL, JDEP_DECL_WFL, JDEP_KIND, JDEP_SOLV, JDEP_WFL,
4818         JDEP_MISC, JDEP_APPLY_PATCH, JDEP_GET_PATCH, JDEP_CHAIN,
4819         JDEP_TO_REVOLVE, JDEP_RESOLVED_DECL, JDEP_RESOLVED,
4820         JDEP_RESOLVED_P): New macros.
4821         (JDEP_NO_PATCH, JDEP_SUPER, JDEP_FIELD, JDEP_METHOD,
4822         JDEP_METHOD_RETURN, JDEP_METHOD_END, JDEP_INTERFACE,
4823         JDEP_VARIABLE): New enum values and jdep kinds.
4824         (jdeplist): New typedef on struct _jdeplist.
4825         (CLASSD_FIRST, CLASSD_LAST, CLASSD_CHAIN, JDEP_INSERT): New
4826         macros.
4827         (CALL_EXPR_PRIMARY): New macro.
4828         (struct parser_ctxt): Fields java_pass, current_method_decl,
4829         method_decl_list deleted. New field jdeplist.
4830         (INCOMPLETE_P): Macro deleted.
4831         * parse.y (single_type_import_declaration:): Removed pass switch.
4832         (type_import_on_demand_declaration): Likewise.
4833         (field_declaration:): Removed pass switch on all sub rules.
4834         (class_declaration:): Call the complete_class_decl removed on
4835         class_body rules.
4836         (method_declaration:): Removed second pass switch. No longer chain
4837         methods decl when method_header reduced.
4838         (method_header:): Sub rules no longer depend on pass switch.
4839         (method_declarator:): Likewise.
4840         (method_body:): Likewise.
4841         (abstract_method_declaration:): Likewise.
4842         (block_statement:): Likewise.
4843         (local_variable_declaration:): Likewise.
4844         (argument_list:): Likewise.
4845         (method_invocation:): Likewise. Call to build_method_invocation_stmt
4846         removed. Partial CLASS_EXPR tree node built instead.
4847         (postfix_expression:): Removed pass switch on all sub rules.
4848         (java_pop_parser_context): Free classd_list content.
4849         (yyerror): Call obstrack_grow0 to finalize error message.
4850         (check_class_interface_creation): Comment modified to reflect new
4851         returned value meaning. Removed second pass switch. Return 1 if an
4852         error was found, 0 otherwise. Adjust pointer on filename if a
4853         leading path separator was found.
4854         (maybe_create_class_interface_decl): Removed first pass switch
4855         when linking the class decl to the class_list. Install a new
4856         jdep_list for the class.
4857         (add_superinterfaces): List of unresolved interfaces is
4858         gone. Unresolved interfaces are directly added to the current
4859         dependencies list.
4860         (create_interface): Second pass shortcut removed. 
4861         ctpx->modifier_ctx access through MODIFIER_WFL.
4862         (create_class): Second pass shortcut removed. Call to
4863         register_incomplete_type replaces the call to
4864         parser_chain_incomplete_item.
4865         (complete_class_decl): Function removed.
4866         (duplicate_declaration_error): New way of retrieving redeclared
4867         item type.
4868         (register_fields): Call to lookup_modifier_cl replaced by
4869         MODIFIER_WFL. New way of handling unresolved type, using
4870         unresolved_type_p and obtain_incomplete_type.
4871         register_incomplete_type replaces call to parser_chain_incomplete_item.
4872         (patch_stage): New static global variable.
4873         (method_header): New way of handling unresolved type, using
4874         unresolved_type_p and obtain_incomplete_type. patch_stage used to
4875         indicates that the method decl needs to be patched.
4876         (check_abstract_method_header): Call to lookup_modifier_cl
4877         replaced by MODIFIER_WFL.
4878         (method_declarator): Incomplete argument type are registered
4879         calling register_incomplete_type. Patch on the declared method is
4880         issued in that case.
4881         (unresolved_type_p): New function.
4882         (parser_check_super_interface): New comment to reflect function's
4883         modified returned type (int). Function and has a new argument
4884         this_wfl. Call to parse_error_context uses this_wfl instead of
4885         relying on lookup_cl.
4886         (parser_check_super): Comment reflects function's new returned
4887         type (int). Function returns non zero value on error.
4888         (create_jdep_list, reverse_jdep_list, obtain_incomplete_type,
4889         register_incomplete_type, jdep_resolve_class): New functions to
4890         handle incomplete types in declarations.
4891         (java_complete_class): Rewritten to work with the new incomplete
4892         type handling scheme.
4893         (complete_class_report_errors): Likewise.
4894         (complete_method_decl): Removed: it jobs is now handled by
4895         java_complete_class.
4896         (do_resolve_class): Class loaded in not already loaded and not
4897         found in Java source code.
4898         (java_check_regular_methods, java_check_abstract_methods): Don't
4899         call complete_method_decl anymore.
4900         (lookup_modifier_cl, not_builtin_p): Functions deleted.
4901         (read_import_dir): Got rid of the pass number dependency.
4902         (declare_local_variables): New handling of unresolved types (patch
4903         issued).
4904         (source_start_java_method): New parameter level. Function called
4905         with level set to 1 when argument types are potentially
4906         unresolved.  Called to complete the job with level set to 2 once
4907         types are complete.
4908         (source_end_java_method): Call to permanent_allocation
4909         removed. Waiting to be replaced by a more suitable obstack
4910         management.
4911         (java_complete_expand_methods, java_complete_expand_method,
4912         java_expand_finals): New functions.
4913         (build_method_invocation_stmt): Renamed
4914         patch_method_invocation_stmt. Extracts function call expression
4915         (wfl) and arguments (args) from CALL_EXPR tree operands.
4916         (build_invoke): Renamed patch_invoke. Fixed typo in fatal
4917         call. Patch the function and argument operand of the CALL_EXPR
4918         tree argument.
4919         (patch_argument, java_complete_tree): New functions.
4920
4921 Mon Apr 20 18:26:57 1998  Per Bothner  <bothner@cygnus.com>
4922
4923         Recover from missing fields and methods (i.e. error instead of fatal).
4924         * decl.c, java-tree.h (TYPE_identifier_node):  New global constant.
4925         * expr.c (expand_invoke):  Recover from missing method.
4926         (expand_java_field_op):  Recover from missing field.
4927         Inline references to java.lang.{Integer,Char,...}.TYPE.
4928         * typeck.c (get_type_from_signature), java-tree.h:  New function.
4929         * class.c (add_method):  Use get_type_from_signature.
4930         (build_class_ref):  Handle a class that was not found.
4931         * typeck.c (convert):  Handle conversion to pointers (for convenience).
4932         * verify.c (verify_jvm_instructions):  Use get_type_from_signature
4933         instead of lookup_field to handle missing fields.
4934         
4935         * jcf-parse.c (process_zip_dir):  Set java_source.
4936
4937 1998-04-20  Brendan Kehoe  <brendan@cygnus.com>
4938
4939         * jcf-parse.c (set_source_filename): Use TYPE_NAME, not DECL_NAME.
4940
4941 Tue Apr 14 15:59:54 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4942
4943         * jcf-parse.c (load_class): Don't change input_filename before
4944         calling jcf_parse_source (but still do it before calling
4945         jcf_parse).
4946         (jcf_parse_source): Assign input_filename after having saved the
4947         parser context.
4948         * lex.c (java_init_lex): Chain a WFL node to the import on demand
4949         list. ctxp->modifier_ctx zeroed according to its new
4950         definition. ctxp->filename initialized. Removed 
4951         JAVA_MODIFIER_CTX_UNMARK.
4952         (java_unget_unicode): Update the character based column position.
4953         (java_allocate_new_line): ref_count not used anymore. Always free
4954         ctxp->p_line. Initialize c_line->char_col to 0.
4955         (java_get_unicode): Update the character based column position. 
4956         (java_lex): Use ctxp->elc to store current position in source
4957         file, at the beginning of the parsed token. Set modifier_ctx entry
4958         corresponding to the parse modifier to a WFL node. Return a WFL
4959         node when an identifier is parsed.
4960         (java_lex_error): Now uses ctxp->elc to store current position in
4961         source.
4962         (build_wfl_node, java_is_eol, java_get_line_col): New functions.
4963         * lex.h (build_wfl_node): New function definitions.
4964         (struct java_line): ref_count and next fields are gone. New field
4965         char_col.
4966         (JAVA_LINE_CHECK, JAVA_LINE_MARK, JAVA_LINE_CHAIN,
4967         JAVA_LINE_UNMARK, ID_NAME, ID_CL): Macro definitions deleted.
4968         (JAVA_COLUMN_DELTA): New macro.
4969         (java_lc): New typedef on new struct _java_lc.
4970         * parse.h (lookup_cl, lookup_modifier_cl): Changed returned types.
4971         (parse_error_context, parse_warning_context): Changed prototypes.
4972         (java_get_line_col): Added as an available global function.
4973         (JAVA_MODIFIER_CTX_UNMARK): Macro removed.
4974         (IC_DECL): Replaced by macro IC_TYPE
4975         (DEPEND_WFL): New macro.
4976         (THIS_MODIFIER_ONLY): Now works with WFL and only remembers the first
4977         wrong modifier.
4978         (exit_java_complete_class): Removed a commented out statement.
4979         (struct parser_ctxt): Added comments on fields. modifier_ctx is
4980         now an array of tree nodes. Deleted fields line_list and
4981         e_line. New field elc, to replace e_line.
4982         * parse.y (array_type:): Build WFL node. 
4983         (qualified_name:): Build a single WFL node out of two. Retain
4984         the location information of the first node in the resulting node.
4985         (package_declaration:): Use package name as a WFL node 
4986         (single_type_import_declaration:): Use imported name as a WFL node.
4987         (type_import_on_demand_declaration:): Use root of the imported
4988         packages as a WFL node.
4989         (field_declaration:): Removed unused local variable cl.
4990         (method_declaration:): Don't call JAVA_MODIFIER_CTX_UNMARK.
4991         (yyerror): New static elc. Removed static error_line, error_pos.
4992         New local code_from_source. Save ctxp->elc into elc at the first
4993         pass. Call java_get_line_col to get a string of the line where
4994         the error occured.
4995         (debug_line): Removed static function.
4996         (parse_error_context, parse_warning_context): Parameter cl is now
4997         a WFL node. Use its value to initialize ctxp->elc.
4998         (redefinition_error): Parameter cl is now a WFL node.
4999         (parse_add_interface): New parameter wfl. No longer call
5000         lookup_cl, use wfl instead.
5001         (check_class_interface_creation): Parameter cl is now a WFL node.
5002         (maybe_create_class_interface_decl): Likewise.
5003         (add_superinterfaces): New function.
5004         (create_interface): Removed local cl, node, super_decl,
5005         super_decl_type.  Function now uses id as a WFL node. Better
5006         warning/error report on obsolete or forbidden mix of
5007         modifiers. Now calls add_superinterfaces to register interfaces.
5008         (create_class): Removed local cl, node. Local variable id is used
5009         as a WFL node. Better error report on forbidden modifier
5010         mix. Uses add_superinterfaces to register interfaces.
5011         (find_field): Argument cl is now a WFL node. Now store the WFL
5012         node of a fields that needs to be checked for their
5013         initialization.
5014         (method_header): Local variable node non longer used. Local
5015         variable id replaces cl.
5016         (check_modifiers_consistency): Local variable cl is now a WFL
5017         node.
5018         (method_declarator): Local variable cl replaced by parameter id.
5019         (parser_qualified_name): Now uses parameter name as a WFL node.
5020         (parser_check_super_interface): New parameter wfl, for achieve
5021         greater accuracy during error reports.
5022         (parser_chain_incomplete_item): New parameter named location. Used,
5023         along the decl, to construct the incomplete item node.
5024         (java_complete_class): resolve_class now uses WFL node extracted
5025         from the incomplete item node. Macro IC_TYPE replaces TREE_PURPOSE
5026         where appropriate.
5027         (complete_method_decl): Unresolved function's argument types are WFL.
5028         (resolve_class): Parameter cl is now a WFL node.
5029         (resolve_and_layout): Likewise.
5030         (do_resolve_class): Likewise. Try first to use cl and then do the
5031         lookup on the decl when calling check_pkg_class_access.
5032         (complete_class_report_errors): Use IC_TYPE in place of
5033         TREE_PURPOSE where appropriate. Use DEPEND_WFL on dependency
5034         instead of doing a lookup over the decl.
5035         (java_check_final): Use WFL info from field tree list.
5036         (lookup_cl): Rewritten and returns a statically defined WFL node.
5037         (lookup_modifier_cl): Now uses information from WFL nodes.
5038         (process_imports): Likewise.
5039         (read_import_dir): name and cl arguments replaced by a single WFL
5040         node. Function modified accordingly.
5041         (find_in_imports_on_demand): Now uses WFL node.
5042         (check_pkg_class_access): cl argument is now a WFL node.
5043         (declare_local_variables): Fixed to use WFL nodes.
5044         (resolve_expression_name): Likewise.
5045         (build_method_invocation_stmt): name_combo argument renamed
5046         wfl. Function modified to use WFL nodes.
5047         (build_invoke): cl used as a WFL node when calling build_expr_wfl.
5048         (lookup_method_invoke): cl is now a WFL node. Added missing
5049         IDENTIFIER_POINTER to class type decl name.
5050         
5051 Tue Apr 14 15:23:29 1998  Dave Brolley  <brolley@cygnus.com>
5052
5053         * lang.c (init_parse): Now returns char* containing the filename.
5054
5055 Fri Apr 10 11:36:04 1998  Per Bothner  <bothner@cygnus.com>
5056
5057         * class.c (layout_class):  Mangle repeated arg types to match cc1plus.
5058
5059         * decl.c, java-tree.h (integer_four_node):  New INTEGER_CST node.
5060         * class.c (make_class_data):  If flag_assume_compiled, initial class
5061         state is CSTATE_PREPARED; make superclass and interfaces direct
5062         references, rather than constant pool indexes.
5063
5064 Thu Apr  9 16:10:56 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5065
5066         * parser.y: Include flags.h. Removed debug variable pl.
5067         (method_declaration:): Uses ctxp->parser_ccb_indent instead of pl.
5068         (block:): Likewise.
5069         (labeled_statement_nsi:): Generate debug info when reducing
5070         expression_statement:.
5071         (check_pkg_class_access): get_access_flags_from_decl invokation
5072         fixed for new CLASS_* flags location.
5073         (source_end_java_method): Save/restore parser context when
5074         entering/leaving this routine. Restore lineno to its right value
5075         before calling expand_end_bindings.
5076         (build_method_invocation_stmt): build_invoke called with the
5077         current line information.
5078         (build_invoke): New argument cl. Wrap the function call around a
5079         wfl node.
5080         (refine_accessible_methods_list): Changed comment, removed
5081         unnecessary code.
5082         * parse.h: Fixed typo in comments.
5083         (CLASS_OR_INTERFACE): Handle the new CLASS_* flags location.
5084         (JAVA_MAYBE_GENERATE_DEBUG_INFO): New macro.
5085         (struct parser_ctxt): New fields ccb_indent, last_ccb_indent1,
5086         parser_ccb_indent.
5087         * lex.c (java_lex): Record the last closing curly bracket of a
5088         function.
5089         * jcf-parse.c (jcf_parse_source): Now calls
5090         java_check_methods. Clarified comment, fixed typo.
5091
5092 1998-04-09  Dave Brolley  <brolley@cygnus.com>
5093
5094         * lang.c (init_parse): Expose for non USE_CPPLIB builds.
5095         (finish_parse): Expose for non USE_CPPLIB builds.
5096
5097 Wed Apr  8 13:06:23 1998  Jeffrey A Law  (law@cygnus.com)
5098
5099         * lang.c (lang_print_xnode): New function.
5100
5101 Fri Apr  3 13:22:41 1998  Per Bothner  <bothner@cygnus.com>
5102
5103         * decl.c (class_dtable_decl), java-tree.h:  New tree node.
5104         * class.c (get_dispatch_vector, get_dispatch_table):  New functions
5105         used to build a class's dispatch table.
5106         (make_class_data):  Generate dispatch table if flag_assume_compiled.
5107         Set dtable of class object to address of class_dtable_decl.
5108
5109         * decl.c (int_decl_processing):  Make soft_badarrayindex_node
5110         be volatile and have side effects - generates better code.
5111
5112         * class.c, expr.c, parse.y:  CLASS_INTERFACE, CLASS_FINAL, etc:
5113         These flags were defined for TYPE_DECLs, but used on RECORD_TYPEs.
5114
5115         * expr.c (expand_invoke):  If class is final, method is
5116         effectively final, so can call it directly.
5117
5118         * java-tree.h (TYPE_NVIRTUALS, TYPE_VTABLE):  New macros.
5119
5120         * Makefile.in, Make-lang.in:  Add missing $(exeext)s.
5121
5122 Thu Mar 19 16:59:16 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5123
5124         * parse.y (build_method_invocation_stmt): Removed extra argument
5125         to build_invoke.
5126
5127 Mon Mar 16 17:25:19 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5128
5129         * expr.c (dtable_indent): Now static global.
5130         (expand_invoke): Now call invoke_build_dtable and
5131         build_invokevirtual.
5132         (invoke_build_dtable, build_invokevirtual): New functions.
5133         * jcf-io.c (find_class): Defer issuing a warning by setting
5134         jcf->outofsynch to 1.
5135         * jcf-parse.c (jcf_out_of_synch): New function.
5136         (load_class): Test this_jcf.outofsynch flag and call
5137         jcf_out_of_synch accordingly.
5138         * jcf.h: (typedef struct JCF): New flag outofsynch. Fixed typo in
5139         comment indentation.
5140         * lex.c (java_get_unicode): Fixed code indentation.
5141         (java_lex): Create string literal. Fixed typo. Removed several
5142         premature obstack_free.
5143         * parse.h: New enums for name resolution and invocation mode.
5144         (struct qualification): New data structure.
5145         (RESOLVE_CHAIN_REMAINDER, BUILD_PTR_FROM_NAME): New macros.
5146         (do_resolve_class, build_method_invocation_stmt,
5147         breakdown_qualified, qualify_ambiguous_name, resolve_and_layout,
5148         debug_line, identical_subpath_p, invocation_mode,
5149         refine_accessible_methods_list, build_invoke,
5150         lookup_method_invoke): New functions declared.
5151         (build_invokevirtual, invoke_build_dtable, match_java_method,
5152         build_field_ref, jcf_out_of_synch): New references to external
5153         functions.
5154         (struct parse_ctxt): Removed artificial_constructor field.
5155         * parse.y: (array_type:): Type defined for this rule.
5156         (class_type:): Installed default rule for interface_type:.
5157         (array_type:): Now build Java array type.
5158         (qualified_name:): Now use obstack_grow0.
5159         (method_declaration:): Skip the artificial constructor added to
5160         the list, if any.
5161         (abstract_method_declaration:): Execute the code only during pass 1.
5162         (block:): Installed default rule in block_statements:.
5163         (block_statement:): Add the statement to the method during pass 2.
5164         (statement_expression): Installed default rule for
5165         method_invocation:.
5166         (argument_list:): Added code to build the argument list.
5167         (method_invocation:): Added call to create the method invocation
5168         node.
5169         (yyerror): Now use obstack_grow0. Removed bogus obstack_free.
5170         (debug_line): New function for debug.
5171         (complete_class_decl): No longer do something during pass 1.
5172         (method_header): Use BUILD_PTR_FROM_NAME.
5173         (parser_qualified_classname): Use obstack_grow0. Removed bogus
5174         obstack_free.
5175         (parser_chain_incomplete_item): Use BUILD_PTR_FROM_NAME. Modified
5176         function's main comment.
5177         (java_complete_class): Set CLASS_LOADED_P on all fixed incomplete
5178         classes.
5179         (complete_method_decl): Use BUILD_PTR_FROM_NAME and promote types.
5180         (resolve_class): Now works with arrays.
5181         (do_resolve_class, resolve_and_layout): New functions.
5182         (java_check_regular_methods): Reverse method list before and after
5183         having processed it. No longer set ctxp->artificial_constructor.
5184         (read_import_dir): Test jcf->outofsynch and call jcf_out_of_synch
5185         accordingly. Fixed typo in issued error message. Now use
5186         obstack_grow0.
5187         (find_in_imports_on_demand): Now use obstack_grow0.
5188         (declare_local_variables): Use BUILD_PTR_FROM_NAME.
5189         (source_end_java_method): Call expand_expr_stmt instead of
5190         expand_expr. Calls it before calling expand_function_end.
5191         (java_method_add_stmt): Do nothing if errors were found during
5192         parsing.
5193         (java_layout_parsed_class): Set CLASS_LOADED_P and fixed typo.
5194         (build_method_invocation_stmt, build_invoke, invocation_mode,
5195         lookup_method_invoke, refine_accessible_methods_list,
5196         qualify_ambiguous_name, breakdown_qualified, identical_subpath_p):
5197         New functions.
5198         * typeck.c (build_java_signature): Properly end method signature
5199         if return type skipped.
5200         (match_java_method): New function.      
5201         
5202 Mon Mar 16 10:40:47 1998  Per Bothner  <bothner@cygnus.com>
5203
5204         * jcf-io.c (find_classfile):  If USE_JCF_STDIO, fopen in binary mode.
5205
5206 Wed Feb 25 08:55:49 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5207
5208         * expr.c (build_invoke_non_interface): New function.
5209         (methods_ident, ncode_ident): Now static globals.
5210         (expand_invoke): Use build_invoke_non_interface.
5211         * java-tree.h (struct lang_decl): New field function_decl_body.
5212         (DECL_FUNCTION_BODY): New macro.
5213         * jcf-parse.c (jcf_parse_source): Deeper check before setting
5214         CLASS_FROM_SOURCE_P.
5215         (parse_source_file): Fixed typos. Call java_layout_parsed_class
5216         before starting pass 2. Call to java_generate_parsed_class replaced
5217         by java_register_parsed_class.
5218         * lex.c: Fixed typo in header. Some line width related formating.
5219         * lex.h: Some line width related formating.
5220         * parse.h (source_end_java_method, resolve_expression_name,
5221         complete_class_decl, maybe_create_class_interface_decl,
5222         check_class_interface_creation): New static function declarations.
5223         (java_layout_parsed_class, java_method_add_stmt): New function
5224         declarations.
5225         (struct parser_ctxt): Field mark_class_generate removed. New
5226         fields class_list and artificial_constructor.
5227         * parse.y: Fixed typo in header.
5228         (class_declaration:): Call complete_class_decl when class body
5229         parsed.
5230         (method_declaration:): Call source_end_java_method in pass 2 when
5231         the method body is defined.
5232         (postfix_expression:): Do expression name resolution on sub-rule
5233         name during pass 2.
5234         (create_class, create_interface): Merged common pieces.
5235         (check_class_interface_creation, maybe_create_class_interface_decl):
5236         New functions.
5237         (complete_class_decl): New function.
5238         (register_fields): Fixed line width related typo.
5239         (method_header): Correctly skip first argument when fixing
5240         argument line. Changed the loop.
5241         (java_check_circular_reference): Now use ctxp->class_list.
5242         (java_complete_class): Removed start/stop marking.
5243         (java_check_regular_methods): Now takes a class decl as an
5244         argument.  Add default constructor if none were encountered.
5245         (java_check_methods): Now use ctxp->class_list. Changed call to
5246         java_check_regular_methods.
5247         (source_start_java_method): Set DECL_ARG_TYPE for each function
5248         arguments.
5249         (source_end_java_method, java_method_add_stmt): New functions.
5250         (java_generate_parsed_class): No longer exists.
5251         (java_layout_parsed_class, java_register_parsed_class): New functions.
5252         (resolve_expression_name): New function.        
5253
5254 Thu Feb 12 11:54:28 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5255
5256         * jcf-parse.c: (parse_source_file): Check on errors after init lex.
5257         * lex.c: (java_init_lex): Defer ctxp->java_pass initialization
5258         until pass initializations are done. Call read_import_dir with
5259         pass set to 0.
5260         * parse.h: (lookup_modifier_cl): New function declared.
5261         (INTERFACE_FIELD_MODIFIERS): New macro.
5262         (OBSOLETE_MODIFIER_WARNING): New macro.
5263         * parse.y: (register_fields): Class type and current field name in
5264         local variables. Check modifier(s) if adding field(s) to an interface.
5265         (check_abstract_method_header): Now use OBSOLETE_MODIFIER_WARNING
5266         and report errors using the faulty modifier line context.
5267         (lookup_modifier_cl): New function.
5268         (read_import_dir): Detect and report default import processing
5269         failure.
5270
5271 1998-02-11  Brendan Kehoe  <brendan@cygnus.com>
5272
5273         Add a pair of -fassume-compiled/-fno-assume-compiled options.
5274         * class.c (is_compiled_class): Return 1 after making sure it
5275         qualifies as loaded, if FLAG_ASSUME_COMPILED is set.
5276         * lang-options.h: Add -fassume-compiled/-fno-assume-compiled.
5277         * java-tree.h (flag_assume_compiled): Add decl.
5278         * lang.c (lang_f_options): Add the flag.
5279         (flag_assume_compiled): Add decl, default to 0.
5280
5281 Wed Feb 11 11:27:59 1998  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5282
5283         * class.c (class_depth): Call to load_class uses extra VERBOSE arg.
5284         (is_compiled_class): Likewise.
5285         (layout_class): Likewise.
5286         (layout_class): Detect and lay out classes defined in source code.
5287         (interface_of_p, add_interface_do, may_add_interface): New
5288         function.
5289         (add_interface): Now use add_interface_do.
5290         (add_method_1): New function.
5291         (add_method): Now use add_method_1.
5292         (pushlevel): Debug message conditional to SOURCE_FRONTEND_DEBUG.
5293         (complete_start_java_method): New function.
5294         (start_java_mehod): Now call complete_start_java_method.
5295         * expr.c (lookup_field): Call to load_class uses extra VERBOSE arg.
5296         (expand_invoke): Likewise and fixed typo.
5297         *gjava.c: (print_super_field): Use new argument to find_class
5298         DO_CLASS_FILE.
5299         (main): Likewise.
5300         *java-tree.h: (CLASS_FROM_SOURCE_P): New flag on RECORD_TYPE.
5301         (IS_A_SINGLE_IMPORT_CLASSFILE_NAME_P, IS_A_CLASSFILE_NAME,
5302         QUALIFIED_P, IS_AN_IMPORT_ON_DEMAND_P): New flags on
5303         IDENTIFIER_NODE.
5304         (CLASS_COMPLETE_P): New flag on TYPE_DECL.
5305         (add_method_1, push_class): New prototypes.
5306         *jcf-dump.c: find_class now uses new DO_CLASS_FILE argument.
5307         *jcf-io.c: (open_in_zip): jcf now stores a pointer to the Zip
5308         directory where the class was found.
5309         (find_class): New argument DO_CLASS_FILE. Function find_class
5310         modified accordingly.
5311         *jcf-parse.c: (fix_class_path): New function.
5312         (load_class): Use new VERBOSE argument. load_class now finds and
5313         loads/parses .class/.java files. Save read_state of current_jcf
5314         if necessary.
5315         (java_parser_abort_on_error): New macro.
5316         (jcf_parse_source, parse_source_file): New function.
5317         (jcf_parse): Fixed typo.
5318         (yyparse): Call parse_source_file () only.
5319         (process_zip_dir): Fixed typo, fix zdir->filename_length when
5320         writing the real class name back in the zip directory entry.
5321         (find_in_current_zip): IDENTIFIER_CLASS_VALUE may be null.
5322         (jcf_figure_file_type): Fixed bogus alloc and bcopy.
5323         *jcf.h: (typedef struct JCF): New fields java_source and zipd.
5324         (find_class): Prototype fixed.
5325         *lex.c: Added 1998 time stamp.
5326         Removed all static global variables, moved into the parser
5327         context data structure.. Now include unistd.h if SEEK_SET not
5328         defined.
5329         (java_init_lex): Rewritten.
5330         (java_sneak_unicode): Modified current unicode access in current line.
5331         (java_unget_unicode): Likewise.
5332         (java_allocate_new_line): New allocation management.
5333         (java_read_char): Modified access and storage of unget_utf8_value.
5334         New way of processing current unicode.
5335         (java_store_unicode, java_read_unicode): Fixed typo in declaration.
5336         (java_get_unicode): Now use the parser context.
5337         (java_lineterminator): Likewise.
5338         (java_lex): Now used java_lval argument (pointer to YYSTYPE), part
5339         of the reentrant parser implementation. Function now use the
5340         parser context data structure and java_lval. Fixed production of
5341         the float and double constant "out of range" error message. Fixed
5342         obstack use. Return integer value when hitting a modifier. Now
5343         return type for TRUE, FALSE and other predefined types. Return
5344         identifier as a TREE_LIST list containing the current line context
5345         as the TREE_VALUE sub-node.
5346         (java_unicode_2_utf8): Fixed typo in declaration.
5347         (java_lex_error): Now use the parser context data structure.
5348         *lex.h: Added 1998 time stamp.
5349         (struct java_line): New fields ref_count and next.
5350         (JAVA_LINE_CHECK, JAVA_LINE_MARK, JAVA_LINE_CHAIN,
5351         JAVA_LINE_UNMARK, ID_NAME, ID_CL): New macros.
5352         (JAVA_FLOAT_RANGE_ERROR, JAVA_INTEGRAL_RANGE_ERROR, UNGETC): Fixed.
5353         *parse.h: Added 1998 time stamp.
5354         (java_parse_source_file): Renamed from parse_source_file.
5355         (YYERROR_NOW, YYNOT_TWICE): Fixed.
5356         (CLASS_MODIFIERS, FIELD_MODIFIERS, METHOD_MODIFIERS,
5357         INTERFACE_MODIFIER, INTERFACE_METHOD_MODIFIERS,
5358         JAVA_MODIFIER_CTX_UNMARK, IC_DECL, IC_DEPEND, DEPEND_DECL,
5359         THIS_MODIFIER_ONLY, ABSTRACT_CHECK, BEGIN_ONLY_PASS,
5360         END_ONLY_PASS, ELSE_ONLY_PASS, exit_java_complete_class,
5361         CLASS_OR_INTERFACE, INCOMPLETE_P): New macros.
5362         (struct parser_ctxt): New data structure to keep the parser context.
5363         *parse.y: Added 1998 time stamp, got rid of static global variables.
5364         (java_error_count, ctxp): New global variables.
5365         (%union): New value field.
5366         (numeric_type, integral_type): Rules removed.
5367         (primitive_type): Rule defined to handle integral, float, double and
5368         boolean types.
5369         (qualified_name, package_declaration,
5370         single_type_import_declaration, type_import_on_demand_declaration,
5371         modifiers, class_declaration, super, interfaces,
5372         interface_type_list, class_body, field_declaration,
5373         field_declaration, variable_declarators, variable_declarator,
5374         variable_declarator_id, method_declaration, method_header,
5375         formal_parameter_list, formal_parameter, method_body, block,
5376         static, interface_declaration, extends_interfaces,
5377         abstract_method_declaration, local_variable_declarators): Rules now
5378         define actions.
5379         (force_error, do_warning): New global statics.
5380         (push_parser_context, parser_context_save_global,
5381         parser_context_restore_global, pop_parser_context): New functions.
5382         (yyerror): Now uses the global parser context. Fixed use of obstack.
5383         (parse_error, parse_error_context, parse_warning_context,
5384         java_accstring_lookup, redefinition_error, check_modifiers,
5385         parser_add_interface, create_interface, create_class, find_field,
5386         duplicate_declaration_error, register_fields, method_header,
5387         check_modifiers_consistency, check_abstract_method_header,
5388         method_declarator, parser_qualified_classname,
5389         parser_check_super_interface, parser_check_super,
5390         parser_chain_incomplete_item, java_check_circular_reference,
5391         layout_class_from_source, java_complete_class,
5392         complete_method_decl, resolve_class, complete_class_report_errors,
5393         java_check_final, check_method_redefinition,
5394         java_check_regular_methods, java_check_abstract_methods,
5395         java_check_methods, lookup_java_interface_method2,
5396         lookup_java_method2, lookup_cl, find_name_in_single_imports,
5397         process_imports, find_in_imports, read_import_entry,
5398         read_import_dir, find_in_imports_on_demand,
5399         check_pkg_class_access, not_builtin_p, declare_local_variables,
5400         source_start_java_method, java_generate_parsed_class): New
5401         functions.
5402         *typeck.c: (signature_include_return): New global variable.
5403         (build_java_signature): Use SIGNATURE_INCLUDE_RETURN figure whether
5404         to add the function returned type in the signature.
5405
5406 1998-02-09  Brendan Kehoe  <brendan@cygnus.com>
5407
5408         * jcf-io.c (open_in_zip): Use strncmp and LEN.
5409
5410 Thu Jan 29 16:12:13 1998  Dave Brolley  <brolley@cygnus.com>
5411
5412         * Make-lang.in (java.info): Added.
5413         (java.install-info): Added
5414
5415 1998-01-27  Brendan Kehoe  <brendan@cygnus.com>
5416
5417         * Makefile.in (clean): Also remove java/parse.c.
5418
5419 1998-01-26  Brendan Kehoe  <brendan@cygnus.com>
5420
5421         Add a pair of -fbounds-check/-fno-bounds-check options.
5422         * lang.c (lang_decode_option): Add code to grok arguments.
5423         (flag_bounds_check): Add decl.
5424         (lang_f_options): New array w/ the option in it.
5425         * java-tree.h (flag_bounds_check): Add decl.
5426         * lang-options.h: New file.
5427         * expr.c (build_java_arrayaccess): Use flag_bounds_check instead
5428         of a static macro value.
5429         (JAVA_ARRAY_EXCEPTION): Delete macro.
5430
5431 Fri Jan 23 14:19:47 1998  Per Bothner  <bothner@cygnus.com>
5432
5433         * typeck.c (build_java_array_type):  Fix two bugs in previous change.
5434         * expr.c (build_anewarray):  Add missing promote_type.
5435
5436 Thu Jan 22 17:43:45 1998  Per Bothner  <bothner@cygnus.com>
5437
5438         Add array types with known length to optimize bounds checking.
5439         * typeck.c (build_java_array_type):  Take length parameter.
5440         (java_array_type_length, build_prim_array_type):  New functions.
5441         * java-tree.h:  Update for new functions.
5442         * expr.c, typeck.c, verify.c: Update build_java_array_type calls.
5443         * class.c:  Use build_prim_array_type.
5444         * expr.c (can_widen_reference_to):  Handle known-length array types.
5445         (verify_jvm_instructions):  Keep track of integer push instructions
5446         followed by newarray/anewarray, so we can build known-length arrays.
5447         (JAVA_ARRAY_DATA_OFFSET):  Replace by ...
5448         (java_array_data_offset):  New function.
5449         (build_java_array_length_access):  New function.  Optimize if constant.
5450         (build_java_arrayaccess):  Constant fold bounds check.
5451         (expand_java_newarray, expand_java_anewarray):  Replaced by ...
5452         (build_newarray, build_anewarray):  New functions.
5453         (ARRAY_NEW_NUM, ARRAY_NEW_PTR):  Use build_{a,}newarray.
5454         * verify.c (merge_types):  Handle known-lengh array types.
5455
5456 Mon Jan 19 13:09:25 1998  Per Bothner  <bothner@cygnus.com>
5457
5458         * expr.c (expand_byte_code):  Fix performace bug, which caused
5459         searching linenumber_table to be linear rather than constant.
5460
5461 Fri Dec 12 19:18:42 1997  Per Bothner  <bothner@cygnus.com>
5462
5463         * Makefile.in (BISON, BISONFLAGS):  Add missing macros.
5464
5465         * decl.c, java-tree.h (soft_fmod_node):  New global.
5466         * decl.c (init_decl_processing):  Define __builtin_fmod.
5467         * expr.c (build_java_binop):  Implement TRUNC_MOD_EXPR for REAL_TYPE
5468         using __builtin_fmod.
5469
5470 Thu Dec  4 13:22:59 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5471
5472         * keyword.h: New file, output of keyword.gperf as processed by
5473         gperf.
5474         * lex.c (java_lex_init): Initialize java_error_flag.
5475         * parse.c (YYERROR_NOW): Uses java_error_flag.
5476         * parse.y: New static java_error_flag. Useless definition of
5477         buffer_error gone.
5478         * parse.y (java_error): Portable error recovery using
5479         java_error_flag (not yet completely tuned).
5480
5481 1997-12-04  Brendan Kehoe  <brendan@lisa.cygnus.com>
5482
5483         * Makefile.in (parse.c): Use $(srcdir) for parse.y.
5484
5485 Wed Dec  3 18:37:42 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5486
5487         * Makefile.in: (JAVA_OBJS): New object jcf-parse.o.
5488         (parse.c, lex.c, keyword.h): New rules for Java source code
5489         front-end.
5490         * parse.c: Renamed into jcf-parse.c.
5491         * jcf-parse.c (yyparse): Invoke the parser to process Java source code.
5492         * keyword.gperf: New file, Java keywords.
5493         * parse.y: New file, Java language grammar.
5494         * parse.h: New file, Java language grammar definitions.
5495         * lex.c: New file, Java language lexer.
5496         * lex.h: New file, Java language lexer definitions.
5497
5498 Wed Dec  3 17:00:17 1997  Per Bothner  <bothner@cygnus.com>
5499
5500         * decl.c (clinit_identifier_node), java-tree.h:  New global.
5501         * java-tree.h (IS_METHOD_INIT_P, IS_METHOD_CLINIT_P):  Removed.
5502         * verify.c (verify_jvm_instructions):  Inline use of removed macros.
5503         * expr.c (expand_java_field_op):  Check for invalid assignment
5504         to final field.
5505
5506         * jcf-reader.c (get_attribute):  Test for wrong attribute length.
5507
5508 Mon Oct 27 17:46:36 1997  Per Bothner  <bothner@cygnus.com>
5509
5510         * verify.c (verify_jvm_instructions):  When processing a handler,
5511         attempt to set the current_subr to the right value.
5512         (More complicated code combines Sep 17 and Oct 22 versions.)
5513
5514 Fri Oct 24 11:36:54 1997  Per Bothner  <bothner@cygnus.com>
5515
5516         * class.c (push_class):  Figure out (guess) name of source file.
5517         * parse.c  (set_source_filename):  Set DECL_SOURCE_FILE of class decl.
5518         (give_name_to_class):  Don't guess source name;  use DECL_SOURCE_FILE.
5519         (parse_class_file):  Change return type from int to void.
5520         Call debug_start_source_file/debug_end_source_file.
5521
5522         * expr.c (build_java_binop):  Fix masking 2nd operand.
5523         * decl.c (init_decl_processing):  Set sizetype first.
5524
5525 Wed Oct 22 19:39:05 1997  Per Bothner  <bothner@cygnus.com>
5526
5527         * verify.c (verify_jvm_instructions):  Don't set current_subr to NULL.
5528         (Revert Sep 17 change.)
5529
5530 Tue Oct 21 15:09:02 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5531
5532         * parse.c (process_zip_dir): Skip ZIP entries not bearing the
5533         .class extension in their name and fix thing so we don't process
5534         them parse_zip_file_entries().
5535         (parse_zip_file_entries): Cleaned unused local variables.
5536
5537 Mon Oct 20 14:52:42 1997  Per Bothner  <bothner@cygnus.com>
5538
5539         * expr.c (can_widen_reference_to):  Allows equal array element types.
5540         (expand_byte_code):  PRE_RET must expand OPERAND_VALUE (to get index).
5541         * jcf-dump.c (RET):  Get (and print) index.
5542
5543         * verify.c (verify_jvm_instructions case OPCODE_anewarray):
5544         Promote element type to POINTER_TYPE.
5545
5546 Mon Oct 20 13:40:41 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5547
5548         * jcf-reader.c, parse.c: (parse_zip_file, process_zip_dir,
5549         find_in_current_zip, jcf_figure_file_type): Moved from
5550         jcf-reader.c to parse.c.
5551         * zextract.c: (read_zip_archive): takes file_comment_length possible
5552         field into account.
5553
5554 Mon Oct 20 11:45:06 1997  Per Bothner  <bothner@cygnus.com>
5555
5556         * verify.c (verify_jvm_instructions):  Var can also be promoted to int.
5557
5558         * verify.c (merge_types):  Handle array types even better ...
5559
5560 Fri Oct 17 15:56:37 1997  Per Bothner  <bothner@cygnus.com>
5561
5562         * expr.c (java_stack_pop):  Fix use of NULL_TREE for TYPE_SECOND.
5563
5564         * java-tree.h (PUSH_FIELD):  Set DECL_ARTIFICIAL.
5565         * class.c (make_class_data):  Don't build fields_decl if no fields.
5566         When building fields_decl, skip if DECL_ARTIFICAL.  
5567
5568         * expr.c (java_stack_swap):  Update stack_type_map.
5569         * verify.c (merge_types):  Handle array types better.
5570
5571 Wed Oct 15 18:09:45 1997  Per Bothner  <bothner@cygnus.com>
5572
5573         * class.c (add_field):  Don't promote short integral fields to
5574         int any more (unless JAVA_PROMOTE_TO_INT), since Kaffe doesn't.
5575         * expr.c (push_value):  Promote and convert short integral values.
5576
5577         * decl.c, java-tree.h (integer_two_node):  New constant node.
5578         * verify.c (merge_types):  Check for TYPE_RETURN_ADDR.
5579
5580 Wed Oct 15 17:04:50 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5581
5582         * class.c (append_gpp_mangled_type): Use function argument
5583         unpromoted type to generate mangled name.
5584
5585 Mon Oct 13 16:52:55 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5586
5587         * constants.c (build_constant_data_ref): Now uses current_class
5588         instead of main_class.
5589         (build_constants_constructor): Now uses current_class instead of
5590         main_class.
5591         * zipfile.h: (struct ZipFileCache): Now defined here. Declaration
5592         of the global variable SeepZipFiles done here.
5593         * zextract.c (read_zip_archive): extra_field optional field taken
5594         into account while computing the position of the class file in the
5595         archive.
5596         * verify.c (verify_jvm_instructions): Use current_jcf to search
5597         the constant pool.
5598         * parse.c (load_class): First search for the class to load in the
5599         current zip file. Saves current_jcf (restored before returning
5600         from that function). Don't call JCF_FINISH in the class was found
5601         in the current ZIP file.
5602         (jcf_parse): If the class was found in the current ZIP file, save
5603         its tree_constant_pool (for later reuse).
5604         (parse_class_file): New function. Process each method defined in
5605         the current class and record the class as to be later registered.
5606         (yyparse): Rewritten. Figure the type of the current file and switch
5607         accordingly.
5608         * lang.c: New global variable current_jcf.
5609         (lang_init): Removed compiling_from_source test (done later, in
5610         yyparse). Removed call the jcf_parse ().
5611         * jcf.h (JCF_ZIP, JCF_CLASS, JCF_SOURCE): New defined values.
5612         (typedef struct JCF): New fields seen_in_zip (to mark a class found
5613         in the current ZIP file) and zip_offset (offset to the class data in
5614         the current zip file).
5615         * jcf-reader.c: zipfile.h included.
5616         localToFile: New ZipFileCache static global variable
5617         (parse_zip_file_entries): New function. Browse the current ZIP
5618         file directory and process each class found.
5619         (process_zip_dir): New function. Register each class found in the
5620         ZIP file directory. The class aren't parsed but a valid JCF is
5621         link to each of them.
5622         (find_in_current_zip): New function. Search for a class in the
5623         current ZIP file directory. If found, prepare the class so that it
5624         can be loaded.
5625         (jcf_figure_file_type): New function. Examine the file structure
5626         to figure a class file, a ZIP file. If none of these categories are
5627         matched, a source file is assumed.
5628         * jcf-io.c: Removed definition of ZipFileCache (moved in zipfile.h).
5629         SeenZipFile: New global variable.
5630         (open_in_zip): Use zipmember's length to accelerate the search for
5631         a member. If zipmember was NULL and zip file successfully read,
5632         return 0.
5633         * java-tree.h: New global variable current_jcf declared.  Added
5634         declaration for current_constant_pool_tags, current_constant_pool_data,
5635         current_constant_pool_length, current_constant_pool_data_ref.
5636         (struct lang_type): Augmented with two fields. struct JCF *jcf (to
5637         store the JCF of classes seen in a zip file) and tree *constant_pool
5638         (to save a loaded class constant pool). current_class declared here.
5639         * expr.c (expand_invoke): Use current_jcf instead of main_jcf to
5640         retrieve method_ref_constant.
5641         (PUSHC): java_push_constant_from_pool now uses current_jcf.
5642         (OBJECT): get_class_constant now uses current_jcf.
5643         (ARRAY_NEW_PTR): get_class_constant now uses current_jcf.
5644         (ARRAY_NEW_MULTI): get_class_constant now uses current_jcf.
5645         (expand_invoke): Now uses current_class instead of main_class
5646         (build_class_init): Now uses current_class instead of main_class
5647         * class.c: New static global variable registered_class.
5648         (register_class): New function.
5649         (emit_register_class): Modified to use registered_class instead of
5650         main_class
5651         (is_compiled_class): Now take into account class seen in the archive.
5652
5653 Mon Oct  6 12:03:23 1997  Per Bothner  <bothner@cygnus.com>
5654
5655         * except.h:  Renamed to: java-except.h.
5656         * parse.c, except.c, expr.c, verify.c:  Update #include accordingly.
5657         * except.c:  Add semi-working (commented out) implementation.
5658
5659         * expr.c (expand_iinc):  Add needed flush_quick_stack.
5660         * parse.c (set_source_filename):  New function.
5661         (give_name_to_class):  Set input_filename from package.classname.java.
5662
5663         * jcf-io.c (find_class):  Don't look first in ".".
5664
5665 Wed Oct  1 11:26:10 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5666
5667         * zextract.c (read_zip_archive): Now takes into account the
5668         extra_field field.
5669         * expr.c (can_widen_reference_to): Modified to handle sub-interfaces.
5670         
5671 Sat Sep 20 12:44:28 1997  Per Bothner  <bothner@cygnus.com>
5672
5673         * constants.c, java-tree.h (build_internal_class_name):  New function.
5674         (alloc_class_constant):  Re-implement using build_internal_class_name.
5675         * class.c (make_class_data):  Likewise.
5676         * class.c (hashUtf8String):  Make hash algorithm match String.hashCode.
5677
5678 Wed Sep 17 13:15:23 1997  Per Bothner  <bothner@cygnus.com>
5679
5680         * verify.c (verify_jvm_instructions):  Temporarily set current_subr
5681         to NULL before pushing an exception handler target.
5682
5683         * expr.c (flush_quick_stack):  Save from low stack indexes to high.
5684         (java_stack_swap, java_stack_dup):  Re-write to be safe from
5685         clobbering registers.
5686         (build_class_init):  New function.
5687
5688 Wed Sep 17 11:02:41 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5689
5690         * typeck.c (build_java_array_type): Temporary use
5691         permanent_obstack to create the array 'length' field.
5692         * expr.c (lookup_label): Temporay use permanent_obstack to create
5693         label if not found.
5694         * class.c (push_super_field): Tempory use permanent_obstack.
5695
5696 Mon Sep 15 11:33:31 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5697
5698         * typeck.c (type_for_mode): Now handles double_type_node and
5699         float_type_node.
5700         * verify.c (verify_jvm_instructions): The instruction following
5701         the wide bytecode is checked. OPCODE_ret added to the list of
5702         wide.
5703
5704 Thu Sep 11 19:45:18 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5705
5706         * class.c (make_class): Temporary use permanent_obstack. Set the
5707         class CLASS_P field to 1.
5708         (push_class): Temporary use permanent_obstack.
5709         (set_super_info): Temporary use permanent_obstack.
5710         (add_method): Temporary use permanent_obstack, set
5711         METHOD_TRANSIENT().
5712         (add_field): Temporary use permanent_obstack. Sets
5713         FIELD_VOLATILE() and FIELD_TRANSIENT().
5714         (build_class_ref): Temporary use permanent_obstack if the class
5715         isn't compiled.
5716         (build_static_field_ref): Temporary use permanent_obstack when
5717         creating field's rtl.
5718         (get_access_flags_from_decl): Handle ACC_VOLATILE, ACC_TRANSIENT,
5719         ACC_SYNCHRONIZED, ACC_NATIVE, ACC_ABSTRACT flags for methods
5720         and fields. Function finalized, as far as flag handling.
5721         (push_class_static_dummy_field): Temporary use permanent_obstack.
5722         (emit_register_class): Force generation of class registration at
5723         -O3 or deeper.
5724         * decl.c (end_java_method): Call permanent_allocation() before
5725         returning.
5726         * expr.c (can_widen_reference_to): Added comment to interface
5727         handling, fixed typo.
5728         (lookup_field): Now uses CLASS_P() to correct FIXME
5729         (expand_invoke): Verification on public && !static && 
5730         !abstract moved into soft_lookupinterfacemethod (kaffe).
5731         Use Object class dtable if objectref is an array when expanding
5732         invokeinterface.
5733         (java_push_constant_from_pool): Temporary use permanent_obstack
5734         for CONSTANT_string
5735         * parse.c (get_ref_constant): Temporary use permanent_obstack to
5736         create constant references.
5737         (get_constant): Temporary use permanent_obstack to create constant.
5738         (load_class): Temporary use permanent_obstack to load class.
5739         (jcf_parse): Temporary use permanent_obstack to perform class
5740         layout.
5741         * typeck.c: (parse_signature_string): Temporary use permanent_obstack.
5742         (build_java_signature): Temporary use permanent_obstack.
5743         * verify.c: (verify_jvm_instruction): removed unecessary verification
5744         on ACC_SUPER flag.
5745         * java-tree.h (METHOD_NATIVE, METHOD_TRANSIENT): Defined.
5746         (FIELD_VOLATILE, FIELD_TRANSIENT): Defined.
5747         (CLASS_P): Defined
5748
5749 Thu Sep 11 11:57:32 1997  Per Bothner  <bothner@cygnus.com>
5750
5751         * class.c (append_gpp_mangled_type):  Fix typo.
5752         (emit_register_class):  Use main_class to get class object, rather
5753         than looking for no-longer-existing static decl starting with _CL.
5754         * typeck.c (parse_signature_type):  Promote array element type
5755         if it is a RECORD_TYPE.
5756         
5757 Wed Sep 10 16:09:23 1997  Per Bothner  <bothner@cygnus.com>
5758
5759         * class.c (push_class_static_dummy_field):  New function.
5760         (mangle_static_field):  New. Do G++-style mangling of static fields.
5761         (layout_class):  Mandle static fields here, not in add_field.
5762         (build_class_ref):  The class object is now a dummy static field.
5763         * decl.c (find_local_variable):  Look for best, instead of first match.
5764         * expr.c (push_type):  Always promote_type, not just for RECORD_TYPE.
5765         (build_java_athrow):  Don't check here if exception is Throwable.
5766         * java-tree.h (TYPE_UNSET):  Renamed to TYPE_UNKNOWN.
5767         (TYPE_USED):  Removed.  No longer used ...
5768         * parse.c (jcf_parse):  Call push_class_static_dummy_field.
5769         * verify.c (push_pending_label):  New function.
5770         (push_pending_block):  Renamed to check_pending_block.
5771         (merge_types):  Remove unneeded suuport for TYPE_UNUSED.
5772         (verify_jvm_instructions):  Only reset prev_eh_ranges (to force
5773         re-checking possible handlers) after a store (less wasted work).
5774         Check for null handler (finally) before calling add_handler.
5775         Various changes to (finally?) correctly handle try/finally.
5776
5777 1997-09-09  Brendan Kehoe  <brendan@lisa.cygnus.com>
5778
5779         * class.c: Include stdio.h.
5780
5781 Thu Sep  4 21:30:55 1997  Per Bothner  <bothner@cygnus.com>
5782
5783         * expr.c (expand_invoke):  Use COMPOUND_EXPR (and TREE_SIDE_EFFECTS)
5784         to make sure class is initialized before static/special invoke.
5785
5786         * verify.c (verify_jvm_instructions):  On a store instruction,
5787         call find_local_variable to force pre-allocation of decl and rtx.
5788         * decl.c (push_jvm_slot):  Set DECL_REGISTER on stack slots.
5789
5790 Wed Sep  3 16:13:23 1997  Per Bothner  <bothner@cygnus.com>
5791
5792         * class.c (build_class_ref):   Strip off "promoted_" if need be.
5793         (make_field_value): Call build_java_signature when needed.
5794         (layout_class):  Don't make_function_rtl if METHOD_ABSTRACT.
5795         * expr.c (build_java_athrow):  Don't push_value of exception.
5796         (build_java_binop):  Implement COMPARE_L_EXPR and COMPARE_G_EXPR to
5797         match specification of [fd]cmp[lg] for NaNs.
5798         (expand_byte_code):  Add support for exception handler ranges.
5799         * except.c:  Add skeleton for EH code-generation.
5800         * verify.c (merge_types):  Treat all promoted integral types as equal.
5801         * constants.c (build_constants_constructor):  To force creation of
5802         current_constant_pool_data_ref, call build_constant_data_ref.
5803         
5804         * javaop.def (lload):  Fix typo.
5805         * jcf-dump.c (main):  Clear filename to prevent possibly-bad free.
5806         
5807 Tue Sep  2 17:37:25 1997  Brendan Kehoe  <brendan@lisa.cygnus.com>
5808
5809         * parse.c: Don't include function.h.
5810
5811 Wed Aug 27 18:33:04 1997  Per Bothner  <bothner@cygnus.com>
5812
5813         * except.[ch]:  New files.
5814         * Makefile.in (JAVA_OBJS):  Add except.o
5815         * expr.c:  Temporary warning about unimplemented exceptions.
5816         * verify.c:  Verify exception handlers.
5817         
5818         * jcf-dump.c (disassemble_method):  Print exception table.
5819
5820 Wed Aug 27 13:26:58 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5821
5822         * expr.c (verify_jvm_instructions): Started a thorough
5823         verification of invoke* bytecodes.
5824         (expand_byte_code): flush quick stack if PC is the target of a
5825         branch.  and undef RET (conflicting with config/i386/i386.h).
5826         (expand_java_arrayload): Fixed bogus cast, when Boolean type is
5827         used.
5828         (expand_invoke): Now handles invokeinterface and do more
5829         verification according to the bytecode.
5830         (lookup_field): Don't try to load the class if processing
5831         dtable_type.
5832         (can_widen_reference_to): Now handles interfaces.
5833         * decl.c (init_decl_processing): New global variable
5834         soft_lookupinterfacemethod_node, declared in java-tree.h. 
5835         Call set_super_info on string_type_node.
5836         * java-tree.h (CLASS_INTERFACE, CLASS_ABSTRACT, CLASS_SUPER): Now
5837         defined.
5838         * class.c (set_super_info): Fills the CLASS_* flags according to
5839         access_flags.
5840         (get_access_flags_from_decl): Handles all class flags.
5841
5842 Tue Aug 26 18:54:34 1997  Per Bothner  <bothner@cygnus.com>
5843
5844         * class.c (add_method):  Zero out newly-allocated DECL_LANG_SPECIFIC.
5845         * parse.c (yyparse):  Check for abstract method, and missing code.
5846         * expr.c (expand_byte_code):  Change interface.
5847         * lang.c (put_decl_node):  Print promoted types prettier.
5848         * verify.c (verify_jvm_instruction):  Change interface.
5849         Partial support for scanning exception table.
5850         For load instructions, handle promoted integral types.
5851
5852 Thu Aug 21 13:48:01 1997  Per Bothner  <bothner@cygnus.com>
5853
5854         * verify.c:  New file, with contents moved from expr.c.
5855         * expr.c:  Bunch of stuff (mostly verification) moved to verify.c.
5856         * typeck.c (is_array_type_p):  Moved here from expr.c.
5857         * java-tree.h:  Add some now-needed function declarations.
5858         * Makefile.in (JAVA_OBJS): Added verify.o.
5859
5860 Wed Aug 20 14:34:34 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5861
5862         * class.c (add_method): Sets the METHOD_SYNCHRONIZED flag, sets the
5863         METHOD_ABSTRACT flag.
5864
5865         * java-tree.h (METHOD_SYNCHRONIZED): Set to DECL_LANG_FLAG_4.
5866         (IS_METHOD_CLINIT_P, IS_METHOD_INIT_P): New macros.
5867         (METHOD_ABSTRACT): Set to DECL_LANG_FLAG_5
5868
5869         * decl.c (soft_monitorenter_node, soft_monitorexit_node): New global
5870         variables.
5871         (start_java_method): Hook for SYNCHRONIZED methods.
5872
5873         * expr.c (build_java_jsr, build_java_ret): New functions
5874         (JSR,PRE): New macros
5875         (PRE_TABLE_SWITCH, PRE_LOOKUP_SWITCH): Fixed and secured.
5876         (verify_jvm_instructions): tableswitch, lookupswitch, 
5877         monitorenter, monitorexit, goto_w: verified.
5878         (LOOKUP_SWITCH, TABLE_SWITCH): Fixed generation of default: label
5879         (build_java_monitor): New function.
5880         (MONITOR_OPERATION): Modified to call build_java_monitor()
5881         (verify_jvm_instructions): Started a thorough verification of 
5882         invoke* bytecodes.
5883
5884 Tue Aug 19 13:35:49 1997  Per Bothner  <bothner@cygnus.com>
5885
5886         Support verification of jsr/ret subroutines (used for try/finally).
5887         * decl.c (return_address_type_node):  New type node.
5888         * java-tree.h (LABEL_RETURN_LABEL, LABEL_RETURN_TYPE_STATE,
5889         RETURN_MAP_ADJUSTED, LABEL_RETURN_LABELS, LABEL_IN_SUBR,
5890         LABEL_SUBR_START, LABEL_SUBR_CONTEXT, BCODE_VERIFIED):  New macros.
5891         (TYPE_UNSET, TYPE_SECOND, TYPE_NULL, TYPE_RETURN_ADDR, TYPE_UNUSED,
5892         TYPE_USED):  New macros for special types in type_map.
5893
5894         * java-tree.h (BCODE_JUMP_TARGET):  Renamed to BCODE_TARGET.
5895         (BCODE_BACKWARDS_TARGET, CODE_FORWARDS_TARGET):  Replaced by
5896         BCODE_JUMP_TARGET.
5897         * expr.c (expand_byte_code):  Fix logic to warn of unused instructions.
5898
5899         * expr.c (can_widen_reference_to):  New function.
5900         (pop_type):  Use it.
5901         (merge_type_state):  Support handling start of subroutine.
5902         (push_pending_block):  Return char* error message, instead of calling
5903         fatal on an error.  Also handle subroutines.
5904         (verify_jvm_instructions):  Handle errors from push_poending_block.
5905         Support jsr and ret instructions.
5906         
5907 Tue Aug 19 13:33:36 1997  Per Bothner  <bothner@cygnus.com>
5908
5909         * jcf-io.c (find_classfile):  Fix thinko.
5910         * jcf-dump.c:  Add CONVERT2 (to match changed javaop.def).
5911
5912 Tue Aug 12 20:14:45 1997  Jason Merrill  <jason@yorick.cygnus.com>
5913
5914         * Makefile.in (BISON): Remove.
5915
5916 Thu Aug  7 23:08:24 1997  Per Bothner  <bothner@cygnus.com>
5917
5918         * Makefile.in:  Convert to autoconf.
5919         * config-lang.in (outputs):  Added java/Makefile.
5920
5921         * Make-lang.in, lang-specs.h, config-lang.in, Makefile.in:
5922         Rename cc1java to jc1.
5923
5924         * lang.c (init_parse, finihs_parse):  New functions #ifdef USE_CPPLIB.
5925         * Makefile.in (INTERNAL_CFLAGS):  Add @extra_c_flags.
5926
5927         * class.c (class_depth):  Do load_class if needed.
5928
5929         Mostly better verification.
5930         * decl.c (pushdecl):  Set TYPE_STUB_DECL for a type.
5931         (init_decl_processing):  Change return type of soft_checkcast.
5932         * expr.c (expand_java_CHECKCAST):  Do push_value of the "casted" value.
5933         * lang.c (put_decl_string, put_decl_node, lang_printable_name,
5934         lang_print_error):  New functions.
5935         (lang_init):  Set global hook print_error_function to lang_print_error.
5936         * expr.c:  In the type_map ptr_type_node is only used for null now.
5937         (pop_type, merge_types):  Hence ptr_type_node matches any reference.
5938         (merge_types):  Dererence pointer to record types before comparing.
5939         (decode_newarray_type, merge_types):  On error just return NULL.
5940         (build_java_binop):  Add preliminary implementation (with warning)
5941         for COMPARE_L_EXPR and COMPARE_G_EXPR (i.e. [fd]cmp[lg]).
5942         (lookup_label):  Set DECL_IGNORED_P (for dwarf2out).
5943         (expand_compare, expand_java_goto, expand_java_call):  Don't
5944         push_pending_block, since that only makes sense when verifying.
5945         (merge_type_state):  Different return codes.
5946         (push_pending_block):  A block may need to be verified more than once.
5947         (expand_byte_code):  Warn about unused code at code generation time.
5948         (verify_jvm_instruction):  Changed logic, since code may need to be
5949         re-verified if type-state has changed.  Also, better error handling.
5950         Implement acmpeq, acmpne, pop, pop2, swap, checkcast, instanceof.
5951         Improve newarray, anewarray, ?aload, athrow,
5952         * java-tree.h (LABEL_CHANGED):  New macro.
5953         
5954 Tue Aug  5 12:21:27 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5955
5956         * decl.c (soft_athrow_node): New global variable initialized.
5957         * javaop.def (i2b, i2c, i2s): Invoke CONVERT2
5958         * typeck.c (convert): Added support for REAL_TYPE.
5959         (convert_to_char): New function.
5960         (convert): Handle CHAR_TYPE.
5961         * expr.c (expand_java_arraystore): Modified because CHAR/BYTE/BOOLEAN/
5962         SHORT now expect INT but store as CHAR/BYTE/BOOLEAN/SHORT.
5963         (expand_java_arrayload): CHAR/BYTE/BOOLEAN/SHORT now convert result to
5964         promoted type.
5965         (verify_jvm_instructions): Added break a the end of bogus unop: label.
5966         (OPCODE_<b|c|s>astore): Pop an int operand from the type stack
5967         (OPCODE_<b|c|s>astore): Push the promoted type onto the stack
5968         (process_jvm_instruction): New macro CONVERT2 for i2c, i2s and i2b.
5969         (JAVA_ARRAY_LENGTH_OFFSET, JAVA_ARRAY_DATA_OFFSET): Modified
5970         to Use The Right Things.
5971         (pop_type): Accept CHAR/BYTE/BOOLEAN/SHORT promoted type as
5972         compatible with INT. BOOLEAN is made equivalent to BYTE.
5973         (OPCODE_athrow, OPCODE_aconst_null, OPCODE_ifnull, 
5974         OPCODE_ifnonnull): Now supported.
5975         (build_java_athrow): New function.
5976
5977 Mon Aug  4 15:46:45 1997  Per Bothner  <bothner@cygnus.com>
5978
5979         Rename method name <init> to match G++ (and fix mangling).
5980         * class.c (layout_class):  Replace method name of <init> by class name.
5981         (make_method_value):  Do inverse renaming of constructor from <init>.
5982         * java-tree.h (DECL_CONSTRUCTOR_P):  New macro.
5983         * typeck.c (lookup_java_constructor):  New function.
5984         * expr.c (expand_invoke):  If method_name is <init>, call
5985         lookup_java_constructor to find constructor.
5986
5987         * parse.c (get_constant):  Handle CONSTANT_Float and CONSTANT_Double.
5988
5989 Fri Aug  1 11:37:09 1997  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5990
5991         * parse.c (get_class_constant): Modified to handle array "classes"
5992         * typeck.c (set_local_type): Bug fixed when filling type_map[] with
5993         wide type.
5994         (convert): Modified to handle real type.
5995         * java-tree.h (soft_badarrayindex_node, soft_anewarray_node,
5996         soft_multianewarray, soft_newarray_node, soft_throw_node): New global
5997         variables declared.
5998         * decl.c (soft_badarrayindex_node, soft_anewarray_node,
5999         soft_multianewarray, soft_newarray_node, soft_throw_node): New
6000         global variables initialized.
6001         (find_local_variable): Handles the case of a pointer
6002         (end_java_method): Restore the use of one more scope
6003         * expr.c (build_java_arraynull_check, build_java_arrayaccess,
6004         build_java_array_length_access, expand_java_arrayload,
6005         expand_java_arraystore, expand_java_array_length,
6006         expand_java_multianewarray, expand_java_anewarray, 
6007         build_java_check_indexed_type, is_array_type_p,
6008         build_java_throw_out_of_bound_exception): New functions.
6009         (STORE_INTERNAL): Now forces type of the decl to be type of the value.
6010         (OPCODE_arraylength, OPCODE_newarray, OPCODE_<t>astore,
6011         OPCODE_<t>aload): Implemented code for verification.
6012         (ARRAY_STORE, ARRAY_LOAD, ARRAY_LENGTH, ARRAY_NEW_PTR, ARRAY_NEW_NUM
6013         ARRAY_NEW_MULTI): Macro defined.
6014         (CONVERT): Modified to invoke convert().
6015         (case OPCODE_aload2): Fixed index typo from 2 to 1.
6016
6017 Thu Jul 31 12:48:18 1997  Per Bothner  <bothner@cygnus.com>
6018
6019         * class.c (push_class):  Set DECL_ARTIFICIAL (for dbxout.c).
6020         (build_class_ref, is_compiled_class):  Handle pointer-to-record types.
6021         (make_class_data):  Field name needs '/' as package prefix.
6022         * expr.c (type_stack_dup, java_stack_dup):  Fix fencepost errors.
6023
6024 Fri Jul 25 11:44:21 1997  Per Bothner  <bothner@cygnus.com>
6025
6026         Implement debug information for local variables.
6027         * java-tree.h (DECL_CODE_LENGTH, DECL_ARG_SLOT_COUNT,
6028         DECL_LOCAL_SLOT_NUMBER, DECL_LOCAL_START_PC, DECL_LOCAL_END_PC,
6029         DECL_LOCAL_SLOT_CHAIN):  New macros.
6030         (struct lang_decl_var):  New type.
6031         * parse.c (give_name_to_locals):  Move to decl.c.
6032         * decl.c (give_name_to_locals):  Re-written to Do The Right Thing.
6033         (start_java_method):  Re-write parameter handling.
6034         (pending_local_decls):  New global variable.
6035         (push_jvm_slot, maybe_pushlevels, maybe_poplevels):  New functions.
6036         (find_local_variable):  Accept pc so we can skips decls not in range.
6037         (struct binding_level):  Add end_pc field.
6038         * expr.c (expand_byte_code): Call maybe_pushlevels and maybe_poplevels.
6039         (various):  Change so current pc gets passed to find_local_variable.
6040
6041         * decl.c (init_decl_processing):  Re-arrange fields in
6042         class_type_node and and method_type_node to match kaffe 0.9.1.
6043         * class.c (make_method_value, make_class_data):  Update
6044         initializations to match.
6045         
6046 Wed Jul 16 17:17:50 1997  Per Bothner  <bothner@cygnus.com>
6047
6048         * class.c (unicode_mangling_length, emit_unicode_mangled_name,
6049         append_gpp_mangled_name, append_gpp_mangled_type):  New functions.
6050         (push_super_field):  New function.
6051         (make_class_data):  Handle inheritance of class static initializer.
6052         (layout_class):  New name mangling.
6053         * constants.c (build_constant_data_ref):  Init type of data array
6054         to a one-element array.
6055         (build_constants_constructor):  Set DECL_SIZE from complete array type.
6056         * decl.c:  Rename class_type, object_type etc to class_type_node,
6057         object_type_node etc.  Make former inherit from latter. 
6058         * expr.c (expand_invoke):  Add cast of function address.
6059         * java-tree.h (TYPE_ARRAY_ELEMENT, PUSH_SUPER_VALUE):  New.
6060         * parse.c (yyparse):  Don't call layout_class here.
6061         * typeck.c (build_java_array_type):  Set TYPE_ARRAY_ELEMENT.
6062
6063 Sat Jun 14 12:06:57 1997  Per Bothner  <bothner@cygnus.com>
6064
6065         * decl.c, class.c:  Update method type to match latest Kaffe snapshot.
6066         * constants.c (lookup_name_constant):  Renamed to alloc_name_constant.
6067         (alloc_class_constant):  New.
6068         * expr.c (expand_invoke):  Make sure method's class is initialized.
6069         * class.c (interits_from_p, emit_register_class):  New functions.
6070         * parse.c (yyparse):  Call emit_register_class.
6071
6072 Mon Jun  9 18:08:06 1997  Per Bothner  <bothner@cygnus.com>
6073
6074         * constants.c:  New file, to handle constant pool.
6075         * Makefile.in (JAVA_OBJS):  Add constants.o.
6076         * decl.c (init_decl_processing):  Update, fix, finish various structs.
6077         (pushdecl_top_level):  New.
6078         * parse.c (layout_class):  Moved to class.c.
6079         * expr.c (java_push_constant_from_pool):  New function.
6080         * class.c (build_class_ref):  Make work fully
6081         (make_class_data):  Emit super-class, constant pool, interface vector.
6082
6083 Tue Jun  3 10:14:31 1997  Per Bothner  <bothner@cygnus.com>
6084
6085         java-tree.h (DECL_SIGNATURE, BCODE_EMITTED):  Remove.
6086         (LABEL_VERIFIED, BCODE_EXCEPTION_TARGET, TYPE_ARRAY_P):  New.
6087         * class.c (class_depth):  New function.
6088         (lookup_named_class):  Replaced by new function lookup_class.
6089         * decl.c (object_type_node, string_type_node):  New.
6090         Remove various types that we no longer need.
6091         * expr.c (verify_jvm_instructions):  New separate verifier pass.
6092         (push_type, pop_type):  New functions for verifier.
6093         (type_stack_dup, pop_argument_types, merge_types):  Likewise.
6094         (expand_byte_code):  Simplify, since we assume already verified.
6095         (expand_invoke):  Now mostly works.
6096         * javaop.def:  Rename ldc1->ldc, ldc2->ldc_w, ldc2w->ldc2_w.
6097         * lang.c (main_class):  Move to parse.c.  Don't make_class yet.
6098         * parse.c:  Wait to allocate class object until we know its name.
6099         (layout_class):  Calculate DECL_VINDEX for each virtual method.
6100         * typeck.c (get_array_type):  Rename to ...
6101         (build_java_array_type):  ... and provide working implementation.
6102         (build_java_signature):  New function - build Java signature of type.
6103         (set_java_signature):  New function - cache signature with type.
6104         (lookup_java_method):  New function.
6105         
6106 Tue May  6 22:08:24 1997  Per Bothner  <bothner@deneb.cygnus.com>
6107
6108         * class.c (ident_subst):  Take extra SUFFIX parameter.
6109         (add_field):  Set DECL_ASSEMBLER_NAME of static fields;  more.
6110         (set_constant_value, build_static_field_ref, is_compiled_class):  New.
6111         (build_class_ref):  Actually implement.
6112         * decl.c, java-tree.h:  Renamed some xx_type to xx_type_node.
6113         * decl.c (builtin_function):  New.
6114         (init_decl_processing):  Update for current Kaffe.  Declare some
6115         builtin Kaffe functions.
6116         * expr.c (build_address_of):  New.
6117         (expand_java_NEW, expand_java_INSTANCEOF, expand_java_CHECKCAST):
6118         Renamed (from expand_java_new etc), and added working implementations.
6119         (build_field_ref):  Now also handle static fields.
6120         (expand_invoke):  Implement invokestatic, and start implement rest.
6121         * java-opcodes.h:  Use javaop.def to avoid duplicated list.
6122         * javaop.def:  Rename invokevirt -> invokevirtual.
6123         * lang.c (use_handles):  Removed.
6124         * parse.c:  Add support for ConstantValue atribute.
6125         Handle nested loading of a class.  (JPOOL_UTF):  New.
6126
6127 Tue Mar 11 20:11:05 1997  Per Bothner  <bothner@deneb.cygnus.com>
6128
6129         * expr.c (expand_java_pushc):  Support #ifndef REAL_ARITHMETIC case.
6130
6131 Thu Feb 27 14:24:29 1997  Per Bothner  <bothner@deneb.cygnus.com>
6132
6133         * Make-lang.in (java.install-man):  New empty rule.
6134         * typeck.c (set_local_type):  New function.
6135         * expr.c (STORE_INTERNAL):  Call find_local_variable,
6136         not find_stack_slot.  Call set_local_type.
6137
6138 Wed Feb 12 16:11:05 1997  Per Bothner  <bothner@kalessin.cygnus.com>
6139
6140         * java-tree.h:  Various new macros for constructing RECORD_TYPEs,
6141         and building RECORD_TYPE CONSTRUCTORs.
6142         Also support for creating Utf8Const objects from an INDETIFIER_NODE.
6143
6144         * lang.c (use_handles):  Change the default to 0.
6145         * decl.c:  Define and build class_type, field_type, utf8const_type.
6146         * class.c (make_class_data, make_field_value,
6147         get_access_flags_from_decl, build_class_ref, build_utf8_ref,
6148         hashUtf8String, strLengthUtf8, mangled_classname:
6149         Functions to build reflective data structures.
6150         * parse.c (yyparse):  Call make_class_data.
6151
6152         * jcf-io.c (open_class, find_classfile):  New functions.
6153         * jcf-dump.c:  Support reading classfile from explicitly-named
6154         class file (without CLASSPATH searching).
6155
6156 Thu Oct 24 14:10:16 1996  Per Bothner  <bothner@deneb.cygnus.com>
6157
6158         * jcf-reader.c:  Add parameter list to HANDLE_CONSTANT_Utf8.
6159         * parse.c (JPOOL_UTF_LENGTH, JPOOL_UTF_DATA, HANDLE_CONSTANT_Utf8):
6160         Override jcf-reader macros so CONSTANT_Utf8 becomes tree node here.
6161         (get_constant):  Now trivial for CONSTANT_Utf8.
6162
6163         * jcf.h:  Make NEW_CPOOL the default.
6164         * jcf.h, jcf-reader.c, parse.c:  Remove support for !NEW_CPOOL.
6165         
6166 Thu Oct 24 13:52:45 1996  Per Bothner  <bothner@deneb.cygnus.com>
6167
6168         New directory.