* gcc_release (-b): Remove option.
[official-gcc.git] / gcc / cp / ChangeLog
blobcc05d04fc3bc709a567506d21ff3de77671e1581
1 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
3         * NEWS: Update release number.
5 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
7         PR c++/3130, c++/3131, c++/3132
8         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
9         * class.c (force_canonical_binfo_r): Move
10         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
11         virtual bases unless they're primary and what they're primary
12         too has been moved.
13         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
14         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
15         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
16         derived binfo.
17         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
18         (layout_nonempty_base_or_field): Add most derived type
19         parameter. Adjust.
20         (layout_empty_base): Likewise.
21         (build_base_field): Likewise.
22         (build_base_fields): Likewise.
23         (propagate_binfo_offsets): Add most derived type
24         parameter. Skip non canonical virtual bases too.
25         (dfs_set_offset_for_unshared_vbases): Don't skip primary
26         bases. Do skip canonical bases.
27         (layout_virtual_bases): Adjust.
28         (layout_class_type): Adjust.
29         (dfs_get_primary_binfo): Build list of virtual primary base
30         candidates.
31         (get_primary_binfo): Check that the shared virtual primary
32         base candidate was found first.
33         (accumulate_vtbl_inits): Don't do anything for non-vptr
34         containing binfos. For case 1 primary virtual bases, keep
35         checking that we've not emerged from the hierarchy of RTTI_BINFO.
37 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
39         PR c++/3089
40         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
41         hierarchy looking for primary bases for a ctor
42         vtable. Recursively call oneself, if we meet our primary via
43         this route and haven't met it yet via inheritance graph order.
45 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
47         * lang-options.h: Emit documentation for -fno-honor-std, not
48         -fhonor-std.
50 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
52         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
53         Don't clobber delta.
54         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
56 2001-06-08  Jakub Jelinek  <jakub@redhat.com>
58         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
59         is found, look first if name does not match the structure name.
61 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
63         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
64         in previous change.
66 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
68         PR c++/2929
69         * friend.c (do_friend): Use push_decl_namespace for classes at
70         namespace scope.
72 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
73             Jason Merrill <jason_merrill@redhat.com>
75         PR c++/3061
76         * class.c (build_secondary_vtable): Use assert, rather than an error
77         message.
78         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
79         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
80         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
81         Don't set BINFO_VTABLE for a primary virtual base.
83 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
85         * decl.c (duplicate_decls): Update source position information
86         when a template function is defined.
88 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
90         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
92 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
94         PR c++/2914
95         * decl.c (pushtag): Don't push into a complete type's scope.
97 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
99         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
100         (struct lang_decl_flags): Lose generate_with_vtable_p.
101         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
102         * class.c (copy_virtuals): Adjust.
103         * decl2.c (mark_vtable_entries): Adjust.
104         * method.c (make_thunk, build_vtable_entry): Adjust.
105         * class.c (update_vtable_entry_for_fn): Only look as far as the
106         first defining class.
107         (build_vtbl_initializer): Put nothing in the slot for a function only 
108         defined in a lost primary virtual base.
109         (add_vcall_offset_vtbl_entries_1): Use the same code for 
110         the lost primary case and the normal case.
111         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
112         (get_vfield_offset, get_derived_offset): Lose.
113         (dfs_find_final_overrider): Use look_for_overrides_here.
114         (get_matching_virtual): New fn.
115         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
116         not BV_VCALL_INDEX.
117         * search.c (look_for_overrides_here): Split out from...
118         (look_for_overrides_r): Here.
120         * class.c (find_final_overrider): Return error_mark_node on error.
122 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
124         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
125         (build_over_call): Likewise.
126         * decl.c (grokparms): Likewise.
127         * pt.c (tsubst_decl): Likewise.
128         * typeck.c (convert_arguments): Likewise.
130 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
132         * semantics.c (begin_class_definition): Robustify.
134         * pt.c (instantiate_decl): Tell the repository code about the
135         clones, not the cloned functions.
136         * repo.c (repo_template_used): Explicitly instantiate the cloned
137         function, not the clones.
139 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
141         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
142         ICS_BAD_FLAG on created conversion.
143         (compare_ics): Break out rank.
145 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
147         * class.c (layout_vtable_decl): Fix off by one error on
148         build_index_type.
149         (build_vtt): Likewise.
150         (build_ctor_vtbl_group): Likewise.
152 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
154         * class.c (maybe_indent_hierarchy): New function.
155         (dump_class_hierarchy_r): Add flags. Dump extra binfo
156         information, if enabled. Use maybe_indent_hierarchy. Adjust
157         output format.
158         (dump_class_hierarchy): Adjust prototype. Adjust output format.
159         (dump_array, dump_vtable, dump_vtt): New functions.
160         (finish_struct_1): Adjust hierarchy dumping.
161         (initialize_vtable): Call dump_vtable.
162         (build_vtt): Call dump_vtt.
163         (build_ctor_vtbl_group): Call dump_vtable.
164         * decl2.c (flag_dump_class_layout): Remove.
165         (cxx_decode_option): Remove dump translation unit
166         and dump class hierarchy check. Call dump_switch_p.
167         (finish_file): Adjust dumping.
168         (dump.c): Only dump base classes if not TDF_SLIM.
169         Only dump namespace members if not TDF_SLIM.
170         * optimize.c (dump_function): New function.
171         (optimize_function): Call dump_function.
172         * semantics.c (expand_body): Use dump_enabled_p.
174 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
176         PR g++/2936
177         Part missed from first commit
178         * decl2.c (finish_anon_union): Copy context.
180 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
182         PR g++/2936
183         * optimize.c (remap_decl): Remap anonymous aggregate members too.
185 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
187         PR g++/2823
188         * semantics.c (expand_body): Don't optimize thunks.
190 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
192         * decl.c (duplicate_decls): Tidy.
193         (init_decl_processing): Always set flag_no_builtin.
195 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
197         PR c++/2184
198         * decl2.c (do_local_using_decl): Push the decls, even in a
199         template.
201 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
203         * optimize.c (initialize_inlined_parameters): Don't set
204         TREE_READONLY for a VAR_DECL taking the place of an inlined
205         PARM_DECL.
207 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
209         * parse.y: Refer to compound literals as such, not as
210         constructor-expressions.
212 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
214         * call.c (build_op_delete_call): Ignore exception-specifications
215         when looking for matching delete operators.
216         * init.c (build_new_1): Compute whether or not the allocation
217         function used is a placement allocation function or not, and
218         communicate this information to build_op_delete_call.
220 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
222         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
223         (unsupported_options): Correspondingly.
225 2001-05-19  Zack Weinberg  <zackw@stanford.edu>
227         * except.c (choose_personality_routine): Export.  Add
228         explanatory comment.  Take an enum languages, not a boolean.
229         (initialize_handler_parm): Adjust to match.                 
230         * cp-tree.h: Prototype choose_personality_routine.
231         * lex.c (handle_pragma_java_exceptions): New function.
232         (init_cp_pragma): Register #pragma GCC java_exceptions.
234 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
236         PR c++/2781
237         * optimize.c (update_cloned_parm): Copy addressability and other
238         flags.
240 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
242         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
243         (get_vtable_decl, build_vtt): Not here.
245 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
247         * except.c (cp_protect_cleanup_actions): New function.
248         (init_exception_processing): Don't set protect_cleanup_actions 
249         here.  Do set lang_protect_cleanup_actions.
251 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
253         * spew.c (read_token): Call yyerror on all unexpected tokens.
255 2001-05-12  Richard Henderson  <rth@redhat.com>
256         
257         EH merge from mainline:
259         2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
260         * except.c (build_throw): Wrap the initialization of the exception
261         object in a MUST_NOT_THROW_EXPR.
262         (do_free_exception): #if 0.
264         * cp-tree.def (EH_SPEC_BLOCK): New.
265         (MUST_NOT_THROW_EXPR): New.
266         * cp-tree.h: Update changed function declarations.
267         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
268         (CPTI_CALL_UNEXPECTED): New.
269         (struct cp_language_function): Rename x_eh_spec_try_block
270         to x_eh_spec_block.
271         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
272         * decl.c (current_binding_level): If no current function 
273         bindings, revert to scope_chain.
274         (initialize_predefined_identifiers): Remove __cp_push_exception.
275         (store_parm_decls): Use begin_eh_spec_block.
276         (finish_function): Use finish_eh_spec_block.
277         (mark_lang_function): Update for name changes.
278         * decl2.c (finish_file): No mark_all_runtime_matches.
279         * dump.c (cp_dump_tree): Handle new tree codes.
280         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
281         * except.c (catch_language_init, catch_language): Remove.
282         (init_exception_processing): Don't set language code.
283         Initialize call_unexpected_node, protect_cleanup_actions,
284         eh_personality_libfunc, lang_eh_runtime_type.
285         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
286         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
287         (prepare_eh_type): Split out type canonicalizations ...
288         (build_eh_type_type): ... from here.
289         (build_eh_type_type_ref): Remove.
290         (mark_all_runtime_matches): Remove.
291         (build_exc_ptr): New.
292         (do_begin_catch, do_end_catch): New.
293         (do_pop_exception): Remove.
294         (build_terminate_handler): Remove.
295         (choose_personality_routine): Split out language choice from ...
296         (initialize_handler_parm): ... here.
297         Use MUST_NOT_THROW_EXPR.
298         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
299         exception object handling.
300         (expand_start_eh_spec, expand_end_eh_spec): Remove.
301         (expand_exception_blocks, alloc_eh_object): Remove.
302         (begin_eh_spec_block, finish_eh_spec_block): New.
303         (do_allocate_exception, do_free_exception): New.
304         (expand_throw): Merge into ...
305         (build_throw): ... here.  Update for abi.
306         * expr.c (cplus_expand_expr): No expand_internal_throw.
307         Handle MUST_NOT_THROW_EXPR.
308         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
309         * semantics.c (*) Update for except.h name changes.
310         (genrtl_try_block): No protect_with_terminate.
311         (genrtl_eh_spec_block): New.
312         (genrtl_handler): Don't emit the goto here.
313         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
314         (genrtl_finish_function): Don't expand_exception_blocks.
315         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
317         * decl.c (struct named_label_list): Rename eh_region to
318         in_try_scope, add in_catch_scope.
319         (struct binding_level): Rename eh_region to is_try_scope,
320         add is_catch_scope.
321         (note_level_for_try): Rename from note_level_for_eh.
322         (note_level_for_catch): New.
323         (poplevel): Copy both is_try_scope and is_catch_scope to
324         the named_label_list struct.
325         (check_previous_goto_1): Don't check for catch block via
326         DECL_ARTIFICIAL; use in_try_scope instead.
327         (check_goto): Likewise.
328         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
329         * except.c (expand_start_catch_block): Call note_level_for_catch.
330         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
332         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
333         exceptions_via_longjmp.
335 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
337         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
338         * typeck.c (get_member_function_from_ptrfunc,
339         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
340         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
342 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
344         * class.c (walk_subobject_offsets): Add max_offset parameter.
345         (record_subobject_offsets): Adjust call.
346         (layout_conflict_p): Stop walking when we get past the last empty
347         subobject.
349 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
351         * cp-tree.h (flag_inline_trees): Update documentation.
352         * decl.c (init_decl_processing): Adjust handling of
353         flag_inline_functions and flag_inline_trees to support -O3.
354         (grokfndecl): Set DECL_INLINE on all functions if that's what
355         the user requested.
356         (save_function_data): Clear DECL_INLINE in
357         current_function_cannot_inline is non-NULL.
358         * decl2.c (flag_inline_trees): Update documentation.
360 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
362         * dump.c (cp_dump_tree, USING_STMT case): New case.
363         * tree.c (cp_statement_code_p): Add USING_STMT.
364         * decl2.c (do_using_directive): Add the using directive statement.
366         * tree.c (walk_tree): Reformat an if block.
368 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
370         * decl.c (compute_array_index_type): Don't try to do anything with
371         the indices when processing a template.
373 2001-05-01  Mark Mitchell  <mark@codesourcery.com>
375         * decl2.c (do_using_directive): Revert previous patch.
377 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
379         * cp-tree.def (USING_STMT): New statement node.
380         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
381         * decl2.c (do_using_directive): Add USING_STMT to statement
382         tree. Don't emit errors when processing template decl.
383         * pt.c (tsubst_expr, USING_STMT case): New case.
384         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
386 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
388         * call.c (build_new_op): Convert args from reference here.
389         (build_conditional_expr): Don't convert here.
391 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
393         * spew.c (last_token_id): New static variable.
394         (read_token): Set it here.
395         (yyerror): Use it here.
397 2001-04-30  Richard Henderson  <rth@redhat.com>
399         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
400         * decl.c: Likewise.
402 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
404         * gxxint.texi: Remove.
405         * Make-lang.in: Remove all traces of gxxint.texi.
407 Mon Apr 30 16:14:10 2001  Mark P Mitchell  <mark@codesourcery.com>
409         * decl2.c (start_static_initialization_or_destruction): Correct
410         logic to handle the -fno-use-cxa-atexit case.
412 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
414         * optimize.c (update_cloned_parm): New function.
415         (maybe_clone_body): Use it.  Update the `this' parameter too.
417 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
419         * decl2.c (unsupported_options): Add new-abi.
420         * lang-options.h: Remove no longer supported options.
422 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
424         * except.c (can_convert_eh): Don't check template parms,
425         typename types etc.
427 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
429         * optimize.c (maybe_clone_body): Copy parameter names and locations.
431 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
433         * cp-tree.h (adjust_clone_args): Prototype new function.
434         * class.c (adjust_clone_args): New function.
435         * decl.c (start_function): Call it for in charge ctors.
437 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
439         * method.c (use_thunk): Make sure that thunks really are emitted
440         when requested.
442         Remove support for -Wextern-inline, -flabels-ok, -fvtable-gc, -fxref
443         * cp-tree.h (warn_extern_inline): Remove.
444         (flag_labels_ok): Likewise.
445         * decl2.c (warn_extern_inline): Remove.
446         (flag_labels_ok): Likewise.
447         (lang_f_options): Remove labels-ok, vtable-gc, xref.
448         (unsupported_options): Add them.
449         (cxx_decode_option): Don't accept -Wextern-inline.
450         * method.c (hack_identifier): Remove -flabels-ok support.
451         * spew.c (see_typename): Likewise.
453 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
455         * mangle.c (write_chars): New macro.
456         (hwint_to_ascii): New function
457         (write_number): Use it.
458         (write_integer_cst): Deal with really big numbers.
460 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
462         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
463         the clone.
465 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
467         * decl.c (grokdeclarator): Set context of namespace scope
468         TYPE_DECLS.
470 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
472         * cp/optimize.c: Include hashtab.h.
473         (struct inline_data): Add tree_pruner.
474         (expand_call_inline, expand_calls_inline): Use it when calling
475         walk_tree.
476         (optimize_function): Initialize and free tree_pruner.
478 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
480         * cp-tree.h (finish_enum): Change prototype.
481         * decl.c (finish_enum): Reorganize.
482         * parse.y (structsp): Adjust calls to finish_enum.
483         
484 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
486         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
487         't' case.
489 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
491         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
492         (layout_empty_base): Return at end flag.
493         (build_base_field): Likewise.
494         (build_base_fields): Likewise.
495         (layout_virtual_bases): Don't add 1 to eoc value.
496         (end_of_class): Use full size for empty bases.
497         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
498         empty bases. Don't add 1 to eoc value. Only add trailing padding
499         if we're an empty class with no empty bases.
500         (dump_class_hierarchy): Dump size and alignment.
502 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
504         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
505         set.
506         (SET_DECL_LANGUAGE): New macro.
507         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
508         (pushdecl): Likewise.
509         (build_library_fn_1): Likewise.
510         (build_cp_library_fn): Likewise.
511         (grokfndecl): Likewise.
512         (grokvardecl): Mark `extern "C"' variables as having C linkage.
513         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
514         * lex.c (retrofit_lang_decl): Likewise.
515         * mangle.c (mangle_decl_string): Don't mangle the names of
516         variables declared with C language linkage.
517         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
518         
519 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
521         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
522         flag_access_control from uninitialized storage.
524 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
526         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
527         * mangle.c (write_pointer_to_member_type): Fix mangling of
528         pointers to cv-qualified member function types.
530         * init.c (build_delete): Create a SAVE_EXPR for the address if
531         we're going to use it more than once.
533 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
535         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
536         (expand_ptremfunc_cst): Change prototype.
537         (delta2_from_ptrmemfunc): Remove.
538         * expr.c (cplus_expand_constant): Adjust call to
539         expand_ptrmemfunc_cst.
540         * typeck.c (build_ptrmemfunc1): Simplify.
541         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
542         results in a constant.
543         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
544         (delta2_from_ptrmemfunc): Remove.
545         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
546         
547 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
549         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
550         (TYPE_ANONYMOUS_P): New macro.
551         (TAGGED_TYPE_P): New macro.
552         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
553         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
554         * tree.c (no_linkage_helper): Likewise.
555         * semantics.c (begin_class_definition): Likewise.
556         * pt.c (convert_template_argument): Likewise.
557         * lex.c (check_for_missing_semicolon): Likewise.
559 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
561         * class.c (dfs_unshared_virtual_bases): New function.
562         (mark_primary_bases): Call it.
563         (check_bases): Ignore virtual bases when determining
564         nearly-emptiness.
566 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
568         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
570 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
572         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
573         cloned function to the clone.
575 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
577         * error.c (GLOBAL_THING): Always use '__'.
579 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
581         * method.c (implicitly_declare_fn): Commonize code for copy ctor
582         and assignment op. Set TREE_USED for parameter.
584 2001-04-10  Richard Henderson  <rth@redhat.com>
586         * typeck.c (build_array_ref): Push the array reference inside
587         COMPOUND_EXPR and COND_EXPR.
589 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
591         * class.c (find_final_overrider_data): Add `candidates'.
592         (dfs_find_final_overrider): Don't issue error messages
593         prematurely.
594         (find_final_overrider): Issue error messages here.
595         (build_base_field): Don't warn about amgibuous direct bases here.
596         (warn_about_ambiguous_direct_bases): New function.
597         (layout_class_type): Use it.
599 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
601         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
602         * decl.c (duplicate_decls): Adjust accordingly.
603         (maybe_commonize_var): Likewise.
604         (grokfndecl): Likewise.
605         (start_function): Likewise.
606         (start_method): Likewise.
607         * decl2.c (key_method): Likewise.
608         (import_export_decl): Likewise.
609         * method.c (implicitly_declare_fn): Likewise.
610         * optimize.c (maybe_clone_body): Likewise.
611         
612 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
614         * lang-specs.h: Add __DEPRECATED.
615         
616 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
618         * optimize.c (expand_call_inline): Only add newly inlined statements
619         into inlined_stmts.
621 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
623         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
624         (OPERATOR_FORMAT): Likewise.
625         (OPERATOR_TYPENAME_FORMAT): Likewise.
626         * operators.def: Remove old name-mangling information.
627         * decl.c (grok_op_properties): Adjust accordingly.
628         * lex.c (init_operators): Likewise.
629         * rtti.c (get_tinfo_decl): Issue error messages about types that
630         have variable size.
632 2001-04-03  Gabriel Dos Reis  <gdr@codesourcery.com>
634         Correct semantics restrictions checking in throw-expression.
635         * except.c (is_admissible_throw_operand): New function.
636         (build_throw): Use it.
638 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
640         * decl2.c (import_export_decl): Don't call import_export_class 
641         when processing an inline member function.
642         * semantics.c (expand_body): Call import_export_decl before
643         emitting inline functions.
645 2001-03-26  Mike Yang <yang@research.att.com>
646             Mark Mitchell  <mark@codesourcery.com>
648         * dump.c (dump_access): New function.
649         (cp_dump_tree): Use it.  Dump basetype information for class
650         types.
652 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
654         * Makefile.in (optimize.o): Depend on params.h.
655         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
656         (init_decl_processing): Set flag_no_inline when doing
657         inlining-on-trees.
658         * optimize.c: Include params.h.
659         (struct inline_data): Improve documentation of FNS.  Add
660         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
661         (INSNS_PER_STMT): New macro.
662         (remap_block): Use CLONING_P.
663         (inlinable_function_p): Don't inline big functions.
664         (expand_call_inline): Keep track of how much inlining we've done.
665         (optimize_function): Set FIRST_INLINED_FN.
666         (maybe_clone_body): Set CLONING_P.
667         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
668         tree nodes.
669         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
670         rest_of_compilation.  Clear DECL_RTL for local variables
671         afterwards.
672         (clear_decl_rtl): New function.
673                 
674 2001-03-26  Jakub Jelinek  <jakub@redhat.com>
676         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
677         not `_'.
679 2001-03-26  Jakub Jelinek  <jakub@redhat.com>
681         * decl.c (local_names): Define.
682         (push_local_name): New.
683         (grok_reference_init): Return init if initializing static reference
684         variable with non-constant instead of emitting it.
685         Move expand_static_init call to cp_finish_decl.
686         (layout_var_decl): Call push_local_name.
687         (maybe_commonize_var): Allow inlining functions even if they have
688         static local variables, use comdat_linkage for them if flag_weak.
689         (check_initializer): Call obscure_complex_init if
690         grok_reference_init returned non-zero.
691         (save_function_data): Clear x_local_names.
692         (pop_cp_function_context): Free x_local_names.
693         (mark_inlined_fns): Remove.
694         (mark_lang_function): Mark x_local_names.
695         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
696         Mark inlined_fns as tree, remove call to mark_inlined_fns.
697         * class.c (alter_access): Ensure DECL_ACCESS is never set if
698         DECL_DISCRIMINATOR_P.
699         * cp-tree.h (cp_language_function): Add x_local_names.
700         (lang_decl_flags): Add discriminator into u2.
701         (lang_decl_inlined_fns): Remove.
702         (lang_decl): inlined_fns is now a TREE_VEC.
703         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
704         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
705         TREE_VEC, not a custom structure.
706         (optimize_function): Likewise.
707         * mangle.c (discriminator_for_local_entity): Discriminate among
708         VAR_DECL local entities.
709         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
710         is not valid.
712 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
714         * call.c (build_java_interface_fn_ref): Fix local declarations.
716 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
718         Add support for Java interface method calls.
719         * cp-tree.h (struct lang_type): Add java_interface flag.
720         (TYPE_JAVA_INTERFACE): New macro.
721         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
722         by setting TYPE_JAVA_INTERFACE.
723         * call.c (java_iface_lookup_fn): New static.
724         (build_over_call): If calling a method declared in a 
725         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
726         expression which resolves the function address.
727         (build_java_interface_fn_ref): New function.
729 2001-03-22  Zack Weinberg  <zackw@stanford.edu>
731         * lang-specs.h: Add zero initializer for cpp_spec field to
732         all array elements.  Don't put an #ifdef inside the initializer
733         list; set a default for CPLUSPLUS_CPP_SPEC and use it.
735 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
737         * method.c (do_build_assign_ref): Don't use build_modify_expr for
738         anonymous aggregates, since they don't have assignment operator
739         method.
740         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
741         assignment operators for anonymous structure fields.
743 2001-03-21  Jason Merrill  <jason@redhat.com>
745         * pt.c (instantiate_decl): Abort if we see a member constant
746         instantiation that doesn't already have its initializer.
748 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
750         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
752 2001-03-21  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
753             based on an idea from Joe Buck <jbuck@synopsys.com>
755         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
756         New nonterminals.
757         (data_def, component_decl): Add reductions to bad_decl.
759 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
761         * mangle.c (mangle_decl_string): Mangle the names of overloaded
762         operators, even when they have `extern "C"' linkage.
764 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
766         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
767         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
768         where it's not necessary.
769         (add_method): Remove optimization involving comparison of
770         DECL_ASSEMBLER_NAME.
771         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
772         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
773         where it's not necessary.
774         (check_methods): Likewise.
775         (build_clone): Likewise.
776         (built_vtt): Likewise.
777         * cp-tree.h (DECL_NEEDED_P): Likewise.
778         * decl.c (pushtag): Likewise.
779         (duplicate_decls): Likewise.
780         (pushdecl): Likewise.
781         (builtin_function): Likewise.
782         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
783         (build_cp_library_fn): Likewise.
784         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
785         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
786         where it's not necessary.
787         (make_rtl_for_nonlocal_decl): Likewise.
788         (cp_finish_decl): Likewise.
789         (grokfndecl): Likewise.
790         (grokvardecl): Likewise.
791         (grokdeclarator): Likewise.
792         (start_function): Likewise.
793         (cp_missing_return_ok_p): Likewise.
794         * decl2.c (grokclassfn): Likewise.
795         (check_classfn): Likewise.
796         (finish_static_data_member_decl): Likewise.
797         (grokfield): Likewise.
798         * error.c (GLOBAL_IORD_P): Remove.
799         (dump_global_iord): Improve output.
800         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
801         * except.c (nothrow_libfn_p): Summarily reject any function not in
802         namespace-scope.
803         * init.c (build_java_class_ref): Don't explicitly set
804         DECL_ASSEMBLER_NAME after calling mangle_decl.
805         * mangle.c (mangle_decl_string): Handle extern "C" functions.
806         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
807         * method.c (set_mangled_name_for_decl): Don't explicitly set
808         DECL_ASSEMBLER_NAME after calling mangle_decl.
809         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
810         IDENTIFIER_GLOBAL_VALUE for the thunk.
811         * pt.c (set_mangled_name_for_template_decl): Remove.
812         (check_explicit_specialization): Don't use it.
813         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
814         (tsubst_friend_function): Likewise.
815         (tsubst_decl): Likewise.
816         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
817         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
818         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
819         where it's not necessary.
820         (tinfo_base_init): Likewise.
821         (create_real_tinfo_var): Likewise.
822         * search.c (looup_field_1): Likewise.
823         * semantics.c (finish_named_return_value): Likewise.
824         * tree.c (init_tree): Set lang_set_decl_assembler_name.
825         
826 2001-03-15  Neil Booth  <neil@daikokuya.demon.co.uk>
828         * lex.c: Delete duplicate pending_lang_change.
830 2001-03-15  Zack Weinberg  <zackw@stanford.edu>
832         * decl.c: Replace all uses of 'boolean' with 'bool'.
834 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
836         * except.c: Revert previous patch.
838 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
840         Correct semantics restrictions checking in throw-expression.
841         * except.c (is_admissible_throw_operand): New function.
842         (build_throw): Use it.
844 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
846         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
847         and its ilk.
849         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
850         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
851         * decl.c (duplicate_decls): Likewise.
852         (builtin_function): Likewise.
853         (build_library_fn): Likewise.
854         (build_cp_library_fn): Likewise.
855         (check_initializer): Likewise.
856         (cp_finish_decl): Likewise.
857         * decl2.c (grokfield): Likewise.
858         (grok_function_init): Remove #if 0'd code.
859         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
860         * friend.c (do_friend): Likewise.
861         * init.c (get_temp_regvar): Likewise.
862         * method.c (make_thunk): Likewise.
863         * pt.c (tsubst_friend_function): Likewise.
864         (tsubst_decl): Likewise.
865         (regenerate_decl_from_template): Likewise.
866         * semantics.c (genrtl_named_return_value): Likewise.
867         (expand_body): Likewise.
868         (genrtl_finish_function): Likewise.
869         * tree.c (cp_tree_equal): Likewise.
870         
871 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
873         * spew.c: Remove references to CPP_OSTRING.
875 2001-03-06  Jeffrey Oldham  <oldham@codesourcery.com>
877         * call.c (joust): Ensure more_specialized()'s argument length
878         parameter has correct value for constructors.
880 2001-03-03  Nathan Sidwell  <nathan@codesourcery.com>
882         * call.c (convert_like_real): Add extra semantics to INNER
883         parameter. Don't convert to temporary if a user conversion
884         gives us an lvalue that we're about to bind to a reference.
885         Set INNER to indicate pending reference binding on recursive
886         calls.
888 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
890         * class.c (check_field_decls): Pointers to member do not a
891         non-pod struct make, as per DR 148.
893 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
895         * call.c (joust): cp_pedwarn when using gnu extension concerning
896         worst conversion sequences.
898 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
900         Implement using decls inside template functions.
901         * decl2.c (validate_nonmember_using_decl): Don't special case
902         fake_std_node in the global namespace. Don't reject early when
903         processing a template.
904         (do_local_using_decl): Add to statement tree. Don't do further
905         processing when building a template.
906         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
908 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
910         * decl2.c (do_nonmember_using_decl): Don't complain if we find
911         same function. Do complain about ambiguating extern "C"
912         declarations.
914 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
916         * pt.c (invalid_nontype_parm_type_p): Deprecate float and
917         complex types.
919 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
921         Fix ctor vtable vcall offsets.
922         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
923         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
924         (get_matching_base): Remove.
925         (get_original_base): New function.
926         (build_vtbl_initializer): Initialize vid.rtti_binfo. 
927         Use a virtual thunk for a ctor vtable with an index
928         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
929         primary base within a constructor vtable. Only set
930         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
931         when primary base has been lost.
932         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
934 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
936         * spew.c (yylex): Correct handling of friends.
938         * mangle.c (write_encoding): Pass write_function_type the
939         FUNCTION_DECL for the function being encoded.
940         (write_function_type): Pass it along to write_bare_function_type.
941         (write_bare_function_type): Pass it along to write_method_parms.
942         (write_method_parms): Don't mangle the compiler-generated
943         parameters to a constructor or destructor.
945 2001-02-22  Andreas Jaeger  <aj@suse.de>
947         * optimize.c: Include toplev.h for
948         note_deferral_of_defined_inline_function prototype.
950 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
952         * cp-tree.h (struct lang_decl_inlined_fns): New.
953         (struct lang_decls): Add inlined_fns.
954         (DECL_INLINED_FNS): New macro.
955         * optimize.c (struct inline_data): Add inlined_fns.
956         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
957         (inlinable_function_p): Likewise, fix typo in comment,
958         function is not inlinable if it already inlined function currently
959         being optimized.
960         (expand_call_inline): Add fn to inlined_fns if neccessary.
961         (optimize_function): Initialize inlined_fns.
962         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
963         * decl.c (mark_inlined_fns): New function.
964         (lang_mark_tree): Call it.
966 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
968         * decl2.c (set_decl_namespace): Allow explicit instantiations in
969         any namespace.
971 2001-02-21  Jason Merrill  <jason@redhat.com>
973         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
974         (DECL_UNINLINABLE): Move to middle-end.
976         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
977         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
978         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
979         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
980         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
982         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
983         second parm of op=.
985 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
987         * optimize.c (expand_call_inline): Don't walk subtrees of type
988         nodes.
990 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
992         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
993         for a destructor.
995 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
997         * cp-tree.h (new_abi_rtti_p): Remove.
998         (name_mangling_version): Likewise.
999         (flag_do_squangling): Likewise.
1000         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
1001         * decl.c (grokfndecl): Likewise.
1002         * decl2.c (name_mangling_version): Remove.
1003         (flag_do_squangling): Likewise.
1004         (lang_f_options): Remove `squangle'.
1005         (unsupported_options): Add `squangle'.
1006         (cxx_decode_option): Issue a warning about uses of
1007         -fname-mangling-version.
1008         (finish_file): Remove old ABI support.
1009         * pt.c (check_explicit_specialization): Likewise.
1010         (tsubst_decl): Likewise.
1011         * rtti.c (init_rtti_processing): Likewise.
1012         (build_headof): Likewise.
1013         (get_tinfo_decl_dynamic): Likewise.
1014         (tinfo_from_decl): Likewise.
1015         (build_dynamic_cast_1): Likewise.
1016         (synthesize_tinfo_var): Likewise.
1017         * init.c (build_new): Allow enumeration types for the array-bounds
1018         in a direct-new-declarator.
1020         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
1022         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
1023         TREE_PROTECTED from the template being specialized.
1025 2001-02-18  Jason Merrill  <jason@redhat.com>
1027         Do put the VTT parameter in DECL_ARGUMENTS.
1028         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
1029         (current_vtt_parm): New macro.
1030         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
1031         (DECL_HAS_VTT_PARM_P): New macro.
1032         (DECL_VTT_PARM): Remove.
1033         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
1034         * decl.c (duplicate_decls): Only copy the operator code if
1035         appropriate.
1036         (start_function): Set current_vtt_parm.
1037         (lang_mark_tree): Don't mark vtt_parm.
1038         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
1039         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
1040         * class.c (build_clone): Maybe remove the VTT parm.
1041         * optimize.c (maybe_clone_body): Set up the VTT parm.
1042         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
1043         * call.c (build_over_call): Just allow the VTT arg.
1044         * method.c (make_thunk): Don't set DECL_VTT_PARM.
1045         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
1046         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
1047         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
1048         * error.c (dump_function_decl): Likewise.
1049         * call.c (build_user_type_conversion_1, convert_like_real): Abort
1050         if we try to call a constructor with in-charge or VTT parms.
1051         * method.c (skip_artificial_parms_for): New fn.
1052         * call.c (add_function_candidate, build_over_call): Call it.
1053         * call.c (build_new_method_call): Use current_vtt_parm.
1054         * init.c (expand_virtual_init): Likewise.
1055         * class.c (same_signature_p): No longer static.
1056         * cp-tree.h: Declare it.
1057         * search.c (look_for_overrides_r): Use it.
1059 2001-02-17  Anthony Green  <green@redhat.com>
1061         * lang-specs.h: Add more -D__EXCEPTIONS.
1063 2001-02-17  Jason Merrill  <jason@redhat.com>
1065         * decl.c (bad_specifiers): Allow throw specs on things with
1066         pointer-to-function or -member-function type.
1067         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
1068         a pmf.
1070 2001-02-16  Jason Merrill  <jason@redhat.com>
1072         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
1073         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
1074         * optimize.c (maybe_clone_body): Don't substitute it.
1075         * call.c (build_new_method_call): Check in_chrg instead.
1076         * init.c (expand_virtual_init): Likewise.
1078 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
1080         * call.c (convert_like_real): Create a temporary for non-lvalue.
1082 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
1084         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
1085         class-type introduces at least a type-name.
1087 2001-02-16  Jason Merrill  <jason@redhat.com>
1089         * optimize.c (remap_block): If we're compiling a clone, pass the
1090         new block to insert_block.
1092 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
1094         * typeck.c (build_unary_op): Clarify error message.
1096 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
1098         * pt.c (push_template_decl_real): Don't remangle the name of a
1099         class template.
1101 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
1103         * friend.c (do_friend): Don't take the nested [template] class
1104         into account when deciding whether to warn about the friend
1105         function not referring to a template function.
1107 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1109         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
1110         section.
1111         * init.c (emit_base_init): Remove incorrect comment about
1112         virtual bases.
1113         * method.c (make_thunk): Fix comment alignment.
1115 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1117         Kill remnants of this is variable.
1118         * cp-tree.h (flag_this_is_variable): Remove.
1119         * decl2.c (flag_this_is_variable): Remove.
1120         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
1121         (build_vbase_path): The path is non-static, even in a cdtor.
1122         (resolves_to_fixed_type_p): Add additional return value.
1123         * search.c (init_vbase_pointers): Adjust.
1124         * tree.c (lvalue_p_1): Adjust.
1125         * typeck.c (mark_addressable): Adjust.
1127 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1129         * pt.c (unify): Don't check cv quals of array types.
1131 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1133         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
1134         check whether we already have the type.
1136 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1138         * typeck2.c (process_init_constructor): Check
1139         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
1141 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1143         * errfn.c (cp_deprecated): Tweak diagnostic text.
1144         * parse.y (new_initializer): Deprecate initializer lists
1145         extension.
1147 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
1149         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
1150         Remove spurious information in comment. Allow further
1151         adjustments of REFERENCE_TYPE args.
1153 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
1155         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
1156         * call.c (build_op_delete_call): Simplify to remove duplicate
1157         code.
1158         * class.c (clone_function_decl): Don't build the deleting variant
1159         of a non-virtual destructor.
1160         * decl.c (finish_destructor_body): Don't call delete if this is a
1161         non-virtual destructor.
1162         * init.c (build_delete): Explicitly call `operator delete' when
1163         deleting an object with a non-virtual destructor.
1165 2001-02-13  Jason Merrill  <jason@redhat.com>
1167         * lang-specs.h: Add more __EXCEPTIONS.
1169 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
1171         Remove old ABI support.
1173 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
1175         * decl2.c (flag_vtable_thunks): Always set it to 1.
1176         (flag_new_abi): Likewise.
1177         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
1179         * Makefile.in (g++spec.o): Fix typo.
1181 2001-02-09  Jason Merrill  <jason@redhat.com>
1183         * lang-specs.h: Restore definition of __EXCEPTIONS.
1185 2001-02-08  Jason Merrill  <jason@redhat.com>
1187         * search.c (shared_member_p): New function.
1188         (lookup_field_r): Use it.
1189         * cp-tree.h (SHARED_MEMBER_P): Remove.
1191         * method.c (process_overload_item): Handle template-dependent array
1192         bounds.
1193         * pt.c (type_unification_real): If we end up with undeduced nontype
1194         parms, try again.
1196         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
1197         types.
1199         * typeck2.c (friendly_abort): Don't say anything if we have
1200         earlier errors or sorries.
1202         * decl.c (check_tag_decl): Notice attempts to redefine bool and
1203         wchar_t.  Ignore if in_system_header.
1205         * decl.c (maybe_push_cleanup_level): New fn...
1206         (start_decl_1): ...split out from here.
1207         * cvt.c (build_up_reference): Use it.
1208         * cp-tree.h: Declare it.
1210 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
1212         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
1213         spec.
1215 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
1217         * pt.c (lookup_template_class): Make sure it's a primary
1218         template or template_template_parm when called from the parser.
1219         (instantiate_template_class): Add assertion.
1221 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
1223         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
1224         from error_mark_node.
1226 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
1228         Fix specification and implementation bugs in V3 ABI
1229         construction vtables.
1230         * cp-tree.h (flag_dump_class_layout): New flag.
1231         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
1232         (BINFO_LOST_PRIMARY_P): New flag.
1233         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
1234         (BINFO_PRIMARY_MARKED_P): Rename to ...
1235         (BINFO_PRIMARY_P): ... here.
1236         (binfo_via_virtual): New prototype.
1237         * decl2.c (flag_dump_class_layout): New flag.
1238         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
1239         use `=' as a file name separator.
1240         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
1241         bases.
1242         (build_vtbl_address): If this is a virtual primary base, then
1243         get the vtbl of what it is ultimately primary for.
1244         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
1245         for BINFO_PRIMARY_P.
1246         (dfs_skip_nonprimary_vbases_markedp): Likewise.
1247         (get_shared_vbase_if_not_primary): Likewise.
1248         (dfs_get_pure_virtuals): Likewise.
1249         (expand_upcast_fixups): Likewise.
1250         (fixup_virtual_upcast_offsets): Likewise.
1251         (dfs_find_vbase_instance): Likewise.
1252         (find_vbase_instance): Likewise.
1253         (binfo_from_vbase): Adjust comment to reflect reality.
1254         (binfo_via_virtual): New function.
1255         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
1256         for binfo walking during VTT construction.
1257         (dfs_mark_primary_bases): Remove.
1258         (force_canonical_binfo_r): New function.
1259         (force_canonical_binfo): New function.
1260         (mark_primary_virtual_base): New function.
1261         (mark_primary_bases): Walk in inheritance graph order, use
1262         mark_primary_virtual_base.
1263         (determine_primary_base): Use some more intermediate variables.
1264         (dfs_find_final_overrider): Don't check for overriding along a
1265         virtual path.
1266         (dfs_modify_vtables): Walk into primary virtual bases too.
1267         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
1268         (build_base_fields): Likewise.
1269         (dfs_set_offset_for_unshared_vbases): Likewise.
1270         (layout_virtual_bases): Likewise.
1271         (end_of_class): Likewise.
1272         (finish_struct_1): Call dump_class_hierarchy, if requested.
1273         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
1274         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
1275         (dump_class_hierarchy): Add file parameter. Append to file, if
1276         required.
1277         (finish_vtbls): Adjust accumulate_vtbl_inits call.
1278         Use canonical base for virtual bases.
1279         (build_vtt): Add more comments. Adjust build_vtt_inits call.
1280         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
1281         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
1282         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
1283         virtual VTTs.
1284         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
1285         from DATA.  We want virtual primary bases and all bases via virtual.
1286         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
1287         virtual base when not a construction vtable.
1288         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
1289         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
1290         Use canonical bases when processing virtual bases.
1291         (accumulate_vtbl_inits): We're interested in any base via a
1292         virtual path.
1293         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
1294         within a construction vtable, determine what is being overridden.
1295         (build_vtbl_initializer): Add more comments
1296         (add_vcall_offset_vtbl_entries_1): Adjust comment.
1297         (build_rtti_vtbl_entries): Check if the base has lost its
1298         primary.
1300 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
1302         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
1304 Sun Feb  4 15:52:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1306         * decl.c (pushdecl): Call abort instead of fatal.
1307         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
1308         * init.c (build_new_1): Likewise.
1309         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
1310         * decl.c (build_typename_type): hash_table_init now returns void.
1311         decl.c (init_decl_processing): Make an error non-fatal.
1313 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
1315         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
1316         Document.
1317         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
1318         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
1319         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
1320         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
1321         * decl.c (maybe_commonize_var): Use the new name-mangling where
1322         appropriate.
1323         * decl2.c (comdat_linkage): Enhance comments.  Make all
1324         compiler-generated things static, if COMDAT is not available.
1325         (get_tinfo_decl): Do not make typeinfo objects that belong in the
1326         library COMDAT.
1327         (tinfo_base_init): Use the correct mangled name for typeinfo
1328         strings, and push them into the global scope.
1329         (typeinfo_in_lib_p): New function.
1330         (synthesize_tinfo_var): Use it.
1331         (create_real_tinfo_var): Likewise.
1333 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
1335         * decl.c (push_class_binding): Use context_for_name_lookup instead
1336         of CP_DECL_CONTEXT.
1337         * search.c (context_for_name_lookup): Remove static.  Check for NULL
1338         context in the loop.
1339         * cp-tree.h (context_for_name_lookup): Add prototype.
1341 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
1343         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
1344         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
1345         Remove.
1346         * call.c (convert_class_to_reference, build_user_type_conversion_1,
1347         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
1349 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
1351         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
1352         of macros used when compiling g++spec.c.
1353         * g++spec.c (lang_specific_driver): Link with the shared
1354         libgcc by default.
1356 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
1358         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
1359         make_reference_declarator, make_call_declarator), method.c
1360         (implicitly_declare_fn), parse.y (namespace_using_decl,
1361         notype_unqualified_id, expr_or_declarator, new_type_id,
1362         after_type_declarator, direct_after_type_declarator,
1363         notype_declarator, complex_notype_declarator,
1364         complex_direct_notype_declarator, qualified_id,
1365         notype_qualified_id, overqualified_id, direct_new_declarator,
1366         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
1367         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
1368         instead of build_parse_node.
1370 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1372         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
1373         (minus_one_node): Moved to top level gcc directory.  Renamed
1374         to integer_minus_one_node.
1376         * init.c (init_init_processing): Don't set minus_one_node.
1377         (build_vec_init): Use integer_minus_one_node.
1379         * rtti.c (get_tinfo_decl_dynamic): Likewise.
1381 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
1383         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
1384         identical and they would be replaced with constant, remove
1385         MODIFY_EXPR from the tree.
1387 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1389         * Make-lang.in: Remove all dependencies on defaults.h.
1390         * call.c: Don't include defaults.h.
1391         * decl.c: Likewise.
1392         * decl2.c: Likewise.
1393         * except.c: Likewise.
1394         * pt.c: Likewise.
1395         * rtti.c: Likewise.
1396         * tree.c: Likewise.
1397         * typeck.c: Likewise.
1399 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
1401         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
1402         operators even in "C" linkage.
1403         * method.c (set_mangled_name_for_decl): Likewise.
1404         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
1405         overloaded operators in "C" linkage.
1407 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
1409         * pt.c (tsubst_decl): Remove IN_DECL parameter.
1410         (tsubst_arg_types): Check parameter is not void.
1411         (tsubst): Adjust tsubst_decl call.
1413 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
1415         * call.c (add_builtin_candidate): Quote std properly, from
1416         previous change.
1418 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1420         * pt.c (check_explicit_specialization): Clone constructors and
1421         destructors.
1423 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
1425         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
1426         indicates anything special about template depth. Make sure we
1427         only count the user visible template classes.
1429 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
1431         * call.c (build_conv): Typo in comment.
1432         (add_builtin_candidate): Add more explanation.
1433         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
1434         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
1435         when we have enumeral types.
1436         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
1437         candidates for relops and eqops.
1438         (joust): Simplify control flow. Allow a non-template user
1439         function to hide a builtin.
1441 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
1443         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
1444         (more_specialized): Add deduction parameter.
1445         * call.c (joust): Adjust more_specialized call.
1446         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
1447         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
1448         (get_bindings_order): Remove.
1449         (get_bindings_real): Add DEDUCE parameter.
1450         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
1451         REFERENCE_TYPE jig for DEDUCE_ORDER.
1452         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
1453         maybe_adjust_types_for_deduction.
1454         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
1455         directly.
1456         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
1457         (check_cv_quals_for_unify): Use new unify qualifier flags.
1458         (unify): Clear new unify qualifier flags.
1459         (get_bindings_real): Add DEDUCE parameter.
1460         (get_bindings): Adjust call to get_bindings_real.
1461         (get_bindings_overload): Likewise.
1462         (most_specialized_instantiation): Adjust call to
1463         more_specialized.
1465 2001-01-19  Jason Merrill  <jason@redhat.com>
1467         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
1469         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
1470         -fnew-abi.
1472 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
1474         * decl2.c (arg_assoc_class): Fix double iteration logic.
1476 2001-01-19  Jason Merrill  <jason@redhat.com>
1478         * init.c (build_delete): Always call convert_force to strip cv-quals.
1480         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
1481         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
1482         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
1484 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
1486         * search.c (get_vbase_1): Count only virtual bases.
1488 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
1490         * class.c (duplicate_tag_error): Robustify flag clearing.
1492 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
1494         * cp-tree.h (lookup_template_class): Add complain parm.
1495         * decl.c (lookup_namespace_name): Adjust call to
1496         lookup_template_class.
1497         (make_typename_type): Likewise.
1498         * semantics.c (finish_template_type): Likewise.
1499         * pt.c (lookup_template_class): Add complain parm. Adjust.
1500         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
1501         (tsubst): Likewise.
1503 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
1505         * pt.c (copy_default_args_to_explicit_spec): Preserve
1506         object's CV quals. Reorganize.
1508 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
1510         * typeck.c (build_modify_expr): Say `initialization' for
1511         INIT_EXPRs.
1512         * init.c (build_default_init): Convert to enumeral type, if
1513         needed.
1515 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
1517         * parse.y (nomods_initdcl0): Properly set things up for
1518         initdcl0_innards.
1520 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
1522         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
1523         (type_unification_real): Set it.
1524         (unify): Use it.
1526 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
1528         * decl.c (finish_destructor_body): Convert to vbase pointer here.
1530 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
1532         * semantics.c (begin_class_definition): Check we're not inside a
1533         template parm list.
1535 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
1537         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
1538         BASELINK_P.
1540 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1542         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
1543         * call.c (build_over_call): Add comment.
1545 2001-01-16 Daniel Berlin <dberlin@redhat.com>
1547         * cvt.c (ocp_convert): Handle vector type conversion
1548         * typeck2.c (digest_init): Handle vector type initializations
1550 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
1552         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
1553           was given.
1555 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
1557         * pt.c (check_nontype_parm): Rename to ...
1558         (invalid_nontype_parm_type_p): ... here.
1559         (process_template_parm): Adjust.
1560         (convert_template_argument): Adjust.
1562 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
1564         * pt.c (check_nontype_parm): New function.
1565         (process_template_parm): Use it.
1566         (convert_template_argument): Use it.
1567         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
1568         member.
1570 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
1572         * tree.c: Add defaults.h
1573         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
1574         * Make-lang.in (cp/tree.o): Add defaults.h.
1576 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
1578         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
1580 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
1582         * g++.1: Change to be ".so man1/gcc.1".
1584 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
1586         * Make-lang.in (c++.info, c++.install-info): Build and install g++
1587         internals info.
1588         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
1589         ($(srcdir)/cp/g++int.info): New target.
1590         * gxxint.texi: Add info directory entry.  Use @@ in email address.
1591         * .cvsignore: Update.
1593 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
1595         * typeck.c (build_c_cast): Do template processing earlier.
1596         Always pedwarn on array casts.
1598 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
1600         * friend.c (make_friend_class): Make sure a templated class is
1601         actually a template.
1603 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
1605         * decl2.c (get_guard): Set linkage from guarded decl.
1607 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
1609         * call.c (convert_default_arg): Check for unprocessed
1610         DEFAULT_ARG.
1611         * cp-tree.h (replace_defarg): Move to spew.c.
1612         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
1613         spew.c, which is where they really are.
1614         (done_pending_defargs): Declare.
1615         (unprocessed_defarg_fn): Declare.
1616         * decl.c (replace_defarg): Move to spew.c
1617         * parse.y (structsp): Call done_pending_defargs.
1618         * spew.c (defarg_fns): Rearrange list structure.
1619         (defarg_fnsdone): New static variable.
1620         (defarg_depfns): New static variable.
1621         (init_spew): Adjust.
1622         (add_defarg_fn): Store the type in TREE_TYPE.
1623         (do_pending_defargs): Detect and deal with ordering constraints
1624         and circularity.
1625         (done_pending_defargs): New function.
1626         (unprocessed_defarg_fn): New function.
1627         (replace_defarg): Moved from decl.c. Robustify. Don't save
1628         if circularity detected.
1630 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
1632         * pt.c (unify): Check array has a domain, before checking
1633         whether it is variable sized.
1635 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
1637         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
1638         parameters with pointers to arrays of unknown bound.
1640 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
1642         * parse.y (template_parm_header, template_spec_header): New
1643         reductions. Split out from ...
1644         (template_header): ... here. Use them.
1645         (template_template_parm): Use template_parm_header.
1646         * semantics.c (finish_template_template_parm): Add assert.
1648 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
1650         * mangle.c (write_builtin_type): Fix thinko.
1652         * pt.c (copy_default_args_to_explicit_spec_1): New function.
1653         (copy_default_args_to_explicit_spec): Likewise.
1654         (check_explicit_specialization): Use it.
1656         * class.c (finish_struct_1):  Remove last argument in call to
1657         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
1658         * decl.c (builtin_function): Likewise.
1659         (build_cp_library_fn): Likewise.
1660         (check_initializer): Likewise.
1661         (make_rtl_for_nonlocal_decl): Likewise.
1662         (cp_finish_decl): Likewise.
1663         (start_function): Likewise.
1664         * decl2.c (finish_anon_union): Likewise.
1665         * friend.c (do_friend): Likewise.
1666         * init.c (build_java_class_ref): Likewise.
1667         * method.c (make_thunk): Likewise.
1668         * pt.c (tsubst_friend_function): Likewise.
1669         * semantics.c (expand_body): Likewise.
1671 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
1673         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
1674         looking at DECL_CLONED_FUNCTION for non-functions.
1676 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
1678         * error.c (dump_template_parameter): Use parm to determine how
1679         to print default value.
1681 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
1683         * class.c (duplicate_tag_error): Clear more flags.
1685 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
1687         * call.c (build_new_method_call): Use binfo_for_vbase.
1689 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
1691         * cp-tree.h (flag_cond_mismatch): Don't declare.
1692         * decl2.c (flag_cond_mismatch): Don't define.
1693         (lang_f_options): Remove cond-mismatch.
1694         (unsupported_options): Add cond-mismatch.
1696 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
1698         * class.c (handle_using_decl): Reject using of constructor name
1699         of sourcing class. Allow injecting of a method with same name as
1700         nested class. Fixup error messages.
1702 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
1704         * decl2.c (lang_decode_option): Handle -Wformat=2.
1706 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
1708         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
1709         initialized_in_class.
1710         (DECL_DEFINED_IN_CLASS_P): Rename to ...
1711         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
1712         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
1713         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
1714         * pt.c (check_default_tmpl_args): Adjust for
1715         DECL_INITIALIZED_IN_CLASS_P.
1716         (instantiate_class_template): Likewise.
1717         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
1719         * class.c (finish_struct): Constify saved_filename.
1721 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
1723         * class.c (duplicate_tag_error): Adjust diagnostic.
1724         (finish_struct): Locally set location to start of struct.
1725         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
1727 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
1729         * decl.c (struct binding_level): Adjust class_shadowed comments
1730         to reflect reality.
1731         (push_class_level_binding): Ajust comments to reflect reality.
1732         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
1733         Don't set TREE_VALUE on the class_shadowed list.
1735 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
1737         * decl2.c (acceptable_java_type): Allow references too.
1738         * init.c (build_java_class_ref): When using the new ABI, search
1739         `class$' and have it mangled with `mangle_decl.'
1740         * mangle.c (write_java_integer_type_codes): New function.
1741         (write_builtin_type): Detect and mangle Java integer and real
1742         types.
1744 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
1746         * decl2.c (grokfield): Don't accept `asm' specifiers for
1747         non-static data members.
1749 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1751         * expr.c (cplus_expand_expr): Don't reset `target'.
1753 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
1755         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
1757 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
1759         * parse.y (template_datadef): Check for error_mark_node.
1761 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
1763         * cp-tree.def (DEFAULT_ARG): Make `x' class.
1765 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
1767         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
1768         (record_builtin_type): Make non-static.
1769         (flag_short_double): Don't declare.
1770         (init_decl_processing): Remove the creation of many tree nodes now
1771         in c_common_nodes_and_builtins.
1772         (build_void_list_node): New function.
1773         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
1774         * cp-tree.h (flag_short_wchar): Don't declare.
1776 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
1778         * call.c (build_conv): Don't use build1 for USER_CONV.
1779         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
1781 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
1783         * lex.c (lang_init): Call c_common_lang_init.
1785 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
1787         * search.c (lookup_fnfields_here): Remove.
1788         (look_for_overrides_r): Use lookup_fnfields_1.
1789         Ignore functions from using declarations.
1791 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
1793         Implement exceptions specifiers for implicit member functions.
1794         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
1795         * method.c (synthesize_exception_spec): New function.
1796         (locate_dtor, locate_ctor, locate_copy): New functions.
1797         (implicitly_declare_fn): Generate the exception spec too.
1798         * search.c (check_final_overrider): Check artificial functions
1799         too.
1800         * typeck2.c (merge_exception_specifiers): New function.
1802 2001-01-03  Jason Merrill  <jason@redhat.com>
1804         * init.c (build_default_init): New fn.
1805         (perform_member_init): Split out from here.
1806         (build_new_1): Use it.  Simplify initialization logic.
1807         (build_vec_init): Take an array, rather than a pointer and maxindex.
1808         Speed up simple initializations.  Don't clean up if we're assigning.
1809         * cp-tree.h: Adjust.
1810         * decl2.c (do_static_initialization): Remove TREE_VEC case.
1811         * parse.y (new_initializer): Return void_zero_node for ().
1812         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
1813         * typeck2.c (digest_init): Only complain about user-written
1814         CONSTRUCTORs.
1816 2000-12-22  Mike Stump  <mrs@wrs.com>
1818         * decl2.c: (max_tinst_depth): Increase to 50.
1820 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
1822         * class.c (invalidate_class_lookup_cache): Zero the
1823         previous_class_values.
1824         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
1825         TREE_INT_CST_HIGH.
1826         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
1827         * decl.c (free_bindings): New variable.
1828         (push_binding): Don't create a new binding if we have one on the
1829         free list.
1830         (pop_binding): Put old bindings on the free list.
1831         (init_decl_processing): Use size_int, not build_int_2.
1832         Register free_bindings as a GC root.
1833         (cp_make_fname_decl): Use size_int, not build_int_2.
1834         (push_inline_template_parms_recursive): Likewise.
1835         (end_template_parm_list): Likewise.
1836         (for_each_tempalte_parm): Do not use walk_tree_without_duplicates.
1837         (tsubst_template_parms): Use size_int, not build_int_2.
1838         (tsubst): Likewise.
1839         * rtti.c (get_vmi_pseudo_type_info): Likewise.
1841 2001-01-02  Richard Henderson  <rth@redhat.com>
1843         * parse.y (asm): Set ASM_INPUT_P.
1845 2001-01-02  Jason Merrill  <jason@redhat.com>
1847         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
1848         for v3 ABI.
1850         * typeck.c (cp_truthvalue_conversion): New fn.
1851         * cvt.c (ocp_convert): Use it.
1853         * cp-tree.h: Lose c-common.c decls.
1855         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
1856         * cvt.c (convert_to_void): Use type_unknown_p.
1858         * typeck.c (strip_all_pointer_quals): Also strip quals from
1859         pointer-to-member types.
1861         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
1862         parse.y as C.
1864         * call.c (build_new_method_call): Do evaluate the object parameter
1865         when accessing a static member.
1866         * typeck.c (build_component_ref): Likewise.
1868 2001-01-02  Andreas Jaeger  <aj@suse.de>
1870         * decl.c (cp_missing_noreturn_ok_p): New.
1871         (init_decl_processing): Set lang_missing_noreturn_ok_p.
1873 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
1875         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
1877 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
1879         * class.c (pushclass): Remove #if 0'd code.
1880         * cp-tree.h (overload_template_name): Remove.
1881         * decl.c (store_bindings): Simplify.
1882         (pop_from_top_level): Likewise.
1883         * pt.c (overload_template_name): Remove.
1884         (instantiate_decl): Don't call push_to_top_level if it's not
1885         needed.
1887 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
1889         * pt.c (register_local_specialization): Don't return a value.
1890         (lookup_template_class): Use move-to-front heuristic when looking
1891         up template instantiations.
1892         (instantiate_decl): Only push_to_top_level when we're actually
1893         going to instantiate the template.
1895 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
1897         * search.c (binfo_for_vtable): Return least derived class, not
1898         most.  Handle secondary vtables.
1900 2000-12-22  Jason Merrill  <jason@redhat.com>
1902         * pt.c (more_specialized): Don't optimize len==0.
1903         (fn_type_unification): If we're adding the return type, increase len.
1905         * typeck.c (build_binary_op): Fix pmf comparison logic.
1907         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
1908         DECL_STATIC_FUNCTION_P.
1910         * semantics.c (genrtl_finish_function): Don't try to jump to
1911         return_label unless it exists.
1913         In partial ordering for a call, ignore parms for which we don't have
1914         a real argument.
1915         * call.c (joust): Pass len to more_specialized.
1916         (add_template_candidate_real): Strip 'this', pass len.
1917         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
1918         (get_bindings_order): New fn.  Pass len down.
1919         (get_bindings_real): Strip 'this', pass len.
1920         (fn_type_unification): Likewise.
1921         (type_unification_real): Succeed after checking 'len' args.
1922         (most_specialized_instantiation): Lose explicit_args parm.
1923         * class.c (resolve_address_of_overloaded_function): Strip 'this',
1924         pass len.
1926 2000-12-21  Jason Merrill  <jason@redhat.com>
1928         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
1929         DECL_TEMPLATE_RESULT.
1931         * search.c (lookup_field_r): Call lookup_fnfields_1, not
1932         lookup_fnfields_here.
1934         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
1936         * call.c (build_object_call): Also allow conversions that return
1937         reference to pointer to function.
1938         (add_conv_candidate): Handle totype being ref to ptr to fn.
1939         (build_field_call): Also allow members of type reference to function.
1940         Lose support for calling pointer to METHOD_TYPE fields.
1942         * error.c (dump_expr): Handle *_CAST_EXPR.
1944         * typeck2.c (build_scoped_ref): Always convert to the naming class.
1946         * tree.c (break_out_cleanups): Lose.
1947         * cp-tree.h: Remove prototype.
1948         * typeck.c (build_component_ref): Don't break_out_cleanups.
1949         (build_compound_expr): Likewise.
1950         * semantics.c (finish_expr_stmt): Likewise.
1952 2000-12-20  Richard Henderson  <rth@redhat.com>
1954         * cp-tree.h: Update declarations.
1955         * decl.c (finish_case_label): Return the new stmt node.
1956         * semantics.c (finish_goto_stmt): Likewise.
1957         (finish_expr_stmt, finish_return_stmt): Likewise.
1958         (finish_break_stmt, finish_continue_stmt): Likewise.
1959         (finish_asm_stmt): Likewise.
1960         * parse.y (already_scoped_stmt): Set STMT_LINENO.
1961         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
1962         (simple_if, simple_stmt): Return the new stmt node.
1963         (save_lineno): New.
1965 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
1967         * cp-tree.h: Don't declare warn_long_long.
1969 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1971         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
1972         IS_AGGR_TYPE.
1974 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1976         * pt.c (unify): Handle when both ARG and PARM are
1977         BOUND_TEMPLATE_TEMPLATE_PARM.
1979 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1981         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
1982         DECL_TEMPLATE_PARM_P.
1984 2000-12-15  Jason Merrill  <jason@redhat.com>
1986         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
1988         * init.c (build_new_1): Don't strip quals from type.
1990         * decl.c (pushdecl): Don't check for linkage on a non-decl.
1992         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
1994         * call.c (build_new_function_call): Lose space before paren in
1995         error message.
1996         (build_new_method_call): Likewise.
1998         * typeck2.c (build_m_component_ref): Propagate quals from datum.
2000 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2002         * pt.c (check_explicit_specialization): Propagate default
2003         function arguments to explicit specializations.
2005 2000-12-13  DJ Delorie  <dj@redhat.com>
2007         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
2008         and <? operators.
2010 2000-12-08  Jason Merrill  <jason@redhat.com>
2012         * error.c (dump_function_name): Don't let the user see __comp_ctor.
2014         Clean up copy-initialization in overloading code.
2015         * call.c (build_user_type_conversion_1): Die if we are asked to
2016         convert to the same or a base type.
2017         (implicit_conversion): Avoid doing so.  Lose reference binding code.
2018         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
2019         direct-initialization.  Also do direct-init part of copy-init.
2020         (build_user_type_conversion): Don't provide context to convert_like.
2021         * cvt.c (ocp_convert): build_user_type_conversion will now provide
2022         the constructor call for copy-init.
2024         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
2025         instantiation of a member template.
2026         (do_decl_instantiation): Not here.
2028 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
2030         * class.c (check_field_decls): Don't special case anonymous
2031         fields in error messages.
2032         (note_name_declared_inpwdpwd
2033         _class): Use %D on diagnostic.
2035         * tree.c (pod_type_p): Use strip_array_types.
2036         (cp_valid_lang_attribute): Likewise.
2037         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
2038         multiple evaluations.
2039         (cp_has_mutable_p): Use strip_array_types.
2041 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
2043         * cp-tree.h (sufficient_parms_p): Declare new function.
2044         * call.c (sufficient_parms_p): New function, broken out of ...
2045         (add_function_candidate): ... here. Use it.
2046         (add_conv_candidate): Use it.
2047         * decl.c (grok_ctor_properties): Use it.
2049 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
2051         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
2053 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
2055         * decl2.c (lang_decode_option): Handle -Wformat-security.
2057 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2059         * pt.c (verify_class_unification): New function.
2060         (get_class_bindings): Use it.
2061         (try_class_unification): Tidy.
2062         (unify): Handle when argument of a template-id is not
2063         template parameter dependent.
2064         (template_args_equal): Handle when TREE_CODE's do not match.
2066 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
2068         * lang-specs.h (c++): When invoking the stand-alone preprocessor
2069         for -save-temps, pass all relevant -Defines to it, and then don't
2070         pass them to cc1plus.
2072 2000-12-05  Will Cohen  <wcohen@redhat.com>
2074         * decl.c (finish_case_label): Cleared
2075         more_cleanups_ok in surrounding function scopes.
2076         (define_label): Likewise.
2078 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
2080         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
2081         (get_matching_virtual): Remove.
2082         (look_for_overrides): Declare new function.
2083         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
2084         DECL_VINDEX here.
2085         * class.c (check_for_override): Move base class iteration code
2086         to look_for_overrides.
2087         * search.c (next_baselink): Remove.
2088         (get_virtuals_named_this): Remove.
2089         (get_virtual_destructor): Remove.
2090         (tree_has_any_destructors_p): Remove.
2091         (struct gvnt_info): Remove.
2092         (check_final_overrider): Remove `virtual' from error messages.
2093         (get_matching_virtuals): Remove. Move functionality to ...
2094         (look_for_overrides): ... here, and ...
2095         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
2096         to be overriding.
2098 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
2100         * typeck.c (get_delta_difference): If via a virtual base,
2101         return zero.
2102         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
2103         adjustment.
2105 2000-12-04  Richard Henderson  <rth@redhat.com>
2107         * error.c (dump_tree): Use output_add_string not OB_PUTS.
2109 2000-12-04  Jason Merrill  <jason@redhat.com>
2111         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
2112         (write_builtin_type): Pass intSI_type_node and the like through
2113         type_for_mode.
2114         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
2115         Pass intSI_type_node and the like through type_for_mode.
2116         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
2117         * pt.c (tsubst, unify): Likewise.
2118         * tree.c (walk_tree): Likewise.
2119         * error.c (dump_type): Likewise.
2120         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
2122         * Make-lang.in: Tweak top comment for emacs.
2123         (cp/TAGS): Restore.
2125         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
2127         * class.c (clone_function_decl): Robustify.
2129 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
2131         * decl.c (store_bindings): Only search in the non modified
2132         old_bindings for duplicates.
2134 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2136         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
2137         TYPE_POLYMORPHIC_P.
2139         * typeck.c (build_static_cast): Remove unused variable.
2141 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2143         * pt.c: Fix typo in comment.
2145 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
2147         * decl2.c (warn_format): Remove definition.
2148         (lang_decode_option): Handle -Wformat-nonliteral,
2149         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
2151 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
2153         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
2154         (init_decl_processing): Don't create string_type_node,
2155         const_string_type_node, wint_type_node, intmax_type_node,
2156         uintmax_type_node, default_function_type, ptrdiff_type_node and
2157         unsigned_ptrdiff_type_node.  Adjust position of call to
2158         c_common_nodes_and_builtins.
2159         (identifier_global_value): New function.
2161 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
2163         * call.c (standard_conversion): Reject pointer to member
2164         conversions from ambiguous, inaccessible or virtual bases.
2165         * typeck.c (build_static_cast): Don't check pointers to members
2166         specially.
2168 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
2170         * method.c (do_build_copy_constructor): Preserve cv
2171         qualifications when accessing source object members.
2172         (do_build_assign_ref): Likewise. Remove separate diagnostics for
2173         unnamed fields.
2175 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
2177         * method.c (do_build_assign_ref): Construct appropriately
2178         CV-qualified base reference. Don't allow const casts in base
2179         conversion.
2181 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
2183         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
2184         incomplete return type.
2186 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2188         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
2189         * semantics.c (finish_base_specifier): Accept a _TYPE not a
2190         _DECL.
2192 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2194         * spew.c (yyerror): Cope if yylval.ttype is NULL.
2196 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2198         * decl.c (grokdeclarator): Diagnose undefined template contexts.
2200 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2202         * decl.c (grokdeclarator): Do type access control on friend
2203         class.
2205 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
2207         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
2208         bison parser ickiness.
2209         * pt.c (tsubst_friend_function): Enter namespace scope when
2210         tsubsting the function name.
2211         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
2213 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
2215         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
2216         * cvt.c (cp_convert_to_pointer): Add force parameter.
2217         Allow conversions via virtual base if forced.
2218         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
2219         (ocp_convert): Likewise.
2220         * search.c (binfo_from_vbase): Return the virtual base's binfo.
2221         * typeck.c (get_delta_difference): Adjust handling of virtual
2222         bases.
2224 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
2226         * tree.c (struct list_hash): Remove.
2227         (list_hash_table): Make it be an htab.
2228         (struct list_proxy): New type.
2229         (list_hash_eq): New function.
2230         (list_hash_pieces): Renamed from ...
2231         (list_hash): ... this.
2232         (list_hash_lookup): Remove.
2233         (list_hash_add): Remove.
2234         (hash_tree_cons): Use the generic hashtable.
2235         (mark_list_hash): Remove.
2236         (init_tree): Create the hashtable.
2238 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
2240         * method.c (build_mangled_C9x_name): Rename to
2241         build_mangled_C99_name.  Change C9X references in comments to
2242         refer to C99.
2244 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
2246         * parse.y (unary_expr): Move VA_ARG from here ...
2247         (primary): ... to here.
2249 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
2251         * semantics.c (finish_id_expr): If type is error_mark, return
2252         error_mark.
2254 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
2256         * pt.c (lookup_template_class): Simplify loop exit constructs.
2257         Cope when there is no partial instantiation of a template
2258         template member.
2260 Thu Nov 23 02:16:47 2000  J"orn Rennecke <amylaar@redhat.com>
2262         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
2264 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
2266         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
2267         prefix.
2269         * pt.c (do_decl_instantiate): Explicitly clone constructors and
2270         destructors that haven't already been cloned.
2272 2000-11-20  Richard Henderson  <rth@redhat.com>
2274         * parse.y (yyparse_1): Rename the parser entry point.
2276 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
2278         * mangle.c (write_name): Use <unscoped-name> for names directly in
2279         function scope.
2280         (write_unscoped_name): Accept names directly in function scope.
2282 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
2284         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
2285         * parse.y (extdef): Add EXPORT reduction.
2286         * spew.c (yylex): Don't skip export here.
2288 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
2290         * decl.c (init_decl_processing): Correct name of pure virtual
2291         function under the new ABI.
2292         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
2293         (throw_bad_typeid): Likewise for bad typeid function.
2295 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
2297         * decl.c (grokparms): Don't even function types of `void' type,
2298         either.
2299         * mangle.c (write_type): Don't crash when confronted with the
2300         error_mark_node.
2302         * decl.c (grokparms): Don't create parameters of `void' type.
2304 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
2306         * lex.c (mark_impl_file_chain): Delete.
2307         (init_parse): Remove call to ggc_add_string_root.  No need to
2308         ggc_strdup a string constant.  Do not add impl_file_chain to GC
2309         roots.
2310         (handle_pragma_implementation): No need to ggc_strdup main_filename.
2312 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
2314         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
2316 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
2318         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
2319         * decl.c (grokdeclarator): Don't reject void parms here.
2320         (require_complete_types_for_parms): Simplify, use
2321         complete_type_or_else.
2322         (grokparms): Remove bitrot. Remove funcdef parm.
2323         Deal with ellipsis parm lists here.
2324         * semantics.c (finish_parmlist): Don't append void_list_node
2325         here. Set PARMLIST_ELLIPSIS_P.
2327 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
2329         * typeck2.c (incomplete_type_error): Reorganise to avoid
2330         excessive diagnostics.
2332 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
2334         * lex.c (struct impl_files, internal_filename): Constify a char *.
2336 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
2338         * mangle.c (write_special_name_constructor): Don't generate
2339         assembler junk when confronted with an old-style constructor.
2340         (write_special_name_destructor): Likewise.
2341         (mangle_decl_string): Do it here instead.
2343 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
2345         * call.c (op_error): Make error messages clearer.
2347 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
2349         * decl.c (wrapup_globals_for_namespace): Don't mark things
2350         TREE_ASM_WRITTEN when they're not.
2352 2000-11-15  Jason Merrill  <jason@redhat.com>
2354         * typeck2.c (friendly_abort): Uncount the error before handing
2355         off to fancy_abort.
2357 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
2359         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
2361 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
2363         * class.c (build_vtbl_initializer): Fix typo in comment.
2364         * typeck.c (expr_sizeof): Don't crash on errors.
2366 2000-11-14  Jim Wilson  <wilson@redhat.com>
2368         * lang-specs.h: Add %2 after %(cc1_options).
2370 2000-11-14  Richard Henderson  <rth@redhat.com>
2372         * typeck.c (c_sizeof): Be strict about casting result value
2373         back to c_size_type_node.
2374         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
2376 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
2378         * typeck.c (build_unary_op): Use boolean_increment from
2379         c-common.c, moving the relevant code there.
2381 2000-11-11  Jason Merrill  <jason@redhat.com>
2383         * typeck.c (mark_addressable): Don't call put_var_into_stack.
2385         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
2386         in inlines.
2388 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2390         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
2391         * lex.c (copy_lang_decl): Likewise.
2393 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
2395         * dump.c (cp_dump_tree): Don't dump function bodies here.
2397         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
2398         (dump.o): Update dependency list.
2399         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
2400         (flag_dump_translation_unit): Likewise.
2401         (CP_TYPE_QUALS): Adjust definition.
2402         (DECL_C_BIT_FIELD): Remove.
2403         (SET_DECL_C_BIT_FIELD): Likewise.
2404         (CLEAR_DECL_C_BIT_FIELD): Likewise.
2405         (add_maybe_template): Likewise.
2406         (strip_array_types): Likewise.
2407         (dump_node_to_file): Likewise.
2408         (cp_dump_tree): New function.
2409         * decl.c (init_decl_processing): Set lang_dump_tree.
2410         * decl2.c (flag_dump_translation_unit): Remove.
2411         * dump.c: Move most of it to ../c-dump.c.
2412         (cp_dump_tree): New function.
2413         * pt.c (add_maybe_template): Remove.
2414         * typeck.c (strip_array_types): Likewise.
2416 2000-11-07  Eric Christopher  <echristo@redhat.com>
2418         * decl.c (init_decl_processing): Change definition of
2419         __wchar_t to wchar_t.  Remove artificial declaration of
2420         wchar_t.
2421         * lex.c: Change instances of __wchar_t to wchar_t.
2423 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
2425         * lex.c (do_identifier): Don't lookup_name for operators.
2426         * parse.y (operator): Save looking_for_typename.
2427         (unoperator): Restore it.
2428         * spew.c (frob_opname): Use nth_token for lookahead.
2430 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
2432         * decl.c (grok_op_properties): Always use coerce_new_type and
2433         coerce_delete_type.
2434         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
2435         exception specification. Tidy up.
2436         (coerce_delete_type): Preserve exception specification. Tidy up.
2438 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
2440         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
2441         (push_binding_level), error.c (cp_tree_printer), pt.c
2442         (process_partial_specialization, tsubst_template_arg_vector),
2443         search.c (lookup_member): Use memset () instead of bzero ().
2445 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
2447         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
2449 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
2451         * Make-lang.in (c++.distdir): Remove.
2453 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
2455         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
2456         declarations from different namespaces to be combined.
2458 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
2460         * decl.c: Include tm_p.h.
2462 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
2464         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
2466 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
2468         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
2469         (build_overload_value), repo.c (open_repo_file), xref.c
2470         (open_xref_file): Use strchr () and strrchr () instead of index ()
2471         and rindex ().
2473 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
2475         * call.c (build_over_call): Call fold on the CALL_EXPR.
2477 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
2479         * error.c (dump_template_decl): Separate template hearders with
2480         space not comma.
2482 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
2484         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
2485         TS_* flags with corresponding TFF_*.  Adjust prototypes of
2486         functions (which used to take a tree_string_flags) to take an int.
2488         * cp-tree.h (enum tree_string_flags): Remove
2489         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
2490         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
2491         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
2492         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
2493         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
2494         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
2495         (type_as_string, decl_as_string, expr_as_string,
2496         context_as_string): Adjust prototype.
2498         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
2499         instead of TS_PLAIN.
2501         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
2502         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
2503         plain `0'.
2505 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
2507         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
2508         (linkage_kind): New enumeration.
2509         (decl_linkage): New function.
2510         * decl2.c (comdat_linkage): Extend comment.
2511         * error.c (dump_function_decl): Print the arguments used to
2512         instantiate a template, even when not printing the type of the
2513         function.
2514         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
2515         not TREE_PUBLIC, to test for external linkage.
2516         * tree.c (decl_linkage): New function.
2518 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
2520         * pt.c (instantiate_decl): Always instantiate static data members
2521         initialized in-class.
2523 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
2525         * Make-lang.in: Move all build rules here from Makefile.in,
2526         adapt to new context.  Wrap all rules that change the current
2527         directory in parentheses.  Expunge all references to $(P).
2528         When one command depends on another and they're run all at
2529         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
2530         all object-file generation rules.  Delete obsolete variables.
2532         * Makefile.in: Delete.
2533         * config-lang.in: Delete outputs= line.
2535 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
2537         * error.c (dump_function_decl): Print no space between
2538         `ptr-operator' the `type-specifier' of the return type.
2539         (dump_type_prefix): Make sure we put space at the appropriate
2540         place.
2542 2000-10-23  Jason Merrill  <jason@redhat.com>
2544         * call.c (equal_functions): Also call decls_match for extern "C" fns.
2546 2000-10-22  Jason Merrill  <jason@redhat.com>
2548         * call.c (build_conditional_expr): Use ocp_convert to force
2549         rvalue conversion.
2551 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
2553         * call.c (standard_conversion): Use RVALUE_CONVs for all
2554         expressions that satisfy lvalue_p, not just those that satisfy
2555         real_lvalue_p.
2557         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
2559         * typeck.c (c_sizeof): Return an expression of `size_t' type,
2560         not one with TYPE_IS_SIZETYPE set.
2561         (dubious_conversion_warnings): Remove special-case code.
2563 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
2565         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
2566         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
2567         (dump_type_prefix): Print vector-of-int as 'int vector'.
2568         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
2569         * tree.c (walk_tree): Handle VECTOR_TYPE.
2571         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
2573 2000-10-21  Jason Merrill  <jason@redhat.com>
2575         * parse.y (operator): Set got_object from got_scope.
2576         Set looking_for_typename.
2577         * decl.c (lookup_name_real): Clear val after setting from_obj.
2578         Reorganize diagnostic.
2580 2000-10-20  Jason Merrill  <jason@redhat.com>
2582         * tree.c (walk_tree): Don't walk into default args.
2584         * error.c (dump_expr): Use host_integerp.
2586 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
2588         * typeck2.c (abstract_virtuals_error): Use "because" instead of
2589         "since" in error message.
2591 Fri Oct 20 13:54:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2593         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
2595 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
2597         * decl.c (revert_static_member_fn): Fixed typo.
2599 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
2601         * class.c (subobject_offset_fn): New type.
2602         (dfs_record_base_offsets): Remove.
2603         (record_base_offsets): Likewise.
2604         (dfs_search_base_offsets): Likewise.
2605         (record_subobject_offset): New function.
2606         (check_subobject_offset): Likewise.
2607         (walk_subobject_offsets): Likewise.
2608         (record_subobject_offsets): Likewise.
2609         (layout_conflict_p): Reimplement.
2610         (layout_nonempty_base_or_field): Correct handling of type
2611         conflicts during layout.
2612         (layout_empty_base): Likewise.
2613         (build_base_field): Adjust to handle new representation of empty
2614         base offset table.
2615         (build_base_fields): Likewise.
2616         (layout_virtual_bases): Likewise.
2617         (splay_tree_compare_integer_csts): New function.
2618         (layout_class_type): Use a splay_tree, rather than a varray, to
2619         represent the offsets of empty bases.
2621         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
2622         * decl.c (select_decl): Don't return declarations that are
2623         DECL_ANTICIPATED.
2625 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
2627         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
2628         (fake_std_node): New macro.
2629         * decl.c (in_std): Rename to ...
2630         (in_fake_std): ... this.
2631         (flag_no_builtin): Remove.
2632         (flag_no_nonansi_builtin): Likewise.
2633         (walk_namespaces_r): Use fake_std_node.
2634         (push_namespace): Use std_identifier.
2635         (pop_namespace): Use in_fake_std.
2636         (lookup_name_real): Use fake_std_node.
2637         (init_decl_processing): When -fhonor-std, create the `std'
2638         namespace.  Don't create a dummy fake_std_node in that case.
2639         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
2640         (builtin_function): Put builtins whose names don't begin
2641         with `_' in the std namespace.
2642         * decl2.c (flag_no_builtin): Remove.
2643         (flag_no_nonansi_builtin): Likewise.
2644         (set_decl_namespace): Use fake_std_node.
2645         (validate_nonmember_using_decl): Likewise.
2646         (do_using_directive): Likewise.
2647         (handle_class_head): Likewise.
2648         * dump.c (dequeue_and_dump): Likewise.
2649         * except.c (init_exception_processing): Use std_identifier.
2650         * init.c (build_member_call): Use fake_std_node.
2651         * rtti.c (init_rtti_processing): Use std_identifier.
2653 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
2655         * cp-tree.h (back_end_hook): Remove declaration.
2656         * decl2.c (back_end_hook): Remove definition.
2658         * dump.c (dequeue_and_dump): Dump TREE_USED.
2660 Tue Oct 17 20:19:06 2000  Brad Lucier <lucier@math.purdue.edu>
2662         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
2664 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
2666         * decl.c (WINT_TYPE): Define.
2667         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
2668         c_size_type_node, signed_size_type_node and wint_type_node.
2670 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
2672         * decl2.c (warn_missing_format_attribute): New variable.
2673         (lang_decode_option): Decode -Wmissing-format-attribute.
2675 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
2677         * typeck.c (qualify_type): Remove.
2678         (composite_pointer_type): Fix handling of conversions to `cv void*'.
2680 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2682         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
2684 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2686         * Makefile.in (parse.c, parse.h): Create atomically.
2688 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
2690         * class.c (current_obstack): Remove.
2691         * decl.c (ggc_p): Remove.
2692         (start_decl): Don't use decl_tree_cons.
2693         (grokdeclarator): Don't use build_decl_list.
2694         (start_function): Don't use decl_tree_cons.
2695         (finish_function): Don't mess with obstacks.
2696         * decl2.c (grok_x_components): Don't use build_decl_list.
2697         * lex.c (make_call_declarator): Don't call decl_tree_cons.
2698         (implicitly_declare_fn): Don't call build_decl_list.
2699         * parse.y (frob_specs): Don't call build_decl_list or
2700         decl_tree_cons.
2701         (expr_or_declarator_intern): Don't call decl_tree_cons.
2702         (primary): Don't call build_decl_list.
2703         (fcast_or_absdcl): Likewise.
2704         (typed_declspecs): Don't call decl_tree_cons.
2705         (reserved_declspecs): Don't call build_decl_list.
2706         (declmods): Likewise.
2707         (reserved_typespecquals): Likewise.
2708         (aggr): Likewise.
2709         (new_type_id): Likewise.
2710         (cv_qualifiers): Likewise.
2711         (after_type_declarator_intern): Likewise.
2712         (notype_declarator_intern): Likewise.
2713         (absdcl_intern): Likewise.
2714         (named_parm): Likewise.
2715         * pt.c (most_specialized_class): Likewise.
2716         * repo.c (temporary_obstack): Make it a structure, not a pointer.
2717         (init_repo): Initialize it.
2718         * search.c (current_obstack): Remove.
2719         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
2721 2000-10-09  Richard Henderson  <rth@cygnus.com>
2723         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
2724         (c++ language support bits for libgcc): Remove.
2725         (c++.clean): Remove cplib2.txt cleanup.
2726         * config-lang.in (headers, lib2funcs): Remove.
2728         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
2729         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
2730         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
2731         * inc/new.h, inc/typeinfo: Remove files.
2733 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
2735         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
2736         defined.
2737         (init_decl_processing): Initialize intmax_type_node and
2738         uintmax_type_node.
2740 2000-10-06  Richard Henderson  <rth@cygnus.com>
2742         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
2743         (original_result_rtx): Remove.
2744         * decl.c (save_function_data): Don't clear x_result_rtx.
2745         (mark_lang_function): Don't mark it either.
2746         * expr.c (fixup_result_decl): Remove.
2747         * semantics.c (genrtl_named_return_value): Frob the return decl
2748         before calling emit_local_var.
2749         (genrtl_finish_function): Don't call fixup_result_decl.
2750         Always emit the jump to return_label.
2752 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
2754         * pt.c (lookup_template_class): Set current access for enum.
2755         (tsubst_enum): Set file & line for enum decl.
2757         * spew.c (yylex): Remove unused variable.
2759 2000-10-05  Richard Henderson  <rth@cygnus.com>
2761         * semantics.c (genrtl_finish_function): Don't init or check
2762         can_reach_end; remove noreturn and return value checks.
2764 2000-10-05  Tom Tromey  <tromey@cygnus.com>
2766         * init.c (build_java_class_ref): Use `build_static_name' with a
2767         suffix, not a prefix, to build the class object's name.
2769 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
2771         * cp-tree.h (access_kind): Fix comment typo.
2772         * decl2.c (grokfield): Fix diagnostic typo.
2773         * semantics.c (finish_template_type): Fix comment typo.
2774         (finish_qualified_object_call_expr): Likewise.
2776 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
2778         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
2779         tsubsting fails.
2781 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
2783         * spew.c (frob_id): New static function.
2784         (frob_opname): Use it.
2785         (yylex): Use it.
2787 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
2789         * decl.c (lang_mark_false_label_stack): Remove.
2790         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
2792 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
2794         * gxxint.texi: Use @email for formatting email addresses.
2796 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
2798         * error.c: Remove direct obstack manipulation.  Replace with
2799         output_buffer-based formatting.  Adjust calls to removed macros.
2800         (obstack_chunk_alloc, obstack_chunk_free): Remove.
2801         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
2802         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
2804 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
2806         * ir.texi: Move to ../c-tree.texi.
2808 2000-09-20  Jason Merrill  <jason@redhat.com>
2810         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
2812 2000-09-21  Andreas Jaeger  <aj@suse.de>
2814         * errfn.c: Move declaration of cp_printer and cp_printers to ...
2815         * cp-tree.h: ... here.
2817         * error.c: Remove declaration of cp_printer.
2819 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
2821         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
2823 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
2825         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
2826         users.
2828 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
2830         * decl.c (start_function): Robustify.
2832 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2834         * cp-tree.h (check_function_format): Accept a `status' parameter.
2836         * call.c, typeck.c: Updates calls to `check_function_format'.
2838 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
2840         * decl2.c (handle_class_head): Always push some scope even
2841         in the error case.
2843 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
2845         * cp-tree.h (struct cp_language_function): Remove
2846         x_scope_stmt_stack and name_declared.
2847         (current_scope_stmt_stack): Remove.
2848         (function_name_declared_p): New macro.
2849         (struct lang_decl_flags): Use c_lang_decl as a base class.
2850         (context): Remove.
2851         (struct lang_decl): Replace saved_tree with context.
2852         (DECL_FRIEND_CONTEXT): Adjust accordingly.
2853         (SET_DECL_FRIEND_CONTEXT): Likewise.
2854         (DECL_VIRTUAL_CONTEXT): Likewise.
2855         (DECL_SAVED_TREE): Remove.
2856         (C_DECLARED_LABEL_FLAG): Likewise.
2857         (cplus_expand_expr_stmt): Don't declare.
2858         (add_decl_stmt): Likewise.
2859         (add_scope_stmt): Likewise.
2860         * decl.c (mark_stmt_tree): Remove.
2861         (case_compare): Likewise.
2862         (finish_case_label): Use c_add_case_label.
2863         (init_decl_processing): Set more language-specific hooks.
2864         (build_enumerator): Fix typo in comment.
2865         (cplus_expand_expr_stmt): Remove.
2866         (mark_lang_function): Use mark_c_language_function.
2867         (lang_mark_tree): Use c_mark_lang_decl.
2868         * decl2.c: Change order of inclusion.
2869         * except.c: Likewise.
2870         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
2871         back on c_expand_expr.
2872         * friend.c: Include expr.h.
2873         * init.c: Change order of inclusion.
2874         * Makefile.in: Update dependencies.
2875         * lex.h (free_lang_decl_chain): Remove.
2876         * optimize.c (maybe_clone_body): Use function_name_declared_p.
2877         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
2878         it doesn't exist.
2879         (instantiate_decl): Use function_name_declared_p.
2880         * semantics.c (lang_expand_expr_stmt): Remove.
2881         (set_current_function_name_declared): Likewise.
2882         (current_function_name_declared): Likewise.
2883         (begin_compound_stmt): Use function_name_declared_p.
2884         (add_decl_stmt): Remove.
2885         (setup_vtbl_ptr): Use function_name_declared_p.
2886         (add_scope_stmt): Remove.
2887         (current_scope_stmt_stack): New function.
2888         (cp_expand_stmt): Don't handle SCOPE_STMTs.
2889         (expand_body): Use function_name_declared_p.
2890         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
2891         * typeck.c: Change order of includes.
2892         (convert_sequence): Remove.
2894 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
2896         * lex.c (reswords): Add _Complex.
2898 Thu Sep 14 12:10:45 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2900         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
2902 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
2904         * init.c (begin_init_stmts): Don't use // comments.
2906 2000-09-12  Jason Merrill  <jason@redhat.com>
2908         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
2909         all non-extern arrays.
2911         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
2912         typenames, too.  Downgrade complaint to pedwarn.
2913         (xref_tag): Warn about surprising behavior of 'friend struct T'.
2914         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
2915         'class This::Inherited'.
2917 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
2919         * decl.c (finish_case_label): Given the LABEL_DECL a
2920         DECL_CONTEXT.
2922 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
2924         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
2925         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
2926         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
2927         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
2928         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
2929         New macros.
2930         (sorry_for_unsupported_tree, print_scope_operator,
2931         print_left_paren, print_right_paren, print_left_bracket,
2932         print_right_bracket, print_whitespace): Likewise.
2933         (aggr_variety): Rename to class_key_or_enum.
2934         (print_type): Rename to print_type_id.
2935         (print_type_specifier_seq, print_simple_type_specifier,
2936         print_elaborated_type_specifier,
2937         print_rest_of_abstract_declarator,
2938         print_parameter_declaration_clause, print_exception_specification,
2939         print_nested_name_specifier, print_template_id,
2940         typedef_original_name,  print_template_argument_list_start,
2941         print_template_argument_list_end): New functions.
2943 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
2945         * ir.texi: Add more documentation.
2947 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
2949         * cp-tree.h (struct saved_scope): Remove x_function_parms.
2950         (current_function_parms): Don't define.
2951         (struct cp_language_function): Remove parms_stored.
2952         (current_function_just_assigned_this): Don't define.
2953         (current_function_parms_stored): Likewise.
2954         (static_ctors): Declare.
2955         (static_dtors): Likewise.
2956         (SF_EXPAND): Don't define.
2957         (expand_start_early_try_stmts): Remove declaration.
2958         (store_parm_decls): Likewise.
2959         * decl.c (static_ctors): Don't declare.
2960         (static_dtors): Likewise.
2961         (struct binding_level): Remove this_block.
2962         (poplevel): Remove dead code.
2963         (set_block): Likewise.
2964         (mark_binding_level): Don't mark this_block.
2965         (mark_saved_scope): Don't mark x_function_parms.
2966         (init_decl_processing): Don't add current_function_parms as a GC
2967         root.
2968         (check_function_type): Change prototype.
2969         (start_function): Remove RTL-generation code.
2970         (expand_start_early_try_stmts): Remove.
2971         (store_parm_decls): Give it internal linkage.  Remove
2972         RTL-generation code.
2973         (finish_function): Remove RTL-generation code.
2974         * decl2.c (static_ctors): Fix formatting.
2975         (static_dtors): Likewise.
2976         * method.c (use_thunk): Don't call store_parm_decls.
2977         (synthesize_method): Likewise.
2978         * optimize.c (maybe_clone_body): Likewise.
2979         * parse.y (fn.def2): Likewise.
2980         (.set_base_init): Likewise.
2981         (nodecls): Likewise.
2982         * pt.c (instantiate_decl): Likewise.
2983         * rtti.c (synthesize_tinfo_fn): Likewise.
2984         * semantics.c (genrtl_try_block): Simplify.
2985         (expand_body): Use genrtl_start_function and
2986         genrtl_finish_function.
2987         (genrtl_start_function): New function.
2988         (genrtl_finish_function): Likewise.
2990 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
2992         * error.c (cp_tree_printer, case 'P'): Append break.
2994 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
2996         * cp-tree.h (frob_opname): Declare.
2997         * parse.y (saved_scopes): New static variable.
2998         (cp_parse_init): Adjust.
2999         (do_id): If lastiddecl is NULL, do do_identifier.
3000         (operator): Save scope information.
3001         (unoperator): New reduction. Restore scope information.
3002         (operator_name): Append unoperator. Call frob_opname.
3003         * spew.c (frob_opname): Define.
3005 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
3007         * decl.c, rtti.c: Include defaults.h if not already included.
3008         Don't define the *_TYPE_SIZE macros.
3010 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
3012         * cp-tree.h (push_switch): Change prototype.
3013         (check_cp_case_value): Remove declaration.
3014         (decl_constant_value): Likewise.
3015         * decl.c (struct cp_switch): Add switch_stmt and cases.
3016         (case_compare): New function.
3017         (push_switch): Set switch_stmt.  Initialize cases.
3018         (pop_switch): Clean up cases.
3019         (define_case_label): Rename to ...
3020         (finish_case_label): ... this.  Do semantic analysis for case
3021         labels here.
3022         (start_function): Correct comment.
3023         * decl2.c (check_cp_case_value): Remove.
3024         * expr.c (do_case): Remove.
3025         * pt.c (tsubst_expr): Adjust call to finish_case_label.
3026         * semantics.c (genrtl_do_poplevel): Remove declaration.
3027         (RECHAIN_STMTS): Remove.
3028         (finish_break_stmt): Use build_break_stmt.
3029         (finish_continue_stmt): Use build_continue_stmt.
3030         (finish_switch_cond): Adjust condition here, rater than in
3031         c_expand_start_case.
3032         (finish_case_label): Remove.
3033         * typeck.c (c_expand_return): Remove.
3034         (c_expand_start_case): Likewise.
3036 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
3038         * ir.texi: Document type nodes.
3040 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
3042         * cp-tree.h (init_cp_semantics): Declare.
3043         (genrtl_try_block): Don't declare.
3044         (genrtl_handler): Likewise.
3045         (genrtl_catch_block): Likewise.
3046         (genrtl_ctor_stmt): Likewise.
3047         (genrtl_subobject): Likewise.
3048         (genrtl_do_poplevel): Likewise.
3049         (genrtl_named_return_value): Likewise.
3050         * lex.c (init_parse): Call init_cp_semantics.
3051         * semantics.c (genrtl_try_block): Give it internal linkage.
3052         (genrtl_handler): Likewise.
3053         (genrtl_catch_block): Likewise.
3054         (genrtl_ctor_stmt): Likewise.
3055         (genrtl_subobject): Likewise.
3056         (genrtl_do_poplevel): Likewise.
3057         (genrtl_named_return_value): Likewise.
3058         (lang_expand_stmt): Rename to ...
3059         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
3060         (init_cp_semantics): Define.
3062         * decl.c (initialize_local_var): Remove RTL-generating code.
3063         * semantics.c (genrtl_try_block): Fix formatting.
3065         Move statement-tree facilities from C++ to C front-end.
3066         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
3067         (void_zero_node): Remove.
3068         (stmt_tree): Likewise.
3069         (scope_chain): Adjust.
3070         (language_function): Rename to cp_language_function.
3071         (cp_function_chain): Adjust.
3072         (current_stmt_tree): Remove.
3073         (last_tree): Likewise.
3074         (last_expr_type): Likewise.
3075         (struct lang_decl): Adjust.
3076         (STMT_IS_FULL_EXPR_P): Remove.
3077         (add_tree): Remove.
3078         (begin_stmt_tree): Likewise.
3079         (finish_stmt_tree): Likewise.
3080         (walk_tree_fn): Likewise.
3081         (walk_stmt_tree): Likewise.
3082         * class.c (finish_struct): Replace use of add_tree with add_stmt.
3083         * decl.c (mark_stmt_tree): Adjust type.
3084         (init_decl_processing): Don't build void_zero_node.
3085         (initialize_local_var): Adjust usage of current_stmt_tree.
3086         (finish_enum): Use add_stmt, not add_tree.
3087         (save_function_data): Adjust use of language_function.
3088         (finish_constructor_body): Use add_stmt, not add_tree.
3089         (finish_destructor_body): Likewise.
3090         (push_cp_function_context): Adjust use of language_function.
3091         (pop_cp_function_context): Likewise.
3092         (mark_lang_function): Likewise.
3093         (mark_cp_function_context): Likewise.
3094         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
3095         (build_vec_init): Likewise.
3096         * semantics.c (SET_LAST_STMT): Remove.
3097         (RECHAIN_STMTS): Don't use it.
3098         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
3099         (current_stmt_tree): Define.
3100         (add_tree): Remove.
3101         (finish_goto_stmt): Use add_stmt, not add_tree.
3102         (finish_expr_stmt): Likewise.
3103         (begin_if_stmt): Likewise.
3104         (finish_then_clause): Likewise.
3105         (begin_while_stmt): Likewise.
3106         (begin_do_stmt): Likewise.
3107         (finish_return_stmt): Likewise.
3108         (begin_for_stmt): Likewise.
3109         (finish_break_stmt): Likewise.
3110         (finish_continue_stmt): Likewise.
3111         (begin_switch_stmt): Likewise.
3112         (finish_case_label): Likewise.
3113         (begin_try_block): Likewise.
3114         (begin_function_try_block): Likewise.
3115         (begin_handler): Likewise.
3116         (begin_catch_block): Likewise.
3117         (begin_compound_stmt): Likewise.
3118         (begin_asm_stmt): Likewise.
3119         (finish_asm_stmt): Likewise.
3120         (finish_label_stmt): Likewise.
3121         (add_decl_stmt): Likewise.
3122         (finish_subobject): Likewise.
3123         (finish_decl_cleanup): Likewise.
3124         (finish_named_return_value): Likewise.
3125         (setup_vtbl_ptr): Likewise.
3126         (add_scope_stmt): Likewise.
3127         (finish_stmt_expr): Likewise.
3128         (prune_unused_decls): Remove.
3129         (begin_stmt_tree): Likewise.
3130         (finish_stmt_tree): Likewise.
3131         (prep_stmt): Adjust use of current_stmt_tree.
3132         (lang_expand_stmt): Likewise.
3133         * tree.c (statement_code_p): Remove.
3134         (cp_statement_code_p): New function.
3135         (walk_stmt_tree): Remove.
3136         (init_tree): Set lang_statement_code_p.
3138 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
3140         Integrated preprocessor.
3142         * Make-lang.in, Makefile.in: Remove all references to input.c,
3143         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
3144         * gxx.gperf, hash.h, input.c: Delete.
3145         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
3146         initialized properly.
3148         * class.c (fixup_pending_inline): Take a tree, not a
3149         struct pending_inline *.  All callers changed.
3150         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
3151         RID_PROTECTED entries in ridpointers[] array here.
3152         * decl.c (duplicate_decls): Do not refer to struct
3153         pending_inline.
3154         (record_builtin_type, init_decl_processing): Use RID_MAX not
3155         CP_RID_MAX.
3156         (grokdeclarator): Use C_IS_RESERVED_WORD.
3157         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
3158         cpplib.
3159         (grok_x_components): Do not inspect pending_inlines chain.
3161         * cp-tree.h (struct lang_identifier): Add rid_code entry.
3162         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
3163         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
3164         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
3165         TIME_IDENTIFIER_FILEINFO): Kill.
3166         Update prototypes.
3167         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
3168         single 32-bit word.
3169         * parse.y: Call do_pending_inlines unconditionally.
3170         reinit_parse_for_method is now snarf_method.  fn.defpen is no
3171         longer necessary.  Remove unnecessary <itype> annotation on
3172         SCOPE.  Do not refer to end_of_file or struct pending_inline.
3173         * semantics.c (begin_inline_definitions): Call
3174         do_pending_inlines unconditionally.
3176         * lex.c: Remove all code now shared with C front end.
3177         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
3178         into the get_identifier table.  Rewrite pragma handling to
3179         work with the registry.  Move code to save tokens for later
3180         processing to spew.c.
3182         * spew.c: Rewrite everything in terms of token streams instead
3183         of text.  Move routines here from lex.c / input.c as
3184         appropriate.  GC-mark trees hanging off the pending inlines
3185         chain.
3187 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
3189         * NEWS: Mention that the named return value extension has been
3190         deprecated.
3191         * cp-tree.h (original_result_rtx): Define.
3192         (TREE_REFERENCE_EXPR): Remove.
3193         (DECL_VPARENT): Likewise.
3194         (pushdecl_nonclass_level): Likewise.
3195         (store_return_init): Likewise.
3196         (reinit_lang_specific): Likewise.
3197         (genrtl_named_return_value): Change prototype.
3198         * decl.c (original_result_rtx): Remove.
3199         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
3200         Do not generate RTL for local variables here.
3201         (store_return_init): Remove.
3202         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
3203         store_return_init.
3204         (finish_named_return_value): Adjust accordingly.  Warn that this
3205         extension is deprecated.
3206         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
3208 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3210         * pt.c (type_unification_real): Replace switch with if.
3211         (unify): Tsubst non-type parms before comparing.
3213 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3215         * error.c (dump_typename): New function, broken out of ...
3216         (dump_type): ... here. Use it.
3217         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
3219 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3221         * init.c (build_offset_ref): Deal with namespace scoped
3222         TEMPLATE_ID_EXPRs.
3224 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3226         * class.c (resolve_address_of_overloaded_function): Add
3227         explanation message.
3228         * decl.c (define_case_label): Reformat explanation.
3229         * decl2.c (finish_static_data_member_decl): Likewise.
3230         (grokfield): Likewise.
3231         * friend.c (do_friend): Likewise.
3233 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
3235         * tree.c (walk_tree): Expose tail recursion.
3236         (walk_stmt_tree): New function.
3237         * cp-tree.h: Prototype walk_stmt_tree.
3238         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
3239         the BLOCKs directly.  If a BLOCK has no variables after
3240         pruning, discard it.
3241         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
3242         restore the line number.
3244 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
3246         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
3247         (pt.o): Remove dependency on HTAB_H.
3248         * cp-tree.h: Include hashtab.h.
3249         (walk_tree): Change prototype.
3250         (walk_tree_without_duplicates): New function.
3251         * decl.c (check_default_argument): Use it.
3252         * optimize.c (remap_decl): Adjust calls to walk_tree.
3253         (copy_body): Likewise.
3254         (expand_calls_inline): Likewise.
3255         (calls_setjmp_p): Use walk_tree_without_duplicates.
3256         * pt.c: Don't include hashtab.h.
3257         (for_each_template_parm): Use walk_tree_without_duplicates.
3258         * semantics.c (finish-stmt_tree): Likewise.
3259         (expand_body): Likewise.
3260         * tree.c (walk_tree): Add additional parameter.
3261         (walk_tree_without_duplicates): New function.
3262         (count_trees): Use it.
3263         (verify_stmt_tree): Adjust call to walk_tree.
3264         (find_tree): Use walk_tree_without_duplicates.
3265         (no_linkage_check): Likewise.
3266         (break_out_target_exprs): Adjust call to walk_tree.
3267         (cp_unsave): Likewise.
3269 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3271         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
3272         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
3273         * cp-tree.h (TYPE_BINFO): Adjust comment.
3274         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
3275         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
3276         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
3277         (TYPE_TEMPLATE_INFO): Likewise.
3278         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
3279         * class.c (push_nested_class): Likewise.
3280         * decl.c (lookup_name_real): Likewise.
3281         (grokdeclarator): Likewise.
3282         (grok_op_properties): Likewise.
3283         (xref_tag): Likewise.
3284         (xref_basetypes): Likewise.
3285         * decl2.c (constructor_name_full): Likewise.
3286         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
3287         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
3288         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
3289         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
3290         (dump_type_suffix): Likewise.
3291         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
3292         instead.
3293         (get_aggr_from_typedef): Likewise.
3294         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
3295         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
3296         (write_template_parm): Likewise.
3297         (write_template_template_parm): Check tree code instead of
3298         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
3299         * method.c (build_overload_nested_name): Add
3300         BOUND_TEMPLATE_TEMPLATE_PARM.
3301         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
3302         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
3303         * pt.c (convert_template_argument): Check tree code instead of
3304         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
3305         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
3306         (for_each_template_parm): Adjust comment.
3307         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
3308         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
3309         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
3310         template_args_equal to compare template template parameter cases.
3311         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
3312         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
3313         instead.
3314         * tree.c (copy_template_template_parm): Decide whether to create
3315         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
3316         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
3317         (copy_tree_r): Likewise.
3318         * typeck.c (comptypes): Likewise.  Check tree code instead of
3319         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
3321 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
3323         * decl.c (finish_function): Move the code for handling functions
3324         marked with the constructor and destructor attributes inside the
3325         expand_p block.
3327 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
3329         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
3331 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
3333         * pt.c (lookup_template_class): Remove abort.
3334         * tree.c (get_type_decl): Allow error_mark_node.
3336 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
3338         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
3339         TEMPLATE_ID_EXPRs.
3341 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
3343         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
3344         new ABI mangling.
3346 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
3348         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
3349         union tag mismatch error reporting.
3351 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
3353         * call.c (build_scoped_method_call): Check it is not a namespace.
3355 2000-08-30  Jason Merrill  <jason@redhat.com>
3357         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
3359         * tree.c (bot_manip): Check TREE_CONSTANT rather than
3360         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
3361         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
3363         * decl.c (start_function): Always call make_function_rtl.
3365 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
3367         * semantics.c (prune_unused_decls): New function.
3368         (finish_stmt_tree): Call it via walk_tree.
3370 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
3372         * class.c (build_secondary_vtable): Constify a char *.
3373         * decl.c (init_decl_processing): Initialize function_id_node,
3374         pretty_function_id_node, and func_id_node.
3375         * input.c (struct input_source): Constify 'str'.
3376         (feed_input): Constify first argument.
3377         * mangle.c (write_identifier): Constify argument.
3378         * pt.c (mangle_class_name_for_template): Constify argument.
3380 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
3382         * typeck.c (mark_addressable): Remove code that pokes around in
3383         RTL.
3385 2000-08-28  Jason Merrill  <jason@redhat.com>
3387         * lex.c (file_name_nondirectory): Move to toplev.c.
3389         * cp-tree.h (LOCAL_CLASS_P): New macro.
3390         * class.c (finish_struct_1): Use it.
3392 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
3394         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
3395         (write_encoding): Pass another argument to write_name.
3396         (write_name): Add ignore_local_scope parameter.  Fix handling of
3397         local names.
3398         (write_nested_name): Use write_unqualified_name.
3399         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
3400         (write_template_prefix): Use write_unqualified_name.
3401         (write_component): Remove.
3402         (write_local_name): Add parameter.  Use direct local entity to
3403         discriminator calculation.
3404         (write_class_enum_type): Pass another argument to write_name.
3405         (write_template_template_arg): Likewise.
3406         (make_guard_variable): Likewise.
3408 2000-08-27  Jason Merrill  <jason@redhat.com>
3410         * decl.c (pushdecl): Matching decls for local externs are found in
3411         the current level.  Propagate linkage information from previous
3412         declarations.
3414 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
3416         * ir.texi (Expressions): Fix typo.
3418 2000-08-25  Greg McGary  <greg@mcgary.org>
3420         * tree.c (init_tree): Use ARRAY_SIZE.
3422 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
3424         * error.c (cp_tree_printer): Rework.
3426 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
3428         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
3429         dyn-string.o.
3430         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
3431         (cp-demangle.o): Remove target.
3432         (dyn-string.o): Likewise.
3434         * decl.c (grokfndecl): Require that `main' return an `int'.
3435         * mangle.c (write_encoding): Don't mangle return types for
3436         conversion functions.
3438 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
3440         * error.c (tree_formatting_info): New data type.
3441         (tree_being_formatted): New macro.
3442         (tree_formatting_flags): Likewise.
3443         (put_whitespace): Likewise.
3444         (print_tree_identifier): Likewise.
3445         (print_identifier): Likewise.
3446         (cp_tree_printer, print_function_argument_list, print_declaration,
3447         print_expression, print_function_declaration,
3448         print_function_parameter, print_type, print_cv_qualifier): New
3449         functions.
3450         (init_error): Initialize lang_printer.
3452 2000-08-24  Jason Merrill  <jason@redhat.com>
3454         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
3455         adjustment necessary.
3457 2000-08-24  Greg McGary  <greg@mcgary.org>
3459         * cp-tree.h (MAIN_NAME_P): Remove macro.
3461 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
3463         * error.c (print_instantiation_context): Don't forget to flush the
3464         buffer.
3466 2000-08-23  Jason Merrill  <jason@redhat.com>
3468         * typeck.c (build_ptrmemfunc): Save the input pmf.
3470         * method.c (process_modifiers): Use same_type_p.
3472 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
3474         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
3475         * mangle.c (write_function_type): Change prototype.
3476         (write_encoding): Don't mangle return types for
3477         constructors or destructors.
3478         (write_type): Adjust call to write_function_type.
3479         * pt.c (instantiate_template): Instantiate alternate entry points
3480         when instantiating the main function.
3482 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
3484         * error.c (cp_print_error_function): Don't use embedded '\n' in
3485         output_printf.
3487 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
3489         * decl.c (init_decl_processing): Remove bogus initialization.
3490         * error.c (lang_print_error_function): Restore here.
3491         (init_error): Initialize print_error_function.
3493 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
3495         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
3497 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
3499         * Makefile.in (error.o): Depends on diagnostic.h
3501         * cp-tree.h (problematic_instantiation_changed,
3502         record_last_problematic_instantiation, current_instantiation,
3503         print_instantiation_context): Declare.
3504         (maybe_print_template_context): Remove.
3506         * decl.c (init_decl_processing): Set print_error_function to NULL.
3507         (lang_print_error_function): Remove, since we're using a new
3508         machinery.
3510         * error.c: #include diagnostic.h
3511         (function_category): New function.
3512         (cp_diagnostic_starter): Likewise.
3513         (cp_diagnostic_finalizer): Likewise.
3514         (cp_print_error_function): Likewise.
3515         (maybe_print_instantiation_context): Likewise.
3516         (print_instantiation_full_context): Likewise.
3517         (print_instantiation_partial_context): Likewise.
3518         (print_instantiation_context): Define.
3519         (init_error): Initialize diagnostic pager and finalizer.
3521         * pt.c (problematic_instantiation_changed): Define.
3522         (record_last_problematic_instantiation): Likewise.
3523         (current_instantiation): Likewise.
3524         (maybe_print_template_context): Remove.
3525         (print_template_context): Likewise.
3526         (current_tinst_level): Make static to reflect Brendan Kehoe's
3527         change of 1995-04-13.
3528         (push_tinst_level): Call print_instantiation_context.
3530 2000-08-21  Nix  <nix@esperi.demon.co.uk>
3532         * lang-specs.h: Do not process -o or run the assembler if
3533         -fsyntax-only.
3535 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3537         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
3538         variables.
3539         * decl2.c (lang_decode_option): Disable gettext attributes for
3540         -ansi.
3542 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
3544         * lex.c (lang_init_options): Default diagnostic message maximum
3545         length to 80, when line-wrapping.
3547 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
3549         * class.c (build_vtbl_initializer): Clear the entire
3550         vtbl_init_data.  Start keeping track of the functions for which we
3551         have created vcall offsets here.
3552         (dfs_build_vcall_offset_vtbl_entries): Remove.
3553         (build_vcall_offset_vtbl_entries): Reimplement.
3554         (add_vcall_offset_vtbl_entries_r): New function.
3555         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
3556         computing when vcall offsets are necessary.
3558 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
3560         * decl.c (member_function_or_else): Use cp_error ... %T.
3561         (grokdeclarator): Likewise.
3562         (start_method): Likewise.
3563         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
3565 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
3567         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
3568         TYPE_DECLs.
3570 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
3572         * cp-tree.h (PTRMEM_OK_P): New macro.
3573         (itf_ptrmem_ok): New enumeration value.
3574         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
3575         argument. Diagnose implicit pointer to member.
3576         (instantiate_type): Don't diagnose implicit pointer to member
3577         here. Pass itf_ptrmem_ok if ok. Adjust calls to
3578         resolve_address_of_overloaded_function.
3579         * init.c (build_offset_ref): Set PTRMEM_OK_P.
3580         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
3581         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
3582         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
3583         (build_unary_op): Deal with single non-static member in
3584         microsoft-land.
3586 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
3588         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
3590 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
3592         * cp-tree.h (enum_name_string): Remove prototype.
3593         (report_case_error): Remove prototype.
3594         * cp/typeck2.c (enum_name_string): Remove.
3595         (report_case_error): Remove.
3596         * error.c (dump_expr): Deal with enum values directly.
3597         Correctly negate integer constant.
3599 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
3601         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
3602         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
3603         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
3604         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
3605         (__cxa_vec_new): Use __cxa_vec_new2.
3606         (__cxa_vec_delete): Use __cxa_vec_delete2.
3608 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
3610         * vec.cc (__cxa_vec_new): Set "C" linkage.
3611         (__cxa_vec_ctor): Likewise.
3612         (__cxa_vec_cctor): Likewise.
3613         (__cxa_vec_dtor): Likewise.
3614         (__cxa_vec_delete): Likewise.
3615         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
3616         (__cxa_vec_ctor): Likewise.
3617         (__cxa_vec_cctor): Likewise.
3618         (__cxa_vec_dtor): Likewise.
3619         (__cxa_vec_delete): Likewise.
3621 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
3623         * class.c (instantiate_type): Reinstate local variable
3624         deleted in previous change.
3626         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
3627         itf_no_attributes.
3629 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
3631         * cp-tree.h (instantiate_type_flags): New enumeration.
3632         (instantiate_type): Change parameter.
3633         * class.c (instantiate_type): Adjust prototype. Adjust.
3634         * call.c (standard_conversion): Adjust instantiate_type call.
3635         (reference_binding): Likewise.
3636         (build_op_delete_call): Likewise.
3637         (convert_like_real): Likewise.
3638         * cvt.c (cp_convert_to_pointer): Likewise.
3639         (convert_to_reference): Likewise.
3640         * pt.c (convert_nontype_argument): Likewise.
3641         * typeck.c (build_binary_op): Likewise.
3642         (build_ptrmemfunc): Likewise.
3643         (convert_for_assignment): Likewise.
3645 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
3647         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
3648         (current_aggr): Define.
3649         * decl.c (grokdeclarator): Make sure a friend class is an
3650         elaborated type specifier.
3651         * parse.y (current_aggr): Remove static definition.
3652         (cp_parse_init): Adjust.
3653         (structsp): Clear and restore current_aggr.
3654         (component_decl_list): Clear current_aggr.
3656         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
3657         aggregate tag on the typename's context.
3659         * pt.c (tsubst_friend_class): Return error_mark_node, if
3660         parms becomes NULL.
3661         (instantiate_class_template): Ignore error_mark_node friend types.
3663 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
3665         * cvt.c (warn_ref_binding): New static function, broken out of ...
3666         (convert_to_reference): ... here. Use it.
3668 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
3670         * parse.y (template_arg): Add rule for template qualified with
3671         global scope.
3673 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
3675         * decl2.c (add_function): Reorganize.
3676         (arg_assoc): Do not consider function template decls.
3678 2000-08-11  Jason Merrill  <jason@redhat.com>
3680         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
3681         looking inside.
3683 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
3685         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
3686         (lookup_nested_tag): Likewise.
3688         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
3689         can be produced.
3691 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
3693         * parse.y (named_complex_class_head_sans_basetype): Remove
3694         always true if.
3696 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
3698         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
3699         explicit TEMPLATE_ID_EXPR args.
3700         (build_expr_from_tree, case CALL_EXPR): Likewise.
3702 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
3704         * decl.c (check_tag_decl): Diagnose typename's which don't
3705         declare anything.
3707 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
3709         * init.c (build_aggr_init): Reject bogus array initializers
3710         early.
3712 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
3714         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
3715         runtime.
3716         * cp/tinfo.cc (__dynamic_cast): Likewise.
3717         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
3719 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
3721         * cvt.c (convert_to_pointer_force): Fix error message when
3722         attempting to cast from ambiguous base.
3724 2000-08-08  Jason Merrill  <jason@redhat.com>
3726         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
3727         (tsubst_template_arg_vector): Likewise.
3729         * decl2.c (build_anon_union_vars): Choose the largest field; don't
3730         assume that one will be as large as the union.
3732 2000-08-07  Kazu Hirata  <kazu@hxi.com>
3734         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
3735         * decl.c (pop_labels): Likewise.
3737 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
3739         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
3740         specifications.
3741         (__pointer_to_member_type_info): Likewise.
3742         (__base_class_info): Likewise.
3743         (__class_type_info): Likewise.
3744         (__si_class_type_info): Likewise.
3745         (__vmi_class_type_info): Likewise.
3746         * tinfo.cc (__si_class_type_info::__do_find_public_src):
3747         Changed member names to match specifications.
3748         (__vmi_class_type_info::__do_find_public_src): Likewise.
3749         (__si_class_type_info::__do_dyncast): Likewise.
3750         (__vmi_class_type_info::__do_dyncast): Likewise.
3751         (__si_class_type_info::__do_upcast): Likewise.
3752         (__vmi_class_type_info::__do_upcast): Likewise.
3753         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
3754         (__pbase_type_info::__pointer_catch): Likewise.
3755         (__pointer_type_info::__pointer_catch): Likewise.
3756         (__pointer_to_member_type_info::__pointer_catch): Likewise.
3758 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
3760         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
3761         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
3762         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
3764 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
3766         * cp-tree.h (add_method): Change prototype.
3767         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
3768         Don't double the size of the method vector in the error case.
3769         (handle_using_decl): Adjust call to add_method.
3770         (add_implicitly_declared_members): Likewise.
3771         (clone_function_decl): Likewise.
3772         * decl2.c (check_classfn): Likewise.
3773         * semantics.c (finish_member_declaration): Likewise.
3775 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
3777         * decl.c (flag_isoc94): New variable.
3779 2000-08-02  Jason Merrill  <jason@redhat.com>
3781         * pt.c (do_type_instantiation): Add complain parm; don't complain
3782         if called recursively.
3783         * cp-tree.h, parse.y: Adjust.
3785 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
3787         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
3788         -Wno-strict-prototypes.
3790         * g++spec.c: Adjust type of second argument to
3791         lang_specific_driver, and update code as necessary.
3793         * cp-tree.h: Don't prototype min_precision here.
3794         (my_friendly_assert): Cast expression to void.
3795         * semantics.c (do_poplevel): Initialize scope_stmts.
3797 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
3799         * cp-tree.h (DECL_NEEDED_P): Tweak.
3801 2000-07-28  Jason Merrill  <jason@redhat.com>
3803         * lang-specs.h: Use %i in rule for .ii files.
3805 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
3807         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
3809 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
3811         Allow indirect primary bases.
3812         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
3813         primary_base.
3814         (CLASSTYPE_VFIELD_PARENT): Remove.
3815         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
3816         (BINFO_PRIMARY_BINFO): Remove.
3817         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
3818         (BINFO_VBASE_PRIMARY_P): Likewise.
3819         (BINFO_PRIMARY_BASE_OF): New macro.
3820         (BINFO_INDIRECT_PRIMARY_P): Likewise.
3821         (get_primary_binfo): New function.
3822         * decl.c (lang_mark_tree): Make lang_type::primary_base.
3823         * class.c (vcall_offset_data_s): Rename to ...
3824         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
3825         and add ctor_vtbl_p.
3826         (get_derived_offset): Use get_primary_binfo.
3827         (dfs_mark_primary_bases): Adjust handling of virtual primary
3828         bases.
3829         (mark_primary_bases): Likewise.
3830         (set_primary_base): Take a binfo, not an integer, as a
3831         representation of the primary base.
3832         (indirect_primary_base_p): Remove.
3833         (determine_primary_base): Adjust for indirect primary bases.
3834         (dfs_find_final_overrider): Fix typo in coment.
3835         (update_vtable_entry_for_fn): Use get_primary_binfo.
3836         (layout_nonempty_base_or_field): Tweak.
3837         (build_base_fields): Adjust for new primary base semantics.
3838         (dfs_propagate_binfo_offsets): Remove.
3839         (propagate_binfo_offsets): Rewrite.
3840         (dfs_set_offset_for_shared_vbases): Remove.
3841         (layout_virtual_bases): Don't use it.
3842         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
3843         ABI.
3844         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
3845         CLASSTYPE_VFIELD_PARENT.
3846         (dfs_get_primary_binfo): New function.
3847         (get_primary_binfo): Likewise.
3848         (dump_class_hierarchy_r): Tweak printing of primary bases.
3849         (build_vtbl_initializer): Fix typo in comments.  Use
3850         vtbl_init_data.
3851         (build_vcall_and_vbase_vtbl_entries): Likewise.
3852         (build_vbaes_offset_vtbl_entries): Likewise.
3853         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
3854         BV_VCALL_INDEX to handle indirect primary bases.
3855         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
3856         (build_rtti_vtbl_entries): Likewise.
3857         * search.c (get_shared_vbase_if_not_primary): Tweak.
3858         (find_vbase_instance): Likewise.
3859         (binfo_for_vtable): Simplify.
3860         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
3861         (make_binfo): Make it have 11 entries.
3863 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
3865         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
3866         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
3867         ascertaining primaryness.
3868         (G): Remove template_args.
3869         (decl_is_template_id): New function.
3870         (write_encoding): Use decl_is_template_id.
3871         (write_name): Likewise.  Handle type_decls.  Get main variant of
3872         type decls.
3873         (write_nested_name): Likewise.
3874         (write_prefix): Likewise.
3875         (write_template_prefix): Likewise.
3876         (write_special_name_constructor): Remove defunct production from
3877         comment.
3878         (write_bare_function_type): Remove comment about absent parameter.
3879         (write_template_template_arg): Add missing grammar production to
3880         comment.
3882 2000-07-27  Jason Merrill  <jason@redhat.com>
3884         * decl.c (duplicate_decls): If common_type produces a non-typedef
3885         type for a typedef, just use the old type.
3887 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
3889         * cp-tree.h (function_depth): Declare.
3890         (verify_stmt_tree): Likewise.
3891         (find_tree): Likewise.
3892         * decl.c (function_depth): Give it external linkage.
3893         * optimize.c (optimize_function): Increment and decrement it.
3894         * tree.c (verify_stmt_tree_r): New function.
3895         (verify_stmt_tree): Likewise.
3896         (find_tree_r): Likewise.
3897         (find_tree): Likewise.
3899 2000-07-27  Jason Merrill  <jason@redhat.com>
3901         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
3902         TYPE_PTRMEMFUNC_P.
3903         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
3905 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
3907         * decl.c (start_cleanup_fn): Mark the function as `inline'.
3908         * decl2.c (get_guard): Call cp_finish_decl, not
3909         rest_of_decl_compilation, for local guards.
3910         * lex.c (do_identifier): Remove unused variable.
3912 Wed Jul 26 15:05:51 CEST 2000   Marc Espie <espie@cvs.openbsd.org>
3914         * parse.y:  Add missing ';'.
3916 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
3918         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
3919         of `extern "C++"'.
3921 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3923         Kill strict_prototype. Backwards compatibility only for
3924         non NO_IMPLICIT_EXTERN_C systems.
3925         * cp-tree.h (flag_strict_prototype): Remove.
3926         (strict_prototype): Remove.
3927         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
3928         * decl.c (maybe_push_to_top_level): Adjust.
3929         (pop_from_top_level): Adjust.
3930         (decls_match): Only allow sloppy parm matching for ancient
3931         system headers.
3932         (init_decl_processing): Adjust.
3933         (grokdeclarator): Adjust.
3934         * decl2.c (flag_strict_prototype): Remove.
3935         (strict_prototype): Remove.
3936         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
3937         (lang_f_options): Remove "strict-prototype".
3938         (unsupported-options): Add "strict-prototype".
3939         * lex.c (do_identifier): Adjust.
3940         (do_scoped_id): Adjust.
3941         * parse.y (empty_parms): Adjust.
3942         * class.c (push_lang_context): Adjust.
3943         (pop_lang_context): Adjust.
3944         * typeck.c (comp_target_parms): Adjust.
3946 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3948         * decl.c (poplevel): Deal with anonymous variables at for scope.
3949         (maybe_inject_for_scope_var): Likewise.
3951 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
3953         * decl.c: Remove all signal handling code, now done in toplev.c.
3955 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
3957         * decl.c (make_rtl_for_nonlocal_decl): Rework.
3959         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
3960         correctly.
3962 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
3964         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
3965         Define my_friendly_assert and my_friendly_abort as macros
3966         which may call friendly_abort.  Prototype friendly abort, not
3967         my_friendly_abort or my_friendly_assert.
3968         * decl.c (signal_catch): Report the signal caught in the error
3969         message.  Call fatal directly.
3970         * typeck2.c (ack, my_friendly_assert): Delete.
3971         (my_friendly_abort): Rename to friendly_abort.  Expect file,
3972         line, and function parameters.  Report the abort code, then
3973         call fancy_abort.  Do not mask an abort if errors have
3974         already occurred.
3976 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
3978         * typeck.c (comp_target_parms): Remove obsolete parameter.
3979         (comp_target_types): Adjust.
3981 2000-07-17  Jason Merrill  <jason@redhat.com>
3983         * typeck.c (mark_addressable): Never set TREE_USED.
3984         * call.c (build_call): Don't abort on calls to library functions
3985         that have been declared normally.
3987         * typeck.c (build_binary_op): Fix grammar in warning.
3989         * exception.cc (__eh_free): Fix prototype.
3991         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
3993         * decl.c (pushdecl): Handle seeing an OVERLOAD in
3994         IDENTIFIER_NAMESPACE_VALUE.
3996 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
3998         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
3999         * method.c (use_thunk): Correct handling of vcall offsets.
4001 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
4003         * .cvsignore: parse.h and parse.c have no cp- prefix.
4005 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
4007         * .cvsignore: New file.
4009 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
4011         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
4013 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
4015         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
4016         * parse.c: Remove.
4017         * parse.h: Likewise.
4019 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
4021         * class.c (layout_class_type): Add pointers to virtual bases after
4022         base classes under the old ABI.
4024 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
4026         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
4027         (finish_continue_stmt): Likewise.
4028         (begin_for_stmt): Remove call to note_level_for_for.
4029         (finish_goto_stmt): Change call from build_min_nt
4030         to build_stmt.
4031         (finish_expr_stmt): Likewise.
4032         (begin_if_stmt): Likewise.
4033         (begin_while_stmt): Likewise.
4034         (finish_while_stmt): Likewise.
4035         (finish_return_stmt): Likewise.
4036         (begin_for_stmt): Likewise.
4037         (finish_for_stmt): Likewise.
4038         (finish_break_stmt): Likewise.
4039         (begin_switch_stmt): Likewise.
4040         (finish_case_label): Likewise.
4041         (genrtl_try_block): Likewise.
4042         (begin_try_block): Likewise.
4043         (begin_handler): Likewise.
4044         (begin_compound_stmt): Likewise.
4045         (finish_asm_stmt): Likewise.
4046         (finish_label_stmt): Likewise.
4047         (add_decl_stmt): Likewise.
4048         (finish_subobject): Likewise.
4049         (finish_decl_cleanup): Likewise.
4050         (finish_named_return_value): Likewise.
4051         (setup_vtbl_ptr): Likewise.
4052         (add_scope_stmt): Likewise.
4053         * decl.c (finish_constructor_body): Likewise.
4054         (finish_destructor_body): Likewise.
4055         * optimize.c (copy_body_r): Likewise.
4056         (initialize_inlined_parameters): Likewise.
4057         (declare_return_variable): Likewise.
4058         (expand_call_inline): Likewise.
4060 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
4062         * semantics.c (expand_body): Sync interface information
4063         at the end of function body expansion.
4065 2000-07-09  Jason Merrill  <jason@redhat.com>
4067         * init.c (build_new_1): Bail early if the call to new fails.
4069         * decl.c (compute_array_index_type): Check specifically for
4070         an INTEGER_CST, not just TREE_CONSTANT.
4072         * decl.c (duplicate_decls): Don't call duplicate_decls on
4073         the DECL_TEMPLATE_RESULT.
4074         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
4075         codes.
4077         * error.c (dump_template_bindings): Don't crash if we had an
4078         invalid argument list.
4080         * typeck.c (c_expand_start_case): Do narrowing here.
4081         * semantics.c (finish_switch_cond): Not here.
4083 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
4085         * parse.y (asm_clobbers): Do string concatenation.
4087 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
4089         * decl.c (pushtag): Don't put local classes in template functions
4090         on the local_classes list.
4092 2000-07-04  Scott Snyder  <snyder@fnal.gov>
4094         * decl2.c (get_guard): Add missing return for old ABI local
4095         variable case.
4097 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
4099         * cp-tree.h (char_type_p): New function.
4100         * decl.c (init_decl_processing): Don't initialize
4101         signed_wchar_type_node or unsigned_wchar_type_node.
4102         (complete_array_type): Handle brace-enclosed string-constants.
4103         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
4104         * tree.c (char_type_p): New function.
4105         * typeck2.c (digest_init): Use char_type_p.
4107 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
4109         * pt.c (tsubst): Don't layout type, if it's error_mark.
4111 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
4113         * pt.c (instantiate_pending_templates): Reset template level.
4115 2000-07-05  Jason Merrill  <jason@redhat.com>
4117         * call.c (joust): Don't complain about `operator char *()' beating
4118         `operator const char *() const'.
4120 2000-07-04  scott snyder  <snyder@fnal.gov>
4121             Jason Merrill  <jason@redhat.com>
4123         * repo.c (repo_get_id): Handle the case where a class with virtual
4124         bases has a null TYPE_BINFO_VTABLE.
4126 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
4127             Jason Merrill  <jason@redhat.com>
4129         * parse.y (member_init): Just pass in the type.
4130         * init.c (expand_member_init): Handle getting a type.
4132 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
4133             Jason Merrill  <jason@redhat.com>
4135         * decl.c (finish_function): Warn if a function has no return
4136         statement.
4137         Suggested by Andrew Koenig.
4138         * typeck.c (check_return_expr): Do set current_function_returns_value
4139         if we got an error_mark_node.
4141 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
4143         * decl2.c (push_decl_namespace): Push the original namespace.
4145 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
4147         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
4148         * semantics.c (begin_class_definition): Clear it.
4150 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
4152         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
4153         (genrtl_expr_stmt): Likewise.
4154         (genrtl_decl_stmt): Likewise.
4155         (genrtl_if_stmt): Likewise.
4156         (genrtl_while_stmt): Likewise.
4157         (genrtl_do_stmt): Likewise.
4158         (genrtl_return_stmt): Likewise.
4159         (genrtl_for_stmt): Likewise.
4160         (genrtl_break_stmt): Likewise.
4161         (genrtl_continue_stmt): Likewise.
4162         (genrtl_scope_stmt): Likewise.
4163         (genrtl_switch_stmt): Likewise.
4164         (genrtl_case_label): Likewise.
4165         (genrtl_begin_compound_stmt): Likewise.
4166         (genrtl_finish_compound_stmt): Likewise.
4167         (genrtl_compound_stmt): Likewise.
4168         (genrtl_asm_stmt): Likewise.
4170         * init.c (begin_init_stmts): Remove call to
4171         genrtl_begin_compound_stmt.
4172         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
4174         * semantics.c (lang_expand_stmt): Changed call to
4175         genrtl_compound_stmt to ignore return value.
4177 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
4179         * mangle.c (canonicalize_for_substitution): Return the canonical
4180         variant of a type.
4182         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
4183         TYPE_DECL.
4184         * typeck.c (commonparms): Remove obstack manipulations.
4186 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
4188         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
4190         * Makefile.in (OBJS): Added ../c-semantics.o.
4191         (OBJDEPS): Likewise.
4193         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
4194         ../c-common.h.
4195         (struct stmt_tree): Added comment.
4196         (current_function_name_declared): Removed.
4197         (stmts_are_full_exprs_p): Likewise.
4198         (genrtl_do_pushlevel): Likewise.
4199         (genrtl_clear_out_block): Likewise.
4200         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
4201         (DECL_ANON_UNION_ELEMS): Likewise.
4202         (emit_local_var): Likewise.
4203         (make_rtl_for_local_static): Likewise.
4204         (do_case): Likewise.
4205         (expand_stmt): Likewise.
4206         (genrtl_decl_cleanup): Likewise.
4207         (c_expand_asm_operands): Likewise.
4208         (c_expand_return): Likewise.
4209         (c_expand_start_case): Likewise.
4211         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
4212         (emit_local_var): Likewise.
4213         (initialize_local_var): Change reference to
4214         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
4215         Change reference to stmts_are_full_exprs_p to
4216         current_stmt_tree->stmts_are_full_exprs_p.
4217         (push_cp_function_context): Likewise.
4219         * expect.c (expand_throw): Change reference to
4220         stmts_are_full_exprs_p.
4222         * init.c (build_aggr_init): Change reference to
4223         stmts_are_full_exprs_p.
4224         (build_vec_init): Likewise.
4226         * optimize.c (maybe_clone_body): Change reference to
4227         current_function_name_declared to
4228         cp_function_chain->name_declared.
4230         * pt.c (instantiate_decl): Change reference to
4231         current_function_name_declared to
4232         cp_function_chain->name_declared.
4234         * semantics.c (expand_cond): Moved declaration to c-common.h.
4235         (genrtl_do_pushlevel): Moved to c-semantics.c.
4236         (genrtl_clear_out_block): Likewise.
4237         (genrtl_goto_stmt): Likewise.
4238         (genrtl_expr_stmt): Likewise.
4239         (genrtl_decl_stmt): Likewise.
4240         (gerntl_if_stmt): Likewise.
4241         (genrtl_while_stmt): Likewise.
4242         (genrtl_do_stmt): Likewise.
4243         (genrtl_return_stmt): Likewise.
4244         (genrtl_for_stmt): Likewise.
4245         (genrtl_break_stmt): Likewise.
4246         (genrtl_continue_stmt): Likewise.
4247         (genrtl_scope_stmt): Likewise.
4248         (genrtl_switch_stmt): Likewise.
4249         (genrtl_case_label): Likewise.
4250         (genrtl_begin_compound_stmt): Likewise.
4251         (genrtl_finish_compound_stmt): Likewise.
4252         (genrtl_compound_stmt): Likewise.
4253         (genrtl_asm_stmt): Likewise.
4254         (genrtl_decl_cleanup): Likewise.
4255         (expand_cond): Likewise.
4256         (expand_stmt): Renamed to ...
4257         (lang_expand_stmt): ... this.
4258         (lang_expand_expr_stmt): Initialize.
4259         (set_current_function_name_declared): Likewise.
4260         (stmts_are_full_exprs_p): Likewise.
4261         (current_function_name_declared): Likewise.
4262         (anon_aggr_type_p): Likewise.
4263         (do_poplevel): Change reference to
4264         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
4265         Change reference to stmts_are_full_exprs_p to
4266         current_stmt_tree->stmts_are_full_exprs_p.
4267         (add_tree): Likewise.
4268         (finish_expr_stmt): Likewise.
4269         (prep_stmt): Likewise.
4270         (lang_expand_stmt): Likewise.
4271         (begin_compound_stmt): Change reference to
4272         current_function_name_declared to
4273         cp_function_chain->name_declared and call to
4274         current_function_name_declared().
4275         (setup_vtbl_ptr): Likewise.
4276         (genrtl_do_poplevel): Removed.
4278 2000-06-30  Jason Merrill  <jason@redhat.com>
4280         * init.c (init_init_processing): Go back to aligning like
4281         double_type_node for old ABI.
4282         (get_cookie_size): Make cookie larger if we get a type that needs
4283         more alignment.
4284         (build_vec_delete): Call it.
4286         * typeck.c (qualify_type_recursive): New fn.
4287         (composite_pointer_type): Use it.
4288         (build_binary_op): Use composite_pointer_type.
4290 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
4291             Jason Merrill  <jason@redhat.com>
4293         * typeck.c (check_return_expr): Don't complain about returning
4294         NULL from operator new if -fcheck-new.
4295         * cp-tree.h: Declare flag_check_new here.
4296         * init.c: Not here.
4298 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
4300         * mangle.c (find_substitution): Use same_type_p.
4301         (write_encoding): Don't check for substitutions.
4303 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
4305         * parse.y (expr_no_comma_rangle): New non-terminal.
4306         (template_parm): Use it for default parameter case.
4307         (template_arg): Use it.
4308         (expr_no_commas): Remove commented out undefined extensions.
4309         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
4310         * parse.h, parse.c: Rebuilt.
4312 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
4314         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
4315         (finish_asm_stmt): Do it here, instead.
4317         * cp-tree.h (ridpointers): Don't declare.
4318         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
4319         (record_builtin_java_type): Likewise.
4320         (init_decl_processing): Likewise.
4321         * lex.c: Move inclusion of lex.h.
4322         (ridpointers): Don't define.
4323         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
4324         RID_MAX.
4325         * lex.h (enum rid): Rename to ...
4326         (enum cp_rid): ... this.
4327         (ridpointers): Don't declare.
4328         * parse.y: Move inclusion of lex.h.
4329         * parse.c: Regenerated.
4330         * spew.c: Move inclusion of lex.h.
4332         * cp-tree.h (struct language_function): Remove temp_name_counter.
4333         (temp_name_counter): Remove.
4334         (get_temp_name): Change prototype.
4335         (get_guard): New function.
4336         (get_guard_cond): Likewise.
4337         (set_guard): Likewise.
4338         * cvt.c (build_up_reference): Adjust call to get_temp_name.
4339         * decl.c (expand_static_init): Use get_guard and friends to
4340         implement guard variables.
4341         * decl2.c (get_temp_name): Assume that the variables created are
4342         always static.
4343         (get_sentry): Rename to ...
4344         (get_guard): ... this.  Implement new ABI guard variables.
4345         (get_guard_bits): New function.
4346         (get_guard_cond): Likewise.
4347         (set_guard): Likewise.
4348         (start_static_initialization_or_destruction): Use them.
4349         (do_static_initialization): Replace sentry with guard throughout.
4350         (do_static_destruction): Likewise.
4351         * init.c (create_temporary_var): Add comment.
4353 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
4355         * mangle.c (find_substitution): Use same_type_p.
4356         (write_encoding): Don't check for substitutions.
4358 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
4360         * parse.y (expr_no_comma_rangle): New non-terminal.
4361         (template_parm): Use it for default parameter case.
4362         (template_arg): Use it.
4363         (expr_no_commas): Remove commented out undefined extensions.
4364         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
4365         * parse.h, parse.c: Rebuilt.
4367 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
4369         * cp-tree.h (flag_const_strings): Remove.
4370         (warn_parentheses): Likewise.
4371         (warn_format): Likewise.
4372         (common_type): Likewise.
4373         (default_conversion): Likewise.
4374         (build_binary_op): Likewise.
4375         (cp_build_binary_op): New macro.
4376         * call.c (build_new_op): Use cp_build_binary_op instead of
4377         build_binary_op.
4378         * class.c (build_vtable_entry_ref): Likewise.
4379         * decl.c (expand_static_init): Likewise.
4380         (compute_array_index_type): Likewise.
4381         (build_enumerator): Likewise.
4382         * decl2.c (delete_sanity): Likewise.
4383         (start_static_initialization_or_destruction): Likewise.
4384         * error.c (dump_type_suffix): Likewise.
4385         * init.c (resolve_offset_ref): Likewise.
4386         (build_new): Likewise.
4387         (build_new_1): Likewise.
4388         (build_vec_delete_1): Likewise.
4389         (build_vec_init): Likewise.
4390         (build_delete): Likewise.
4391         * rtti.c (synthesize_tinfo_fn): Likewise.
4392         (synthesize_tinfo_var): Likewise.
4393         * search.c (expand_upcast_fixups): Likewise.
4394         (fixup_all_virtual_upcast_offsets): Likewise.
4395         * typeck.c (build_array_ref): Likewise.
4396         (get_member_function_from_ptrfunc): Likewise.
4397         (build_binary_op): Add parameter.
4398         (pointer_int_sum): Use cp_build_binary_op.
4399         (pointer_diff): Likewise.
4400         (build_modify_expr): Likewise.
4401         (get_delta_difference): Likewise.
4402         (build_ptrmemfunc): Likewise.
4404 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
4406         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
4407         * decl.c (create_implicit_typedef): Adjust.
4408         * decl2.c (build_artificial_parm): Adjust.
4409         * method.c (implicitly_declare_fn): Adjust.
4410         * pt.c (push_inline_template_parms_recursive): Adjust.
4411         (process_template_parm): Adjust.
4412         (overloaded_template_name): Adjust.
4413         * semantics.c (finish_template_template_parm): Adjust.
4415 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
4417         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
4418         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
4419         where to emit thunks.
4420         (build_vtt): Adjust call to build_vtt_inits.
4421         (build_vtt_inits): Add parameter to indicate whether or not
4422         sub-VTTs for virtual bases should be included.  Adjust handling of
4423         construction vtables.
4424         (get_matching_base): New function.
4425         (dfs_build_vtt_inits): Rename to ...
4426         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
4427         construction vtables.
4428         (dfs_fixup_binfo_vtbls): Likewise.
4429         (build_ctor_vtbl_groups): Build construction vtables for virtual
4430         bases, too.
4431         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
4432         to build construction vtbls.
4433         (dfs_accumulate_vtbl_inits): Adjust handling of
4434         construction vtables.
4436         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
4437         types correctly.
4439 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
4441         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
4443 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
4445         * search.c (hides): Remove.
4446         (is_subobject_of_p): Add most_derived parameter. Use
4447         CANONICAL_BINFO.
4448         (lookup_field_queue_p): Adjust.
4449         (lookup_field_r): Adjust.
4451 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
4453         * decl2.c (handle_class_head): Bash typedefs to the type's main
4454         decl.
4456 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
4458         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
4459         (begin_global_stmt_expr): ... this.
4460         (genrtl_finish_stmt_expr): Rename to ...
4461         (finish_global_stmt_expr): ... this.
4462         * init.c (begin_init_stmts): Adjust calls.
4463         (finish_init_stmts): Likewise.
4464         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
4465         (begin_global_stmt_expr): ... this.
4466         (genrtl_finish_stmt_expr): Rename to ...
4467         (finish_global_stmt_expr): ... this.
4469 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
4471         * search.c (lookup_member): Fix typo in comment.
4473 2000-06-24  Jason Merrill  <jason@redhat.com>
4475         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
4476         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
4478 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
4480         * parse.y (complex_direct_notype_declarator): Support global_scope.
4481         * Makefile.in: Adjust conflict count.
4483 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
4485         * parse.y (template_arg): Convert TEMPLATE_DECL
4486         that is a template template paramter to
4487         TEMPLATE_TEMPLATE_PARM here.
4489         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
4490         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
4491         (copy_template_template_parm): Adjust prototype.
4492         * decl.c (grokdeclarator): Remove dead code.
4493         * pt.c (process_template_parm): Tidy.
4494         (lookup_template_class): Construct nodes in
4495         copy_template_template_parm.
4496         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
4497         lookup_template_class.  Use TYPE_TI_TEMPLATE.
4498         * tree.c (copy_template_template_parm): Add NEWARGS
4499         parameter.
4500         (mapcar): Adjust call to copy_template_template_parm.
4501         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
4502         * method.c (build_template_template_parm_names): Change error
4503         code to avoid compilation warning.
4505         * gxxint.texi: Document template template parameter
4506         name mangling.
4508 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
4510         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
4511         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
4512         (cp-demangle.o): New rule.
4513         (dyn-string.o): Likewise.
4514         * inc/cxxabi.h (__cxa_demangle): New declaration.
4516 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
4518         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
4519         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
4520         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
4521         a tree, not an int.
4522         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
4523         (make_thunk): Change prototype.
4524         (emit_thunk): Rename to use_thunk.
4525         (mangle_thunk): Change prototype.
4526         * class.c (get_derived_offset): Simplify.
4527         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
4528         BV_GENERATE_THUNK_WITH_VTABLE_P.
4529         (build_primary_vtable): Simplify.
4530         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
4531         (dfs_find_base): Remove.
4532         (update_vtable_entry_for_fn): Correct bug in finding the base
4533         where a virtual function was first declared.  Figure out whether
4534         or not to emit a vcall-thunk with the vtables in which it appears.
4535         Correct logic for deciding whether to use an ordinary thunk, or a
4536         vcall thunk.
4537         (finish_struct_1): Remove unnecssary code.
4538         (build_vtbl_initializer): Use ssize_int for the running counter of
4539         negative indices.
4540         (build_vtbl_initializer): Only use vcall thunks where necessary.
4541         Mark thunks as needing to be emitted with their vtables, or not.
4542         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
4543         indices.  Use size_binop.
4544         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
4545         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
4546         size_binop.
4547         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
4548         (build_vtable_entry): Mark thunks as needing to be emitted with
4549         their vtables, or not.
4550         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
4551         * decl2.c (mark_vtable_entries): Use use_thunk instead of
4552         emit_thunk.
4553         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
4554         information.
4555         * error.c (dump_expr): Use BV_FN.
4556         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
4557         not an int.
4558         * method.c (make_thunk): Likewise.
4559         (emit_thunk): Rename to use_thunk.  Allow callers to decide
4560         whether or not to actually emit the thunk.  Adjust for changes in
4561         representation of vcall offsets.
4562         * search.c (dfs_get_pure_virtuals): Use BV_FN.
4563         * semantics.c (emit_associated_thunks): New function.
4564         (expand_body): Use it.
4565         * ir.texi: Adjust decriptions of thunks.
4567 2000-06-22  Jason Merrill  <jason@redhat.com>
4569         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
4570         (tsubst_friend_function): Copy it here.
4572         * decl.c (grok_op_properties): Fix typo.
4574         * decl2.c (delete_sanity): Clarify warning, avoid failure on
4575         deleting void*.
4577         * pt.c (check_explicit_specialization): Clarify error.
4579         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
4580         an old OVERLOAD when we're declaring a non-function.
4581         (pushdecl, destroy_local_var): Check for error_mark_node.
4582         (warn_extern_redeclared_static): Also bail early if
4583         we're a CONST_DECL.
4584         (push_overloaded_decl): Ignore an old error_mark_node.
4586 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
4588         * call.c (build_x_va_arg): Check if in a template decl.
4589         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
4591 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
4593         * class.c (push_lang_context): TYPE_NAME gets you to the Java
4594         types DECLs.
4595         * decl.c (check_goto): Computed gotos assumed OK.
4597 2000-06-20  Jason Merrill  <jason@redhat.com>
4599         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
4600         for which we don't need to look for instantiations.
4602 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
4604         * parse.y (program): Always call finish_translation_unit.
4605         * parse.c, parse.h: Rebuilt.
4607 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
4609         * method.c: Don't include hard-reg-set.h.
4611 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
4613         * rtti.c (get_base_offset): Cope when vbase field is in a base.
4615 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
4617         * call.c (build_conditional_expr): Use VOID_TYPE_P.
4618         * cvt.c (cp_convert_to_pointer): Likewise.
4619         (convert_to_void): Likewise.
4620         * error.c (dump_expr): Likewise.
4621         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
4622         * init.c (build_delete): Likewise.
4623         * method.c (emit_thunk): Likewise.
4624         * optmize.c (declare_return_variable): Likewise.
4625         * rtti.c (get_tinfo_decl_dynamic): Likewise.
4626         (get_typeid): Likewise.
4627         (build_dynamic_cast_1): Likewise.
4628         * typeck.c (composite_pointer_type): Likewise.
4629         (common_type): Likewise.
4630         (build_indirect_ref): Likewise.
4631         (build_binary_op): Likewise.
4632         (build_x_compound_expr): Likewise.
4633         (check_return_expr): Likewise.
4634         * typeck2.c (add_exception_specifier): Likewise.
4636         * mangle.c (write_method_parms): Use direct comparison for end
4637         of parmlist.
4639 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
4641         * cp-tree.h (genrtl_try_block): Declare function.
4642         (genrtl_handler): Likewise.
4643         (genrtl_catch_block): Likewise.
4644         (genrtl_ctor_stmt): Likewise.
4645         (genrtl_subobject): Likewise.
4646         (genrtl_decl_cleanup): Likewise.
4647         (genrtl_do_poplevel): Likewise.
4648         (genrtl_do_pushlevel): Likewise.
4649         (genrtl_clear_out_block): Likewise.
4650         (genrtl_goto_stmt): Likewise.
4651         (genrtl_expr_stmt): Likewise.
4652         (genrtl_decl_stmt): Likewise.
4653         (genrtl_if_stmt): Likewise.
4654         (genrtl_while_stmt): Likewise.
4655         (genrtl_do_stmt): Likewise.
4656         (genrtl_return_stmt): Likewise.
4657         (genrtl_for_stmt): Likewise.
4658         (genrtl_break_stmt): Likewise.
4659         (genrtl_continue_stmt): Likewise.
4660         (genrtl_scope_stmt): Likewise.
4661         (genrtl_switch_stmt): Likewise.
4662         (genrtl_case_label): Likewise.
4663         (genrtl_begin_compound_stmt): Likewise.
4664         (genrtl_finish_compound_stmt): Likewise.
4665         (genrtl_compound_stmt): Likewise.
4666         (genrtl_asm_stmt): Likewise.
4667         (genrtl_named_return_value): Likewise.
4668         (genrtl_begin_stmt_expr): Likewise.
4669         (genrtl_finish_stmt_expr): Likewise.
4670         (finish_for_stmt): Removed first argument.
4671         (finish_switch_stmt): Likewise.
4673         * semantics.c (genrtl_try_block): Define function.
4674         (genrtl_handler): Likewise.
4675         (genrtl_catch_block): Likewise.
4676         (genrtl_ctor_stmt): Likewise.
4677         (genrtl_subobject): Likewise.
4678         (genrtl_decl_cleanup): Likewise.
4679         (genrtl_do_poplevel): Likewise.
4680         (genrtl_do_pushlevel): Likewise.
4681         (genrtl_clear_out_block): Likewise.
4682         (genrtl_goto_stmt): Likewise.
4683         (genrtl_expr_stmt): Likewise.
4684         (genrtl_decl_stmt): Likewise.
4685         (genrtl_if_stmt): Likewise.
4686         (genrtl_while_stmt): Likewise.
4687         (genrtl_do_stmt): Likewise.
4688         (genrtl_return_stmt): Likewise.
4689         (genrtl_for_stmt): Likewise.
4690         (genrtl_break_stmt): Likewise.
4691         (genrtl_continue_stmt): Likewise.
4692         (genrtl_scope_stmt): Likewise.
4693         (genrtl_switch_stmt): Likewise.
4694         (genrtl_case_label): Likewise.
4695         (genrtl_begin_compound_stmt): Likewise.
4696         (genrtl_finish_compound_stmt): Likewise.
4697         (genrtl_compound_stmt): Likewise.
4698         (genrtl_asm_stmt): Likewise.
4699         (genrtl_named_return_value): Likewise.
4700         (genrtl_begin_stmt_expr): Likewise.
4701         (genrtl_finish_stmt_expr): Likewise.
4702         (finish_for_stmt): Removed first argument and generate rtl
4703         specific code.
4704         (finish_switch_stmt): Likewise.
4705         (do_poplevel): Removed generate rtl specific code.
4706         (do_pushlevel): Likewise.
4707         (add_tree): Likewise.
4708         (finish_goto_stmt): Likewise.
4709         (finish_expr_stmt): Likewise.
4710         (begin_if_stmt): Likewise.
4711         (finish_if_stmt_cond): Likewise.
4712         (finish_then_clause): Likewise.
4713         (begin_else_clause): Likewise.
4714         (finish_else_clause): Likewise.
4715         (finish_if_stmt): Likewise.
4716         (clear_out_block): Likewise.
4717         (begin_while_stmt): Likewise.
4718         (finish_while_stmt_cond): Likewise.
4719         (finish_while_stmt): Likewise.
4720         (begin_do_stmt): Likewise.
4721         (finish_do_body): Likewise.
4722         (finish_do_stmt): Likewise.
4723         (finish_return_stmt): Likewise.
4724         (begin_for_stmt): Likewise.
4725         (finish_for_init_stmt): Likewise.
4726         (finish_for_cond): Likewise.
4727         (finish_for_expr): Likewise.
4728         (finish_break_stmt): Likewise.
4729         (finish_continue_stmt): Likewise.
4730         (begin_switch_stmt): Likewise.
4731         (finish_switch_cond): Likewise.
4732         (finish_case_label): Likewise.
4733         (begin_try_block): Likewise.
4734         (begin_function_try_block): Likewise.
4735         (finish_try_block): Likewise.
4736         (finish_cleanup_try_block): Likewise.
4737         (finish_cleanup): Likewise.
4738         (finish_function_try_block): Likewise.
4739         (finish_handler_sequence): Likewise.
4740         (finish_function_handler_sequence): Likewise.
4741         (begin_handler): Likewise.
4742         (finish_handler_parms): Likewise.
4743         (begin_catch_block): Likewise.
4744         (finish_handler): Likewise.
4745         (begin_compound_stmt): Likewise.
4746         (finish_compound_stmt): Likewise.
4747         (finish_asm_stmt): Likewise.
4748         (finish_label_stmt): Likewise.
4749         (finish_label_decl): Likewise.
4750         (finish_subobject): Likewise.
4751         (finish_decl_cleanup): Likewise.
4752         (finish_named_return_value): Likewise.
4753         (begin_stmt_expr): Likewise.
4754         (finish_stmt_expr): Likewise.
4756         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
4757         to call genrtl_expr_stmt when appropriate.
4759         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
4760         begin_compound_expr to call genrtl_begin_stmt_expr and
4761         genrtl_begin_compound_expr when appropriate.
4762         (finish_init_stmts): Changed calls to finish_compound_expr and
4763         finish_stmt_expr to call genrtl_finish_compound_expr and
4764         genrtl_finish_stmt_expr when appropriate.
4765         (expand_default_init): Changed call to finish_expr_stmt to call
4766         genrtl_expr_stmt when appropriate.
4767         (build_vec_init): Likewise.
4769         * parse.y (simple_stmt): Removed first argument from call to
4770         finish_for_stmt. Removed first argument from call to
4771         finish_switch_stmt.
4773         * parse.c: Regenerated.
4775         * pt.c (tsubst_expr): Removed first argument from call to
4776         finish_for_stmt. Removed first argument from call to
4777         finish_switch_stmt.
4779 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
4781         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
4782         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
4784         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
4785         (cplus_tree_code_length[]): Likewise.
4786         (cplus_tree_code_name[]): Likewise.
4787         (init_parse): Added call to add_c_tree_codes. Changed
4788         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
4790 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
4792         * cp-tree.h (finish_mem_initializers): Declare.
4793         (count_trees): Likewise.
4794         * parse.y (base_init): Use finish_mem_initializers.
4795         * semantics.c (finish_mem_initializers): New function.
4797         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
4798         the number of trees.
4799         (n_trees): Remove.
4800         (count_trees): Don't use it.
4802 2000-06-15  Jason Merrill  <jason@redhat.com>
4804         * tree.c (count_trees): New debugging function.
4806         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
4807         * init.c (build_member_call): Pull out the name of a DECL.
4809         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
4810         * semantics.c (expand_body): Push to TV_INTEGRATION here.
4811         * optimize.c (optimize_function): Not here.
4812         * pt.c (instantiate_decl): Push to TV_PARSE.
4814 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
4816         * cp-tree.h (struct language_function): Remove x_base_init_list
4817         and x_member_init_list.
4818         (current_base_init_list): Remove.
4819         (current_member_init_list): Likewise.
4820         (setup_vtbl_ptr): Change prototype.
4821         (emit_base_init): Likewise.
4822         (expand_member_init): Likewise.
4823         (reinit_parse_for_function): Remove.
4824         * decl.c (save_function_data): Don't clear x_base_init_list and
4825         x_member_init_list.
4826         (mark_language_function): Don't mark them.
4827         * init.c (perform_member_init): Tweak comment.
4828         (sort_member_init): Take the list of initializers as an argument.
4829         (sort_base_init): Likewise.
4830         (emit_base_init): Likewise.
4831         (expand_member_init): Return the initializer.  Don't use global
4832         variables.
4833         * lex.c (reinit_parse_for_function): Remove.
4834         * method.c (build_template_parm_names): Correct substitution.
4835         (do_build_copy_constructor): Don't use current_member_init_list
4836         and current_base_init_list.
4837         (synthesize_method): Likewise.
4838         * parse.y (base_init): Split mem-initializers into
4839         base-initializers and field-initializers.
4840         (member_init_list): Build up the list here.
4841         (member_init): Return the initializer.
4842         (fn.depfn): Don't use reinit_parse_for_function.
4843         * parse.c: Regenerated.
4844         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
4845         ERROR_MARK.
4846         (tsubst_expr): Don't use current_member_init_list
4847         and current_base_init_list.
4848         (tsubst_expr_values): Rename to ...
4849         (tsubst_initializer_list): ... this.  Use convert_from_reference.
4850         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
4851         and current_base_init_list.
4852         (begin_function_definition): Don't call reinit_parse_for_function.
4854         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
4856         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
4857         correctly.
4859         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
4861 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
4863         * cp-tree.h (IF_COND): Move to c-common.h.
4864         (THEN_CLAUSE): Likewise.
4865         (ELSE_CLAUSE): Likewise.
4866         (WHILE_COND): Likewise.
4867         (WHILE_BODY): Likewise.
4868         (DO_COND): Likewise.
4869         (DO_BODY): Likewise.
4870         (RETURN_EXPR): Likewise.
4871         (EXPR_STMT_EXPR): Likewise.
4872         (FOR_INIT_STMT): Likewise.
4873         (FOR_COND): Likewise.
4874         (FOR_EXPR): Likewise.
4875         (FOR_BODY): Likewise.
4876         (SWITCH_COND): Likewise.
4877         (SWITCH_BODY): Likewise.
4878         (CASE_LOW): Likewise.
4879         (CASE_HIGH): Likewise.
4880         (GOTO_DESTINATION): Likewise.
4881         (COMPOUND_BODY): Likewise.
4882         (ASM_CV_QUAL): Likewise.
4883         (ASM_STRING): Likewise.
4884         (ASM_OUTPUTS): Likewise.
4885         (ASM_INPUTS): Likewise.
4886         (ASM_CLOBBERS): Likewise.
4887         (DECL_STMT_DECL): Likewise.
4888         (STMT_EXPR_STMT): Likewise.
4889         (LABEL_STMT_LABEL): Likewise.
4890         (SCOPE_BEGIN_P): Likewise.
4891         (SCOPE_END_P): Likewise.
4892         (SCOPE_STMT_BLOCK): Likewise.
4893         (SCOPE_NULLIFIED_P): Likewise.
4894         (SCOPE_NO_CLEANUPS_P): Likewise.
4895         (SCOPE_PARTIAL_P): Likewise.
4896         (ASM_VOLATILE_P): Likewise.
4897         (STMT_LINENO): Likewise.
4898         (STMT_LINENO_FOR_FN_P): Likewise.
4900         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
4901         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
4902         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
4903         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
4904         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
4906         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
4908         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
4909         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
4911         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
4912         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
4913         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
4915 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
4917         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
4918         * class.c (dfs_find_final_overrider): Set it appropriately.
4919         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
4920         avoid unneeded secondary vptrs.
4922 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
4924         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
4925         (check_bitfield_decl, check_field_decl): Likewise.
4926         (build_vtbl_or_vbase_field, build_base_field): Likewise.
4927         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
4928         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
4929         (xfer_tag, finish_enum): Likewise.
4930         * decl2.c (finish_builtin_type): Likewise.
4931         * init.c (init_init_processing): Likewise.
4932         * pt.c (instantiate_class_template): Likewise.
4933         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
4934         * cp-tree.h (struct lang_type): Add user_align member.
4935         (CLASSTYPE_USER_ALIGN): Define.
4937 Tue Jun 13 15:48:03 2000  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
4939         * Make-lang.in (c++.install-common): Install g++-cross in
4940         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
4941         $(target_alias)-g++ and $(target_alias)-c++.
4943 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
4945         * class.c (vcall_offset_data_s): Add last_init and fns.
4946         (overrides): Rename to same_signature_p.
4947         (dfs_find_final_overrider): Adjust accordingly.
4948         (mark_overriders): Likewise.
4949         (warn_hidden): Likewise.
4950         (build_vtbl_initializer): Reorganize machinery for building things
4951         at negative offsets.
4952         (build_vcall_and_vbase_vtbl_entries): Likewise.
4953         (build_vbase_offset_vtbl_entries): Likewise.
4954         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
4955         offset entries.  Do not create two entries for functions with the
4956         same signature.
4957         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
4958         (build_rtti_vtbl_entries): Reorganize machinery for building things
4959         at negative offsets.
4961         * optimize.c (expand_call_inline): Don't recurse into the code
4962         used to initialize the parameters more than once.
4964 2000-06-11  Mark Mitchell <mark@codesourcery.com>
4966         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
4967         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
4968         (find_substitution): Only use the `Sa' substitution for
4969         std::allocator, not instantiations of it.
4970         (write_template_prefix): Move comment.  Only use a TREE_LIST to
4971         represent substitutions for a member template.
4972         (write_array_type): Mangle array dimensions correctly.
4973         * optimize.c (maybe_clone_body): Copy more information from the
4974         cloned function.
4975         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
4976         on the regenerated declaration.
4978 2000-06-11  Chip Salzenberg  <chip@valinux.com>
4979             Mark Mitchell <mark@codesourcery.com>
4981         * class.c (build_vtable): Clarify comment.
4982         (build_ctor_vtbl_group): Pass the most derived type to
4983         build_vtable.
4985 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4987         * decl2.c (compare_options): Don't needlessly cast away const-ness.
4989 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
4991         * decl.c (add_binding): Handle duplicate declarations of external
4992         variables.
4994 2000-06-09  Chip Salzenberg  <chip@valinux.com>
4995             Mark Mitchell <mark@codesourcery.com>
4997         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
4998         argument.
4999         (write_signed_number): New macro.
5000         (write_unsigned_number): Likewise.
5001         (write_source_name): Use them.
5002         (write_number): Handle signed and unsigned values.
5003         (write_integer_cst): Use tree_int_cst_sgn, and use
5004         write_unsigned_number or write_signed_number as appropriate.
5005         (write_discriminator): Use write_unsigned_number or
5006         write_signed_number as appropriate.
5007         (write_template_arg_literal): Likewise.
5008         (write_array_type): Use tree_low_cst.
5009         (write_template_parm):  Use write_unsigned_number or
5010         write_signed_number as appropriate.
5011         (write_substitution): Adjust call to write_number.
5012         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
5013         (write_expression): Handle non-type template arguments of
5014         reference type correctly.
5015         (mangle_thunk): Use write_signed_number.
5017 2000-06-09  Chip Salzenberg  <chip@valinux.com>
5019         * mangle.c (find_substition): Don't mangle objects with typename
5020         substitutions (e.g. "cin" as "Si").
5022 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
5024         * call.c (add_candidate): Use ggc_alloc_cleared.
5025         * decl.c (lookup_label): Likewise.
5026         * lex.c (retrofit_lang_decl): Likewise.
5028 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
5030         * semantics.c (expand_body): Push to TV_EXPAND.
5031         * optimize.c (optimize_function): Push to TV_INTEGRATION.
5032         * decl.c (start_function): Always call announce_function.
5034         * tinfo2.cc: Just declare abort.
5036 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
5038         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
5039         whenever @ is a symbolic name.
5041 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
5043         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
5045 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
5047         * decl.c (pushdecl): Look up functions by DECL_NAME, not
5048         DECL_ASSEMBLER_NAME.
5050 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
5052         * decl2.c (c_language): Define.
5054 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
5056         * lex.c (lang_init_options): Tweak.
5058         * decl2.c: Remove #inclusion of diagnostic.h
5059         (lang_decode_option): Move diagnostic formatting options to
5060         toplevel.
5062         * lang-options.h: Remove documentation for diagnostic options.
5064         * Makefile.in (lex.o): Depends upon diagnostic.h
5066 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
5068         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
5069         the same DECL_RESULT, it's not a redefinition.
5070         * pt.c (tsubst_decl): Remove code to handle illegal
5071         specializations.
5073 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
5075         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
5077 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
5079         * search.c (maybe_suppress_debug_info): Don't check
5080         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
5082         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
5083         here if extern_p.
5085         Remember instantiation context in deferred instantiations.
5086         * cp-tree.h (struct tinst_level): Remove.
5087         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
5088         * pt.c (current_tinst_level): Now a tree.
5089         (print_template_context, push_tinst_level, pop_tinst_level,
5090         tinst_for_decl): Adjust.
5091         (reopen_tinst_level): New fn.
5092         (init_pt): Register current_tinst_level as a root.
5093         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
5094         of the pending templates list.
5095         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
5096         * lex.c (extract_interface_info): Adjust.
5097         * decl2.c (warn_if_unknown_interface): Adjust.
5099 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
5101         * class.c (indirect_primary_base_p): New function.
5102         (determine_primary_base): Use it.
5104 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
5106         Update new-abi dynamic cast algorithm.
5107         * tinfo.cc (__class_type_info::__dyncast_result): Add
5108         whole_details. Adjust constructor.
5109         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
5110         Avoid unnecessary searching.
5111         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
5113 Mon Jun  5 06:48:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5115         * decl.c (init_decl_processing): Don't call record_component_aliases.
5116         * tree.c (build_cplus_array_type_1): Likewise.
5118 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
5120         * ir.texi: Correct typo.
5121         * mangle.c (write_expression): Handle non-type template arguments
5122         with reference type.
5123         * method.c (build_overload_value): Likewise.
5124         * pt.c (convert_nontype_argument): Explicitly represent conversion
5125         to a reference with an ADDR_EXPR.
5126         (unify): Always unify arguments in left-to-right order.
5128 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
5129             Mark Mitchell  <mark@codesourcery.com>
5131         * Make-lang.in (CXX_SRCS): Add mangle.c.
5132         * Makefile.in (CXX_OBJS): Add mangle.o.
5133         (mangle.o): New rule.
5135         * class.c (local_classes): New variable.
5136         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
5137         (get_vtt_name): Use mangle_vtt_name for new ABI.
5138         (init_class_processing): Initialize local_classes.
5139         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
5140         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
5141         (std_identifier): New macro.
5142         (DECL_VOLATILE_MEMFUNC_P): New macro.
5143         (DECL_NAMESPACE_STD_P): Likewise.
5144         (local_classes): Declare.
5145         (get_mostly_instantiated_function_type): Declare.
5146         (init_mangle): Declare.
5147         (mangle_decl): Likewise.
5148         (mangle_type_string): Likewise.
5149         (mangle_type): Likewise.
5150         (mangle_typeinfo_for_type): Likewise.
5151         (mangle_typeinfo_string_for_type): Likewise.
5152         (mangle_vtbl_for_type): Likewise.
5153         (mangle_vtt_for_type): Likewise.
5154         (mangle_ctor_vtbl_for_type): Likewise.
5155         (mangle_thunk): Likewise.
5156         (mangle_conv_op_name_for_type): Likewise.
5157         (mangle_guard_variable): Likewise.
5158         * decl.c (pushtag): Keep track of local classes.
5159         (initialize_predefined_identifiers): Initialize std_identifier.
5160         (init_decl_processing): Use std_identifier.
5161         (start_decl): Don't treat instantiations as specializations.
5162         (grokdeclarator): Likewise.
5163         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
5164         name for fully-instantiated templates.
5165         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
5166         destructors with the new ABI.
5167         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
5168         (grokfield): Use mangle_type for new ABI.
5169         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
5170         (get_sentry): Use mangle_guard_variable for new ABI.
5171         (start_static_initialization_or_destruction): Likewise.
5172         * expr.c (extract_aggr_init): Remove.
5173         (extract_scalar_init): Likewise.
5174         (extract_init): Remove #if 0'd code.
5175         * mangle.c: New function.
5176         * method.c (build_mangled_name): Assert not flag_new_abi.
5177         (build_static_name): Likewise.
5178         (build_decl_overload_real): Likewise.
5179         (build_typename_overload): Likewise.
5180         (build_overload_with_type): Likewise.
5181         (build_overload_name): Likewise.
5182         (get_ctor_vtbl_name): Likewise.
5183         (start_squangling): Likewise.
5184         (get_id_2): Likewise.
5185         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
5186         (init_method): Call init_mangle for new ABI.
5187         (make_thunk): Call mangle_thunk for new ABI.
5188         * operators.def: Correct new ABI manglings for the `%' operator.
5189         Add `::' operator.
5190         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
5191         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
5192         (lookup_template_class): Call mangle_decl for new ABI.
5193         (get_mostly_instantiated_function_type): New function.
5194         (set_mangled_name_for_template_decl): Use it.
5195         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
5196         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
5197         conversion op names.
5198         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
5199         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
5200         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
5201         mangle_typeinfo_string_for_type.
5203 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
5205         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
5206         (INNERMOST_TEMPLATE_ARGS): New macro.
5207         (innermost_args): Remove.
5208         (get_innermost_template_args): New function.
5209         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
5210         * error.c (dump_function_decl): Be caution when using
5211         most_general_template.
5212         * method.c (build_template_parm_names):  Use
5213         INNERMOST_TEMPLATE_ARGS.
5214         * pt.c (add_to_template_args): Tidy comment
5215         (get_innermost_template_args): New function.
5216         (check_explicit_specialization): Clear DECL_INITIAL for a new
5217         specialization.
5218         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
5219         Tidy.
5220         (push_template_decl): Always register specializations of the most
5221         general template.
5222         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
5223         (coerce_template_parms): Likewise.
5224         (lookup_template_class): Likewise.
5225         (innermost_args): Remove.
5226         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
5227         (tsubst_decl): Handle tricky specializations.  Use
5228         get_innermost_template_args.
5229         (instantiate_template): Simplify handling of partial
5230         instantiations.
5231         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
5232         (most_general_template): Reimplement, in a more straightforward
5233         manner.
5234         (regenerate_decl_from_template): Tweak formatting.  Use
5235         TMPL_ARGS_DEPTH for clarity.
5236         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
5238         * dump.c (dequeue_and_dump): Dump information about thunks.
5240 2000-06-01  Richard Henderson  <rth@cygnus.com>
5242         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
5244 2000-06-01  Richard Henderson  <rth@cygnus.com>
5246         * decl2.c (unsupported_options): Fix typo, make const.
5247         (lang_decode_option): Fix bsearch argument order.
5249 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
5251         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
5252         on FIELD_DECLs.
5254 Wed May 31 14:09:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5256         * cp-tree.h (c_get_alias_set): Deleted.
5257         * Makefile.in (decl.o): Include ../expr.h.
5258         * decl.c (expr.h): Include.
5259         (init_decl_processing): Call record_component_aliases for arrays.
5260         (grokdeclarator): Likewise.
5261         Set TREE_ADDRESSABLE for fields that aren't bitfields.
5262         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
5264 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
5266         Remove guiding declaration support.
5267         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
5268         (flag_guiding_decls): Remove.
5269         * call.c (build_user_type_conversion_1): Remove support for
5270         guiding decls.
5271         (build_new_function_call): Likewise.
5272         (build_new_op): Likewise.
5273         (build_new_method_call): Likewise.
5274         * decl.c (start_function): Likewise.
5275         * friend.c (is_friend): Likewise.
5276         (do_friend): Likewise.
5277         * decl2.c ((flag_dump_translation_unit): Make it const.
5278         (flag_guiding_decls): Remove.
5279         (unsupported_options): New variable
5280         (compare_options): New function.
5281         (lang_decode_option): Use them.
5283         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
5285         * method.c (mangle_expression): Adjust test for legal expression
5286         operators.
5288         * pt.c (instantiate_decl): Save and restore the local
5289         specializations list.
5291 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
5293         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
5295 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
5297         * call.c (add_template_candidate_real): Handle member template
5298         constructors for classes with virtual bases.
5299         (build_user_type_conversion_1): Use in_charge_arg_for_name.
5300         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
5302         * ir.texi: Update thunk documentation.
5304         * call.c (joust): Fix handling of overloaded builtin operators.
5306 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
5308         * cp-tree.h (DECL_ANTICIPATED): New macro.
5309         Document new use of DECL_LANG_FLAG_7.
5310         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
5311         in the user namespace.
5312         * lex.c (do_identifier): If the identifier's declaration has
5313         DECL_ANTICIPATED on, it has not yet been declared.  But do not
5314         replace it with an ordinary implicit declaration.
5316         * tinfo2.cc: Include stdlib.h.
5318 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
5320         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
5321         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
5322         CLASSTYPE_ALIGN.
5324 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
5326         * decl2.c (lang_decode_option): Use skip_leading_substring instead
5327         of plain strncmp.
5329 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
5331         * operators.def (<?): Duplicated, should have been...
5332         (>?): this.  Fixed.
5334 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
5335             Mark Mitchell  <mark@codesourcery.com>
5337         * cp-tree.h (ansi_opname): Make it a macro.
5338         (ansi_assopname): Likewise.
5339         (struct lang_decl_flags): Add assignment_operator_p.
5340         (struct lang_decl): Add operator_code.
5341         (DECL_VTT_PARM): Adjust.
5342         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
5343         overloaded operator.
5344         (SET_OVERLOADED_OPERATOR_CODE): New macro.
5345         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
5346         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
5347         (opname_tab): Remove.
5348         (assignop_tab): Likewise.
5349         (operator_name_info_t): New type.
5350         (operator_name_info): New variable.
5351         (assignment_operator_name_info): Likewise.
5352         (build_cp_library_fn): Remove declaration.
5353         (push_cp_library_fn): Likewise.
5354         (operator_name_string): Likewise.
5355         (build_decl_overload): Likewise.
5356         * call.c (print_z_candidates): Simplify.
5357         (build_object_call): Adjust usage of ansi_opname.  Use
5358         DECL_OVERLOADED_OPERATOR_P.
5359         (op_error): Adjust operator name lookup.
5360         (build_conditional_expr): Adjust usage of ansi_opname.
5361         (build_new_op): Likewise.
5362         (build_op_delete_call): Likewise.
5363         (build_over_call): Likewise.
5364         (joust): Use DECL_OVERLOADED_OPERATOR_P.
5365         * decl.c (duplicate_decls): Copy operator_code.
5366         (init_decl_processing): Adjust parameters to push_cp_library_fn.
5367         (builtin_function): Adjust parameters to build_library_fn_1.
5368         (build_library_fn_1): Accept an overloaded operator code.
5369         (build_library_fn): Pass ERROR_MARK.
5370         (build_cp_library_fn): Accept an overloaded operator code.
5371         (push_cp_library_fn): Likewise.
5372         (grokfndecl): Tweak.
5373         (grokdeclarator): Simplify code to compute names of overloaded
5374         operators.  Adjust use of ansi_opname.
5375         (ambi_op_p): Work on tree_codes, not identifiers.
5376         (unary_op_p): Likewise.
5377         (grok_op_properties): Likewise.
5378         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
5379         (lang_mark_tree): Don't try to mark the operator_code.
5380         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
5381         * error.c (dump_decl): Remove special handling for operator
5382         names.
5383         (dump_function_name): Likewise.
5384         (dump_expr): Adjust name lookup of operators.
5385         (op_to_string): Simplify.
5386         (assop_to_string): Likewise.
5387         * init.c (build_new_1): Adjust use of ansi_opname.
5388         * lex.c (opname_tab): Remove.
5389         (assignop_tab): Likewise.
5390         (ansi_opname): Likewise.
5391         (ansi_assopname): Likewise.
5392         (operator_name_string): Likewise.
5393         (reinit_lang_specific): Likewise.
5394         (operator_name_info): New variable.
5395         (assignment_operator_name_info): Likewise.
5396         (init_operators): New function.
5397         (init_parse): Use it.
5398         (do_identifier): Adjust use of ansi_opname.
5399         * method.c (mangle_expression): Don't use ansi_opname for
5400         mangling.
5401         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
5402         (build_decl_overload): Remove.
5403         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
5404         (do_build_assign_ref): Adjust use of ansi_opname.
5405         (synthesize_method): Likewise.
5406         (implicitly_declare_fn): Likewise.
5407         * operators.def: New file.
5408         * parse.y (operator): Adjust use of ansi_opname.
5409         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
5410         (set_mangled_name_for_template_decl): Don't play games with
5411         current_namespace.
5412         (special_function_p): Adjust use of ansi_opname.
5413         * typeck.c (check_return_expr): Likewise.
5414         * Make-lang.in (cc1plus): Depend on operators.def.
5415         * Makefile.in (lex.o): Likewise.
5416         (decl.o): Likewise.
5418 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
5420         * Make-lang.in (cplib2.ready): Eradicate.
5422 Sat May 27 11:25:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5424         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
5425         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
5426         (built_min, cp_tree_equal): Likewise.
5428 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
5430         * class.c (layout_nonempty_base_or_field): Replace
5431         `record_layout_info' with `record_layout_info_s'.
5433 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
5435         Fix goto checking.
5436         * cp-tree.h (struct language_function): x_named_labels is now
5437         a struct named_label_list*.
5438         * decl.c (struct named_label_use_list): Renamed from...
5439         (struct named_label_list): ...this.  New struct.
5440         (push_binding_level): Don't set eh_region.
5441         (note_level_for_eh): New fn.
5442         (pop_label): Take label and old value directly.
5443         (pop_labels): Adjust for new named_labels format.
5444         (lookup_label): Likewise.
5445         (poplevel): Note characteristics of a binding level containing a
5446         named label.  Mess with named label lists earlier.
5447         (mark_named_label_lists): New fn.
5448         (mark_lang_function): Call it.
5449         (use_label): New fn, split out from...
5450         (make_label_decl): ...here.  Don't call it.
5451         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
5452         check_previous_gotos): New fns, split out from...
5453         (define_label): ...here.
5454         (check_switch_goto): New fn.
5455         (define_case_label): Call it.
5456         (check_goto): New fn.
5457         * semantics.c (finish_goto_stmt): Call it and use_label.
5458         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
5459         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
5461 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
5463         * class.c (build_vtable_entry_ref): Correct usage of
5464         get_vtbl_decl_for_binfo.
5466         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
5467         * method.c (implicitly_declare_fn): Not here.
5469 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
5471         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
5472         (CPTI_PTMD_DESC_TYPE): ... here.
5473         (ptmd_desc_type_node): Rename to ...
5474         (ptm_desc_type_node): ... here.
5475         * decl.c: Likewise.
5476         * rtti.c (ptmd_initializer): Rename to ...
5477         (ptm_initializer): ... here.
5478         (sythesize_tinfo_var): Adjust. Deal with pointer to member
5479         function.
5480         (create_tinfo_types): Adjust.
5482 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
5484         Finish implementation of VTTs.
5485         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
5486         CPTI_VTT_PARM_IDENTIFIER.
5487         (vtt_parm_identifier): New macro.
5488         (vtt_parm_type): Likewise.
5489         (BINFO_SUBVTT_INDEX): Likewise.
5490         (BINFO_VPTR_INDEX): Likewise.
5491         (struct lang_decl): Add vtt_parm.
5492         (DECL_VTT_PARM): New macro.
5493         (DECL_USE_VTT_PARM): Likewise.
5494         (DECL_NEEDS_VTT_PARM_P): Likewise.
5495         (get_vtt_name): Declare.
5496         (build_artifical_parm): Likewise.
5497         (fixup_all_virtual_upcast_offsets): Likewise.
5498         (expand_indirect_vtbls_init): Remove.
5499         * call.c (build_new_method_call): Pass the vtt to subobject
5500         constructors and destructors.
5501         * class.c (get_vtt_name): Give it external linkage.
5502         (build_clone): Handle the magic VTT parameters for clones.
5503         (clone_function_decl): Fix typo in comment.
5504         (build_vtt): Keep track of the indices in the VTTs where various
5505         entities are stored.
5506         (build_vtt_inits): Likewise.
5507         (dfs_build_vtt_inits): Likewise.
5508         (build_ctor_vtbl_group): Tweak type of construction vtables.
5509         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
5510         primary bases, when building construction vtables.
5511         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
5512         (initialize_predefined_identifiers): Add vtt_parm_identifier.
5513         (init_decl_processing): Initialize vtt_parm_type.
5514         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
5515         (lang_mark_tree): Make vtt_parm.
5516         * decl2.c (build_artificial_parm): New function.
5517         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
5518         (grokclassfn): Use build_artificial_parm.
5519         * init.c (initialize_vtbl_ptrs): Call
5520         fixup_all_virtual_upcast_offsets directly.
5521         (perform_member_init): Use the complete subobject destructor for
5522         member cleanups.
5523         (build_vtbl_address): New function.
5524         (expand_virtual_init): Handle VTTs.
5525         * optimize (maybe_clone_body): Likewise.
5526         * search.c (fixup_all_virtual_upcast_offsets): Give it external
5527         linkage.
5528         (expand_indirect_vtbls_init): Remove.
5529         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
5530         * tree.c (make_binfo): Make them bigger.
5532 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
5534         * inc/cxxabi.h (__pbase_type_info): Define, based on
5535         __pointer_type_info.
5536         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
5537         (__pointer_to_member_type_info): Likewise.
5538         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
5539         (__pointer_to_member_type_info::__is_pointer_p): Remove.
5540         (__pointer_type_info::__do_catch): Rename to ...
5541         (__pbase_type_info::__do_catch): ... here. Adjust.
5542         (__pbase_type_info::__pointer_catch): Implement.
5543         (__pointer_type_info::__pointer_catch): Adjust.
5544         (__pointer_to_member_type_info::__pointer_catch): Adjust.
5546 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
5548         * tinfo.h (__user_type_info::contained_virtual_p): New
5549         predicate.
5550         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
5551         shaped heirarchy.
5552         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
5553         diamond shaped heirarchy. Add early out for mixed diamond and
5554         duplicate shaped heirarchy.
5556 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
5558         * cp-tree.h (build_delete): Change prototype.
5559         (build_vec_delete): Likewise.
5560         * call.c (build_scoped_method_call): Use special_function_kind
5561         values to indicate the kind of destruction to be done.
5562         (build_method_call): Likewise.
5563         * decl.c (finish_destructor_body): Likewise.
5564         (maybe_build_cleanup_1): Likewise.  Rename to ...
5565         (maybe_build_cleanup): ... this.
5566         * decl2.c (delete_sanity): Use special_function_kind
5567         values to indicate the kind of destruction to be done.
5568         (build_cleanup): Likewise.
5569         * init.c (perform_member_init): Likewise.
5570         (build_vec_delete_1): Likewise.
5571         (build_dtor_call): Simplify.
5572         (build_delete): Use special_function_kind
5573         values to indicate the kind of destruction to be done.
5574         (build_vbase_delete): Likewise.
5575         (build_vec_delete): Likewise.
5577         * init.c (sort_member_init): Fix typo in error message generation
5578         code.
5580 Mon May 15 11:46:29 2000  Donald Lindsay  <dlindsay@cygnus.com>
5582         * semantics.c (begin_class_definition): make the packed
5583         attribute be sensitive to the "-fpack-struct" command line flag
5585 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
5587         Update new-abi upcast algorithm.
5588         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
5589         prototype and meaning of return value.
5590         (__si_class_type_info::__do_upcast): Likewise.
5591         (__vmi_class_type_info::__do_upcast): Likewise.
5592         * tinfo.cc (__class_type_info::__upcast_result): Replace
5593         whole2dst with part2dst. Adjust ctor.
5594         (__class_type_info::__do_upcast): Adjust call of worker function.
5595         (__class_type_info::__do_upcast): Adjust.
5596         (__si_class_type_info::__do_upcast): Adjust. Use parent's
5597         __do_upcast.
5598         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
5599         virtual base in diamond heirarchy bug.
5601 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
5603         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
5604         and bitfield to tinfo_fn_p.
5605         (DECL_TINFO_FN_P): Adjust.
5606         (SET_DECL_TINFO_FN_P): Likewise.
5607         (DECL_MUTABLE_P): Likewise.
5608         (DECL_C_BIT_FIELD): Likewise.
5609         (SET_DECL_C_BIT_FIELD): Likewise.
5610         (CLEAR_DECL_C_BIT_FIELD): Likewise.
5611         (DECL_UNINLINABLE): Likewise.
5612         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
5613         (handle_using_decl): Remove assertion.
5614         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
5615         to build FIELD_DECLs.
5616         (build_base_field): Likewise.
5617         (layout_class_type): Likewise.
5618         * decl.c (init_decl_processing): Likewise.
5619         (build_ptrmemfunc_type): Likewise.
5620         (grokdeclarator): Likewise.
5621         * decl2.c (grok_x_components): Likewise.
5622         * except.c (call_eh_info): Likewise.
5623         * init.c (init_init_processing): Likewise.
5624         * rtti.c (expand_class_desc): Likewise.
5625         (create_pseudo_type_info): Likewise.
5626         (get_vmi_pseudo_type_info): Likewise.
5627         (create_tinfo_types): Likewise.
5628         * ptree.c (print_lang_decl): Adjust.
5629         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
5630         before checking DECL_MUTABLE_P.
5632         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
5633         parameters for template functions.
5634         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
5635         destructors as well as constructors.
5637 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
5639         * class.c (build_ctor_vtbl_group): Set inits.
5640         * optimize.c (maybe_clone_body): Set DECL_INLINE and
5641         DECL_THIS_INLINE appropriately for clones.
5643         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
5644         (DECL_CONV_FN_P): Simplify.
5645         (DECL_OPERATOR): Remove.
5646         (language_to_string): Declare.
5647         * decl.c (duplicate_decls): Fix typo in comment.
5648         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
5649         (grok_op_properties): Use DECL_CONV_FN_P instead of
5650         IDENTIFIER_TYPENAME_P.
5651         * dump.c (dequeue_and_dump): Dump the language linkage of
5652         declarations.
5653         * error.c (language_to_string): Give it external linkage.
5654         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
5655         (implicitly_declare_fn): Set DECL_LANGUAGE.
5656         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
5657         IDENTIFIER_TYPENAME_P.
5658         (tsubst_decl): Likewise.
5659         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
5660         * semantics.c (finish_member_declaration): Don't mark members of
5661         classes declared in an extern "C" region as extern "C".
5663 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
5665         * decl2.c (qualified_lookup_using_namespace): Look through
5666         namespace aliases.
5668         * decl.c (push_using_decl): Return the old decl on namespace level.
5670 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
5672         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
5673         (VTT_NAME_PREFIX): New macro.
5674         (CTOR_VTBL_NAME_PREFIX): Likewise.
5675         (get_ctor_vtbl_name): New function.
5676         * class.c (get_vtable_name): Simplify.
5677         (get_vtt_name): New function.
5678         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
5679         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
5680         when a virtual base becomes primary.
5681         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
5682         VTTs.
5683         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
5684         additional parameters.
5685         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
5686         (initialize_array): New function.
5687         (build_vtt): Likewise.
5688         (build_vtt_inits): Likewise.
5689         (dfs_build_vtt_inits): Likewise.
5690         (dfs_fixup_binfo_vtbls): Likewise.
5691         (build_ctor_vtbl_group): Likewise.
5692         (initialize_vtable): Use initialize_array.
5693         (accumulate_vtbl_inits): Reimplement to handle construction
5694         vtables.
5695         (dfs_accumulate_vtbl_inits): Likewise.
5696         (bulid_vtbl_initializer): Adjust parameter name.
5697         * method.c (build_typename_overload): Remove #if 0'd code.
5698         (get_ctor_vtbl_name): New function.
5699         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
5700         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
5702         * cp-tree.h (struct lang_type): Remove search_slot.
5703         (CLASSTYPE_SEARCH_SLOT): Remove.
5704         (emit_base_init): Change prototype.
5705         (initialize_vtbl_ptrs): Likewise.
5706         (expand_indirect_vtbls_init): Likewise.
5707         (clear_search_slots): Remove.
5708         * decl.c (lang_mark_tree): Don't mark search_slot.
5709         * init.c (initialize_vtbl_ptrs): Simplify.
5710         (emit_base_init): Likewise.
5711         * search.c (struct vbase_info): Document decl_ptr.
5712         (convert_pointer_to_single_level): Remove.
5713         (dfs_find_vbases): Remove.
5714         (dfs_init_base_pointers): Simplify.
5715         (dfs_clear_vbase_slots): Remove.
5716         (dfs_vtable_path_unmark): New function.
5717         (init_vbase_pointers): Simplify.
5718         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
5719         (expand_indirect_vtbls_init): Simplify.  Don't call
5720         mark_all_temps_used.
5721         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
5722         initialize_vtbl_ptrs.
5724 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
5726         * except.c: Add static prototypes.
5728 2000-05-20  H.J. Lu  <hjl@gnu.org>
5730         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
5732 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
5734         Don't create a separate copy of virtual bases for the
5735         CLASSTYPE_VBASECLASSES list.
5736         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
5737         (BINFO_FOR_VBASE): Remove.
5738         (CANONICAL_BINFO): Adjust.
5739         (binfo_for_vbase): New function.
5740         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
5741         instead of BINFO_FOR_VBASE.
5742         (build_vbase_pointer): Likewise.
5743         (build_secondary_vtable): Likewise.
5744         (dfs_mark_primary_bases): Likewise.
5745         (mark_primary_bases): Likewise.
5746         (layout_nonempty_base_or_field): Likewise.
5747         (dfs_set_offset_for_shared_vbases): Likewise.
5748         (dfs_set_offset_for_unshared_vbases): Likewise.
5749         (layout_virtual_bases): Likewise.  Adjust for changes to the
5750         CLASSTYPE_VBASECLASSES list.
5751         (dump_class_hierarchy_r): Use binfo_for_vbase
5752         instead of BINFO_FOR_VBASE.
5753         (dump_class_hierarchy): Likewise.
5754         (finish_vtbls): Likewise.
5755         (build_vtbl_initializer): Adjust for changes to the
5756         CLASSTYPE_VBASECLASSES list.
5757         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
5758         * decl.c (finish_destructor_body): Adjust for changes to the
5759         CLASSTYPE_VBASECLASSES list.
5760         * init.c (sort_base_init): Use binfo_for_vbase.
5761         (construct_virtual_bases): Adjust for changes to the
5762         CLASSTYPE_VBASECLASSES list.
5763         (expand_member_init): Use binfo_for_vbase.
5764         (build_vbase_delete):  Adjust for changes to the
5765         CLASSTYPE_VBASECLASSES list.
5766         * method.c (do_build_copy_constructor): Likewise.
5767         * rtti.c (get_base_offset): Use binfo_for_vbase.
5768         (expand_class_desc): Remove #if 0'd code.
5769         * search.c (struct vbase_info): Remove vbase_types.
5770         (get_base_distance):  Use binfo_for_vbase.
5771         (lookup_field_queue_p): Use CANONICAL_BINFO.
5772         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
5773         (get_pure_virtuals): Adjust for changes to the
5774         CLASSTYPE_VBASECLASSES list.
5775         (dfs_find_vbases): Use binfo_for_vbase.
5776         (dfs_init_vbase_pointers): Likewise.
5777         (init_vbase_pointers): Don't initialize vi.vbase_types.
5778         (virtual_context): Use binfo_for_vbase.
5779         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
5780         CLASSTYPE_VBASECLASSES list.
5781         (expand_indirect_vtbls_init): Simplify.
5782         (dfs_get_vbase_types): Don't replicate virtual bases.
5783         (find_vbase_instance): Use binfo_for_vbase.
5784         (binfo_for_vbase): New function.
5785         * typeck.c (get_delta_difference): Use binfo_for_vbase.
5787 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
5789         * decl2.c (finish_anon_union): Generalize error messages to handle
5790         anonymous structures.
5791         * init.c (perform_member_init): Remove `name' parameter.
5792         (build_field_list): New function.
5793         (sort_member_init): Handle anonymous union initialization order
5794         correctly.  Check for multiple initializations of the same union.
5795         (emit_base_init): Don't look up fields by name here.
5796         (expand_member_init): Record the result of name lookup for future
5797         reference.
5798         * typeck.c (build_component_ref): Fix formatting.
5800 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
5802         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
5803         * typeck.c (build_x_compound_expr): Replace warn_unused with
5804         warn_unused_value.
5806         * decl2.c (lang_decode_option): Update -Wall unused flags by
5807         calling set_Wunused.
5809 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
5811         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
5812         * init.c (dfs_vtable_path_unmark): Remove.
5813         * search.c (marked_new_vtable_p): Likewise.
5814         (unmarked_new_vtable_p): Likewise.
5815         (dfs_search_slot_nonempty_p): Likewise.
5816         (dfs_mark): Likewise.
5817         (dfs_vtable_path_unmark): Likewise.
5818         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
5819         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
5820         (dfs_init_vbase_pointers): Remove special-case new ABI code.
5821         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
5822         (init_vbase_pointers): Simplify.
5823         (expand_indirect_vtbls_init): Likewise.
5825         * class.c (copy_virtuals): New function.
5826         (build_primary_table): Use it.
5827         (build_secondary_vtable): Likewise.
5828         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
5829         indicate that no vcall offset is required.
5830         (add_virtual_function): Likewise.
5831         (modify_all_vtables): Likewise.
5832         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
5833         (dfs_accumulate_vtbl_inits): Likewise.
5834         (build_vtbl_initializer): Make changes to handle construction
5835         vtables.
5836         (dfs_build_vcall_offset_vtbl_entries): Likewise.
5837         (build_rtti_vtbl_entries): Likewise.
5838         (build_vtable_entries): Handle a NULL vcall_index.
5840 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
5842         * decl2.c (lang_decode_option): Fix thinko.
5844 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
5846         * except.c (check_handlers): New fn.
5847         * cp-tree.h: Declare it.
5848         * semantics.c (finish_handler_sequence): Call it.
5849         (finish_function_handler_sequence): Likewise.
5850         (finish_handler_parms): Set TREE_TYPE on the handler.
5851         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
5852         * search.c (get_base_distance_recursive): If protect>1, ignore
5853         special access.
5854         (get_base_distance): Don't reduce watch_access.
5856 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
5858         * lex.c: #include diagnostic.h.
5859         (lang_init_options): Set default prefixing rules.
5861         * lang-options.h: Add -fdiagnostics-show-location=.
5863         * decl2.c: #include diagnostic.h.
5864         (lang_decode_option): Handle -fdiagnostics-show-location=.
5866 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
5868         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
5869         * vec.cc: Revert my 2000-05-07 change.
5871 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
5873         * class.c (check_field_decls): Complain about non-static data
5874         members with same name as class in class with constructor.
5876 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
5878         * decl.c (grokdeclarator): Allow non-static data members with
5879         same name as class.
5881 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
5883         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
5884         and pending_inline.filename.  Update prototypes.
5885         * decl.c (define_label): Constify filename parameter.
5886         * decl2.c (warn_if_unknown_interface): Constify local char *.
5887         * input.c Constify input_source.filename. Don't declare
5888         input_filename or lineno.  Constify filename parameter to feed_input.
5889         * lex.c (init_parse): Constify parameter and return value.
5890         (cp_pragma_interface, cp_pragma_implementation): Constify
5891         filename argument.
5892         (reinit_parse_for_method, reinit_parse_for_block,
5893         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
5894         Constify local char *.
5895         * pt.c: Don't declare lineno or input_filename.
5896         (print_template_context, tsubst_friend_function, tsubst_decl,
5897         tsubst, instantiate_decl): Constify local char *.
5898         * semantics.c (expand_body): Constify local char *.
5899         * tree.c (build_srcloc): Constify filename parameter.
5900         * typeck.c (c_expand_asm_operands): Constify filename
5901         parameter.
5903 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
5905         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
5906         offsetof expansion.
5908 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
5910         * inc/cxxabi.h:  Fix typos in comment.
5911         (__base_class_info::__offset): Use a static_cast.
5913 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
5915         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
5916         of std::size_t and std::ptrdiff_t respectively.
5917         * tinfo.cc: Likewise.
5918         * vec.cc: Likewise.
5920 2000-05-06  Richard Henderson  <rth@cygnus.com>
5922         * typeck.c (build_c_cast): Don't warn integer->pointer size
5923         mismatch for constants.
5925 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
5927         * rtti.c (ptmd_initializer): Set non-public, if class is
5928         incomplete.
5930         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
5931         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
5932         __cxa_vec_delete): Likewise.
5933         * tinfo.cc (__dynamic_cast): Likewise.
5934         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
5935         __cxa_vec_delete): Likewise.
5937 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
5939         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
5940         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
5941         (lang_decl_flags): Add vcall_offset.
5942         (THUNK_VCALL_OFFSET): Use it.
5943         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
5944         * method.c (make_thunk): Create the lang_decl here, not in
5945         emit_thunk.
5946         (emit_thunk): Make generic thunks into ordinary functions once
5947         they have been fed to expand_body.
5948         * semantics.c (expand_body): Set current_function_is_thunk here.
5950 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5952         * class.c (update_vtable_entry_for_fn): Prototype.
5954         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
5955         and `tmpl'.
5957         * search.c (dfs_build_inheritance_graph_order): Prototype.
5959 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
5961         * cp-tree.h (special_function_kind): Add various kinds of
5962         destructors.
5963         (special_function_p): New function.
5964         * class.c (overrides): Don't let one kind of destructor override
5965         another.
5966         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
5967         whether or not to instantiate a template.
5968         * tree.c (special_function_p): Define.
5970 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
5972         * cp-tree.def (THUNK_DECL): Remove.
5973         * cp-tree.h (DECL_THUNK_P): New macro.
5974         (DECL_NON_THUNK_FUNCTION_P): Likewise.
5975         (DECL_EXTERN_C_FUNCTION_P): Likewise.
5976         (SET_DECL_THUNK_P): Likewise.
5977         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
5978         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
5979         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
5980         * decl.c (decls_match): Use DECL_EXTERN_C_P.
5981         (duplicate_decls): Likewise.
5982         (pushdecl): Likewise.  Adjust thunk handling.
5983         (grokfndecl): Use DECL_EXTERN_C_P.
5984         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
5985         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
5986         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
5987         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
5988         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
5989         DECL_NO_STATIC_CHAIN.
5990         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
5991         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
5992         * search.c (covariant_return_p): Remove THUNK_DECL handling.
5993         * ir.texi: Update.
5995 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
5997         * tree.c (walk_tree): Set lineno.
5999 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
6001         * exception.cc: Update license notice.
6002         * new.cc: Likewise.
6003         * new1.cc: Likewise.
6004         * new2.cc: Likewise.
6005         * tinfo.cc: Likewise.
6006         * tinfo2.cc: Likewise.
6007         * vec.cc: Likewise.
6008         * inc/cxxabi.h: Likewise.
6009         * inc/exception: Likewise.
6010         * inc/new: Likewise.
6011         * inc/new.h: Likewise.
6012         * inc/typeinfo: Likewise.
6014 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
6016         * tree.c (build_target_expr_with_type): If we already have a
6017         TARGET_EXPR, just return it.
6019         * optimize.c (initialize_inlined_parameters): Don't generate an
6020         EXPR_STMT if we can just use DECL_INITIAL.
6021         * decl.c (emit_local_var): Only make the initialization a
6022         full-expression if stmts_are_full_exprs_p.
6024 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
6026         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
6027         macro.
6028         * call.c (standard_conversion): Use it.
6029         (direct_reference_binding): Likewise.
6030         (build_over_call): Likewise.
6031         (is_properly_derived_from): Likewise.
6032         (compare_ics): Likewise.
6033         * class.c (resolves_to_fixed_type_p): Likewise.
6034         * optimize.c (declare_return_variable): Likewise.
6035         * pt.c (is_specialization_of): Likewise.
6036         (unify): Likewise.
6037         * typeck.c (comp_target_parms): Likeiwse.
6038         (build_static_cast): Likewise.
6039         (build_reinterpret_cast): Likewise.
6040         (build_const_cast): Likewise.
6041         (comp_ptr_ttypes_real): Likewise.
6042         (comp_ptr_ttypes_const): Likewise.
6043         * typeck2.c (process_init_constructor): Likewise.
6045 2000-04-30  Scott Snyder <snyder@fnal.gov>
6047         * decl.c (finish_destructor_body): Use the base destructor when
6048         destroying virtual bases.
6050 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
6052         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
6053         STMT_EXPRs.
6054         * optimize.c (struct inline_data): Add target_exprs field.
6055         (declare_return_variable): When a function returns an aggregate,
6056         use the variable declared in the TARGET_EXPR as the remapped
6057         DECL_RESULT.
6058         (expand_call_inline): Update the pending target_exprs stack.
6059         (optimize_function): Initialize the stack.
6061         * decl2.c (finish_file): Fix typo in comment.
6063         * method.c (emit_thunk): Don't try to return a `void' value.
6065         * optimize.c (initialize_inlined_parameters): If the parameter is
6066         addressable, we need to make a new VAR_DECL, even if the
6067         initializer is constant.
6069 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
6071         * decl.c (grok_op_properties): Add an extra check of argtypes.
6073 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
6075         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
6076         variables.
6077         (initialize_inlined_parameters): Try to avoid creating new
6078         VAR_DECLs.
6080 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
6082         * lex.c (my_get_run_time): Remove.
6083         (init_filename_times): Use get_run_time instead of my_get_run_time.
6084         (check_newline): Likewise.
6085         (dump_time_statistics): Likewise.
6086         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
6087         of computing elapsed time explicitly.
6089 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
6091         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
6092         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
6093         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
6094         before calling decl_constant_value.
6095         * class.c (check_bitfield_decl): Likewise.
6096         * cvt.c (ocp_convert): Likewise.
6097         (convert): Likewise.
6098         * decl.c (compute_array_index_type): Likewise.
6099         (build_enumerator): Likewise.
6100         * decl2.c (check_cp_case_value): Likewise.
6101         * pt.c (convert_nontype_argument): Likewise.
6102         (tsubst): Likewise.
6103         * typeck.c (decay_conversion): Likewise.
6104         (build_compound_expr): Likewise.
6105         (build_reinterpret_cast): Likewise.
6106         (build_c_cast): Likewise.
6107         (convert_for_assignment): Likewise.
6109 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
6111         * decl.c (finish_function): Don't play games with DECL_INLINE.
6113 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
6115         * ir.texi: Correct typo.
6117 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
6119         * decl.c (grokdeclarator): Reject VLAs as members.
6121 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
6123         * call.c (standard_conversion): Accept conversion between
6124         COMPLEX_TYPEs.
6126         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
6128 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
6130         * decl2.c (finish_file): Remove double setup for accounting
6131         compile time.
6133 2000-04-24  Robert Lipe <robertlipe@usa.net>
6135         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
6137 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
6139         * new.cc (set_new_handler): Needs to be in std::.
6141 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
6143         * cp-tree.h (lang_decl): Remove pretty_function_p.
6144         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
6145         language-specific node.
6146         * decl.c (cp_make_fname_decl): Use build_decl, not
6147         build_lang_decl, to build the variables.
6148         (grokvardecl): Don't call build_lang_decl for local variables in
6149         templates.
6150         (grokdeclarator): Don't call build_lang_decl for local type
6151         declarations in templates.
6152         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
6153         zero'd memory, rather than calling memset.
6154         * pt.c: Include hashtab.h.
6155         (local_specializations): New variable.
6156         (retrieve_local_specialization): Use it.
6157         (register_local_specialization): Likewise.
6158         (tsubst_decl): Don't assume local variables have
6159         DECL_LANG_SPECIFIC.
6160         (instantiate_decl): Set up local_specializations.
6161         * Makefile.in (HTAB_H): New variable.
6163 2000-04-23  Richard Henderson  <rth@cygnus.com>
6165         * typeck.c (c_expand_asm_operands): Restore the original
6166         contents of the output list.
6168 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
6170         * ir.texi:  Document complex number representation.
6172 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
6174         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
6175         (target_incomplete_p): New function.
6176         (tinfo_base_init): Create comdat NTBS name variable.
6177         (ptr_initializer): Add non_public parameter. Calculate it.
6178         (ptmd_initializer): Likewise.
6179         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
6180         (create_real_tinfo_var): Add non_public parameter. Use it.
6181         Push proxy into global namespace.
6182         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
6183         New enumeration.
6184         * inc/typeinfo (type_info::before, type_info::operator==):
6185         Compare __name addresses.
6187         * tinfo2.cc: Remove new-abi builtins comment.
6189 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
6191         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
6193         * call.c (joust): Exit early if we get the same function, too.
6195         * decl2.c (key_method): Return NULL_TREE for template classes.
6196         (import_export_class): Don't need to check for template classes.
6198 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
6200         * lex.c: Remove references to cccp.c.
6202 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
6204         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
6205         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
6206         (DECL_DESTRUCTOR_P): Use destructor_attr.
6207         (DECL_CONST_MEMFUNC_P): Reimplement.
6208         (DECL_VOLATILE_MEMFUNC_P): Remove.
6209         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
6210         (overrides): Use DECL_DESTRUCTOR_P.
6211         (check_for_override): Likewise.
6212         * decl.c (start_function): Likewise.
6213         * decl2.c (grokfclassfn): Likewise.
6214         (check_classfn): Likewise.
6215         (grok_function_init): Likewise.
6217 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
6219         * decl2.c (grokfield): Issue error on illegal data member
6220         declaration.
6222 Mon Apr 17 17:11:16 2000  Mark P Mitchell  <mark@codesourcery.com>
6224         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
6226 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
6228         * class.c (build_vtable_entry): Don't build thunks for type-info
6229         functions.
6231 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
6233         * decl.c (decls_match): Allow a redeclaration of a builtin to
6234         specify args while the builtin did not.
6236 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
6238         * cp-tree.def (THUNK_DECL): Add to documentation.
6239         * cp-tree.h (flag_huge_objects): Declare.
6240         * class.c (modify_vtable_entry): Tidy.
6241         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
6242         Calculate delta appropriately for the new ABI.
6243         (dfs_modify_vtables): Use it.
6244         (modify_all_vtables): Fix thinko in code to add overriding copies
6245         of functions to primary vtables.
6246         (build_clone): Fix typo in comment.
6247         (clone_function_decl): Correct order of destructors in vtable.
6248         (build_vbase_offset_vtbl_entries): Adjust comment.
6249         (dfs_vcall_offset_queue_p): Remove.
6250         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
6251         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
6252         (build_vtable_entry): Correct check for pure virtual functions.
6253         Don't declare flag_huge_objects.
6254         * decl.c (flag_huge_objects): Remove declaration.
6255         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
6256         Use int_size_in_bytes.
6257         (emit_thunk): Handle vcall offset thunks.
6259 Sat Apr 15 16:00:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6261         * decl2.c (parse_time, varconst_time): Delete declarations.
6262         (finish_file): Delete LINENO declaration.
6263         START_TIME and THIS_TIME now long.
6265 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
6267         * class.c (build_base_field): Reformat comment.
6269         * inc/cxxabi.h (stddef.h): Comment inclusion.
6270         (__base_class_info::__offset): Comment shift.
6272 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
6274         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
6275         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
6276         (cp_push_exception_identifier): New macro.
6277         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
6278         (DECL_BASE_DESTRUCTOR_P): Likewise.
6279         (DECL_DELETING_DESTRUCTOR_P): Likewise.
6280         (get_vtbl_decl_for_binfo): Fix formatting.
6281         (in_charge_arg_for_name): New macro.
6282         (maybe_build_cleanup_and_delete): Remove declaration.
6283         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
6284         (in_charge_arg_for_name): New function.
6285         (build_new_method_call): Use it.  Handle cloned destructors.
6286         (build_clone): Don't make the base constructor virtual.
6287         Automatically defer generated functions.
6288         (clone_function_decl): Handle destructors, too.
6289         (clone_constructors_and_destructors): Likewise.
6290         (create_vtable_ptr): Don't create a vtable entry for a cloned
6291         function.
6292         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
6293         (initialize_predefined_identifiers): Update appropriately.
6294         (finish_destructor_body): Simplify.
6295         (maybe_build_cleanup_and_delete): Remove.
6296         * except.c (expand_throw): Handle new-ABI destructors.
6297         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
6298         (build_dtor_call): New function.
6299         (build_delete): Use it.  Simplify.
6300         * optimize.c (maybe_clone_body): Handle destructors.
6301         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
6303         * exception.cc (cleanup_fn): New typedef.
6304         (CALL_CLEANUP): New macro.
6305         (cp_eh_info): Use them.
6306         (__cp_push_exception): Likewise.
6307         (__cp_pop_exception): Likewise.
6309 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
6311         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
6312         (complete_dtor_identifier): New macro.
6313         (CLASSTYPE_FIRST_CONVERSION): Remove.
6314         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
6315         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
6316         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
6317         (CLASSTYPE_CONSTRUCTORS): Likewise.
6318         (CLASSTYPE_DESTRUCTORS): Likewise.
6319         (lang_decl): Add cloned_function.
6320         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
6321         (DECL_BASE_CONSTRUCTOR_P): Likewise.
6322         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
6323         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
6324         (DECL_CLONED_FUNCTION_P): Likewise.
6325         (DECL_CLONED_FUNCTION): Likewise.
6326         (clone_function_decl): Declare.
6327         (maybe_clone_body): Likewise.
6328         * call.c (build_user_type_conversion_1): Call complete object
6329         constructors in the new ABI.
6330         (build_new_method_call): Don't add in-charge parameters under the
6331         new ABI.
6332         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
6333         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
6334         CLASSTYPE_DESTRUCTOR_SLOT.
6335         (build_clone): New function.
6336         (clone_function_decl): Likewise.
6337         (clone_constructors_and_destructors): Likewise.
6338         (check_bases_and_members): Use it.
6339         * decl.c (iniitialize_predefined_identifiers): Initialize
6340         complete_dtor_identifier.
6341         (finish_function): Don't add extra code to a clone.
6342         (lang_mark_tree): Mark cloned_function.
6343         * decl2.c (mark_used): Don't bother trying to instantiate things
6344         we synthesized.
6345         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
6346         * method.c (set_mangled_name_for_decl): Don't treat clones as
6347         constructors.
6348         (synthesize_method): Sythesize cloned functions, not the clones.
6349         * optimize.c (inline_data): Update comment on ret_label.
6350         (remap_block): Don't assume DECL_INITIAL exists.
6351         (copy_body_r): Allow ret_label to be NULL.
6352         (maybe_clone_body): Define.
6353         * pt.c (tsubst_decl): Handle clones.
6354         (instantiate_clone): New function.
6355         (instantiate_template): Use it.
6356         (set_mangled_name_for_template_decl): Don't treat clones as
6357         constructors.
6358         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
6359         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
6360         * semantics.c (expand_body): Clone function bodies as necessary.
6362         * optimize.c (remap_decl): Avoid sharing structure for arrays
6363         whose size is only known at run-time.
6364         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
6366         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
6367         to has_in_charge_parm_p.
6368         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
6369         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
6370         (DECL_COPY_CONSTRUCTOR_P): New macro.
6371         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
6372         (build_user_type_conversion_1): Likewise.
6373         (convert_like_real): Likewise.
6374         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
6375         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
6376         (copy_args_p): Likewise.
6377         (grok_ctor_properties): Likewise.
6378         (start_function): Likewise.
6379         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
6380         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
6381         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
6382         * method.c (do_build_copy_constructor): Use
6383         DECL_HAS_IN_CHARGE_PARM_P.
6384         (synthesize_method): Likewise.
6385         * pt.c (instantiate_template): Remove goto.
6386         * tree.c (build_cplus_method_type): Remove mention of obstacks in
6387         comment.
6389         * cp-tre.h (finish_function): Change prototype.
6390         * decl.c (end_cleanup_fn): Adjust caller.
6391         (finish_function): Take only one parameter.
6392         * decl2.c (finish_objects): Adjust caller.
6393         (finish_static_storage_duration_function): Likewise.
6394         * method.c (emit_thunk): Likewise.
6395         * parse.y: Likewise.
6396         * parse.c: Regenerated.
6397         * pt.c (instantiate_decl): Likewise.
6398         * rtti.c (synthesize_tinfo_fn): Likewise.
6399         * semantics.c (expand_body): Likewise.
6401         * cp-tree.h (copy_decl): New function.
6402         * class.c (finish_struct_1): Use it.
6403         * lex.c (copy_decl): Define it.
6404         * pt.c (tsubst_decl): Likewise.
6405         * tree.c (copy_template_template_parm): Likewise.
6407         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
6408         has_nonpublic_assign_ref.
6409         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
6410         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
6411         * class.c (finish_struct_methods): Don't set
6412         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
6413         (interface_only): Don't declare.
6414         (interface_unknown): Likewise.
6416 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
6418         * tree.h (HAVE_TEMPLATES): Remove definition.
6419         * lang-options.h (-fthis-is-variable): Remove documentation.
6421 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
6423         * class.c (instantiate_type): Handle object-relative template-id.
6425         * semantics.c (finish_expr_stmt): Call convert_to_void here.
6426         * decl.c (cplus_expand_expr_stmt): Not here.
6428         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
6429         Initialize exprtype earlier.
6431         * parse.y (fn.def1): Check for defining types in return types.
6433         * decl.c (check_tag_decl): Notice extra fundamental types.
6434         Diagnose empty decls in classes, too.
6436         * decl.c (grokdeclarator): Don't override an anonymous name if no
6437         declarator was given.
6439         * cvt.c (convert_to_void): Call resolve_offset_ref.
6441         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
6443         * decl2.c (decl_namespace): Handle getting a type.
6445         * typeck.c (build_c_cast): Re-enable warning for cast between
6446         pointer and integer of different size.
6448 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
6450         * inc/cxxabi.h (__pointer_type_info): Add restrict and
6451         incomplete flags.
6452         (__pointer_type_info::__pointer_catch): New virtual function.
6453         (__pointer_to_member_type_info): Derive from
6454         __pointer_type_info. Adjust.
6455         (__pointer_to_member_type_info::__do_catch): Remove.
6456         (__pointer_to_member_type_info::__is_pointer_p): Declare.
6457         (__pointer_to_member_type_info::__pointer_catch): Declare.
6458         * rtti.c (qualifier_flags): Add restrict flag.
6459         (ptmd_initializer): Reorder members.
6460         (create_tinfo_types): Expand comments. Reorder
6461         ptmd_desc_type_node members.
6462         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
6463         Implement.
6464         (__pointer_type_info::__do_catch): Move specific code into
6465         __pointer_catch. Call it.
6466         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
6467         specific catch checking. Fix void conversion check.
6468         (__pointer_to_member_type_info::__do_catch): Remove.
6469         (__pointer_to_member_type_info::__pointer_catch): Implement.
6471 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
6473         * lex.c (init_parse): Remove traces of classof and headof.
6474         * decl2.c (flag_operator_names): Default to 1.
6475         (lang_decode_option): Do not set it for -ansi.
6477 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
6479         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
6480         (DECL_MAIN_VARIANT): Remove.
6481         * decl.c (duplicate_decls): Don't set it.
6482         (start_function): Likewise.
6483         (lang_mark_tree): Don't mark it.
6484         * decl2.c (defer_fn): Don't use it.
6485         * lex.c (retrofit_lang_decl): Don't set it.
6486         * pt.c (tsubst_decl): Likewise.
6487         * ptree.c (print_lang_decl): Don't print it.
6488         * typeck.c (mark_addressable): Don't use it.
6490 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
6492         * vec.cc: Include <new> and <exception>.
6493         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
6494         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
6495         terminate.
6496         (__cxa_vec_delete): Catch dtor exceptions.
6498 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
6500         Prepend __ to implementation defined names.
6501         * inc/typeinfo (type_info): Rename _name to __name.
6502         (type_info::type_info): Rename parameter.
6503         (type_info::operator==, type_info::operator!=,
6504         type_info::before): Likewise.
6505         (type_info::is_pointer_p, type_info::is_function_p,
6506         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
6507         parameters.
6508         * inc/cxxabi.h
6509         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
6510         (__pointer_type_info::__pointer_type_info): Likewise.
6511         (__pointer_type_info::is_pointer_p,
6512         __pointer_type_info::do_catch): Prepend __. Rename parameters.
6513         (__array_type_info::__array_type_info): Rename parameters.
6514         (__function_type_info::__function_type_info): Likewise.
6515         (__function_type_info::is_function_p): Prepend __.
6516         (__enum_type_info::__enum_type_info): Rename parameters.
6517         (__pointer_to_member_type_info::__pointer_to_member_type_info):
6518         Likewise.
6519         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
6520         parameters.
6521         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
6522         (__class_type_info::__class_type_info): Rename parameters.
6523         (__class_type_info::sub_kind): Prepend __. Adjust member names.
6524         (__class_type_info::upcast_result,
6525         __class_type_info::dyncast_result): Prepend __. Move definition
6526         into tinfo.cc.
6527         (__class_type_info::do_upcast, __class_type_info::do_catch,
6528         __class_type_info::find_public_src,
6529         __class_type_info::do_dyncast,
6530         __class_type_info::do_find_public_src): Prepend __. Rename
6531         parameters.
6532         (__si_class_type_info::__si_class_type_info): Rename parameters.
6533         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
6534         __si_class_type_info::do_find_public_src): Prepent __. Rename
6535         parameters.
6536         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
6537         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
6538         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
6539         parameters.
6540         (__dynamic_cast): Rename parameters.
6541         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
6542         type_info::do_catch, type_info::do_upcast): Prepend __.
6543         (contained_p, public_p, virtual_p, contained_public_p,
6544         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
6545         (__class_type_info::do_catch,
6546         __class_type_info::do_upcast): Prepend __. Adjust.
6547         (__class_type_info::__upcast_result,
6548         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
6549         Adjust.
6550         (__class_type_info::find_public_src): Prepend __. Adjust.
6551         (__class_type_info::do_find_public_src,
6552         __si_class_type_info::do_find_public_src,
6553         __vmi_class_type_info::do_find_public_src): Likewise.
6554         (__class_type_info::do_dyncast,
6555         __si_class_type_info::do_dyncast,
6556         __vmi_class_type_info::do_dyncast): Likewise.
6557         (__class_type_info::do_upcast,
6558         __si_class_type_info::do_upcast,
6559         __vmi_class_type_info::do_upcast): Likewise.
6560         (__dynamic_cast): Adjust.
6561         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
6562         (__function_type_info::is_function_p): Likewise.
6563         (__pointer_type_info::do_catch): Likewise. Adjust.
6564         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
6565         (__throw_type_match_rtti_2): Adjust.
6566         (__is_pointer): Adjust.
6568 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
6570         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
6571         (complete_ctor_identifier): New macro.
6572         (special_function_kind): Add sfk_copy_constructor and
6573         sfk_assignment_operator.
6574         (LOOKUP_HAS_IN_CHARGE): Remove.
6575         (cons_up_default_function): Rename to ...
6576         (implicitly_declare_fn): ... this.
6577         * call.c (build_new_method_call): Add in-charge parameters for
6578         constructors here.
6579         * class.c (add_implicitly_declared_members): Change parameter name
6580         from cant_have_assignment to cant_have_const_assignment.
6581         Replace calls to cons_up_default_function to implicitly_declare_fn.
6582         * cvt.c (ocp_convert): Use complete_ctor_identifier.
6583         * decl.c (initialize_predefined_identifiers): Initialize it.
6584         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
6585         complex expression.
6586         * init.c (expand_default_init): Don't calculate the in-charge
6587         parameter here.
6588         (build_new_1): Likewise.
6589         * lex.c (cons_up_default_function): Move to method.c.
6590         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
6591         (implicitly_declare_fn): New function.
6592         * typeck.c (build_static_cast): Use complete_ctor_identifier.
6593         (build_modify_expr): Likewise.
6594         * typeck2.c (build_functional_cast): Likewise.
6596         Under the new ABI, constructors don't return `this'.
6597         * cp-tree.h (warn_reorder): Declare.
6598         (special_function_kind): New enum.
6599         (global_base_init_list): Remove declaration.
6600         (emit_base_init): Don't return a value.
6601         (check_base_init): Don't declare.
6602         (is_aggr_typedef): Likewise.
6603         * decl.c (check_special_function_return_type): New function.
6604         (return_types): Remove.
6605         (grokdeclarator): Use check_special_function_return_type.
6606         (start_function): Don't initialize ctor_label under the new ABI.
6607         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
6608         * init.c (begin_init_stmts): Move to top of file.
6609         (finish_init_stmts): Likewise.
6610         (warn_reorder): Don't declare.
6611         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
6612         value.
6613         (check_base_init): Remove.
6614         (is_aggr_typedef): Likewise.
6615         (build_new_1): Don't use the return value of a constructor.
6616         * semantics.c (setup_vtbl_ptr): Don't use the return value
6617         of emit_base_init.
6618         * typeck.c (check_return_expr): Don't magically convert return
6619         statements into `return this' in constructors under the new ABI.
6621         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
6622         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
6623         (base_ctor_identifier): New macro.
6624         (base_dtor_identifier): Likewise.
6625         (deleting_dtor_identifier): Likewise.
6626         * decl.c: Don't include obstack.h.
6627         (obstack_chunk_alloc): Don't define.
6628         (obstack_chunk_free): Likewise.
6629         (struct predefined_identifier): New type.
6630         (initialize_predefined_identifiers): New function.
6631         (init_decl_processing): Use it.
6632         (debug_temp_inits): Remove.
6633         (start_method): Don't call preserve_data.
6634         (hack_incomplete_structures): Update comment.
6635         * init.c (init_init_processing): Don't initialize
6636         nelts_identifier.
6637         (build_offset_rf): Remove dead code.
6638         (build_delete): Use CLASSTYPE_N_BASECLASSES.
6639         * search.c (init_search_processing): Don't initialize
6640         vptr_identifier.
6642 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6644         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
6645         some sign_compare warnings.
6647 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
6649         Rename abi::__vmi_class_type_info members.
6650         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
6651         base_list, detail_masks members to vmi_flags, vmi_base_count,
6652         vmi_bases and vmi_flags_masks respectively.
6653         (__vmi_class_type_info::vmi_flags_masks): Rename
6654         details_unknown_mask to flags_unknown_mask.
6655         * tinfo.cc (__class_type_info::do_upcast): Adjust.
6656         (__vmi_class_type_info::do_find_public_src): Adjust.
6657         (__vmi_class_type_info::do_dyncast): Adjust.
6658         (__vmi_class_type_info::do_upcast): Adjust.
6660 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
6662         * tinfo.cc (convert_to_base): New function.
6663         (get_vbase_offset): Remove. Move into convert_to_base.
6664         (__vmi_class_type_info::do_find_public_src): Adjust.
6665         (__vmi_class_type_info::do_dyncast): Adjust.
6666         (__vmi_class_type_info::do_upcast): Adjust.
6668 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
6670         * tinfo.cc (operator=): Use __builtin_strcmp.
6671         * tinfo2.cc (before): Likewise.
6673 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
6675         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
6676         (DECL_SAVED_INLINE): Rename to ...
6677         (DECL_DEFERRED_FN): ... this.
6678         (in_function_p): Remove declaration.
6679         (mark_inline_for_output): Rename to ...
6680         (defer_fn): ... this.
6681         * decl.c (finish_function): Adjust call to mark_inline_for_output.
6682         (in_function_p): Remove definition.
6683         * decl2.c (saved_inlines): Rename to ...
6684         (deferred_fns): ... this.
6685         (saved_inlines_used): Rename to ...
6686         (deferred_fns_used): ... this.
6687         (mark_inline_for_output): Rename to ...
6688         (defer_fn): ... this.
6689         (finish_file): Adjust accordingly.
6690         (init_decl2): Likewise.
6691         * lex.c (cons_up_default_function): Likewise.
6692         * pt.c (mark_decl_instantiated): Likewise.
6693         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
6694         circumstances.
6695         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
6696         * semantics.c (expand_body): Defer more functions.
6698 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
6700         * vec.cc: New file.
6701         * Make-lang.in (CXX_LIB2FUNCS): Add it.
6702         (vec.o): Build it.
6703         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
6704         __cxa_vec_delete): Declare.
6706 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
6708         * rtti.c (dfs_class_hint_mark): New static function.
6709         (dfs_class_hint_unmark): New static function.
6710         (class_hint_flags): Use them.
6712 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
6714         * decl2.c: Make flag_honor_std dependant on ENABLE_STD_NAMESPACE.
6716 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
6718         * cp-tree.h (instantiate_decl): Change prototype.
6719         * decl2.c (mark_used): Adjust call.
6720         * optimize.c (inlinable_function_p): Adjust handling of templates.
6721         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
6722         (do_type_instantiation): Likewise.
6723         (instantiate_decl): Defer more templates.
6724         (instantiate_pending_templates): Adjust logic to handle inline
6725         friend functions.
6727         * Makefile.in (GGC_H): New variable.  Use it throughout in place
6728         of ggc.h.
6730         * call.c: Don't include obstack.h.  Include ggc.h.
6731         (obstack_chunk_alloc): Don't define.
6732         (obstack_chunk_free): Likewise.
6733         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
6734         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
6735         (pop_switch): Free it.
6737         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
6739         * dump.c (dequeue_and_dump): Don't try to print the bit_position
6740         if we don't have a DECL_FIELD_OFFSET.
6742 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
6744         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
6745         special_function_p.
6747 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6749         * cfns.gperf (hash, libc_name_p): Prototype.
6751         * rtti.c (build_dynamic_cast_1): Constification.
6753         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
6755         * semantics.c (deferred_type_access_control): Prototype.
6757 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
6759         Correct many new ABI issues regarding vbase and vcall offset
6760         layout.
6761         * cp-tree.h (BINFO_VTABLE): Document.
6762         (struct lang_type): Tweak formatting.
6763         (BINFO_PRIMARY_BINFO): Add to documentation.
6764         (CLASSTYPE_VSIZE): Fix typo in comment.
6765         (CLASSTYPE_VBASECLASSES): Update documentation.
6766         (BINFO_VBASE_MARKED): Remove.
6767         (SET_BINFO_VBASE_MARKED): Likewise.
6768         (CLEAR_BINFO_VBASE_MARKED): Likewise.
6769         (BINFO_FIELDS_MARKED): Remove.
6770         (SET_BINFO_FIELDS_MARKED): Likewise.
6771         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
6772         (enum access_kind): New enumeration.
6773         (num_extra_vtbl_entries): Remove declaration.
6774         (size_extra_vtbl_entries): Likewise.
6775         (get_vtbl_decl_for_binfo): New function.
6776         (dfs_vbase_unmark): Remove declaration.
6777         (mark_primary_bases): Likewise.
6778         * class.c (SAME_FN): Remove.
6779         (struct vcall_offset_data_s): Move definition.
6780         (build_vbase_pointer): Use `build', not `build_binary_op', to
6781         access the vbase pointer under the new ABI.
6782         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
6783         (build_primary_vtable): Likewise.
6784         (dfs_mark_primary_bases): Move here from search.c.
6785         (mark_primary_bases): Likewise.
6786         (determine_primary_bases): Under the new ABI, don't make a base
6787         class a primary base just because we don't yet have any virtual
6788         functions.
6789         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
6790         (num_vfun_entries): Remove.
6791         (dfs_count_virtuals): Likewise.
6792         (num_extra_vtbl_entries): Likewise.
6793         (size_extra_vtbl_entries): Likewise.
6794         (layout_virtual_bases): Iterate in inheritance graph order under
6795         the new ABI.
6796         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
6797         indicate that a vfield is present.
6798         (init_class_processing): Initialize access_public_node, etc., from
6799         ak_public, etc.
6800         (get_vtbl_decl_for_binfo): New function.
6801         (dump_class_hierarchy_r): Likewise.
6802         (dump_class_hierarchy): Use it.
6803         (finish_vtbls): Build the vtbls in inheritance graph order.
6804         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
6805         (initialize_vtable): Use get_vtbl_decl_for_binfo.
6806         (accumulate_vtbl_inits): Add comments explaining why a pre-order
6807         walk is required.
6808         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
6809         where the vptr points, even for primary vtables.
6810         (build_vtbl_initializer): Adjust handling of vbase and vcall
6811         offsets.
6812         (build_vcall_and_vbase_vtable_entries): New function.
6813         (dfs_build_vbase_offset_vtbl_entries): Remove.
6814         (build_vbase_offset_vtbl_entries): Reimplement.
6815         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
6816         were already handled in a primary base class vtable.
6817         (build_vcall_offset_vtbl_entries): Adjust.
6818         (build_rtti_vtbl_entries): Adjust.
6819         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
6820         * init.c (expand_virtual_init): Simplify.
6821         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
6822         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
6823         * search.c (BINFO_ACCESS): New macro.
6824         (SET_BINFO_ACCESS): Likewise.
6825         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
6826         (access_in_type): Likewise.
6827         (dfs_accessible_p): Likewise.
6828         (protected_accessible_p): Likewise.
6829         (lookup_fnfields_1): Adjust documentation.
6830         (dfs_mark_primary_bases): Move to class.c
6831         (mark_primary_bases): Likewise.
6832         (dfs_vbase_unmark): Remove.
6833         (virtual_context): Use BINFO_FOR_VBASE.
6834         (dfs_get_vbase_types): Simplify.
6835         (dfs_build_inheritance_graph_order): New function.
6836         (get_vbase_types): Use it.
6837         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
6839         * tinfo.cc (get_vbase_offset): New function.
6840         (__vmi_class_type_info::do_find_public_src): Use it.
6841         (__vmi_class_type_info::do_dyncast): Likewise.
6842         (__vmi_class_type_info::do_upcast): Likewise.
6844 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
6846         * lang-specs.h: Pass -fno-show-column to the preprocessor.
6848 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
6850         * rtti.c (class_hint_flags): Rename flags.
6851         (class_initializer): Remove flags.
6852         (synthesize_tinfo_var): Combine offset and flags. Add flags
6853         for __vmi_class_type_info.
6854         (create_tinfo_types): Remove flags from __class_type_info and
6855         __si_class_type_info. Merge flags and offset from
6856         base_class_type_info.
6857         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
6858         (__base_class_info::is_virtual_p): Adjust.
6859         (__base_class_info::is_public_p): Adjust.
6860         (__base_class_info::offset): New accessor.
6861         (__class_type_info::details): Remove member.
6862         (__class_type_info::__class_type_info): Lose details.
6863         (__class_type_info::detail_masks): Remove.
6864         (__si_class_type_info::__si_class_type_info): Lose details.
6865         (__vmi_class_type_info::details): New member.
6866         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
6867         (__vmi_class_type_info::detail_masks): New member.
6868         * tinfo.cc (__class_type_info::do_upcast): Initialize result
6869         with unknown_details_mask.
6870         (__vmi_class_type_info::do_find_public_src): Adjust
6871         (__vmi_class_type_info::do_dyncast): Adjust.
6872         (__vmi_class_type_info::do_upcast): Set result details, if
6873         needed. Adjust.
6874         (__dynamic_cast): Temporarily #if out optimization.
6876 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
6878         * rtti.c (get_tinfo_decl): Mark used.
6879         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
6880         mark as dealt with, if we output it.
6882 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
6884         * class.c: Reorganize to put virtual function table initialization
6885         machinery at the end of the file.
6887 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
6889         * class.c (finish_struct): Use bitsize_zero_node.
6890         * pt.c (instantiate_class_template): Likewise.
6892 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
6894         Put RTTI entries at negative offsets in new ABI.
6895         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
6896         vbase offset at index -3, not -1.
6897         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
6898         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
6899         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
6900         (build_rtti_vtbl_entries): New function.
6901         (set_rtti_entry): Remove.
6902         (build_primary_vtable): Don't use it.
6903         (build_secondary_vtable): Likewise.
6904         (start_vtable): Remove.
6905         (first_vfun_index): New function.
6906         (set_vindex): Likewise.
6907         (add_virtual_function): Don't call start_vtable.  Do call
6908         set_vindex.
6909         (set_primary_base): Rename parameter.
6910         (determine_primary_base): Likewise.
6911         (num_vfun_entries): Don't use skip_rtti_stuff.
6912         (num_extra_vtbl_entries): Include RTTI information.
6913         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
6914         (skip_rtti_stuff): Remove.
6915         (dfs_modify_vtables): Don't use it.
6916         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
6917         (layout_nonempty_base_or_field): Update size handling.
6918         (create_vtable_ptr): Tweak.
6919         (layout_class_type): Adjust parameter names.
6920         (finish_struct_1): Simplify.
6921         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
6922         (skip_rtti_stuff): Remove.
6923         (first_vfun_index): New function.
6924         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
6925         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
6926         (marked_vtable_pathp): Declare.
6927         (unmarked_vtable_pathp): Likewise.
6928         * error.c (dump_expr): Use first_vfun_index to calculate vtable
6929         offsets.
6930         * rtti.c (build_headof): Look for RTTI at negative offsets.
6931         (get_tinfo_decl_dynamic): Likewise.
6932         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
6933         here.
6934         (create_pseudo_type_info): Do it here instead.  Adjust so that
6935         vptr points at first virtual function.
6936         * search.c (marked_vtable_pathp): Make it global.
6937         (unmarked_vtable_pathp): Likewise.
6938         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
6939         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
6940         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
6941         (get_pure_virtuals): Likewise.
6942         (expand_upcast_fixups): Likewise.
6943         * tree.c (debug_binfo): Likewise.
6944         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
6945         negative offset.
6947 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6949         * class.c (check_field_decl): Fix typo.
6950         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
6951         (check_methods): Likewise.
6952         (check_field_decls): Likewise.
6953         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
6954         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
6955         Use DECL_RESULT_FLD, not DECL_RESULT.
6956         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
6957         * lex.c (identifier_type): Likewise.
6958         * pt.c (determine_specialization, lookup_template_class): Likewise.
6959         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
6960         (resolve_overloaded_unification, more_specialized): Likewise.
6961         * semantics.c (finish_member_declaration): Likewise.
6962         * typeck.c (build_x_function_call): Likewise.
6964 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
6966         * class.c (layout_empty_base): Handle empty bases with non-byte
6967         alignment.
6968         (build_base_field): Likewise.
6969         (layout_virtual_bases): Likewise.
6971         * class.c (finish_struct_1): Fix typo in this change:
6973         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6975 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
6977         * decl.c (grokdeclarator): Count partial specializations when
6978         keeping track of how many template classes have been seen.
6980         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
6982 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6984         * class.c (build_vbase_pointer_fields): layout_field now place_field.
6985         (get_vfield_offset): Use byte_position.
6986         (set_rtti_entry): Set OFFSET to ssizetype zero.
6987         (get_binfo_offset_as_int): Deleted.
6988         (dfs_record_base_offsets): Use tree_low_cst.
6989         (dfs_search_base_offsets): Likewise.
6990         (layout_nonempty_base_or_field): Reflect changes in RLI format
6991         and call byte_position.
6992         (layout_empty_base): Convert offset to ssizetype.
6993         (build_base_field): use rli_size_unit_so_far.
6994         (dfs_propagate_binfo_offsets): Do computation in proper type.
6995         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
6996         (layout_class_type): Reflect changes in RLI names and fields.
6997         (finish_struct_1): Set DECL_FIELD_OFFSET.
6998         * dump.c (dequeue_and_dump): Call bit_position.
6999         * expr.c (cplus_expand_constant): Use byte_position.
7000         * rtti.c (expand_class_desc): Use bitsize_one_node.
7001         * typeck.c (build_component_addr): Use byte_position and don't
7002         special case for zero offset.
7004 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
7006         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
7008         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
7009         tinfo object.
7010         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
7011         vtable.
7013 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
7015         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
7016         DECL_P macros.
7017         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
7018         make_typename_type, check_initializer, cp_finish_decl,
7019         xref_tag): Likewise.
7020         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
7021         decl_namespace, arg_assoc_template_arg, arg_assoc,
7022         validate_nonmember_using_decl, do_class_using_decl): Likewise.
7023         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
7024         args_to_string): Likewise.
7025         * friend.c (is_friend): Likewise.
7026         * lex.c (note_got_semicolon, note_list_got_semicolon,
7027         is_global): Likewise.
7028         * method.c (build_overload_nested_name, build_overload_value,
7029         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
7030         * parse.y (typename_sub, typename_sub1): Likewise.
7031         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
7032         process_partial_specialization, convert_template_argument,
7033         template_args_equal, add_pending_template, lookup_template_class,
7034         for_each_template_parm_r, maybe_fold_nontype_arg,
7035         tsubst, instantiate_template, type_unification_real, unify,
7036         instantiate_pending_templates, set_mangled_name_for_template_decl):
7037         Likewise.
7038         * repo.c (repo_get_id, repo_template_used): Likewise.
7039         * search.c (lookup_field_1): Likewise.
7040         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
7041         * xref.c (classname): Likewise.
7043 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
7045         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
7046         (CANONICAL_BINFO): New macro.
7047         (BINFO_NEW_VTABLE_MARKED): Use it.
7048         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
7049         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
7050         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
7051         not TREE_TYPE.
7052         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
7053         (build_secondary_vtable): Likewise.
7054         (dfs_finish_vtbls): Likewise.
7055         (dfs_accumulate_vtbl_inits): Likewise.
7056         (accumulate_vtbl_inits): New function.
7057         (finish_vtbls): Make sure that virtual bases come after
7058         non-virtual bases in the vtable group.
7059         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
7060         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
7061         * search.c (struct vbase_info): Move definition.
7062         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
7063         (unmarked_new_vtable_p): Likewise.
7064         (dfs_mark_vtable_path): Remove.
7065         (dfs_mark_new_vtable): Remove.
7066         (dfs_unmark_new_vtable): Likewise.
7067         (dfs_clear_search_slot): Likewise.
7068         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
7069         (dfs_clear_vbase_slots): Likewise.
7070         (init_vbase_pointers): LIkewise.
7072 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
7074         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
7075         SIZETYPE to a non-SIZETYPE.
7077 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
7079         * class.c (layout_virtual_bases): Adjust names in conditionally
7080         compiled code.
7082         * class.c (record_base_offsets): New function.
7083         (layout_conflict_p): Likewise.
7084         (layout_nonempty_base_or_field): Use it.
7085         (layout_empty_base): New function.
7086         (build_base_field): Use it.
7087         (build_base_fields): Update comment.
7088         (layout_virtual_bases): Fold in a little code form
7089         layout_basetypes.  Use layout_empty_base.
7090         (layout_basetypes): Remove.
7091         (end_of_class): New function.
7092         (layout_class_type): Use it.  Adjust.
7094         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
7095         (fntype_p): Remove.
7096         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
7097         comment.
7098         (dfs_skip_nonprimary_vbases_markedp): Likewise.
7099         * typeck.c (fntype_p): Remove.
7101         * cp-tree.h (TI_SPEC_INFO): Remove.
7102         (CLASSTYPE_TI_SPEC_INFO): Likewise.
7103         * pt.c (process_partial_specialization): Likewise.
7105         * class.c (build_base_field): Fix thinko in computation of binfo
7106         offsets.
7108         * tree.c (mark_local_for_remap_p): Mark variables declared in
7109         TARGET_EXPRs as well.
7111 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
7113         * typeck.c (require_complete_type, complete_type,
7114         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
7115         build_array_ref, convert_arguments, pointer_diff,
7116         build_x_unary_op, build_unary_op, build_c_cast,
7117         build_modify_expr): Use COMPLETE_TYPE_P etc.
7118         * call.c (is_complete, convert_like_real,
7119         build_new_method_call): Likewise.
7120         * class.c (build_vbase_pointer_fields, check_bases,
7121         build_base_field, finish_struct_1, pushclass): Likewise.
7122         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
7123         * decl.c (maybe_process_template_type_declaration, pushtag,
7124         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
7125         layout_var_decl, check_initializer, cp_finish_decl,
7126         grokdeclarator, require_complete_types_for_parms,
7127         grok_op_properties, xref_tag, xref_basetypes,
7128         check_function_type): Likewise.
7129         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
7130         * friend.c (do_friend): Likewise.
7131         * init.c (build_offset_ref): Likewise.
7132         * parse.y (structsp): Likewise.
7133         * pt.c (maybe_process_partial_specialization,
7134         tsubst_friend_function, instantiate_class_template, tsubst,
7135         do_type_instantiation, instantiate_pending_templates): Likewise.
7136         * repo.c (repo_get_id): Likewise.
7137         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
7138         synthesize_tinfo_var, emit_support_tinfos): Likewise.
7139         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
7140         * semantics.c (begin_class_definition): Likewise.
7141         * tree.c (build_cplus_method_type): Likewise.
7142         * typeck2.c (digest_init, build_functional_cast,
7143         add_exception_specifier): Likewise.
7144         * parse.h, parse.c: Regenerated.
7146 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
7148         * inc/cxxabi.h: New header file. Define new-abi entry points.
7149         (__pointer_type_info::target): Rename member to ...
7150         (__pointer_type_info::type): ... here.
7151         (__base_class_info::type): Rename member to ...
7152         (__base_class_info::base): ... here.
7153         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
7154         * cp-tree.h (CPTI_ABI): New global tree enumeration.
7155         (abi_node): New global tree node.
7156         * decl.c (abi_node): Document.
7157         (init_decl_processing): Initialize abi_node.
7158         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
7159         (get_vmi_pseudo_type_info): Likewise.
7160         (create_tinfo_types): Likewise.
7161         (emit_support_tinfos): Likewise.
7162         * tinfo.h (cxxabi.h): Include for new-abi.
7163         Move rtti class definitions to new header file.
7164         * tinfo.cc (abi): Use the namespace.
7165         (std): Move new abi rtti classes from here ...
7166         (__cxxabiv1): ... to here.
7167         * tinfo2.cc (cxxabi.h): Include for new-abi.
7168         Move rtti class definitions to new header file.
7169         (std): Move new abi rtti classes from here ...
7170         (__cxxabiv1): ... to here.
7171         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
7172         namespace.
7174 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
7175             Jason Merrill  <jason@casey.cygnus.com>
7177         * method.c (build_overload_int): Use host_integerp.
7179 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
7181         * init.c (build_offset_ref): Handle the case of a templated member
7182         function.
7184 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
7186         * except.c (expand_exception_blocks): Clear catch_clauses_last.
7188 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
7190         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
7191         * class.c (check_bitfield_decl): Turn illegal bitfields into
7192         non-bitfields.
7193         (dfs_propagate_binfo_offsets): Adjust for new size_binop
7194         semantics.
7195         (dfs_offset_for_unshared_vbases): Likewise.
7196         * cvt.c (cp_convert_to_pointer): Convert NULL to a
7197         pointer-to-member correctly under the new ABI.
7198         * expr.c (cplus_expand_constant): Don't use cp_convert when
7199         turning an offset into a pointer-to-member.
7200         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
7201         when dereferencing them under the new ABI.
7202         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
7203         of pointers-to-members under the new ABI.
7205         * class.c (check_bitfield_decl): Remove restriction on really long
7206         bitfields.
7207         (layout_class_type): Implement new ABI handling of bitfields
7208         longer than their types.
7210 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
7212         * parse.y (extdefs): Call ggc_collect.
7213         * parse.c: Regenerated.
7215 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
7217         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
7218         (note_name_declared_in_class): Use OVL_CURRENT to get at a
7219         potential overload.
7221 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7223         * class.c (build_vbase_path): Use integer_zerop.
7224         (build_vtable_entry): Use tree_low_cst.
7225         (get_vfield_offset): Use bit_position.
7226         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
7227         Use tree_low_cst.
7228         (check_bitfield_decl): Set DECL_SIZE using convert.
7229         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
7230         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
7231         Use tree_low_cst.
7232         (finish_struct_1): Use bit_position.
7233         (dump_class_hierarchy): Use tree_low_cst.
7234         * cp-tree.h (min_precision): Add declaration.
7235         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
7236         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
7237         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
7238         * expr.c (cplus_expand_constant): Use bit_position.
7239         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
7240         * rtti.c (get_base_offset): Use bit_position.
7241         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
7242         host_integerp, and tree_low_cst.
7243         (pointer_int_sum): Use integer_zerop.
7244         (build_component_addr): Use bit_position.
7246 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
7248         * typeck.c (require_complete_type): Don't assume size_zero_node.
7249         (complete_type_or_else): Likewise.
7251 2000-03-16  Steven Grady <grady@digitaldeck.com>
7252             Jason Merrill  <jason@casey.cygnus.com>
7254         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
7256 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
7258         * decl2.c (grokfield): Bail out if type is error_mark_node.
7260 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
7262         * tinfo2.cc (__ptr_to_member_data): Rename to ...
7263         (__pointer_to_member_data): ... here. Adjust.
7264         * rtti.c (create_tinfo_types): Adjust.
7266 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
7268         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
7269         * decl.c (ref_desc_type_node): Undocument.
7270         * rtti.c (ptr_ref_initializer): Rename to ...
7271         (ptr_initializer): ... here. Adjust comments.
7272         (ptmd_initializer): Fix comment thinko.
7273         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
7274         (create_tinfo_types): Remove ref_desc_type_node init.
7275         * tinfo2.cc (__reference_type_info): Remove.
7277 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
7279         * decl.c (cp_finish_decl): Remove obsolete comment.
7281         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
7283 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
7285         * cp-tree.h: Tweak documentation.
7286         * class.c (build_vbase_pointer_fields): Layout the fields, too.
7287         (avoid_overlap): Remove.
7288         (get_binfo_offset_as_int): New function.
7289         (dfs_serach_base_offsets): Likewise.
7290         (layout_nonempty_base_or_field): Likewise.
7291         (build_base_field): Layout fields here.  Avoid placing two objects
7292         of the same type at the same address, under the new ABI.
7293         (build_base_fields): Adjust accordingly.
7294         (create_vtable_ptr): Return the new field, but don't attach it to
7295         TYPE_FIELDS.
7296         (remove_base_field): Remove.
7297         (remove_base_fields): Remove.
7298         (layout_basetypes): Adjust accordingly.
7299         (layout_class_type): Call layout_field for each field, rather than
7300         just making a wholesale call to layout_type.
7302 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
7304         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
7306 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
7308         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
7310         * except.c (dtor_nothrow): New fn.
7311         (do_pop_exception): Use it.  Take type parm.
7312         (push_eh_cleanup): Take type parm.
7313         (expand_start_catch_block): Pass it.
7314         (build_eh_type_type_ref): Accept null type.
7316 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
7318         * cp-tree.h (revert_static_member_fn): Change prototype.
7319         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
7320         (grok_op_properties): Likewise.
7321         (start_function): Likewise.
7322         (revert_static_member_fn): Simplify.
7323         * pt.c (check_explicit_specialization): Adjust call to
7324         revert_static_member_fn.
7326 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
7328         * cp-tree.h (scope_kind): New type.
7329         (tmpl_spec_kind): Likewise.
7330         (declare_pseudo_global_level): Remove.
7331         (pseudo_global_level_p): Rename to template_parm_scope_p.
7332         (pushlevel): Remove declaration.
7333         (begin_scope): New function.
7334         (finish_scope): Likewise.
7335         (current_tmpl_spec_kind): Likewise.
7336         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
7337         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
7338         Add template_spec_p.
7339         (toplevel_bindings_p): Adjust.
7340         (declare_pseudo_global_level): Remove.
7341         (pseudo_global_level_p): Rename to template_parm_scope_p.
7342         (current_tmpl_spec_kind): New function.
7343         (begin_scope): Likewise.
7344         (finish_scope): Likewise.
7345         (maybe_push_to_top_level): Adjust.
7346         (maybe_process_template_type_declaration): Likewise.
7347         (pushtag): Likewise.
7348         (pushdecl_nonclass_level): Likewise.
7349         (lookup_tag): Likewise.
7350         (grokfndecl): Handle member template specializations.  Share
7351         constructor and non-constructor code.
7352         * decl2.c (check_classfn): Handle member template specializations.
7353         * pt.c (begin_template_parm_list): Use begin_scope.
7354         (begin_specialization): Likewise.
7355         (end_specialization): Likewise.
7356         (check_explicit_specialization): Use current_tmpl_spec_kind.
7357         Handle member template specializations.
7358         (end_template_decl): Use finish_scope.  Remove call to
7359         get_pending_sizes.
7360         (push_template_decl_real): Remove bogus error message.
7361         (tsubst_decl): Fix typo in code contained in comment.
7362         (instantiate_template): Handle member template specializations.
7363         (most_general_template): Likewise.
7365 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
7367         * lex.c (whitespace_cr): Compress consecutive calls to warning().
7368         (do_identifier): Ditto for error().
7370         * pt.c (convert_nontype_argument): Ditto for cp_error().
7371         (convert_template_argument): Ditto for cp_pedwarn().
7373 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
7375         * exception.cc (__check_null_eh_spec): New fn.
7376         * except.c (expand_end_eh_spec): Call it if the spec is throw().
7378 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
7380         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
7381         * except.c (expand_end_eh_spec): Add the return type.
7382         * rtti.c (throw_bad_cast): Add the parmtypes.
7383         (throw_bad_typeid): Likewise.
7385         * semantics.c (expand_stmt): Only leave out rtl for unused
7386         artificials, and set DECL_IGNORED_P on them as well.
7387         * decl.c (wrapup_globals_for_namespace): Likewise.
7389 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
7391         * decl.c (maybe_commonize_var): Skip all artificial decls.
7392         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
7394 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
7396         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
7397         * cp-tree.h: Declare flag_enforce_eh_specs.
7398         * decl.c (store_parm_decls, finish_function): Check it.
7400         C library functions don't throw.
7401         * Makefile.in (cfns.h): New target.
7402         (except.o): Depend on it.
7403         * Make-lang.in (cc1plus): Depend on cfns.gperf.
7404         * cfns.gperf: New file.
7405         * cfns.h: Generated.
7406         * except.c: Include it.
7407         (nothrow_libfn_p): New fn.
7408         * decl.c (grokfndecl): Use it.
7409         * cp-tree.h: Declare it.
7411         * decl.c (push_overloaded_decl_1, auto_function,
7412         define_function): Lose.
7413         (build_library_fn_1): New static fn.
7414         (builtin_function): Use it.
7415         (get_atexit_node): Use build_library_fn_ptr.
7416         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
7417         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
7418         push_void_library_fn, push_throw_library_fn): New fns.
7419         * cp-tree.h: Declare them.
7420         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
7421         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
7422         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
7423         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
7424         * rtti.c (build_runtime_decl): Lose.
7425         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
7426         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
7427         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
7429         * call.c (build_call): Remove result_type parm.
7430         Call mark_used on unused artificial fns.
7431         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
7433 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
7435         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
7436         appropriate.
7437         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
7438         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
7439         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
7440         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
7441         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
7442         expand_generic_desc): Likewise.
7444 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
7446         * exception.cc (__cp_pop_exception): Cleanup the original object.
7448 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
7450         * decl.c (grok_op_properties): Merge conversion to void warning
7451         with other silly op warnings.
7453 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
7455         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
7456         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
7458 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
7460         * decl.c (cp_make_fname_decl): New function.
7461         (wrapup_globals_for_namespace): Don't emit unused static vars.
7462         (init_decl_processing): Remove comment about use of
7463         array_domain_type. Set make_fname_decl.
7464         (cp_finish_decl): Remove __FUNCTION__ nadgering.
7465         * semantics.c (begin_compound_stmt): Remove
7466         current_function_name_declared flagging.
7467         (expand_stmt): Don't emit unused local statics.
7468         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
7469         specially.
7471 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
7473         * typeck.c (convert_for_assignment): Don't look at array
7474         initializer.
7475         * call.c (convert_like_real): Likewise.
7477 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
7479         Add initial support for '\uNNNN' specifier.
7480         * lex.c (read_ucs): New fn.
7481         (readescape, skip_white_space): Call it.
7482         (is_extended_char, is_extended_char_1): New fns.
7483         (utf8_extend_token): New fn, #if 0'd out.
7484         (real_yylex): Treat extended chars like letters.
7486         * search.c (note_debug_info_needed): Walk the bases even if we
7487         weren't deferring the type itself.
7489 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7491         * decl2.c (finish_objects): Constify a char*.
7493         * method.c (emit_thunk): Likewise.
7495 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
7497         * typeck.c (dubious_conversion_warnings): Look through
7498         REFERENCE_TYPE.
7500 Mon Mar  6 08:46:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7502         * class.c (dfs_modify_vtables): I is now unsigned.
7503         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
7504         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
7505         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
7506         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
7507         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
7508         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
7509         Call integer_all_onesp.
7510         * typeck2.c (process_init_constructor): Use compare_tree_int.
7512         * lang-specs.h (as): Don't call if -syntax-only.
7514 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
7516         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
7517         RTL_EXPR_HAS_NO_SCOPE after all.
7519 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
7521         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
7522         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
7523         RTL_EXPR_HAS_NO_SCOPE.
7525         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
7526         later.
7528         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
7530 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
7532         * call.c (convert_like): Macrofy.
7533         (convert_like_with_context): New macro.
7534         (convert_like_real): Renamed from convert_like.  Add calling
7535         context parameters, for diagnostics. Add recursive flag.  Call
7536         dubious_conversion_warnings for outer conversion.
7537         (build_user_type_conversion): Use convert_like_with_context.
7538         (build_over_call): Likewise. Don't warn about dubious
7539         conversions here. Adjust convert_default_arg calls.
7540         (convert_default_arg): Add context parameters for diagnostics.
7541         Pass throught to convert_like_with_context.
7542         * cp-tree.h (convert_default_arg): Add context parameters.
7543         (dubious_conversion_warnings): Prototype new function.
7544         * typeck.c (convert_arguments): Adjust convert_default_arg call.
7545         (dubious_conversion_warnings): New function, broken
7546         out of convert_for_assignment.
7547         (convert_for_assignment): Adjust.
7549 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
7551         * decl2.c (key_method): Break out from...
7552         (import_export_vtable, import_export_class): ...here.
7554         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
7555         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
7557         * search.c (note_debug_info_needed, dfs_debug_mark,
7558         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
7559         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
7561 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
7563         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
7564         typos.
7566 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
7568         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
7569         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
7570         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
7571         (lang_type): Split gets_new into has_new and has_array_new.
7572         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
7573         (TYPE_GETS_NEW): Split into ...
7574         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
7575         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
7576         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
7577         (build_op_new_call): Don't declare.
7578         (build_new_1): Likewise.
7579         * call.c (build_op_new_call): Remove.
7580         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
7581         instead of TYPE_NEEDS_DESTRUCTOR.
7582         (finish_struct_bits): Likewise.
7583         (add_implicitly_declared_members): Likewise.
7584         (check_field_decl): Likewise.
7585         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
7586         correctly under the new ABI.
7587         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
7588         instead of TYPE_NEEDS_DESTRUCTOR.
7589         (initialize_local_var): Likewise.
7590         (destroy_local_var): Likewise.
7591         (cp_finish_decl): Likewise.
7592         (register_dtor_fn): Likewise.
7593         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
7594         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
7595         TYPE_VEC_DELETE_TAKES_SIZE here.
7596         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
7597         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
7598         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
7599         (finish_destructor_body): Likewise.
7600         (maybe_build_cleanup_1): Likewise.
7601         * decl2.c (do_static_destruction): Likewise.
7602         * init.c (build_new_1): Make it static.
7603         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
7604         (expand_cleanup_for_base): Likewise.
7605         (get_cookie_size): New function.
7606         (build_new_1): Handle array-new cookies correctly under the new
7607         ABI.
7608         (build_vec_delete_1): Likewise.
7609         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
7610         (build_delete): Likewise.
7611         (build_vec_delete): Handle array-new cookies correctly under the new
7612         ABI.
7613         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
7614         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
7615         TYPE_HAS_ARRAY_NEW_OPERATOR.
7616         * ptree.c (print_lang_type): Check them.
7617         * search.c (context_for_name_lookup): Fix typo in comment.
7618         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
7619         * tree.c (break_out_cleanups): Likewise.
7620         (build_cplus_array_test_1): Likewise.
7621         (cp_build_qualified_type_real): Likewise.
7622         * typeck.c (complete_type): Likewise.
7624         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
7625         the command-line, not the end.
7627 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
7629         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
7631 2000-03-02  Tom Tromey  <tromey@cygnus.com>
7633         * cp-tree.h (build_java_class_ref): Declare.
7634         * init.c (build_java_class_ref): No longer static.
7635         * except.c (expand_throw): Generate a Java-style `throw' if the
7636         thrown object is a "Java" object.
7637         (initialize_handler_parm): Generate a Java-style lookup of
7638         exception info if the caught object is a "Java" object.
7639         (catch_language, catch_language_init): New globals.
7640         (decl_is_java_type): New function.
7641         (expand_start_catch_block): Don't call push_eh_info() or
7642         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
7643         class reference to build_catch_block.
7645 Thu Mar  2 13:32:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7647         * typeck.c (comptypes): Treat sizetype like its language equivalent.
7649 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
7651         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
7652         to merge reference/pointer code and fix incorrect warnings.
7654 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
7656         * search.c (protected_accessible_p): Use context_for_name_lookup.
7658         * init.c (construct_virtual_bases): Fix thinko.
7659         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
7661 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
7663         * decl.c (current_function_decl): Move to toplev.c.
7665 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
7667         * pt.c (fn_type_unification): Unify return type, whenever
7668         provided.
7669         (get_bindings_real): Only pass return type when necessary.
7670         Remove explicit return type check.
7671         * class.c (resolve_address_of_overloaded_function): Pass desired
7672         return type to fn_type_unification.
7674 Mon Feb 28 08:15:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7676         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
7677         DECL_FIELD_SIZE.
7678         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
7679         DECL_FIELD_SIZE.
7680         * rtti.c (expand_class_desc): Likewise.
7681         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
7682         (THUNK_VCALL_OFFSET): Likewise.
7683         (THUNK_DELTA): Reflect changes in ../tree.h.
7685 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
7687         * search.c (protected_accessible_p): Also allow the access if
7688         the member is public in DERIVED.  Lose TYPE parm.
7689         (friend_accessible_p): Lose TYPE parm.
7690         (accessible_p): Adjust.
7692 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7694         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
7695         on things that are not sizes; ssize_binop deleted.
7696         Call size_diffop when appropriate.
7697         (dfs_build_vcall_offset_vtbl_entries): Likewise.
7698         (build_primary_vtable, build_secondary_vtable): Likewise.
7699         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
7700         Variable I is HOST_WIDE_INT.
7701         (get_vfield_offset): Pass proper types to size_binop.
7702         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
7703         (finish_struct_1): Likewise.
7704         (skip_rtti_stuff): Arg N is now pointer to signed.
7705         (layout_class_type): Use size_zero_node.
7706         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
7707         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
7708         * decl.c (complete_arry_type): Pass proper types to size_binop.
7709         (xref_basetypes): BINFO_OFFSET is sizetype.
7710         * error.c (dump_expr): Don't use size_binop non-sizes.
7711         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
7712         * init.c (construct_virtual_bases): Fix type error.
7713         (build_vec_delete_1): Pass proper type to size_binop and don't
7714         fold result.
7715         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
7716         * rtti.c (get_base_offset): Pass proper type to size_binop.
7717         * search.c (dfs_find_vbases): Fix type error.
7718         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
7719         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
7720         * tree.c (debug_binfo): Variable N is signed.
7721         Use HOST_WIDE_INT_PRINT_DEC.
7722         * typeck.c (comptypes): sizetype is same as equivalent integer type.
7723         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
7724         size_one_node and size_zero_node.
7725         (c_alignof): Use size_one_node.
7726         (build_component_addr): Pass proper types to size_binop.
7727         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
7729 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
7731         Implement class scope using-declarations for functions.
7732         * class.c (handle_using_decl): Call add_method for used functions.
7733         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
7734         (add_method): Used functions are hidden by local functions.
7735         (check_bases_and_members): Handle using-decls before finalizing
7736         CLASSTYPE_METHOD_VEC.
7737         * call.c (add_function_candidate): Add ctype parm; if non-zero,
7738         override the type of 'this' accordingly.
7739         (add_template_candidate, add_template_candidate_real): Add ctype parm.
7740         (convert_class_to_reference, build_user_type_conversion_1,
7741         build_new_function_call, build_object_call, build_new_op,
7742         build_new_method_call): Pass ctype parm.
7744         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
7745         the baselink.
7746         * call.c (convert_class_to_reference, build_user_type_conversion_1,
7747         build_new_function_call, build_object_call, build_new_op,
7748         build_new_method_call, build_op_delete_call): Don't get basetype_path
7749         from a baselink.
7750         * typeck.c (build_component_ref): Likewise.
7751         * init.c (build_offset_ref): Likewise.
7752         (resolve_offset_ref): Don't call enforce_access.
7753         Call build_scoped_ref.
7754         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
7755         would cause an error or if -pedantic.
7756         * class.c (alter_access): Lose binfo parm.
7758 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
7760         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
7761         types.
7763 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
7765         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
7766         pseudo_type_info creation into the std namespace
7768 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
7770         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
7771         (import_export_class): Remove declaration.
7772         * decl2.c (import_export_class): Make it static.
7773         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
7774         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
7775         EXPR_WITH_FILE_LOCATION.
7776         * lex.c (check_newline): Tweak filename/lineno setting.
7777         * semantics.c (begin_while_stmt): Fix typo in comment.
7779 Sat Feb 26 19:50:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7781         * lang-options.h (-fmessage-length=): Add missing option.
7783         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
7785 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
7787         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
7789 Fri Feb 25 14:52:33 2000  Jim Wilson  <wilson@cygnus.com>
7791         * optimize.c (expand_call_inline): Emit the return label before
7792         evaluating the return value.
7794 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
7796         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
7797         than duplicating functionality here.
7798         * optimize.c: Include input.h.
7799         (expand_call_inline): Use push_srcloc and pop_srcloc.
7800         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
7801         * parse.c: Regenerated.
7802         * Makefile.in (lex.o): Depend on input.h.
7803         (optimize.o): Likewise.
7805 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
7807         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
7808         function type, rather than ICE.
7810 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
7812         * decl.c (grokdeclarator): Call decl_type_access_control.
7813         * parse.y (parse_end_decl): Don't call decl_type_access_control if
7814         decl is null.
7816 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
7818         * decl.c (decls_match): Remove obsolete static member nadgering.
7820 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
7822         * decl.c (grokdeclarator): Change ANSI to ISO.
7823         * lex.c (consume_string, readescape, do_identifier): Likewise.
7824         (parse_float, real_yylex): Likewise.
7825         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
7826         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
7827         new_type_id, maybe_label_decls, simple_stmt,
7828         for.init.statement): Likewise.
7829         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
7830         * semantics.c (finish_named_return_value): Likewise.
7831         * parse.c: Regenerate.
7833 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
7835         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
7836         (CPTI_CLASS_STAR_TYPE): Remove.
7837         (vtable_index_type): Likewise.
7838         (class_star_type_node): Remove.
7839         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
7840         (build_binary_op_nodefault): Remove.
7841         * call.c (build_new_op): Use build_binary_op instead of
7842         build_binary_op_nodefault.
7843         * decl.c (init_decl_processing): Remove class_star_type_node
7844         initialization.  Make delta_type_node ptrdiff_type_node under the
7845         new ABI.  Initialize vtable_index_type.
7846         (build_ptrmemfunc_type): Build different structures for the new
7847         ABI.
7848         (build_enumerator): Use build_binary_op instead of
7849         build_binary_op_nodefault.
7850         * method.c (build_overload_value): Mangle pointers-to-members
7851         appropriately under the new ABI.
7852         * typeck.c (build_array_ref): Use build_binary_op instead of
7853         build_binary_op_nodefault.
7854         (get_member_function_from_ptrfunc): Adjust for the new ABI.
7855         (build_binary_op_nodefault): Rename to ...
7856         (build_binary_op): ... this.  Remove old version.  Adjust for
7857         pointer-to-member comparisons under the new ABI.
7858         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
7859         (build_ptrmemfunc): Adjust for the new ABI.
7860         (expand_ptrmemfunc_cst): Likewise.
7861         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
7862         (pfn_from_ptrmemfunc): Adjust for the new ABI.
7864 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
7866         * call.c (build_object_call): Compress consecutive calls to
7867         cp_error.
7868         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
7869         (build_op_delete_call): Adjust message formatting.
7871         * class.c (check_bases): Compress consecutive calls to
7872         cp_pedwarn.
7873         (finish_struct_anon): Say 'ISO C++'.
7875         * decl.c (start_decl): Same here.
7876         (grok_reference_init): Likewise.
7877         (grokfndecl): Correct message formatting.
7878         (grokfndecl): Improve diagnostic.
7879         (check_static_variable_definition): Likewise. Say 'ISO C++'
7880         (compute_array_index_type): Say 'ISO C++'
7881         (create_array_type_for_decl): Compress consecutive calls to
7882         cp_error.
7883         (grokdeclarator): Say 'ISO C++'
7884         (grok_op_properties): Likewise.
7886         * decl2.c (delete_sanity): Clairify diagnostic.
7887         (check_member_template): Same here.
7888         (grok_function_init): Use consistent terminology.
7890         * expr.c (do_case): Say 'ISO C++'
7892         * friend.c (do_friend): Compress consecutive calls to warning.
7894 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
7896         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
7897         * class.c (build_secondary_vtable): Reorganize.  Don't create a
7898         new vtable under the new ABI.
7899         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
7900         computing the size.
7901         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
7902         the initializing elements.
7903         (initialize_vtable): New function.
7904         (dfs_finish_vtbls): Use it.
7905         (dfs_accumulate_vtbl_inits): New function.
7906         (finish_vtbls): Merge primary and secondary vtables under the new
7907         ABI.
7908         (finish_struct_1): Remove redundant call to layout_vtable_decl.
7909         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
7910         aren't VAR_DECLs.
7912         * class.c (build_vtable): New function, split out from ...
7913         (get_vtable_decl): ... here, and ...
7914         (build_secondary_vtable): ... here.
7916         * pt.c (tsubst_decl): Fix formatting.
7918 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7920         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
7921         (avoid_overlap, build_base_field): Likewise.
7922         (build_base_field, build_base_fields, is_empty_class):
7923         Test DECL_SIZE with integer_zero.
7924         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
7925         * cp-tree.h (struct lang_type): New field size_unit.
7926         (CLASSTYPE_SIZE_UNIT): New macro.
7927         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
7928         (cp_finish_decl): Delete -Wlarger-than processing.
7929         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
7930         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
7931         * tree.c (make_binfo): binfo vector is one entry longer.
7932         (walk_tree): Walk DECL_SIZE_UNIT.
7934 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
7936         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
7937         comment.
7938         (build_vtable_entry): Don't assume all vtable entries are
7939         functions.
7940         (build_vtbl_initializer): Adjust accordingly.
7941         (get_vtable_decl): Fix formatting.
7943 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
7945         * semantics.c (deferred_type_access_control): Walk the entire
7946         type_lookups list.
7947         (save_type_access_control): Rename from
7948         initial_deferred_type_access_control.  Just remember the value.
7949         (decl_type_access_control): New fn.
7950         (begin_function_definition): Use deferred_type_access_control, after
7951         we've started the function.  Set type_lookups to error_mark_node.
7952         * parse.y (frob_specs, fn.def1): Adjust.
7953         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
7954         (parse_end_decl, parse_bitfield0, parse_method): New fns.
7955         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
7956         (after_type_component_declarator0): Likewise.
7957         (after_type_component_declarator): Likewise.
7958         (notype_component_declarator): Likewise.
7959         * cp-tree.h: Adjust.
7961         * decl.c (redeclaration_error_message): Allow redeclaration of
7962         namespace-scope decls.
7964 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
7966         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
7968 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
7970         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
7971         * decl2.c (grokclassfn): Likewise.
7973         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
7975         * decl2.c (lang_decode_option): Don't set default message length
7976         here.
7977         * lex.c (lang_init_options): Set it here.
7979 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
7981         Make DECL_CONTEXT mean the class in which a member function was
7982         declared, even for a virtual function.
7983         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
7984         (DECL_FRIEND_CONTEXT): New macro.
7985         (DECL_REAL_CONTEXT): Remove.
7986         (SET_DECL_FRIEND_CONTEXT): Likewise.
7987         (DECL_VIRTUAL_CONTEXT): Adjust.
7988         (DECL_CLASS_SCOPE_P): Use TYPE_P.
7989         (add_friends): Remove.
7990         (hack_decl_function_context): Likewise.
7991         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
7992         CP_DECL_CONTEXT.
7993         (build_over_call): Fix indentation.  Use DECL_CONTEXT
7994         instead of DECL_CLASS_CONTEXT.
7995         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
7996         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
7997         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
7998         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
7999         (build_base_field): Likewise.
8000         (finish_struct_1): Likewise.
8001         (build_self_reference): Likewise.
8002         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
8003         DECL_REAL_CONTEXT.
8004         (pushtag): Use decl_function_context, not
8005         hack_decl_function_context.
8006         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
8007         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
8008         (pushdecl): Remove bogus code.
8009         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
8010         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
8011         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
8012         Use decl_function_context, nothack_decl_function_context.
8013         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
8014         (grokdeclarator): Likewise.  Use decl_function_context, not
8015         hack_decl_function_context.
8016         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
8017         (start_function): Use DECL_FRIEND_CONTEXT, not
8018         DECL_CLASS_CONTEXT.  Use decl_function_context, not
8019         hack_decl_function_context.
8020         (finish_function): Use decl_function_context, not
8021         hack_decl_function_context.
8022         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
8023         DECL_CLASS_CONTEXT.
8024         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
8025         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
8026         (grokfield): Likewise.
8027         (finish_builtin_type): Likewise.
8028         (finish_vtable_vardec): Use decl_function_context, not
8029         hack_decl_function_context.
8030         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
8031         (start_static_initialization_or_destruction): Likewise.
8032         (finish_static_initialization_or_destruction): Likewise.
8033         (mark_used): Adjust logic for deciding when to synthesize methods.
8034         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
8035         DECL_REAL_CONTEXT.
8036         * error.c (dump_function_decl): Use DECL_CONTEXT, not
8037         DECL_CLASS_CONTEXT.
8038         * friend.c (is_friend): Likewise.
8039         (add_friends): Remove.
8040         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
8041         * lex.c (begin_definition_of_inclass_inline): Use
8042         decl_function_context, not hack_decl_function_context.
8043         (process_next_inline): Likewise.
8044         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
8045         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
8046         DECL_CLASSS_CONTEXT.
8047         (hack_identifier): Likewise.
8048         (synthesize_method):  Use decl_function_context, not
8049         hack_decl_function_context.
8050         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
8051         DECL_REAL_CONTEXT.
8052         (is_member_template): Use decl_function_context, not
8053         hack_decl_function_context.  Use DECL_CONTEXT, not
8054         DECL_CLASS_CONTEXT.
8055         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
8056         DECL_CLASS_CONTEXT.
8057         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
8058         DECL_REAL_CONTEXT.
8059         (push_template_decl_real): Likewise.
8060         (instantiate_class_template): Don't call add_friends.
8061         (tsubst_default_argument): Use DECL_CONTEXT, not
8062         DECL_REAL_CONTEXT.
8063         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
8064         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
8065         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
8066         DECL_CLASS_CONTEXT.
8067         * repo.c (repo_inline_used): Likewise.
8068         * search.c (current_scope): Adjust for new _CONTEXT macros.
8069         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
8070         DECL_REAL_CONTEXT.
8071         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
8072         (lookup_fnfields_here):Likewise.
8073         (check_final_overrider): Likewise.
8074         (init_vbase_pointers): Likewise.
8075         (virtual_context): Likewise.
8076         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
8077         (expand_body): Use decl_function_context, not
8078         hack_decl_function_context.
8079         * tree.c (hack_decl_function_context): Remove.
8080         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
8081         DECL_CLASS_CONTEXT.
8082         * typeck2.c (error_not_base_type): Likewise.
8084 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
8086         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
8088 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8090         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
8092 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
8094         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
8096 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
8098         * decl2.c (lang_decode_option): Enable automatic line wrapping.
8100 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
8102         * parse.y (frob_specs): Split out...
8103         (parse_decl): From here.
8104         (fn.def2): Call initial_deferred_type_access_control.
8105         (after_type_component_declarator0): Call frob_specs.
8106         (notype_component_declarator0): Likewise.
8107         * search.c (friend_accessible_p): Nested classes are friends of their
8108         enclosing classes.
8110 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
8112         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
8113         used to create an implicit temporary.
8115         * class.c (dfs_modify_vtables): Tweak calculation of functions to
8116         override.
8118 2000-02-08  Nathan Sidwell  <nathan@acm.org>
8120         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
8121         strip array element qualifiers too.
8123 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
8125         * decl.c (store_parm_decls): Don't build cleanups for parameters
8126         while processing_template_decl.
8128 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
8130         * cp-tree.h (struct saved_scope): Add incomplete field.
8131         (namespace_scope_incomplete): New macro.
8132         * decl.c (pushdecl): Use it.
8133         (hack_incomplete_structures): Use it.  See through artificial
8134         binding levels.
8135         (mark_saved_scope): Mark it.
8137         Implement access control for nested types.
8138         * search.c (type_access_control): New fn.
8139         (accessible_p): Now we do perform access control for types.
8140         * semantics.c (deferred_type_access_control): New fn.
8141         (initial_deferred_type_access_control): New fn.
8142         (begin_function_definition): Call it.  Add lookups parm.
8143         * decl.c (struct binding_level): Add this_class field.
8144         (pushlevel_class): Set it.
8145         (mark_binding_level): Mark it.
8146         (lookup_name_real): Use it.  Call type_access_control.
8147         (mark_saved_scope): Mark lookups field.
8148         * cp-tree.h (flagged_type_tree): Add lookups field.
8149         (struct saved_scope): Add lookups field.
8150         (type_lookups): New macro.
8151         * parse.y (declmods): Now <ftype>.
8152         (parse_decl): Add lookups parm.  Call
8153         initial_deferred_type_access_control.
8154         (lang_extdef): Clear type_lookups.
8155         (typed_declspecs, declmods, typespec): Set lookups field.
8156         (initdcl): Call deferred_type_access_control.
8157         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
8158         component_decl_1, named_parm): Adjust.
8159         * friend.c (is_friend): Nested classes are friends of their
8160         enclosing classes.
8162         * class.c (currently_open_derived_class): New fn.
8163         * method.c (hack_identifier): Use it.
8165         * lex.c (do_identifier): Remove obsolete code.
8167         * parse.y (typed_typespecs): Propagate new_type_flag properly.
8169 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
8171         * tinfo.h: Remove apostrophes from C++ comment (xgettext
8172         thinks this file is plain C).
8174 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8176         * Makefile.in (call.o): Depend on $(EXPR_H).
8178         * call.c: Include "expr.h".
8180         * class.c (dump_class_hierarchy): Add prototype.
8182         * search.c (dfs_get_pure_virtuals): Likewise.
8184 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
8186         * parse.y (simple_stmt): Allow :: token in asm parameter list.
8187         * parse.c: Rebuilt.
8189 Mon Jan 31 15:35:29 2000  Jim Wilson  <wilson@cygnus.com>
8191         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
8192         Store it in DECL_FCONTEXT.
8193         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
8195 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
8197         * tinfo.h (old abi): #include "tconfig.h".
8198         * tinfo.cc (convert_to_base): Move into old abi section.
8200 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
8202         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
8203         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
8204         (BINFO_PRIMARY_BINFO): New macro.
8205         (BF_DELTA): Rename to ...
8206         (BV_DELTA): ... this.
8207         (BF_VCALL_INDEX): Rename to ...
8208         (BV_VCALL_INDEX): ... this.
8209         (BF_FN): Rename to ...
8210         (BV_FN): ... this.
8211         * class.c (build_vbase_path): Adjust for changes to reverse_path.
8212         (set_rtti_entry): Rename BF_ macros to BV_ variants.
8213         (modify_vtable_entry): Simplify.
8214         (add_virtual_function): Rename BF_ macros to BV_ variants.
8215         (build_vtable_initializer): Likewise.
8216         (get_class_offset_1): Remove.
8217         (dfs_get_class_offset): Likewise.
8218         (get_class_offset): Likewise.
8219         (dfs_find_final_overrider): New function.
8220         (find_final_overrider): Likewise.
8221         (modify_one_vtable): Remove.
8222         (dfs_find_base): New function.
8223         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
8224         find_final_overrider.
8225         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
8226         virtuals.
8227         (dfs_fixup_vtable_deltas): Remove.
8228         (override_one_vtable): Remove.
8229         (merge_overrides): Likewise.
8230         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
8231         unreal chilren of virtual bases.
8232         (finish_struct_1): Don't use merge_overrides.  Don't use
8233         dfs_fixup_vtable_deltas.
8234         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
8235         BINFOs.
8237 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
8238             Jason Merrill  <jason@yorick.cygnus.com>
8240         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
8242 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
8244         * exception.cc (__throw_bad_typeid): Add missing std::.
8246 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8248         * cp-tree.h (make_thunk): PROTO -> PARAMS.
8250 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
8252         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
8254         Runtime support for new-abi rtti.
8255         * inc/typeinfo (type_info::operator!=): Define in class.
8256         (type_info::before, type_info::name, type_info::operator==,
8257         type_info::operator!=): Define new ABI implementations.
8258         (type_info::is_pointer_p, type_info::is_function_p): Declare
8259         new virtual functions.
8260         (type_info::do_catch, type_info::do_upcast): Likewise.
8262         * tinfo.h (__base_class_info): Define new class.
8263         (__class_type_info): Likewise.
8264         (__si_class_type_info): Likewise.
8265         (__vmi_class_type_info): Likewise.
8266         (__dynamic_cast): Prototype.
8268         * tinfo.cc: Conditionalize old and new rtti mechanisms.
8269         (type_info::is_pointer_p): Define new function.
8270         (type_info::is_function_p): Likewise.
8271         (type_info::do_catch): Likewise.
8272         (type_info::do_upcast): Likewise.
8273         (vtable_prefix): New structure for vtable access.
8274         (adjust_pointer): Define new template function.
8275         (contained_p, public_p, virtual_p, contained_public_p,
8276         contained_nonpublic_p, contained_nonvirtual_p): Define new
8277         functions.
8278         (nonvirtual_base_type): New local variable.
8279         (__class_type_info::~__class_type_info): Define.
8280         (__si_class_type_info::~__si_class_type_info): Likewise.
8281         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
8282         (__class_type_info::do_catch): Define new function.
8283         (__class_type_info::do_upcast): Likewise.
8284         (__class_type_info::find_public_src): Likewise.
8285         (__class_type_info::do_find_public_src): Likewise.
8286         (__si_class_type_info::do_find_public_src): Likewise.
8287         (__vmi_class_type_info::do_find_public_src): Likewise.
8288         (__class_type_info::do_dyncast): Likewise.
8289         (__si_class_type_info::do_dyncast): Likewise.
8290         (__vmi_class_type_info::do_dyncast): Likewise.
8291         (__class_type_info::do_upcast): Likewise.
8292         (__si_class_type_info::do_upcast): Likewise.
8293         (__vmi_class_type_info::do_upcast): Likewise.
8294         (__dynamic_cast): Likewise.
8296         * tinfo2.cc (__fundamental_type_info): Define new class.
8297         (__pointer_type_info): Likewise.
8298         (__reference_type_info): Likewise.
8299         (__array_type_info): Likewise.
8300         (__function_type_info): Likewise.
8301         (__enum_type_info): Likewise.
8302         (__ptr_to_member_type_info): Likewise.
8303         (__fundamental_type_info::~__fundamental_type_info): Define.
8304         (__pointer_type_info::~__pointer_type_info): Likewise.
8305         (__reference_type_info::~__reference_type_info): Likewise.
8306         (__array_type_info::~__array_type_info): Likewise.
8307         (__function_type_info::~__function_type_info): Likewise.
8308         (__enum_type_info::~__enum_type_info): Likewise.
8309         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
8310         (__pointer_type_info::do_catch): Define new function.
8311         (__ptr_to_member_type_info::do_catch): Define new function.
8313         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
8314         (__is_pointer): Likewise.
8316         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
8318 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
8320         * cp/class.c (build_vtable): Rename to build_primary_vtable.
8321         (prepare_fresh_vtable): Rename to build_secondary_vtable.
8322         (make_new_vtable): New function.
8323         (modify_vtable_entry): Handle generation of new vtables correctly.
8324         (modify_one_vtable): Remove unused parameter.
8325         (dfs_fixup_vtable_deltas): Likewise.
8326         (override_one_vtable): Use build_secondary_vtable.
8327         (finish_struct_1): Use build_primary_vtable and
8328         build_secondary_vtable.
8330 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
8332         * cp/decl.c: Adjust variable names, comments, help strings.
8334 2000-01-29  Nathan Sidwell  <nathan@acm.org>
8336         * new2.cc (operator delete[]): Use operator delete, don't assume
8337         implementation.
8339 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
8341         * class.c (build_vtbl_initializer): Add argument to
8342         build_vtable_entry call.
8344 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
8346         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
8347         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
8348         (BF_DELTA): New macro.
8349         (BF_VCALL_INDEX): Likewise.
8350         (BF_FN): Likewise.
8351         (THUNK_VCALL_OFFSET): Likewise.
8352         (make_thunk): Change prototype.
8353         * class.c (build_vtable_entry): Integrate
8354         build_vtable_entry_for_fn.  Handle vcall indices.
8355         (build_vtable_entry_for_fn): Remove.
8356         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
8357         BF_VCALL_INDEX, BF_FN.
8358         (modify_vtable_entry): Integrate common code from
8359         modify_one_vtable and dfs_fixup_vtable_deltas.
8360         (add_virtual_function): Set BF_VCALL_INDEX.
8361         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
8362         and BF_FN.
8363         (modify_one_vtable): Simplify.
8364         (dfs_fixup_vtable_deltas): Likewise.
8365         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
8366         * method.c (make_thunk): Handle vcall indices.
8368 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
8370         Compiler side new abi rtti (not enabled).
8371         * cp-tree.h (new_abi_rtti_p): New macro.
8372         (emit_support_tinfos): Prototype new function.
8373         (tinfo_decl_p): Likewise.
8374         (emit_tinfo_decl): Likwise.
8375         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
8376         macros.
8377         (doing_runtime): New local static.
8378         (init_rtti_processing): Add new-abi initializer.
8379         (get_tinfo_decl): Add new-abi logic.
8380         (tinfo_from_decl): Likewise.
8381         (build_dynamic_cast_1): Likewise.
8382         (qualifier_flags): New static function.
8383         (tinfo_base_init): Likewise.
8384         (generic_initializer): Likewise.
8385         (ptr_ref_initializer): Likewise.
8386         (ptmd_initializer): Likewise.
8387         (class_hint_flags): Likewise.
8388         (class_initializer): Likewise.
8389         (synthesize_tinfo_var): Likewise.
8390         (create_real_tinfo_var): Likewise.
8391         (create_pseudo_type_info): Likewise.
8392         (get_vmi_pseudo_type_info): Likewise.
8393         (create_tinfo_types): Likewise.
8394         (emit_support_tinfos): New global function.
8395         (tinfo_decl_p): New global predicate.
8396         (emit_tinfo_decl): New global function.
8397         * class.c (set_rtti_entry): Generalize for old and new rtti.
8398         (build_vtbl_initializer): Likewise.
8399         * decl2.c (finish_file): Likewise.
8401 Thu Jan 27 20:53:36 2000  Jim Wilson  <wilson@cygnus.com>
8403         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
8404         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
8406 Thu Jan 27 13:54:12 2000  Mike Stump  <mrs@wrs.com>
8408         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
8409         for scopes.
8411 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
8413         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
8415 Wed Jan 26 22:19:14 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
8417         * optimize.c (calls_setjmp_r): Supply new argument
8418         to special_function_p.
8420 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8422         * call.c: PROTO -> PARAMS.
8423         * class.c: Likewise.
8424         * cp-tree.h: Likewise.
8425         * cvt.c: Likewise.
8426         * decl.c: Likewise.
8427         * decl.h: Likewise.
8428         * decl2.c: Likewise.
8429         * dump.c: Likewise.
8430         * errfn.c: Likewise.
8431         * error.c: Likewise.
8432         * except.c: Likewise.
8433         * expr.c: Likewise.
8434         * init.c: Likewise.
8435         * input.c: Likewise.
8436         * lex.c: Likewise.
8437         * lex.h: Likewise.
8438         * method.c: Likewise.
8439         * optimize.c: Likewise.
8440         * parse.y: Likewise.
8441         * pt.c: Likewise.
8442         * repo.c: Likewise.
8443         * rtti.c: Likewise.
8444         * search.c: Likewise.
8445         * semantics.c: Likewise.
8446         * spew.c: Likewise.
8447         * tree.c: Likewise.
8448         * typeck.c: Likewise.
8449         * typeck2.c: Likewise.
8450         * xref.c: Likewise.
8452 2000-01-25  Richard Henderson  <rth@cygnus.com>
8454         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
8456 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
8458         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
8459         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
8460         (struct vcall_offset_data_s): New type.
8461         (dfs_vcall_offset_queue_p): New function.
8462         (dfs_build_vcall_offset_vtbl_entries): Likewise.
8463         (build_vcall_offset_vtbl_entries): Likewise.
8464         (layout_vtable_decl): Likewise.
8465         (num_vfun_entries): Likewise.
8466         (num_extra_vtbl_entries): Add the entries for vcall offsets.
8467         (build_vtbl_initializer): Likewise.
8468         (dfs_finish_vtabls): Use layout_vtable_decl.
8469         (modify_one_vtables): Always duplicate vtables under the new ABI.
8470         (finish_struct_1): Use layout_vtable_decl.
8472 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8474         * decl.c (member_function_or_else): Change third arg from a format
8475         specifier to an `enum overload_flags'.  Callers changed.
8477 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
8479         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
8480         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
8481         build_const_cast, get_delta_difference, check_return_expr): Avoid
8482         ANSI string concatenation usage.
8484 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
8486         * class.c (layout_class_type): Put the fields required to make a
8487         class non-empty at the end, not the beginning, of the TYPE_FIELDs
8488         list.
8490 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
8492         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
8493         template.
8495         * decl2.c (mark_used): Do instantiate inlines that have been
8496         explicitly instantiated.
8498 2000-01-24  Richard Henderson  <rth@cygnus.com>
8500         * call.c (build_over_call): Use expand_tree_builtin.
8501         * typeck.c (build_function_call_real): Likewise.
8502         (build_binary_op_nodefault): Handle unordered compares.
8504 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
8506         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
8507         cp_tree_index values.
8508         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
8509         New global node #defines for them.
8510         * rtti.c (call_void_fn): Replace with ...
8511         (build_runtime_decl): ... new static function.
8512         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
8513         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
8514         (build_dynamic_cast_1): Always produce correctly typed result.
8515         Explicitly produce type_info addresses. Use dynamic_cast_node.
8516         * exception.cc (__throw_bad_cast): Return `void *'.
8517         (__throw_bad_typeid): Return `const type_info &'.
8519 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
8521         * cp-tree.h (get_vtable_decl): Prototype new function.
8522         * class.c (get_vtable_decl): New function. Broken out from ...
8523         (build_vtable): ... here. Use it.
8524         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
8525         by get_vtable_decl.
8527 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
8529         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
8530         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
8531         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
8532         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
8533         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
8534         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
8535         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
8536         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
8537         (CPTI_TINFO_VAR_ID): New enumeration.
8538         (__tp_desc_type_node, __access_mode_type_node,
8539         __bltn_desc_type_node, __user_desc_type_node,
8540         __class_desc_type_node, __ptr_desc_type_node,
8541         __attr_desc_type_node, __func_desc_type_node,
8542         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
8543         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
8544         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
8545         enum_desc_type_node, class_desc_type_node,
8546         si_class_desc_type_node, vmi_class_desc_type_node,
8547         ptmd_desc_type_node, base_desc_type_node): New #defines.
8548         (tinfo_fn_id, tinfo_fn_type): Rename to ...
8549         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
8550         (tinfo_var_id): New enumeration.
8551         (DECL_TINFO_FN_P): Augment comment.
8552         * decl.c (cp_global_trees): Adjust documentation.
8553         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
8554         tinfo_decl_type and tinfo_var_id.
8555         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
8556         (build_typeid): Remove unused variable.
8557         (get_tinfo_var): Use tinfo_var_id.
8558         (tinfo_name): New static function.
8559         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
8560         (tinfo_from_decl): Likewise.
8561         (get_base_offset): New static function, broken out of
8562         expand_class_desc.
8563         (expand_si_desc): Use tinfo_name.
8564         (expand_class_desc): Likewise. Lose local static variable.
8565         Use base_desc_type_node. Use get_base_offset.
8566         (expand_ptr_desc): Use tinfo_name.
8567         (expand_attr_desc): Likewise.
8568         (expand_generic_desc): Likewise.
8570         * tinfo.cc (__GXX_ABI_VERSION): Test value and existance.
8571         * tinfo.h (__GXX_ABI_VERSION): Test value and existance.
8573 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
8575         * cp-tree.h (__eprintf): Remove declaration.
8576         * tree.c (__eprintf): Remove definition.
8578 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
8579             Mark Mitchell  <mark@codesourcery.com>
8581         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
8582         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
8584 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
8586         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
8588 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
8590         * cp-tree.h (register_dtor_fn): New function.
8591         * decl.c (destroy_local_static): Rename to ...
8592         (register_dtor_fn): ... this.  Give it external linkage.
8593         (expand_static_init): Use it.
8594         * decl2.c (do_static_initialization): Likewise, if using
8595         __cxa_atexit.
8596         (do_static_destruction): Check that __cxa_atexit is not in use.
8597         (finish_file): Don't call do_static_destruction if using
8598         __cxa_atexit.
8600         * typeck.c (convert_arguments): Restore two-message error
8601         reporting.
8603 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
8605         Remap dynamic cast hint values to be consistent across ABIs.
8606         * search.c (dynamic_cast_base_recurse): Remap generated value.
8607         (get_dynamic_cast_base_type): Adjust documentation.
8608         * tinfo.h (__user_type_info::dyncast): Likewise.
8609         (__user_type_info::find_public_subobj): Remap BOFF meaning.
8610         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
8611         (__class_type_info::do_dyncast): Likewise.
8612         (__class_type_info::do_find_public_subobj): Likewise.
8613         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
8615 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
8617         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
8619         * typeck2.c (incomplete_type_error): Restore previous
8620         cp_error and cp_error_at call sequence.
8622 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
8624         * class.c (dump_class_hierarchy): Make format agree with argument;
8625         cast pointer to unsigned long and print with %lx.
8627 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
8629         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
8631         * typeck.c (composite_pointer_type, common_type,
8632         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
8633         build_function_call_real, convert_arguments,
8634         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
8635         build_unary_op, mark_addressable, build_compound_expr,
8636         build_static_cast, build_reinterpret_cast, build_const_cast,
8637         build_c_cast, build_modify_expr, get_delta_difference,
8638         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
8639         'ISO C++'.  Fusion consecutive calls to diagnotic message routines
8640         into a single one.
8641         * typeck2.c (readonly_error, abstract_virtuals_error,
8642         process_init_constructor, check_for_new_type): Likewise.
8644 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
8646         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
8647         VAR_DECLs.
8649 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
8651         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
8652         (build_x_typeid): Likewise.
8653         (get_tinfo_fn): Likewise.
8654         (get_tinfo_fn_unused): Rename to ...
8655         (get_tinfo_decl): ... here.
8656         * rtti.c (build_headof): Replace logic error with assertion.
8657         (get_tinfo_fn_dynamic): Rename to ...
8658         (get_tinfo_decl_dynamic): ... here. Make static. Use
8659         complete_type_or_else.
8660         (build_x_typeid): Move into ...
8661         (build_typeid): ... here. Adjust call to
8662         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
8663         throw_bad_typeid expression.
8664         (get_tinfo_fn_unused): Rename to ...
8665         (get_tinfo_decl): ... here. Adjust comment.
8666         (get_tinfo_fn): Delete.
8667         (tinfo_from_decl): New static function.
8668         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
8669         (get_typeid): Use complete_type_or_else.
8670         (build_dynamic_cast_1): Adjust calls to
8671         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
8672         * parse.y (primary): Adjust call to build_typeid.
8673         * except.c (build_eh_type_type_ref): Adjust call to
8674         get_tinfo_decl. Mark as used.
8675         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
8676         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
8677         * parse.c: Regenerated.
8679 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
8681         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
8682         calling convention.
8683         (resolves_to_fixed_type_p): Document calling convention.
8684         * rtti.c (build_x_typeid): Initialize NONNULL.
8686         * cp-tree.h (build_shared_int_cst): New function.
8687         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
8688         * class.c (modify_vtable_entry): Likewise.
8689         (add_virtual_function): Split out code to generated shared
8690         INTEGER_CSTs to build_share_int_cst.
8691         (modify_all_vtables): Handle all the overridden functions here.
8692         Add overridden functions from non-primary virtual bases to the
8693         primary vtable.
8694         (finish_struct_1): Adjust call to modify_all_vtables.  Add
8695         overridden functions from non-primary bases to the vtable.
8696         * tree.c (build_shared_int_cst): New function.
8698         * cp-tree.h (scratchalloc): Remove.
8699         (build_scratch_list): Likewise.
8700         * call.c (convert_class_to_reference): Replace build_scratch_list
8701         and build_expr_list with build_tree_list.
8702         (add_candidate): Replace scratchalloc with expralloc.  Note memory
8703         leak.
8704         (build_user_type_conversion_1):  Replace build_scratch_list
8705         and build_expr_list with build_tree_list.
8706         (build_new_op): Likewise.
8707         (build_op_delete_call): Likewise.
8708         (convert_like): Likewise.
8709         * cvt.c (ocp_convert): Likewise.
8710         * decl.c (start_decl): Likewise.
8711         (start_function): Likewise.
8712         (finish_destructor_body): Likewise.
8713         (maybe_build_cleanup_1): Likewise.
8714         * decl2.c (reparse_decl_as_expr): Likewise.
8715         * init.c (perform_member_init): Likewise.
8716         (expand_cleanup_for_base): Likewise.
8717         (build_builtin_delete_call): Likewise.
8718         (build_new_1): Likewise.
8719         (build_delete): Likewise.
8720         * method.c (do_build_assign_ref): Likewise.
8721         * parse.y (already_scoped_stmt): Likewise.
8722         (nontrivial_exprlist): Likewise.
8723         (net_initializer): Likewise.
8724         (initlist): Likewise.
8725         * parse.c: Regenerated.
8726         * rtti.c (build_x_typeid): Likewise.
8727         (build_dynamic_cast_1): Likewise.
8728         * typeck.c (build_x_compound_expr): Likewise.
8729         (build_static_cast): Likewise.
8730         (build_modify_expr): Likewise.
8732         * cp-tree.h (DECL_VINDEX): Add documentation.
8733         * class.c (build_vtable_entry): Likewise.
8734         (start_vtable): Add comment.
8735         (add_virtual_function): Replace pending_hard_virtuals with
8736         overridden_virtuals and pending_virtuals with new_virtuals.
8737         Replace redundant assignments with assertions.
8738         (check_for_override): Add comment.
8739         (check_bases_and_members): Replace pending_hard_virtuals with
8740         overridden_virtuals and pending_virtuals with new_virtuals.
8741         (create_vtbl_ptr): Likewise.
8742         (layout_class_type): Likewise.
8743         (finish_struct_1): Likewise.  Add comments.
8745 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
8747         * class.c (finish_struct_1): Replace redundant code with
8748         assertions.
8750         * cp-tree.h (flag_new_abi): Move.
8751         (flag_use_cxa_atexit): Likewise.
8752         (flag_honor_std): Likewise.
8753         (flag_rtti): Likewise.
8754         (vbase_offsets_in_vtable_p): Define.
8755         (vptrs_present_everywhere_p): Likewise.
8756         (TYPE_CONTAINS_VPTR_P): Likewise.
8757         (dfs_walk_real): Declare.
8758         * class.c (build_vbase_pointer_fields): Check
8759         vbase_offsets_in_vtable_p.
8760         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
8761         BINFO_VPTR_FIELD.
8762         (build_vbase_offset_vtbl_entries): Simplify.
8763         (build_vbase_offset_vtbl_entries): Adjust.
8764         (build_vbase_pointer): Add ability to look up vbase offsets in
8765         vtable.
8766         (start_vtable): New function.
8767         (add_virtual_function): Use it.
8768         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
8769         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
8770         (build_vtbl_initializer): Take the type of the complete object as
8771         input.  Use it to correctly calculate vbase offsets.
8772         (dfs_finish_vtbls): Pass the complete type to
8773         build_vtbl_initializer.
8774         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
8775         (create_vtable_ptr): Create a vtable even if there are no
8776         new virtual functions, under the new ABI.
8777         (finish_struct_1): Likewise.
8778         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
8779         * decl.c (exapnd_static_init): Remove call to
8780         preserve_initializer.
8781         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
8782         vtables.
8783         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
8784         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
8785         (construct_virtual_bases): Don't initialize virtual base pointers
8786         under the new ABI.
8787         (build_aggr_init): Clean up comment.
8788         (expand_aggr_init_1): Likewise.
8789         * rtti.c (expand_class_desc): Store the virtual function table
8790         index where the vbase offset lives in the offset field.
8791         * search.c (dfs_walk_real): Make it global.
8792         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
8793         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
8795         * tinfo.h (USItype): Make it signed under the new ABI.
8796         * tinfo.cc (convert_to_base): New function.  Encapsulate base
8797         conversion logic here.
8798         (__class_type_info::do_upcast): Use it.
8799         (__class_type_info::do_dyncast): Likewise.
8800         (__class_type_info::do_find_public_subobj): Likewise.
8802         * init.c (construct_virtual_bases): Don't look up the addresses of
8803         virtual bases at run-time.
8805         * class.c (build_vbase_pointer): Relocate.
8806         (build_vbase_pointer_fields): Likewise.
8807         (dfs_build_vbase_offset_vtbl_entries): Likewise.
8808         (build_vbase_offset_vtbl_entries): Likewise.
8810         * decl.c (init_decl_processing): Complain if -fnew-abi
8811         -fno-vtable-thunks is used.
8813         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
8814         flag_new_abi.
8816 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
8818         * cp-tree.h (num_extra_vtbl_entries): New function.
8819         (size_extra_vtbl_entries): Likewise.
8820         (dfs_vtable_path_unmark): Likewise.
8821         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
8822         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
8823         * class.c (num_extra_vtbl_entries): New function.
8824         (size_extra_vtbl_entries): Likewise.
8825         (dfs_build_vbase_offset_vtbl_entries): New function.
8826         (build_vbase_offset_vtbl_entries): Likewise.
8827         (build_vtbl_initializer): Use it.
8828         (finish_struct_1): Adjust vtable sizes (using
8829         num_extra_vtbl_entries).
8830         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
8831         THUNK_DECL is non-NULL before expanding it.
8832         * init.c (expand_virtual_init): Adjust the vtable pointer by
8833         size_extra_vtbl_entries before storing it.
8834         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
8835         Handle TREE_LIST parameters here, not in the dfs_* functions.
8836         (dfs_unmarked_real_bases_queue_p): Adjust.
8837         (dfs_marked_real_bases_queue_p): Likewise.
8838         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
8839         (dfs_vtable_path_marked_real_bases_queue_p): New function.
8840         (dfs_vtable_path_unmark): Likewise.
8842 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
8844         * optimize.c (copy_body_r): Clear the operand three of a
8845         TARGET_EXPR when copying it.
8847 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8849         * method.c (build_decl_overload_real): Check whether we are in ::
8850         before returning __builtin_new/delete.
8852 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
8854         * pt.c (tsubst_friend_function): Improve comment.
8855         (instantiate_decl): Avoid crashing when a "nested" function is
8856         instantiated from the top level.
8858         * dump.c (dqeueue_and_dump): Dump
8859         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
8861 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8863         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
8865 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
8867         * g++spec.c (lang_specific_driver): Add -fnew-abi if
8868         ENABLE_NEW_GXX_ABI defined.
8869         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
8870         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
8871         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
8873 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
8875         * decl.c (start_cleanup_fn): Call pushdecl.
8877         * call.c (convert_class_to_reference): Fix typos.
8878         (build_conditional_expr): Handle errors gracefully.
8879         * class.c (push_nested_class): Likewise.
8880         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
8881         (DECL_THIS_EXTERN): Use it.
8882         (DECL_THIS_STATIC): Likewise.
8883         * cvt.c (convert_to_void): Handle errors gracefully.
8884         (build_expr_type_conversion): Likewise.
8885         * decl.c (maybe_push_decl): Likewise.
8886         (start_decl_1): Likewise.
8887         (require_complete_types_for_parms): Likewise.
8888         * parse.y (structsp): Likewise.
8889         (base_class): Likewise.
8890         * parse.c: Regenerated.
8891         * pt.c (finish_member_template_decl): Likewise.
8892         * typeck.c (decay_conversion): Likewise.
8894         * cp-tree.h (dfs_skip_vbases): New function.
8895         (find_vbase_instance): Likewise.
8896         * class.c (determine_primary_base): Allow a nearly empty base to
8897         serve as a primary base class under the new ABI.
8898         (get_class_offset_1): Rename to ...
8899         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
8900         messages here.
8901         (get_class_offset): Use it.  Issue error messages here.
8902         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
8903         find the right copies of virtual bases.
8904         (fixup_vtable_deltas1): Rename to ...
8905         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
8906         bases as primary bases.
8907         (fixup_vtable_deltas): Remove.
8908         (override_one_vtable): Handle virtual bases as primary bases.
8909         (merge_overrides): Likewise.
8910         (finish_struct_1): Likewise.
8911         (dump_class_hierarchy): Dump primary-ness of bases as well.
8912         * search.c (mark_primary_bases): Use a pre-order traversal to
8913         handle primary virtual bases.
8914         (dfs_skip_vbases): New fiunction.
8915         (expand_upcast_fixups): Adjust to handle primary virtual bases.
8916         (fixup_virtual_upcast_offsets): Likewise.
8917         (fixup_all_virtual_upcast_offsets): Likewise.
8918         (dfs_find_vbase_instances): New function.
8919         (find_vbase_instance): Likewise.
8921 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
8923         * lex.c (DIR_SEPARATOR): Delete macro.
8925 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
8927        * decl2.c (lang_decode_option): Handle automatic line wrapping
8928        option.
8930 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
8932         * friend.c (do_friend): Don't resolve scopes when processing
8933         template declarations, even if the qualifying scope doesn't
8934         involve template parameters.
8936 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
8938         * class.c (dfs_modify_vtables_queue_p): Remove.
8939         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
8940         and dfs_marked_real_bases_queue_p instead of
8941         dfs_modify_vtables_queue_p.
8943         * class.c (build_vbase_path): Simplify.
8944         (dfs_propagate_binfo_offsets): New function.
8945         (propagate_binfo_offsets): Use it.
8946         (remove_base_field): Simplify.
8947         (dfs_set_offset_for_vbases): Remove.
8948         (dfs_set_offset_for_shared_vbases): New function.
8949         (dfs_set_offset_for_unshared_vbases): Likewise.
8950         (layout_virtual_bases): Use them.
8951         (layout_basetypes): Don't call propagate_binfo_offsets.
8952         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
8953         for the vbases.
8955         * class.c (build_base_field): New function, split out from ...
8956         (build_base_fields): ... here.  Use it.  Allocate primary bases
8957         first, under the new ABI.
8958         (get_vtable_entry): Remove.
8959         (remove_base_field): New function, split out from ...
8960         (remove_base_fields): ... here.  Adjust since primary bases come
8961         first under the new ABI.
8963         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
8964         (initialize_vtbl_ptrs): New function.
8965         (expand_indirect_vtbls_init): Change prototype.
8966         (convert_pointer_to_vbase): Declare.
8967         * init.c (expand_direct_vtbls_init): Remove.
8968         (dfs_initialize_vtbl_ptrs): New function.
8969         (initialize_vtbl_ptrs): Likewise.
8970         (emit_base_init): Use initialize_vtbl_ptrs.
8971         * search.c (convert_pointer_to_vbase): Make it global.
8972         (expand_indirect_vtbls_init): Remove vtable initialization code.
8973         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
8975         * class.c (dfs_finish_vtbls): New function.
8976         (finish_vtbls): Use it.
8977         (dump_class_hierarchy): New function.
8979         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
8980         (BINFO_VBASE_PRIMARY_P): New macro.
8981         (BINFO_VIRTUALS): Add to documentation.
8982         (SET_BINFO_PRIMARY_MARKED_P): Remove.
8983         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
8984         (dfs_mark_primary_bases_queue_p): Likewise.
8985         (dfs_unmarked_real_bases_queue_p): New function.
8986         (dfs_marked_real_bases_queue_p): Likewise.
8987         * search.c (dfs_mark_primary_bases): Adjust.
8988         (mark_primary_bases): Likewise.
8989         (get_shared_vbase_if_not_primary): New function.
8990         (dfs_unmarked_real_bases_queue_p): Likewise.
8991         (dfs_marked_real_bases_queue_p): Likewise.
8992         (dfs_get_pure_virtuals): Simplify.
8993         (get_pure_virtuals): Likewise.
8995 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8997         * lex.c: Include tm_p.h.
8999 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
9001         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
9003 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
9005         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
9006         * pt.c (instantiate_decl): Defer comdat templates that might not be
9007         needed.
9009         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
9010         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
9011         (finish_file): Likewise.
9013         * decl2.c (import_export_class): Undo 12/14 change.
9015         * error.c (dump_decl): operator new, not operatornew.
9017         * class.c (field_decl_cmp): A nontype is "greater" than a type.
9018         * search.c (lookup_field_1): Look for the last field with the
9019         desired name.
9021 2000-01-05  Nathan Sidwell  <nathan@acm.org>
9023         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
9024         FUNCTION_DECL.
9026 2000-01-05  Nathan Sidwell  <nathan@acm.org>
9028         * typeck.c (build_static_cast): Don't strip target qualifiers
9029         when casting from a class.
9031 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9033         * class.c (warn_hidden): Initialize variable `fndecl'.
9035 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
9037         * decl.c (flag_isoc9x): New variable to be able to use code in
9038         c-common.c.  For now always zero.
9040 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
9042         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
9043         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
9044         or unshare_base_binfos for virtual bases here.
9045         * search.c (dfs_get_vbase_types): Do it here.
9046         (get_vbase_types): Adjust.
9048 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
9050         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
9051         (BINFO_PRIMARY_MARKED_P): Use flag 5.
9052         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
9053         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
9054         (unmark_primary_bases): Remove declaration.
9055         (unmarkedp): Declare.
9056         (dfs_vbase_unmark): Likewise.
9057         * class.c (determine_primary_base): Return immediately if there
9058         are no base classes.  Call mark_primary_bases here.
9059         (modify_all_direct_vtables): Remove.
9060         (modify_all_indirect_vtables): Remove.
9061         (dfs_modify_vtables_queue_p): New function.
9062         (dfs_modify_vtables): New function.
9063         (modify_all_vtables): Use them.
9064         (build_base_fields): Build FIELD_DECLs for primary virtual base
9065         classes.
9066         (create_vtable_ptr): Don't call determine_primary_base here.
9067         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
9068         (dfs_set_offset_for_vbases): ... this.
9069         (layout_virtual_bases): Use it.
9070         (layout_class_type): Call determine_primary_base here.
9071         * search.c (unmarkedp): Make it global.
9072         (shared_marked_p): Simplify.
9073         (shared_unmarked_p): Likewise.
9074         (dfs_primary_bases_queue_p): Remove.
9075         (dfs_unmark_primary_bases): Likewise.
9076         (unmark_primary_bases): Likewise.
9077         (mark_primary_bases): Simplify.
9078         (get_pure_virtuals): Don't call mark_primary_bases here.
9079         (dfs_vbase_unmark): New function.
9080         (get_vbase_types): Simplify.
9082         * class.c (struct base_info): Remove.
9083         (determine_primary_base): Take has_virtual_p rather than a
9084         base_info as input.  Don't calculate max_has_virtual.
9085         (finish_struct_bits): Remove max_has_virtual argument.
9086         (create_vtable_ptr): Remove max_has_virtual_p argument.
9087         (layout_virtual_bases): Remove max argument.
9088         (layout_basetypes): Likewise.
9089         (layout_class_type): Remove max_has_virtual_p argument.
9090         (finish_struct_1): Remove max_has_virtual.
9092         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
9093         (layout_basetypes): Remove.
9094         * class.c (propagate_binfo_offsets): Moved here from tree.c.
9095         Update to handle primary virtual bases.
9096         (remove_base_fields): New function, split out from
9097         layout_basetypes.
9098         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
9099         (layout_virtual_bases): New function, split out from
9100         layout_basetypes.  Update to handle primary virtual bases.
9101         (layout_basetypes): Moved here from tree.c.  Use
9102         remove_base_fields and layout_virtual_bases.
9103         * search.c (dfs_mark_primary_bases_queue_p): New function.
9104         (mark_primary_bases): Use it.
9105         * tree.c (CEIL): Remove.
9106         (propagate_binfo_offsets): Remove.
9107         (layout_basetypes): Remove.
9109 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
9111         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
9112         (BINFO_PRIMARY_MARKED_P): New macro.
9113         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
9114         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
9115         (mark_primary_bases): New function.
9116         (unmark_primary_bases): Likewise.
9117         * search.c (get_abstract_virtuals_1): Remove.
9118         (dfs_mark_primary_bases): New function.
9119         (mark_primary_bases): Likewise.
9120         (dfs_unmark_primary_bases): Likewise.
9121         (unmark_primary_bases): Likewise.
9122         (dfs_get_pure_virtuals): Likewise.
9124 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
9126         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
9127         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
9128         (modify_one_vtable): Adjust.
9129         (fixup_vtable_deltas1): Likewise.
9130         (override_one_vtable): Likewise.
9131         * search.c (get_abstract_virtuals_1): Likewise.
9132         (get_pure_virtuals): Likewise.
9133         (expand_upcast_fixups): Likewise.
9134         * tree.c (debug_binfo): Likewise.
9136         * class.c (build_vtable): Don't return a value.  Don't rebuild
9137         vtables for bases that have already been handled.
9138         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
9139         already been handled.
9140         (modify_one_vtable): Adjust accordingly.
9141         (fixup_vtable_deltas1): Likewise.
9142         (finish_struct_1): Likewise.
9144 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9146         * call.c (build_new_method_call): Also check destructors.