OSDN Git Service

Make gengtype.c language independent.
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2002-07-12  Mark Mitchell  <mark@codesourcery.com>
2
3         * class.c (add_method): Correct handling of conversion operators.
4
5 2002-07-11  Mark Mitchell  <mark@codesourcery.com>
6
7         PR c++/7224
8         * class.c (add_method): Simplify.
9
10 2002-07-11  Jason Merrill  <jason@redhat.com>
11
12         PR c++/7279
13         * tree.c (cp_copy_res_decl_for_inlining): Also copy
14         TREE_ADDRESSABLE.
15
16 2002-07-10  Graham Stott  <graham.stott@btinternet.com>
17
18         * pt.c (template_parm_this_level_p, push_template_decl_real):
19         Pass depth as int pointer. 
20
21 2002-07-11  Tim Josling  <tej@melbpc.org.au>
22
23         Remove front end hard coding from gengtype.c.  
24
25         * config-lang.in (gtfiles): Add files needed for this front end.
26
27 2002-07-10  Mark Mitchell  <mark@codesourcery.com>
28
29         * cp-tree.h (unqualified_name_lookup_error): Declare it.
30         (begin_function_definition): Adjust prototype.
31         * lex.c (unqualified_name_lookup_error): New function, split out
32         from ...
33         (do_identifier): ... here.
34         * parse.y (parse_begin_function_definition): New function.
35         (fn.def1): Use it.
36         * semantics.c (begin_function_definition): Accept decl-specifiers
37         and attributes as separate parameters.
38
39 2002-07-10  Jason Merrill  <jason@redhat.com>
40
41         PR c++/6255
42         * decl.c (lookup_name_real): Build a new TYPENAME_TYPE rather than
43         modifying the old one.
44
45 2002-07-09  Mark Mitchell  <mark@codesourcery.com>
46
47         * cp-tree.h (constructor_name_p): Declare it.
48         (check_template_template_default_arg): Likewise.
49         * class.c (handle_using_decl): Use constructor_name_p.
50         * decl.c (grokdeclarator): Likewise.
51         * decl2.c (constructor_name_p): Define it.
52         * init.c (build_member_call): Use constructor_name_p.
53         * parse.y (template_parm): Use check_template_template_default_arg.
54         * pt.c (check_explicit_specialization): Use constructor_name_p.
55         * semantics.c (check_template_template_default_arg): New function.
56         
57 2002-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
58
59         * pt.c (can_complete_type_without_circularity): Add static to
60         function definition.
61
62 2002-07-08  Mark Mitchell  <mark@codesourcery.com>
63
64         * cp-tree.h (have_extern_spec): Declare it
65         * decl.c (have_extern_spec): Define it.
66         (start_decl): Eliminate use of used_extern_spec.
67         (start_function): Likewise.
68         * parse.y (have_extern_spec): Remove declaration.
69         (used_extern_spec): Likewise.
70         (frob_specs): Eliminate use of used_extern_spec.
71         (.hush_warning): Likewise.
72
73 2002-07-07  Mark Mitchell  <mark@codesourcery.com>
74
75         * Make-lang.in (cp/parse.o): Depend on decl.h.
76         * cp-tree.h (do_decl_instantiation): Change prototype.
77         * parse.y: Include decl.h.
78         (parse_decl_instantiation): New function.
79         (explicit_instantiation): Use it.
80         * pt.c (do_decl_instantiation): Accept a DECL, not a DECLARATOR
81         and DECLSPECS.
82         
83 2002-07-07  Roger Sayle  <roger@eyesopen.com>
84
85         * error.c (dump_function_name): Use DECL_TEMPLATE_RESULT for
86         constructor and destructor tests when passed a TEMPLATE_DECL.
87
88 2002-07-05  Jason Merrill  <jason@redhat.com>
89
90         * cvt.c (cp_convert_to_pointer): Call force_fit_type for null
91         pointers.
92
93         PR optimization/7145
94         * tree.c (cp_copy_res_decl_for_inlining): Also copy DECL_INITIAL.
95
96 2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
97
98         Repair damage on weak-impared targets caused by my previous patch.
99         * cp-tree.h (import_export_tinfo): Add parameter.
100         * decl2.c (import_export_tinfo): Add parameter, post adjust
101         DECL_COMDAT.
102         * rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
103         import_export_tinfo.
104
105 2002-07-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
106
107         PR c++/6944
108         * init.c (build_aggr_init): Remove qualifiers of init before calling
109         build_vec_init.
110         (build_vec_init): Flatten multi-dimensional array during cleanup.
111         (build_vec_delete_1): Abort if the type of each element is array.
112
113 2002-07-03  Graham Stott  <graham.stott@btinternet.com>
114
115         * pt.c (instantiate_class_template): Fix typo.
116
117 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
118
119         * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
120         by CVS conflict in my last patch.
121
122 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
123
124         PR c++/6716
125         * pt.c (can_complete_type_without_circularity): New function.
126         (instantiate_class_template): Use it.
127         * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
128         message due to incomplete fields.
129
130 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
131
132         PR c++/7112
133         * mangle.c (write_expression): Add mangling for sizeof when
134         applied to a type.
135         * operators.def: Remove stale comment.
136
137 2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
138
139         * cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
140         (CPTI_TYPE_INFO_PTR_TYPE): ... this.
141         (tinfo_decl_type): Replace with ...
142         (type_info_ptr_type): ... this.
143         (import_export_tinfo): Declare.
144         (tinfo_decl_p): Rename to ...
145         (unemitted_tinfo_decl_p): ... this.
146         * decl2.c (import_export_decl): Break out tinfo handling into ...
147         (import_export_tinfo): ... here. New function.
148         (finish_file): Adjust.
149         * rtti.c (TINFO_REAL_NAME): New macro.
150         (init_rtti_processing): Create the tinfo types.
151         (get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
152         (get_tinfo_decl): Adjust.
153         (get_tinfo_ptr): New function.
154         (get_type_id): Use it.
155         (tinfo_base_init): Create vtable decl here, if it doesn't exist.
156         (ptr_initializer): Use get_tinfo_ptr.
157         (ptm_initializer): Likewise.
158         (synthesize_tinfo_var): Break into ...
159         (get_pseudo_ti_init): ... this. Just create the initializer.
160         (get_pseudo_ti_desc): .. and this.
161         (create_real_tinfo_var): Remove.
162         (create_pseudo_type_info): Don't create the vtable decl here.
163         (get_vmi_pseudo_type_info): Remove.
164         (create_tinfo_types): Adjust.
165         (tinfo_decl_p): Rename to ...
166         (unemitted_tinfo_decl_p): ... here. Adjust.
167         (emit_tinfo_decl): Adjust. Create the initializer.
168
169 2002-06-27  Mark Mitchell  <mark@codesourcery.com>
170
171         PR c++/6695
172         * pt.c (tsubst_friend_class): Substitute into the context of the
173         friend before using it.
174
175 2002-06-26  Mark Mitchell  <mark@codesourcery.com>
176
177         * cp-tree.h (xref_tag): Change prototype.
178         (handle_class_head): Likewise.
179         (build_x_component_ref): Likewise.
180         * decl.c (cxx_init_decl_processing): Adjust call to xref_tag.
181         (xref_tag): Take attributes as a separate parameter.
182         (xref_tag_from_type): Adjust call to xref_tag.
183         * decl2.c (build_expr_from_tree): Adjust call to
184         build_x_component_ref.
185         (handle_class_head): Take attributes as a separate parameter.
186         * parse.y (parse_xref_tag): New function.
187         (parse_handle_class_head): Likewise.
188         (primary): Use parse_xref_tag.
189         (class_head_decl): Use parse_handle_class_head.
190         (class_head_defn): Likewise.
191         * rtti.c (init_rtti_processing): Adjust call to xref_tag.
192         (build_dynamic_cast_1): Likewise.
193         (create_pseudo_type_info): Likewise.
194         (emit_support_tinfos): Likewise.
195         * typeck.c (build_object_ref): Adjust call to
196         build_x_component_ref.
197         (build_x_component_ref): Remove protect parameter.
198         
199 2002-06-25  Mark Mitchell  <mark@codesourcery.com>
200
201         * call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
202         * class.c (handle_using_decl): Likewise.
203         (instantiate_type): Likewise.
204         * cp-tree.h (BASELINK_FUNCTIONS): New macro.
205         (xref_basetypes): Change prototype.
206         (begin_mem_initializers): New function.
207         (get_overloaded_fn): Likewise.
208         * decl.c (xref_basetypes): Simplify.
209         * error.c (dump_expr): Use BASELINK_FUNCTIONS.
210         * init.c (build_offset_ref): Likewise.
211         * parse.y (base_init): Use begin_mem_initializers().
212         (structsp): Adjust call to xref_basetypes.
213         * pt.c (determine_specialization): Use BASELINK_FUNCTIONS.
214         (instantiate_class_template): Adjust call to xref_basetypes.
215         * semantics.c (begin_mem_initializers): New function.
216         * tree.c (is_overloaded_fn): Use BASELINK_FUNCTIONS.
217         (really_overlaoded_fn): Likewise.
218         (get_overloaded_fn): New function.'
219         (get_first_fn): USe BASELINK_FUNCTIONS.
220         
221 2002-06-24  Mark Mitchell  <mark@codesourcery.com>
222
223         * cp-tree.h (SCALAR_TYPE_P): New macro.
224         (check_for_out_of_scope_variable): New function.
225         (at_class_scope_p): Likewise.
226         (finish_fname): Likewise.
227         * class.c (finish_struct): Use at_function_scope_p.
228         * decl.c (check_for_out_of_scope_variable): New function, split
229         out from do_identifier.
230         (finish_enum): Use at_function_scope_p.
231         * lex.c (do_identifier): Use check_for_out_of_scope_variable.
232         * parse.y (VAR_FUNC_NAME): Give it <ttype>.  Use finish_fname.
233         (primary): Use at_function_scope_p.
234         * search.c (at_class_scope_p): New function.
235         * semantics.c (finish_fname): Likewise.
236         (check_multiple_declarators): Use at_function_scope_p.
237         
238 2002-06-23  Mark Mitchell  <mark@codesourcery.com>
239
240         * parse.y (parse_scoped_id): New function.
241         (primary): Use it.
242         * cp-tree.h (do_scoped_id): Adjust declaration.
243         * lex.c (do_scoped_id): Remove call to yylex.
244         * decl2.c (build_expr_from_tree): Adjust use of do_scoped_id.
245         * typeck2.c (add_exception_specifier): Use tree_cons, rather than
246         expanding it inline.
247         
248 2002-06-23  Matt Thomas  <matt@3am-software.com>
249
250         * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
251         "#if VMS_TARGET".
252
253 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
254
255         * mangle.c (integer_type_codes): Const-ify.
256
257 2002-06-20  Richard Henderson  <rth@redhat.com>
258
259         PR c++/6747
260         * typeck.c (mark_addressable): Don't test TREE_ADDRESSABLE early.
261         Call put_var_into_stack.
262
263 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
264
265         * spew.c (remove_last_token): Use ARRAY_SIZE in lieu of explicit
266         array size calculation.
267
268 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
269
270         PR c++/6892
271         * pt.c (tsubst_expr): Handle FILE_STMT.
272
273 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
274
275         PR c++/6723
276         * pt.c (lookup_template_class): Don't build complete argument of
277         BOUND_TEMPLATE_TEMPLATE_PARM if appeared as a default template
278         argument.
279
280 2002-06-19  Akim Demaille  <akim@epita.fr>
281
282         * parse.y (TYPENAME): Rename as tTYPENAME to avoid the clash with
283         decl.h's TYPENAME.
284         * spew.c, lex.c: Adjust.
285         * parse.y (explicit_instantiation): Add empty action to override
286         the default $$ = $1 where it introduces a type clash.
287
288 2002-06-14  Jason Merrill  <jason@redhat.com>
289
290         * semantics.c (begin_for_stmt): Push the 'for' scope before
291         adding the FOR_STMT.
292
293         C++ ABI changes.
294         * class.c (build_base_field): Set DECL_PACKED.
295         (layout_class_type): Don't use tail padding of PODs.
296         * mangle.c (write_unqualified_name): Fix template conversion op
297         mangling.
298
299 2002-06-16  Richard Henderson  <rth@redhat.com>
300
301         PR opt/6793
302         * tree.c (cp_cannot_inline_tree_fn): Don't short-circuit test
303         after template instantiation.
304
305 2002-06-16  Richard Henderson  <rth@redhat.com>
306
307         * cp-tree.h, decl2.c (flag_ms_extensions): Move to c-common.
308
309 2002-06-15  Gabriel Dos Reis  <gdr@codesourcery.com>
310
311         * cp-tree.h (compiler_error): Remove declaration.
312         * lex.c (compiler_error): Remove definition.
313
314 2002-06-14  Steve Ellcey  <sje@cup.hp.com>
315
316         * g++spec.c (LIBUNWIND): New.
317         (lang_specific_driver): Add it if USE_UNWIND_EXCEPTIONS is set.
318
319 2002-06-13  Jessica Han  <jessica@cup.hp.com>
320
321         * class.c (build_vtable): Use TARGET_VTABLE_ENTRY_ALIGN.
322         (build_vtbl_initializer): Honor TARGET_VTABLE_DATA_ENTRY_DISTANCE.
323         (build_vbase_offset_vtbl_entries): Likewise.
324         * rtti.c (build_headof): Likewise.
325         (get_tinfo_decl_dynamic): Likewise.
326         (create_pseudo_type_info): Likewise.
327
328 2002-06-12  Stan Shebs  <shebs@apple.com>
329
330         * mpw-config.in: Remove file, no longer used.
331         * mpw-make.sed: Ditto.
332
333 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
334
335         * decl2.c: Update call to cpp_handle_option.
336
337 2002-06-07  H.J. Lu  (hjl@gnu.org)
338
339         * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT.
340
341 2002-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
342
343         * error.c (cp_error_at): Fix typo.
344
345 2002-06-04  Gabriel Dos Reis  <gdr@codesourcery.com>
346
347         * error.c (cp_diagnostic_starter): Adjust call.
348         (maybe_print_instantiation_context): Change prototype to take a
349         'diagnostic_info *'.
350         (print_instantiation_full_context): Likewise.
351         (print_instantiation_partial_context): Likewise.
352         (cp_diagnostic_starter): Likewise.
353         (cp_diagnostic_finalizer): Likewise.
354         (cp_print_error_function): Likewise.
355         (cp_printer): Take a secondary parameter as a 'text_info *'.
356         Remove output_state savings.  Adjust calls.
357
358 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
359
360         * pt.c (inline_parm_levels): Mark for GC.
361
362         * mangle.c (start_mangling): Allocate G.substitutions here...
363         (init_mangle): ... rather than here.
364         (finish_mangling): Clear the varray pointer when done with it.
365         * spew.c (yylexstring): Don't use VARRAY_FREE.
366         * search.c (bfs_walk): Don't use VARRAY_FREE.
367         * decl2.c (pending_statics): Use gengtype to mark.
368         (deferred_fns): Likewise.
369         (ssdf_decls): Likewise.
370         (init_decl2): Delete.
371         * decl.c (pop_from_top_level): Don't use VARRAY_FREE.
372         (cxx_init_decl_processing): Don't call init_decl2.
373         (cxx_pop_function_context): Don't use VARRAY_FREE.
374         * cp-tree.h (struct saved_scope): No need for special marking
375         of varrays.
376         (struct language_function): Likewise.
377         (local_classes): Use gengtype to mark.
378         (init_decl2): Delete prototype.
379         * class.c (init_class_processing): Don't use
380         ggc_add_tree_varray_root.
381         (build_vtbl_initializer): Don't use VARRAY_FREE.
382
383         * decl.c (typename_compare): Don't use same_type_p.
384
385         * decl.c: Include hashtab.h instead of hash.h.
386         (typename_hash): Update to use htab_h.
387         (typename_compare): Likewise.
388         (typename_htab): Use gengtype to mark.
389         (build_typename_type): Update to use htab_h.
390         * Make-lang.in (cp/decl.o): Use HASHTAB_H instead of hash.h.
391
392         * Make-lang.in (gt-cp-tree.h): New rule.
393         (cp/tree.o): Depend on gt-cp-tree.h.
394         * config-lang.in (gtfiles): Add cp/tree.c.
395         * tree.c: Include gt-cp-tree.h.
396         (list_hash_table): Use gengtype to mark.
397         (init_tree): Use gengtype to mark trees.
398
399         * Make-lang.in (cp/decl.o): Add debug.h dependency.
400         * call.c (struct z_candidate): Use gengtype.
401         (USER_CONV_CAND): Use WRAPPER_ZC.
402         (convert_class_to_reference): Use build_zc_wrapper.
403         (build_type_conversion_1): Likewise.
404         (build_over_call): Use WRAPPER_ZC.
405         (add_warning): Use build_zc_wrapper.
406         * cp-lang.c (LANG_HOOKS_MARK_TREE): Delete.
407         * cp-tree.h (struct lang_identifier): Use gengtype.
408         (struct template_parm_index_s): Likewise.
409         (struct ptrmem_cst): Likewise.
410         (struct tree_binding): Likewise.
411         (struct tree_overload): Likewise.
412         (struct tree_srcloc): Likewise.
413         (struct tree_wrapper): Likewise.  Also modify to have a pointer
414         to struct z_candidate rather than void.
415         (enum cp_tree_node_structure_enum): New.
416         (union lang_tree_node): New.
417         (cxx_mark_tree): Delete prototype.
418         (cp_tree_node_structure): New prototype.
419         (build_ptr_wrapper): Delete prototype.
420         (build_int_wrapper): Delete prototype.
421         (build_zc_wrapper): New prototype.
422         * decl.c: Include debug.h
423         (cxx_mark_tree): Delete.
424         (cp_tree_node_structure): New.
425         * tree.c (build_ptr_wrapper): Delete.
426         (build_int_wrapper): Delete.
427         (build_zc_wrapper): New.
428
429         * cp-tree.h [! ENABLE_TREE_CHECKING] (LANG_TYPE_PTRMEM_CHECK):
430         Correct typo.  Patch from k_fukui@highway.ne.jp.
431
432         * semantics.c (current_stmt_tree): Update for change to
433         struct language_function.
434         (finish_mem_initializers): Likewise.
435         * decl.c (cxx_init_decl_processing): Don't set mark_lang_status.
436         * cp-tree.h (struct language_function): Rename from
437         cp_language_function.  Change all uses.
438         (cp_function_chain): Don't need to cast.
439
440         * class.c (duplicate_tag_error): Reset discriminator.
441         (check_bases_and_members): Update for data structure changes.
442         * cp-tree.h (struct lang_id2): Use gengtype.
443         (flagged_type_tree): Likewise.
444         (SET_LANG_ID): Use GGC on struct lang_id2.
445         (struct cp_language_function): Use gengtype.  Remove field
446         'x_vcalls_possible_p'.
447         (current_vcalls_possible_p): Delete.
448         (struct lang_type_header): New.
449         (struct lang_type_class): Rename from struct lang_type.  Include
450         struct lang_type_header.
451         (struct lang_type_ptrmem): New.
452         (struct lang_type): New.
453         (LANG_TYPE_CLASS_CHECK): New.  Use it in all the appropriate macros.
454         (LANG_TYPE_PTRMEM_CHECK): New.  Use it in all the appropriate macros.
455         (TYPE_SET_PTRMEMFUNC_TYPE): Set discriminator, update for changes.
456         (struct lang_decl_flags): Use gengtype.  Add discriminators.
457         (struct lang_decl): Use gengtype.  Add and use discriminators.
458         Update the macros that reference moved fields.
459         (LANG_DECL_U2_CHECK): New function.  Use it when appropriate.
460         (SET_DECL_THUNK_P): Set discriminator too.
461         (clear_inline_text_obstack): Delete prototype.
462         (finish_inline_definitions): Delete prototype.
463         (mark_pending_inlines): Delete prototype.
464         (lang_check_failed): New prototype.
465         * decl.c (struct named_label_use_list): Use gengtype.
466         (struct named_label_list): Likewise.
467         (mark_binding_level): Delete.
468         (mark_named_label_lists): Delete.
469         (push_local_name): Set discriminator on DECL_LANG_SPECIFIC.
470         (cxx_init_decl_processing): Use generated marker routine.
471         (begin_destructor_body): Delete dead set to
472         current_vcalls_possible_p.
473         (mark_lang_function): Delete.
474         (mark_cp_function_context): Delete.
475         (lang_mark_tree): Use generated marker routines.
476         * decl2.c (start_objects): Set discriminator when setting
477         GLOBAL_INIT_PRIORITY.
478         * lex.c (retrofit_lang_decl): Set discriminators.
479         (copy_lang_type): Update for changes to lang_type structure.
480         (cp_make_lang_type): Set discriminator.
481         * parse.y: Use gengtype on YYLVAL.  Don't use dots in identifiers.
482         * search.c: Include ggc.h.
483         * semantics.c (anon_aggr_type_p): Use the macro, don't hand-code it.
484         (finish_inline_definitions): Delete.
485         * spew.c (struct token): Use gengtype.
486         (struct token_chunk): New.
487         (struct unparsed_text): Use gengtype.  Store tokens in chunks.
488         (struct feed): Use gengtype.
489         (feed_obstack): Delete.
490         (feed): Mark as GC root.
491         (pending_inlines): Mark as GC root.
492         (pending_inlines_tail): Likewise.
493         (processing_these_inlines): Likewise.
494         (token_obstack): Make static.
495         (first_token): Likewise.
496         (init_spew): Don't initialise deleted things; use gengtype for roots.
497         (clear_inline_text_obstack): Delete.
498         (feed_input): Use GC for struct feed.  Update for changes to
499         struct unparsed_text.
500         (mark_pending_inlines): Delete.
501         (next_token): Rename from add_token.  Change all callers.  Update
502         for changes to struct unparsed_text.
503         (space_for_token): New.
504         (remove_last_token): New.
505         (alloc_unparsed_text): New.
506         (snarf_block): Take an unparsed_text.  Update for changes to struct
507         unparsed_text.
508         (snarf_method): Update for changes to struct unparsed_text.
509         (snarf_defarg): Update for changes to struct unparsed_text.
510         * tree.c (lang_check_failed): New.
511
512         * Make-lang.in (gt-cp-call.h gt-cp-decl2.h gt-cp-parse.h
513         gt-cp-pt.h gt-cp-repo.h gt-cp-spew.h): New rules.
514         (cp/spew.o): Add dependency on gt-<filename>.h.
515         (cp/decl2.o): Add dependency on gt-<filename>.h.
516         (cp/call.o): Add dependency on gt-<filename>.h.
517         (cp/pt.o): Add dependency on gt-<filename>.h.
518         (cp/repo.o): Add dependency on gt-<filename>.h.
519         (cp/parse.o): Add dependency on gt-<filename>.h.
520         * call.c: Use gengtype for roots.
521         * config-lang.in (gtfiles): Add cp-tree.h decl.h lex.h call.c
522         decl2.c parse.y pt.c repo.c spew.c.
523         * cp-tree.h: Use gengtype for roots.
524         (struct saved_scope): Use GGC, gengtype.
525         (cp_parse_init): Delete prototype.
526         (init_pt): Delete prototype.
527         * decl.c: Use gengtype for roots.
528         (mark_saved_scope): Delete.
529         (cxx_init_decl_processing): Don't call deleted initilisation
530         routines.
531         (signed_size_zero_node): Delete, unused.
532         * decl.h: Use gengtype for roots.
533         * decl2.c: Use gengtype for roots.
534         * lex.h: Use gengtype for roots.
535         * parse.y: Use gengtype for roots.
536         (cp_parse_init): Delete.
537         * pt.c: Use gengtype for roots.
538         (init_pt): Delete.
539         * repo.c: Use gengtype for roots.
540         * spew.c: Use gengtype for roots.
541
542         * Make-lang.in: Allow for filename changes.  Add gtype-cp.h.
543         (cp/decl.o): Add dependency on gtype-cp.h.
544         * decl.c: Remove use of add_deletable_root, use GTY marker instead.
545         Include gtype-cp.h.  Allow for filename changes.
546
547         * Make-lang.in (cp/gt-decl.h): Generate using gengtype.
548         (cp/decl.o): Add cp/gt-decl.h dependency.
549         * config-lang.in (gtfiles): New.
550         * tree.h: Rename struct binding_level to struct cp_binding_level.
551         * decl.c: Rename struct binding_level to struct cp_binding_level.
552         Include cp/gt-decl.h.
553         (struct cp_binding_level): Use gengtype.
554         (make_binding_level): Use GGC on struct cp_binding_level.
555         (mark_binding_level): Use gt_ggc_m_cp_binding_level.
556         (cxx_init_decl_processing): Mark free_binding_level as
557         deletable.
558
559         * decl.c (mark_cp_function_context): Update calling sequence.
560
561         * decl.c (start_function): Don't free 'struct
562         cp_language_function'.
563         (pop_cp_function_context): Likewise.
564         (save_function_data): Allocate it using GC.
565         * semantics.c (genrtl_start_function): Don't free 'struct
566         cp_language_function'.
567
568 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
569
570         * lang-specs.h: Use cpp_debug_options.
571
572 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
573
574         * mangle.c, tree.c: Include real.h.
575         * Make-lang.in: Update dependency lists.
576
577 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
578
579         * lex.c: Don't include c-lex.h.
580         * parse.y, spew.c: Don't include c-lex.h; include c-pragma.h.
581
582 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
583
584         * spew.c (yyungetc, snarf_block): Remove indent_level handling.
585
586 2002-05-22  Richard Henderson  <rth@redhat.com>
587
588         * decl.c (obscure_complex_init): Check for VAR_DECL
589         before using DECL_THREAD_LOCAL.
590
591 2002-05-22  Richard Henderson  <rth@redhat.com>
592
593         * decl.c (check_tag_decl): Handle RID_THREAD.
594         (obscure_complex_init): Reject run-time init of tls.
595         (grokvardecl, grokdeclarator): Handle RID_THREAD.
596         * lex.c (reswords): Add __thread.
597         (rid_to_yy): Map RID_THREAD to SCSPEC.
598
599 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
600
601         * cp-lang.c (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
602         * cp-tree.h (cxx_post_options): Kill.
603         * cp-lex.c (cxx_post_options): Kill.
604
605 2002-05-21  Richard Henderson  <rth@redhat.com>
606
607         * lex.c (rid_to_yy): Add RID_THREAD.
608
609 2002-05-21  Alexandre Oliva  <aoliva@redhat.com>
610
611         * init.c (build_vec_init): Test for trivial copy-assignment when
612         copy-assigning arrays.
613
614 2002-05-20  Andreas Jaeger  <aj@suse.de>
615
616         * init.c (build_default_init): Remove unused variable.
617
618 2002-05-20  Alexandre Oliva  <aoliva@redhat.com>
619
620         * call.c (any_strictly_viable): New.
621         (build_new_op): Use it for COMPOUND_EXPR and ADDR_EXPRs.
622
623 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
624
625         * error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
626
627 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
628
629         PR c++/186, DR 259
630         * pt.c (do_decl_instantiation): Don't complain explicit
631         instantiation after explicit specialization.
632         (do_type_instantiation): Likewise.
633
634 2002-05-19  Alexandre Oliva  <aoliva@redhat.com>
635
636         * cp-tree.h (complete_type_or_diagnostic): Changed prototype,
637         renamed from...
638         (complete_type_or_else): ... this.  Redefined as macro.
639         (cxx_incomplete_type_diagnostic): Declare.
640         (cxx_incomplete_type_error): Define as macro.
641         * init.c (build_delete): Warn about incomplete types other than
642         void, and use the built-in operator delete for them.
643         * typeck.c (complete_type_or_diagnostic): Renamed from
644         complete_type_or_else.  Added warn_only argument, passed to...
645         * typeck2.c (cxx_incomplete_type_diagnostic): ... this.  Print
646         warnings or errors depending on new warn_only argument.  Renamed
647         from...
648         (cxx_incomplete_type_error): ... this.  New implementation in
649         terms of cxx_incomplete_type_diagnostic.
650
651 2002-05-18  Jason Merrill  <jason@redhat.com>
652
653         PR c++/6611
654         * decl2.c (import_export_decl): If we clear
655         DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
656
657 2002-05-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
658
659         PR c++/6620
660         * pt.c (verify_class_unification): Don't check if PARM is template
661         parameter dependent.  Simplify.
662         (unify) [TEMPLATE_PARM_INDEX]: Handle when ARG is a template
663         parameter dependent expression.
664
665 2002-05-14  Jason Merrill  <jason@redhat.com>
666
667         * rtti.c (get_tinfo_decl): Don't call comdat_linkage.
668         Do set DECL_COMDAT.
669         (synthesize_tinfo_var): Take the public decl.
670         (create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
671         (emit_tinfo_decl): Adjust.  Call import_export_decl.
672         * decl2.c (import_export_decl): Simplify tinfo decl handling.
673
674 2002-05-14  Alexandre Oliva  <aoliva@redhat.com>
675
676         * cp-tree.h (struct lang_type): Added non_zero_init.
677         (CLASSTYPE_NON_ZERO_INIT_P): New macro.
678         (zero_init_p, force_store_init_value, build_forced_zero_init): Declare.
679         * class.c (check_field_decls): Test non_zero_init.
680         * cvt.c (convert_to_pointer_force): Use cp_convert_to_pointer for
681         zero-to-NULL conversions.
682         * decl.c (obscure_complex_init): Don't reset DECL_INITIAL of a
683         type that needs zero-initialization without zeros.
684         (check_initializer_decl): Compute zero-initializer for types
685         that require a non-trivial one.
686         * init.c (build_forced_zero_init): New function.
687         (build_default_init): Use it.
688         * tree.c (zero_init_p): New function.
689         * typeck2.c (force_store_init_value): New function.
690         (process_init_constructor): Create non-trivial zero-initializers
691         for array members and class fields.
692
693 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
694
695         * lang-specs.h: Remove redundant -lang-c++.
696
697 2002-05-13  Jason Merrill  <jason@redhat.com>
698
699         * class.c (build_vtbl_ref_1): Use fixed_type_or_null.
700         (fixed_type_or_null): See through reference vars.
701         (build_base_path): Vtable contents are constant.
702         * typeck.c (get_member_function_from_ptrfunc): Likewise.
703
704 2002-05-12  Jason Merrill  <jason@redhat.com>
705
706         * cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
707         structs are safe.
708
709 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
710
711         * cp-tree.h (flag_ansi): Remove.
712         * decl2.c (flag_ansi): Remove.
713         (cxx_decode_option): Set flag_iso and flag_undef.
714
715 2002-05-09  Jason Merrill  <jason@redhat.com>
716
717         * typeck.c (get_member_function_from_ptrfunc): Reorganize.
718         Use subtraction rather than a bitmask to get the index.
719         * cvt.c (cp_convert_to_pointer): Bail on an error_mark_node.
720
721         * pt.c (tsubst_expr) [ASM_STMT]: Copy ASM_INPUT_P.
722
723 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
724
725         * Make-lang.in (decl2.o): Update.
726         * cp-tree.h (warn_multichar): Remove.
727         * decl2.c: Include c-common.h.
728         (warn_multichar): Remove.
729
730 2002-05-03  Jason Merrill  <jason@redhat.com>
731
732         * tree.c (build_cplus_array_type): Only const and volatile get
733         special handling.
734
735         * decl.c (BOOL_TYPE_SIZE): Move default to defaults.h.
736
737 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
738
739         ABI change, returning simple classes from functions.
740         * class.c (finish_struct_bits): Only mark TREE_ADDRESSABLE if
741         TYPE_HAS_TRIVIAL_INIT_REF is false or
742         TYPE_HAS_NONTRIVIAL_DESTRUCTOR is true.
743
744 2002-04-30  Jason Merrill  <jason@redhat.com>
745
746         PR debug/6436
747         * decl.c (grokdeclarator): Don't override TYPE_NAME of an
748         anonymous class with a typedef if there are attributes.
749
750 2002-04-29  Paul Eggert  <eggert@twinsun.com>
751
752         * parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
753
754 2002-04-29  Jakub Jelinek  <jakub@redhat.com>
755
756         PR c++/6477
757         * decl.c (follow_tag_typedef): Check if TYPE_NAME (original) is
758         non-NULL first.
759
760 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
761
762         PR c++/6492
763         * pt.c (tsubst_friend_class): If the friend has an explicit scope,
764         enter that scope before name lookup.
765
766         PR c++/6486
767         * method.c (do_build_copy_constructor): Avoid building
768         cv-qualified reference types.
769
770 2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
771
772         PR c++/5719
773         * decl.c (grok_op_properties): Assignment ops don't have to return
774         by value. operator% should.
775
776 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
777
778         PR c/6343
779         * decl.c (duplicate_decls): Call merge_weak.
780
781 2002-04-26  Richard Henderson  <rth@redhat.com>
782
783         * parse.y (malloced_yyss, malloced_yyvs): New.
784         (yyoverflow): Re-add.  Set them.
785         (free_parser_stacks): New.
786
787 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
788
789         PR c++/6497
790         * method.c (do_build_assign_ref): Pass a derivation to
791         build_method_call when calling base class assignment operators.
792
793 2002-04-26  Richard Henderson  <rth@redhat.com>
794
795         * parse.y (yyoverflow): Revert.
796
797 2002-04-26  Richard Henderson  <rth@redhat.com>
798
799         PR c/3581
800         * parse.y (string): Remove.  Update all uses to use STRING
801         instead, and not call combine_strings.
802         * rtti.c (tinfo_name): Use fix_string_type.
803         * semantics.c (finish_asm_stmt): Don't call combine_strings.
804         * spew.c (yylexstring): New.
805         (read_token): Use it.
806
807 2002-04-25  Richard Henderson  <rth@redhat.com>
808
809         PR c/2161
810         * parse.y (yyoverflow): New.
811
812 2002-04-25  Jason Merrill  <jason@redhat.com>
813
814         PR c++/5607
815         * search.c (check_final_overrider): No longer static.
816         * class.c (update_vtable_entry_for_fn): Call it.
817         * cp-tree.h: Adjust.
818
819 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
820
821         * cp-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
822         * cp-tree.h (cxx_set_yydebug): Die.
823         * lex.c (YYDEBUG): Get from c-lex.h.
824         (cxx_set_yydebug): Remove.
825         * parse.y: Include c-lex.h.
826         (YYDEBUG): Get from c-lex.h.
827
828 2002-04-24  Mark Mitchell  <mark@codesourcery.com>
829
830         PR c++/6438.
831         * cvt.c (convert_to_void): Don't unconditionally make COND_EXPRs
832         void.
833
834 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
835
836         * cp-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
837         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE):
838         Redefine.
839         * cp-tree.h (cp_attribute_table): Rename.
840         * decl.c (lang_attribute_table): Remove declaration.
841         (cxx_init_decl_processing): Don't set it.
842         * tree.c (cp_attribute_table): Rename.
843
844 2002-04-24  Jason Merrill  <jason@redhat.com>
845
846         PR c++/6331
847         * method.c (do_build_copy_constructor): Use cp_build_qualified_type.
848         * typeck.c (build_modify_expr): Allow arrays to differ in cv-quals.
849         The pedwarn for array assignment is now unconditional.
850         * tree.c (build_cplus_array_type_1): Still process simple array types
851         normally in templates.
852
853         PR c++/6395
854         * decl.c (make_rtl_for_nonlocal_decl): Don't mess with #pragma i/i
855         stuff for comdats.
856
857 2002-04-23  Jakub Jelinek  <jakub@redhat.com>
858
859         * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
860         node with attributes.
861
862 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
863
864         * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
865         Use MATH_LIBRARY_PROFILE and LIBSTDCXX_PROFILE if profile flag given.
866
867 2002-04-23  Mark Mitchell  <mark@codesourcery.com>
868
869         PR c++/6256:
870         * pt.c (tsubst_friend_class): Handle templates with explicit
871         nested names.
872
873         PR c++/6331:
874         * typeck.c (merge_types): Remember the cv-qualification of pointer
875         types when merging them.
876
877 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
878
879         * cp-lang.c (LANG_HOOKS_FUNCTION_INIT,
880         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_MARK): Redefine.
881         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context,
882         cxx_mark_function_context): New.
883         * decl.c (push_cp_function_context, pop_cp_function_context,
884         mark_cp_function_context): Rename for consistency.
885         (cxx_init_decl_processing): Don't set old hooks.
886
887 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
888
889         * call.c (convert_type_from_ellipsis): Rename, update.
890         * cp-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
891         * cp-tree.h (convert_type_from_ellipsis): Rename.
892         * decl.c (cxx_init_decl_processing): Don't set hook.
893
894 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
895
896         * call.c (build_new_method_call): Update.
897         * cp-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
898         * cp-tree.h (cxx_incomplete_type_error): New.
899         * decl.c (grokdeclarator, grokparms): Update.
900         * decl2.c (check_classfn): Update.
901         * pt.c (tsubst): Update.
902         * typeck.c (complete_type_or_else, expr_sizeof,
903         decay_conversion): Update.
904         * typeck2.c (incomplete_type_error): Rename.
905         (add_exception_specifier): Update.
906
907 2002-04-18  Jason Merrill  <jason@redhat.com>
908
909         PR c++/5658
910         * search.c (setup_class_bindings): A class template qualifies as a
911         type binding.
912
913 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
914
915         PR c++/6316
916         * decl2.c (finish_file): Clear DECL_EXTERNAL in a separate loop
917         before expanding.
918
919 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
920
921         * init.c (begin_init_stmts): Remove commented out code.
922         (finish_init_stmts): Set STMT_EXPR_NO_SCOPE.
923         * semantics.c (begin_gobal_stmt_expr): Adjust call to
924         expand_start_stmt_expr.
925
926 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
927
928         * decl.c (register_dtor_fn): Pass the address of dso_handle, not
929         dso_handle itself, to __cxa_atexit.
930
931 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
932
933         * error.c (cxx_print_error_function): Adjust call to macros.
934
935 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
936
937         * class.c (layout_virtual_bases): Do all dsize computation on trees.
938
939 2002-04-14  Jason Merrill  <jason@redhat.com>
940
941         * typeck.c (get_member_function_from_ptrfunc): Don't do
942         gratuitious division and multiplication on
943         ptrmemfunc_vbit_in_delta targets.
944
945 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
946
947         PR c++/5373.
948         * semantics.c (finish_expr_stmt): Remember the type of the
949         expression before any conversions are performed.
950
951 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
952
953         PR c++/5189.
954         * call.c (add_template_candidate_real): Do not treat member
955         templates as copy constructors.
956
957 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
958
959         * decl.c (duplicate_decls): Do not copy the RTL for a variable
960         declaration if the old variable had an incomplete type and the new
961         variable does not.
962         (complete_vars): Do not call layout_decl for completed variables.
963
964 2002-04-12  Richard Sandiford  <rsandifo@redhat.com>
965
966         * decl.c (duplicate_decls): Don't try to unify an implicit typedef
967         with an explicit one.
968         (follow_tag_typedef): New.
969         (lookup_tag): Use it to extract the tag of an explicit typedef.
970         (xref_tag): Likewise.
971
972 2002-04-11  Andrew Haley  <aph@redhat.com>
973
974         * typeck.c (type_after_usual_arithmetic_conversions):
975         If two types have the same variant, return immediately.
976         When two floating-point operands are the same precision:
977           convert to float if one of the operands is float;
978           if neither operand is one of the standard types, return the type
979           of the first operand.
980
981 2002-04-10  Nathan Sidwell  <nathan@codesourcery.com>
982
983         PR c++/5507
984         * decl.c (make_typename_type): Remove implicit typenameness.
985
986 2002-04-09  Jason Merrill  <jason@redhat.com>
987
988         PR optimization/6189
989         * semantics.c (genrtl_start_function): Don't free
990         DECL_SAVED_FUNCTION_DATA for inline functions.
991
992         * init.c (build_member_call): For now, don't convert to
993         intermediate base if it would cause an error.
994
995 2002-04-08  Paolo Carlini  <pcarlini@unitus.it>
996
997         * parse.y (namespace_qualifier, maybe_identifier,
998         begin_explicit_instantiation, end_explicit_instantiation,
999         apparent_template_type, .finish_template_type,
1000         do_id, maybe_init, defarg_again, component_decl_1):
1001         Add ending ';', in accordance with POSIX.
1002
1003 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
1004
1005         PR c++/5571
1006         * class.c (layout_class_type): Remember incomplete static
1007         variables.
1008         (finish_struct_1): Call complete_vars, not
1009         hack_incomplete_structures.
1010         * cp-tree.h (hack_incomplete_structures): Rename to ...
1011         (complete_vars): ... this.
1012         (struct saved_scope): Remove incomplete.
1013         (namespace_scope_incomplete): Remove.
1014         * decl.c (struct binding_level): Remove incomplete.
1015         (incomplete_vars): New variable.
1016         (mark_binding_level): Don't mark incomplete.
1017         (print_binding_level): Don't print it.
1018         (mark_saved_scope): Don't mark incomplete.
1019         (pushdecl): Use maybe_register_incopmlete_var.
1020         (cxx_init_decl_processing): Register incomplete_vars for GC.
1021         (start_decl_1): Clarify error message.
1022         (hack_incomplete_vars): Remove.
1023         (maybe_register_incomplete_var): New function.
1024         (complete_vars): Likewise.
1025
1026 2002-04-06  Jason Merrill  <jason@redhat.com>
1027
1028         PR c++/4934
1029         * error.c (dump_expr) [CONVERT_EXPR]: Make sure TREE_TYPE (t) is
1030         set before checking it.
1031
1032         PR c++/525
1033         * init.c (build_member_call): Use build_scoped_ref.
1034         (resolve_offset_ref): Likewise.
1035         * call.c (build_scoped_method_call): Likewise.
1036         * tree.c (maybe_dummy_object): Kludge around current_class_type being
1037         wrong.
1038         * typeck2.c (build_scoped_ref): Return the binfo via binfo_p parm.
1039         * cp-tree.h: Adjust.
1040
1041         * init.c (push_base_cleanups): Just use build_scoped_method_call.
1042
1043         PR c++/6179
1044         * method.c (implicitly_declare_fn): Pass unqualified type to
1045         synthesize_exception_spec.
1046
1047 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
1048
1049         * cp-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
1050         * cvt.c: Update comment.
1051         * init.c (expand_cleanup_for_base): Update.
1052         * semantics.c (finish_parenthesized_expr): Update.
1053         * typeck.c (cp_truthvalue_conversion): Update.
1054
1055 2002-04-04  Jason Merrill  <jason@redhat.com>
1056
1057         * semantics.c (finish_eh_cleanup): New fn.
1058         * cp-tree.h: Add prototype.
1059         * init.c (perform_member_init, expand_cleanup_for_base): Use
1060         finish_eh_cleanup.
1061         * cp-tree.def (SUBOBJECT, CTOR_STMT): Remove.
1062         * cp-tree.h: Remove references.
1063         * decl.c (begin_constructor_body, end_constructor_body): Likewise.
1064         * dump.c (cp_dump_tree): Likewise.
1065         * pt.c (tsubst_expr): Likewise.
1066         * semantics.c (genrtl_ctor_stmt, genrtl_subobject): Remove.
1067         (cp_expand_stmt): Remove handling of CTOR_STMT and SUBOBJECT.
1068         * tree.c (cp_statement_code_p): Likewise.
1069
1070         * init.c (build_new_1): Set CLEANUP_EH_ONLY on deleting cleanup.
1071
1072         PR c++/5636
1073         * semantics.c (nullify_returns_r): Just set CLEANUP_EH_ONLY on
1074         cleanup for nrv.
1075
1076         PR c++/5104
1077         * typeck.c (comptypes) [FUNCTION_TYPE]: Don't compare exception
1078         specifiers.
1079         [METHOD_TYPE]: Use same code as FUNCTION_TYPE.
1080
1081 2002-04-03  Richard Henderson  <rth@redhat.com>
1082
1083         * cp-lang.c (cxx_warn_unused_global_decl): New.
1084         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
1085
1086 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
1087
1088         * cp-lang.c (LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): Redefine.
1089         * tree.c (init_tree): Don't set hook.
1090
1091 2002-04-03  Roger Sayle  <roger@eyesopen.com>
1092
1093         PR c++/5998:
1094         * decl.c (duplicate_decls): Don't mess with assembler names when
1095         redeclaring builtin functions as static.
1096
1097 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1098
1099         * call.c (build_addr_func): Update.
1100         * class.c (resolve_address_of_overloaded_function): Update.
1101         * cp-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
1102         * cp-tree.h (cxx_mark_addressable): New.
1103         * decl.c (register_dtor_fn, cxx_maybe_build_cleanup): Update.
1104         * decl2.c (build_cleanup): Update.
1105         * except.c (build_throw): Update.
1106         * init.c (resolve_offset_ref): Update.
1107         * pt.c (convert_nontype_argument): Update.
1108         * semantics.c (finish_asm_stmt, simplify_affr_init_exprs_r): Update.
1109         * typeck.c (decay_conversion, build_array_ref, build_unary_op,
1110         unary_complex_lvalue): Update.
1111         (mark_addressable): Rename.
1112
1113 2002-04-01  Roger Sayle  <roger@eyesopen.com>
1114
1115         PR c++/5998:
1116         * decl.c (duplicate_decls):  Overwrite the RTL when (and only
1117         when) overwriting a built-in function.  Don't use COPY_DECL_RTL,
1118         but follow the SET_DECL_RTL idiom used elsewhere in the function.
1119
1120 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1121
1122         * cp-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
1123         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
1124         * decl.c (grokdeclarator): Update.
1125         * mangle.c (write_integer_cst): Update.
1126         * typeck.c (build_binary_op): Update.
1127
1128 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
1129
1130         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
1131         * lex.c (cxx_init): Don't set hook.
1132
1133 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
1134
1135         * Make-lang.in (error.o): Update.
1136         * cp-lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
1137         * cp-tree.h (struct diagnostic_context): Predeclare.
1138         (cxx_print_error_function): New.
1139         * error.c: Include langhooks-def.h.
1140         (lang_print_error_function): Rename.  Update.
1141         (init_error): Don't set hook.
1142
1143 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
1144
1145         * cp-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
1146         Redefine.
1147         * cvt.c (cp_convert_to_pointer, type_promotes_to): Use new hooks.
1148         * decl.c (finish_enum): Similarly.
1149         * error.c (dump_type): Similarly.
1150         * lex.c (cxx_init): Similarly.
1151         * mangle.c (write_builtin_type): Similarly.
1152         * typeck.c (comptypes): Similarly.
1153
1154 2002-03-28  Roger Sayle  <roger@eyesopen.com>
1155
1156         PR c++/5998:
1157         * decl.c (cxx_init_decl_processing): Re-enable built-in functions
1158         in the g++ front-end.
1159         (duplicate_decl): Allow redefinition of anticipated built-ins.
1160         Fix inlining problem by over-writing the old DECL_RTL.
1161         (lookup_namespace_name): Fail to find an identifier in the
1162         specified namespace if its still anticipated.
1163         (builtin_function_1): New function split out from builtin_function
1164         to create a builtin in the current namespace with given context.
1165         (builtin_function): Call builtin_function_1 to define the
1166         appropriate builtins in both the std and global namespaces.
1167         (select_decl): Don't test for anticipated decls here.
1168         (unqualified_namespace_lookup): Instead ignore them whilst
1169         searching through scopes and namespaces.
1170         * decl2.c (do_nonmember_using_decl): If a using declaration
1171         specifies an anticipated built-in function, mark it as no longer
1172         anticipated in that scope.
1173         (ambiguous_decl):  Avoid resolving to an anticipated decl.
1174         * lex.c (do_scoped_id): Fail to find an identifier in the global
1175         namespace if its still anticipated.
1176
1177 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
1178
1179         * cp-lang.c (LANG_HOOKS_MAKE_TYPE): Redefine.
1180         * cp-tree.h (cp_make_lang_type): Rename.
1181         * lex.c (cp_make_lang_type): Rename.
1182         (make_aggr_type): Update.
1183         * tree.c (init_tree): Don't set make_lang_type_fn.
1184
1185 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
1186
1187         PR c++/6073
1188         * class.c (finish_struct_1): Update static field's DECL_MODE even
1189         if its type is a variant of t.
1190
1191 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1192
1193         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
1194         * cp-tree.h (cxx_insert_default_attributes): New.
1195         * decl.c (insert_default_attributes): Rename.
1196
1197 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
1198
1199         PR c++/4884
1200         * call.c (build_op_delete_call): Allow for the fact the placement
1201         may be a COMPOUND_EXPR.
1202
1203 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1204
1205         * cp-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
1206         * cp-tree.h (init_cplus_expand): Remove.
1207         (cxx_expand_expr): New.
1208         * expr.c (cplus_expand_expr): Rename cxx_expand_expr,
1209         fix prototype.
1210         (init_cplus_expand): Remove.
1211         * lex.c (cxx_init): Don't call init_cplus_expand.
1212
1213 2002-03-26  Mark Mitchell  <mark@codesourcery.com>
1214
1215         PR c++/4884.
1216         * init.c (build_new_1): Allow for the fact the result of
1217         build_function_call may be a COMPOUND_EXPR.
1218
1219 2002-03-26  Nathan Sidwell  <nathan@codesourcery.com>
1220
1221         PR c++/5682
1222         * cp-tree.h (BINFO_PRIMARY_P): Explain meaning better.
1223         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
1224         (dfs_skip_nonprimary_vbases_markedp): Remove.
1225         * search.c (get_shared_vbase_if_not_primary): Remove.
1226         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
1227         (dfs_skip_nonprimary_vbases_markedp): Remove.
1228         (dfs_unmarked_real_bases_queue_p): Just get the canonical binfo.
1229         (dfs_marked_real_bases_queue_p): Likewise.
1230
1231 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
1232
1233         * cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
1234         * cp-tree.h (cxx_mark_tree): New.
1235         * decl.c (lang_mark_tree): Rename cxx_mark_tree.
1236
1237 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
1238
1239         * cp-tree.h (cxx_maybe_build_cleanup): New.
1240         * decl.c (destroy_local_var, hack_incomplete_structures): Update.
1241         (maybe_build_cleanup): Rename cxx_maybe_build_cleanup.
1242         * tree.c (build_target_expr): Update.
1243         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP): Redefine.
1244
1245 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
1246
1247         * decl2.c (cxx_decode_option): Handle -E.
1248         * lang-specs.h (default_compilers): Preprocess with cc1plus.
1249         * lex.c (cxx_init): Exit quickly if c_common_init returns NULL.
1250
1251 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
1252
1253         PR c++/6037
1254         * decl.c (start_enum): Don't set TREE_ADDRESSABLE on TREE_LIST node.
1255
1256 2002-03-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1257
1258         * error.c (dump_type): Be careful about implicit typenames.
1259
1260 2002-03-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1261
1262         PR C++/3656
1263         * semantics.c (finish_base_specifier): Handle erronous base
1264         classes.
1265
1266 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
1267
1268         * error.c: Always use REAL_VALUE_TO_DECIMAL; don't test
1269         REAL_IS_NOT_DOUBLE.
1270
1271 2002-03-22  Jeff Knaggs  <jknaggs@redhat.com>
1272
1273         * typeck.c (get_member_function_from_ptrfunc): Scale idx down to
1274         an index into the vtable_entry array regardless of
1275         TARGET_PTRMEMFUNC_VBIT_LOCATION.
1276
1277 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
1278
1279         * tree.c (cp_cannot_inline_tree_fn): Same.
1280
1281 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
1282
1283         * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
1284         insert_block, getdecls, global_bindings_p): New.
1285
1286 2002-03-20  Nathan Sidwell  <nathan@codesourcery.com>
1287
1288         PR c++/4361
1289         * mangle.c (struct globals) Add internal_mangling_p member.
1290         (write_template_param): Do internal mangling, if needed.
1291         (mangle_conv_op_name_for_type): Request internal mangling.
1292
1293 2002-03-20  Jason Merrill  <jason@redhat.com>
1294
1295         PR c++/2136
1296         * init.c (build_delete): Check access for a member op delete here.
1297         * decl2.c (delete_sanity): Not here.
1298
1299 2002-03-19  Jason Merrill  <jason@redhat.com>
1300
1301         PR c++/5118
1302         * class.c (get_vfield_name): Use the constructor_name.
1303
1304 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
1305
1306         * cp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
1307         * cp-tree.h (lang_printable_name): Rename.
1308         * error.c (lang_decl_name): Use new hook.
1309         * lex.c (cxx_init): Remove old hook.
1310         * pt.c (tsubst_decl): Use new hook.
1311         * tree.c (lang_printable_name): Rename.
1312
1313 2002-03-18  Eric Botcazou  <ebotcazou@multimania.com>
1314
1315         PR c++/3882
1316         * pt.c (tsubst_decl): Move __PRETTY_FUNCTION__ handling...
1317         (tsubst_expr) [DECL_STMT]: ...here. And substitute the initializer
1318         only after recording the declaration.
1319
1320 2002-03-18  Jason Merrill  <jason@redhat.com>
1321
1322         PR c++/2039
1323         * init.c (resolve_offset_ref): Hand off to build_component_ref.
1324
1325         PR c++/4222, c++/5995
1326         * call.c (build_over_call): Fix empty class logic.
1327
1328         PR c++/3870
1329         * cp-tree.h (struct saved_scope): Add last_parms field.
1330         * decl.c (maybe_push_to_top_level): Save last_function_parms.
1331         (pop_from_top_level): Restore it.
1332
1333         PR c++/4377
1334         * mangle.c (write_expression): Strip NOP_EXPRs sooner.  Also strip
1335         NON_LVALUE_EXPRs.
1336
1337         PR c++/4003
1338         * pt.c (tsubst_friend_function): Use decl_namespace_context.
1339
1340         PR c++/3948 -- C++ ABI change, followup to 2001-12-18 patch.
1341         * class.c (finish_struct_bits): Also set TREE_ADDRESSABLE for a
1342         type with a nontrivial destructor.
1343
1344 2002-03-17  Jason Merrill  <jason@redhat.com>
1345
1346         PR c++/4460
1347         * class.c (build_base_path): Virtual base layout is fixed in
1348         in-charge [cd]tors.
1349
1350 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
1351
1352         * cp-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
1353         * parse.y (yyparse): Remove macro.
1354
1355 2002-03-17  Jason Merrill  <jason@redhat.com>
1356
1357         PR c++/5757
1358         * init.c (build_new_1): Pass the right pointer to op delete.
1359
1360 2002-03-16  Nathan Sidwell  <nathan@codesourcery.com>
1361
1362         PR c++/4361
1363         * cp-tree.h (CLASSTYPE_METHOD_VEC): Document where templated
1364         conversion operators go.
1365         (struct lang_decl_flags): Add template_conv_p and unused
1366         bitfields.
1367         (DECL_TEMPLATE_CONV_FN_P): New macro.
1368         * call.c (build_user_type_conversion_1): Don't check second type
1369         conversion of overload set first.
1370         * class.c (add_method): Make sure templated conversion operators
1371         all end up on slot 2.
1372         * lex.c (do_identifier): A conversion operator token might be
1373         satisfied by a templated conversion operator.
1374         * pt.c (check_explicit_specialization): Use
1375         CLASSTYPE_FIRST_CONVERSION_SLOT.
1376         (template_parm_this_level_p): New function.
1377         (push_template_decl_real): Determine DECL_TEMPLATE_CONV_FN_P.
1378         * search.c (lookup_fnfields_1): Template conversions will be on
1379         the first slot.
1380         * typeck.c (build_component_ref): Preserve the type of an
1381         conversion operator name on the overload type.
1382         (build_x_function_call): Retrieve the conversion operator name.
1383
1384 2002-03-15  Richard Henderson  <rth@redhat.com>
1385
1386         * init.c (build_new_1): Use size_binop instead of cp_build_binary_op.
1387
1388 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
1389
1390         * cp-tree.h (CLEANUP_DECL): Remove.
1391         (CLEANUP_EXPR): Likewise.
1392         * decl.c (destroy_local_var): Simplify.
1393         (maybe_build_cleanup): Tidy.
1394         * dump.c (cp_dump_tree): Remove handling of CLEANUP_STMT.
1395         * semantics.c (cp_expand_stmt): Likewise.
1396         * cp/tree.c (cp_statement_code_p): Likewise.
1397
1398 2002-03-15  Jason Merrill  <jason@redhat.com>
1399
1400         PR c++/5857
1401         * decl.c (duplicate_decls): Use merge_types instead of common_type.
1402         * typeck.c (common_type): Just hand off to
1403         type_after_usual_arithmetic_conversions and
1404         composite_pointer_type.
1405         (merge_types): New fn.
1406         (commonparms): Use it instead of common_type.
1407         (type_after_usual_arithmetic_conversions): Also handle COMPLEX_TYPE.
1408         (composite_pointer_type): Also handle attributes.
1409         * cp-tree.h: Declare merge_types.
1410
1411         * decl.c (make_rtl_for_nonlocal_decl): Also defer COMDAT
1412         variables.
1413         * decl2.c (maybe_make_one_only): Also mark the decl as needed.
1414
1415 2002-03-14  Richard Henderson  <rth@redhat.com>
1416
1417         * decl.c: Include c-pragma.h.
1418         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
1419         * Make-lang.in: Update dependencies.
1420
1421 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
1422
1423         PR c++/5908
1424         * call.c (build_over_call): Set TREE_NO_UNUSED_WARNING too.
1425         * cvt.c (convert_to_void): Preserve TREE_NO_UNUSED_WARNING.
1426
1427 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
1428
1429         * mangle.c (write_builtin_type): Handle 128-bit integers even if
1430         they are not a standard integer type.
1431
1432 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
1433
1434         * cp-tree.h (init_init_processing): Remove declaration.
1435         * init.c (BI_header_type, init_init_processing): Remove old ABI stuff.
1436         * decl.c (cxx_init_decl_processing): Don't call init_init_processing.
1437
1438 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1439
1440         * cp-lang.c (tree_code_type, tree_code_length, tree_code_name):
1441         Define.
1442         * decl.c (duplicate_decls): Use TREE_CODE_LENGTH, not
1443         tree_code_length.
1444         * lex.c (cplus_tree_code_type, cplus_tree_code_length,
1445         cplus_tree_code_name): Delete.
1446         (cxx_init): Don't call add_c_tree_codes, instead set
1447         lang_unsafe_for_reeval.  Don't try to copy into the various
1448         tree_code arrays.
1449
1450 2002-03-12  Nathan Sidwell  <nathan@codesourcery.com>
1451
1452         PR c++/5659
1453         * decl.c (xref_tag): Don't set CLASSTYPE_DECLARED_CLASS here.
1454         * decl2.c (handle_class_head): Set CLASSTYPE_DECLARED_CLASS for
1455         definitions.
1456
1457 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
1458
1459         Revert 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>,
1460         DR209 is now not a defect.
1461         * cp-tree.h (skip_type_access_control): Remove.
1462         * decl.c (grokdeclarator): Do type access control for friend
1463         declarations.
1464         * semantics.c (decl_type_access_control): Don't reset
1465         current_type_lookups.
1466         (save_type_access_control): Always save the lookups.
1467         (skip_type_access_control): Remove.
1468         (finish_class_definition): Don't change type_lookups.
1469
1470 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
1471
1472         Revert 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>,
1473         It is incorrect.
1474         * typeck.c (build_static_cast): Compare non-qualified types
1475         with pointer to member conversions.
1476
1477 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
1478             Daniel Berlin  <dan@dberlin.org>
1479
1480         * cp-lang.c (ok_to_generate_alias_set_for_type): New function.
1481         (cxx_get_alias_set): Use it.
1482
1483 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1484
1485         * cp-tree.h (stabilize_expr): Prototype.
1486
1487 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1488
1489         * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
1490         conditional return void.
1491
1492 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
1493
1494         * cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.
1495         * cp-tree.h (cxx_unsave): New.
1496         * tree.c (cp_unsave): Rename cxx_unsave, update prototype.
1497         (init_tree): Update.
1498
1499 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1500
1501         * decl.c (cxx_init_decl_processing): Use ARRAY_SIZE in lieu of
1502         explicit sizeof/sizeof.
1503         * decl2.c (cxx_decode_option): Likewise.
1504         * lex.c (init_reswords, REDUCE_LENGTH, TOKEN_LENGTH): Likewise.
1505
1506 2002-03-02  Nathan Sidwell  <nathan@codesourcery.com>
1507
1508         PR c++/775
1509         * decl.c (lookup_tag): Only reject enum/class mismatch, not
1510         class/union mismatch.
1511         * parse.y (check_class_key): New function.
1512         (structsp): Call it.
1513
1514 2002-03-01  Michael Matz  <matz@suse.de>
1515
1516         * typeck.c (cp_pointer_int_sum): Complete inner type which is
1517         used later by size_in_bytes().
1518
1519 2002-03-01  Phil Edwards  <pme@gcc.gnu.org>
1520
1521         * cp-tree.h:  Require __GNUC__ to be #defined.
1522         (build_init):  Add missing prototype.
1523
1524 2002-03-01  Jason Merrill  <jason@redhat.com>
1525
1526         * except.c: Don't include decl.h or obstack.h.  Do include
1527         tree-inline.h.
1528         (build_throw): Destroy temporaries from the thrown
1529         expression before calling __cxa_throw.  Construct a thrown
1530         temporary directly into the exception object.
1531         (stabilize_throw_expr): New function.
1532         (wrap_cleanups_r): New function.
1533         * tree.c (stabilize_expr): New function.
1534         * init.c (build_init): New function.
1535         * Make-lang.in (cp/except.o): Adjust .h deps.
1536
1537 2002-02-28  Jason Merrill  <jason@redhat.com>
1538
1539         * search.c (lookup_base_r): Don't clear is_non_public just because
1540         we found a friendly scope.
1541
1542         * decl.c (finish_function): Only warn about missing return
1543         statement with -Wreturn-type.
1544
1545 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
1546
1547         * class.c (build_clone): Update.
1548         * cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
1549         * cp-tree.h (cxx_dup_lang_specific_decl): New.
1550         * lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
1551         (copy_decl): Update.
1552         * method.c (make_thunk): Update.
1553
1554 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
1555
1556         * decl2.c: Delete traditional-mode-related code copied from
1557         the C front end but not used, or used only to permit the
1558         compiler to link.
1559
1560 2002-02-24 Craig Rodrigues  <rodrigc@gcc.gnu.org>
1561
1562         PR c++/4093
1563         * cp-tree.h (SET_BINFO_MARKED): Cast false part of condition
1564         to void.
1565
1566 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
1567
1568         PR other/5746
1569         * semantics.c (finish_switch_cond): Don't call get_unwidened
1570         if error_mark_node.
1571
1572 2002-02-22  Nathan Sidwell  <nathan@codesourcery.com>
1573
1574         PR c++/2645, DR 295
1575         * cp-tree.h (tsubst_flags_t): Add tf_ignore_bad_quals,
1576         tf_keep_type_decl.
1577         (make_typename_type): Use tsubst_flags_t.
1578         * decl.c (make_typename_type): Adjust. Return non-artificial
1579         TYPE_DECLs, if required.
1580         (grokdeclarator): Simplify CVR qualification handling. Allow bad
1581         qualifiers on typedef types.
1582         * decl2.c (handle_class_head): Adjust make_typename_type call.
1583         * parse.y (nested_name_specifier): Likewise.
1584         (typename_sub0): Likewise.
1585         (typename_sub1): Likewise.
1586         * pt.c (convert_template_argument): Adjust make_typename_type
1587         return value.
1588         (tsubst): Adjust cp_build_qualified_type_real calls.
1589         (check_cv_quals_for_unify): Cope with alowing bad qualifications
1590         on template type parms.
1591         (instantiate_decl): Recheck substitutions to give warnings on bad
1592         qualifications.
1593         * tree.c (cp_build_qualified_type_real): Use tf_allow_bad_quals.
1594
1595 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
1596
1597         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
1598
1599         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
1600         unless DECL_ALWAYS_INLINE.
1601
1602 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1603
1604         * typeck.c (cp_pointer_int_sum): Renamed from
1605         pointer_int_sum, call pointer_int_sum.
1606
1607 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1608
1609         * decl.c (duplicate_decls): Return 0 if issued error about
1610         redeclaration.
1611
1612 2002-02-19  Jason Merrill  <jason@redhat.com>
1613
1614         ABI change: Mangle `void (A::*)() const' as
1615         M1AKFvvE, not MK1AFvvE.
1616         * mangle.c (write_function_type): Write cv-quals for member
1617         function type here.
1618         (write_pointer_to_member_type): Not here.
1619
1620 2002-02-18  Jason Merrill  <jason@redhat.com>
1621
1622         * pt.c (do_type_instantiation): Don't pedwarn if in_system_header.
1623         (do_decl_instantiation): Likewise.
1624
1625 2002-02-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1626
1627         PR c++/5685
1628         * decl.c (duplicate_decls): Make warning unconditional
1629         if duplicate default argument declarations are present.
1630
1631 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
1632
1633         * typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
1634         shortening.
1635
1636 2002-02-15  Nathan Sidwell  <nathan@codesourcery.com>
1637
1638         * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
1639         remove incorrect comment. Move #if 0'd code to common path. Use
1640         IMPLICIT_TYPENAME_P. Simplify & reformat ARRAY_TYPE duplication.
1641
1642 2002-02-13  Jason Merrill  <jason@redhat.com>
1643
1644         * decl.c (builtin_function): Set TREE_THIS_VOLATILE on return fns.
1645         (finish_function): Don't warn if current_function_returns_null.
1646
1647         * typeck2.c (digest_init): Do handle values of vector type.
1648
1649         * typeck2.c (digest_init, process_init_constructor): Treat vectors
1650         like arrays.
1651
1652 2002-02-11  Jason Merrill  <jason@redhat.com>
1653
1654         * parse.y (reserved_declspecs): Don't handle attributes.
1655         (reserved_typespecquals): Handle them here.
1656         * Make-lang.in (parse.c): Adjust expected conflicts.
1657
1658 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
1659
1660         * parse.y (primary, primary_no_id): Use compstmt_or_stmtexpr
1661         instead of compstmt.
1662         (compstmt_or_stmtexpr): Renamed from compstmt.
1663         (compstmt): In addition to compstmt_or_stmtexpr clear last_expr_type.
1664
1665 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
1666
1667         Rename instantiate_type_flags to tsubst_flags_t & expand use.
1668         * cp-tree.h (instantiate_type_flags): Rename to ...
1669         (tsubst_flags_t): ... here. Rename itf_complain to tf_error,
1670         add tf_warning flag.
1671         (instantiate_type): Adjust prototype.
1672         (tsubst, tsubst_expr, tsubst_copy, lookup_template_class,
1673         do_type_instantiation, cp_build_qualified_type_real): Likewise.
1674         cp_build_qualified_type: Adjust.
1675         * class.c (instantiate_type): Adjust parameter. Rename itf_* to
1676         tf_*.
1677         * call.c (standard_conversion): Rename itf_* to tf_*.
1678         (reference_binding): Likewise.
1679         (convert_like_real): Likewise.
1680         * cvt.c (cp_convert_to_pointer): Likewise.
1681         (convert_to_reference): Likewise.
1682         * decl.c (lookup_namespace_name): Use tf_* flags.
1683         (make_typename_type): Likewise.
1684         (grokdeclarator): Likewise.
1685         * pt.c (convert_nontype_argument): Adjust COMPLAIN usage.
1686         (coerce_template_template_parms, convert_template_argument,
1687         coerce_template_parms, maybe_get_template_decl_from_type_decl,
1688         lookup_template_class, tsubst_friend_function, tsubst_friend_class,
1689         instantiate_class_template, tsubst_template_arg_vector,
1690         tsubst_template_parms, tsubst_aggr_type, tsubst_default_argument,
1691         tsubst_decl, tsubst_arg_types, tsubst_function_type,
1692         tsubst_call_declarator_parms, tsubst, tsubst_copy, tsubst_expr,
1693         instantiate_template, fn_type_unification,
1694         resolve_overloaded_unification, verify_class_unification,
1695         unify, get_bindings_real, do_type_instantiation,
1696         regenerate_decl_from_template, instantiate_decl,
1697         tsubst_initializer_list, tsubst_enum,
1698         get_mostly_instantiated_function_type,
1699         invalid_nontype_parm_type_p): Likewise.
1700         * tree.c (cp_build_qualified_type_real): Likewise.
1701         * typeck.c (build_binary_op): Rename itf_* to tf_*.
1702         (build_ptrmemfunc): Likewise.
1703         (convert_for_assignment): Likewise.
1704
1705 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
1706
1707         PR c++/109
1708         * decl.c (grokdeclarator): Allow friend declarations from
1709         dependent types.
1710         * decl2.c (handle_class_head): Don't push into template parm contexts.
1711         * pt.c (push_template_decl_real): Template parm contexts are never
1712         being defined.
1713
1714 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
1715
1716         * class.c: Include target.h.
1717         (check_bitfield_decl): Disregard EMPTY_FIELD_BOUNDARY,
1718         BITFIELDS_NBYTES_LIMITED and PCC_BITFIELD_TYPE_MATTERS for MS
1719         bit-field layout.
1720         * Make-lang.in: Adjust deps.
1721
1722 2002-02-05  Jason Merrill  <jason@redhat.com>
1723
1724         * error.c (dump_type): Be more helpful about VECTOR_TYPE.
1725
1726 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
1727
1728         * semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
1729         (finish_switch_cond): Set SWITCH_TYPE.
1730
1731 2002-02-04  Richard Henderson  <rth@redhat.com>
1732
1733         * method.c (use_thunk): Always initialize the block tree.  Reindent.
1734         * semantics.c (expand_body): Emit thunks after function, not before.
1735
1736 2002-02-04  Jason Merrill  <jason@redhat.com>
1737
1738         * decl.c (start_function): Call cplus_decl_attributes immediately
1739         after grokdeclarator.
1740
1741         * decl.c (start_function): Combine DECL_RESULT handling code.
1742
1743 2002-02-03  Jason Merrill  <jason@redhat.com>
1744
1745         * xref.c: Remove.
1746         * Make-lang.in (CXX_OBJS): Remove cp/xref.o
1747         (cp/xref.o): Remove dependencies.
1748         * class.c (finish_struct_1, check_methods): Don't call xref fns.
1749         (finish_struct_1): Likewise.
1750         * friend.c (make_friend_class): Likewise.
1751         * lex.c (cxx_init, cxx_finish, extract_interface_info): Likewise.
1752         * spew.c (read_process_identifier): Likewise.
1753
1754 2002-02-01  Jason Merrill  <jason@redhat.com>
1755
1756         PR c++/4872
1757         * decl.c (finish_function): Warn about a non-void function with
1758         no return statement and no abnormal exit.
1759         * cp-tree.h (struct cp_language_function): Add returns_abnormally.
1760         (current_function_returns_abnormally): New macro.
1761         * call.c (build_call): Set it.
1762
1763         * typeck.c (build_component_ref): Always complain about offsetof
1764         constructs on non-PODs.  Only make it an error for members of
1765         virtual bases.
1766
1767         * error.c (dump_scope): Don't add TFF_DECL_SPECIFIERS.
1768         (dump_function_decl): Always dump parms.
1769
1770         * decl2.c (finish_static_data_member_decl): Complain about a local
1771         class with a static data member.
1772
1773         PR c++/4286
1774         * search.c (lookup_field_1): Don't xref a static data member
1775         just because we looked it up.
1776
1777 2002-01-31  Jason Merrill  <jason@redhat.com>
1778
1779         * Make-lang.in (parse.c): Handle .output file.
1780
1781         PR c++/3395
1782         * decl.c (xref_tag): Remember early attributes in TYPE_ATTRIBUTES,
1783         not TREE_TYPE.
1784         * semantics.c (finish_class_definition): Adjust.
1785
1786         Allow attributes in parms and casts.
1787         * parse.y (named_parm): Don't strip attrs.
1788         (declmods): Remove 'attributes' production.
1789         (nonempty_cv_qualifiers): Accept attributes.
1790         (ATTRIBUTE): Give precedence.
1791         * decl.c (groktypename): Handle attributes.
1792         (grokparms): Likewise.
1793
1794 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
1795
1796         * decl2.c (cxx_decode_option): Pass 0 as last argument to
1797         cpp_handle_option.
1798         * lang-specs.h: Use cpp_unique_options instead of cpp_options
1799         when used together with cc1_options.
1800
1801 2002-01-29  Nathan Sidwell  <nathan@codesourcery.com>
1802
1803         PR c++/5132
1804         * typeck2.c (digest_init): Make sure non-array core type is
1805         instantiated.
1806         * decl2.c (reparse_absdcl_as_casts): Just store the type in the
1807         constructor, rather than build a new one.
1808         (build_expr_from_tree, CONSTRUCTOR case): Be careful with the
1809         PURPOSE of constructor elts.
1810
1811 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
1812
1813         * Make-lang.in (parse.c): Adjust expected number of
1814         shift-reduce conflicts.
1815         (decl.o): Depend on diagnostic.h.
1816         * decl.c: Include diagnostic.h.
1817         (grokdeclarator): Check for null pointer.
1818         (finish_function): Don't abort when
1819         current_binding_level->parm_flag != 1, if errors have
1820         occurred; throw away the statement tree and extra binding
1821         levels, and continue.
1822         * lex.c (note_list_got_semicolon): Check for null pointer.
1823         * method.c (hack_identifier): Just return error_mark_node if
1824         value is error_mark_node.
1825         * parse.y (primary: TYPEID(type_id)): No need to use
1826         TYPE_MAIN_VARIANT here.
1827         (handler_seq): Accept an empty list of catch clauses and
1828         generate a fake handler block to avoid later crashes.
1829         (ansi_raise_identifier): Accept the error token too.
1830         * semantics.c (begin_class_definition,
1831         finish_class_definition): Check for error_mark_node.
1832
1833 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
1834
1835         * typeck2.c (friendly_abort): Delete definition.
1836         * cp-tree.h (friendly_abort): Don't prototype.
1837         (my_friendly_assert): Use fancy_abort.
1838
1839 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1840
1841         * cp-tree.h (my_friendly_abort): Remove.
1842
1843 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
1844
1845         * spew.c (pending_inlines, pending_inlines_tail,
1846         processing_these_inlines): Make static.
1847         (mark_pending_inlines): Remove static.
1848         (begin_parsing_inclass_inline): If in function, save pi
1849         for GC to cp_function_chain->unparsed_inlines instead.
1850         (process_next_inline): Likewise.
1851         * cp-tree.h (struct cp_language_function): Add unparsed_inlines.
1852         (mark_pending_inlines): Add prototype.
1853         * decl.c (spew_debug): Remove unused extern.
1854         (mark_lang_function): Call mark_pending_inlines.
1855
1856 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1857
1858         * call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
1859         init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
1860         semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
1861         Change my_fancy_abort() to abort().
1862
1863 2002-01-23  Jason Merrill  <jason@redhat.com>
1864
1865         PR c++/5453
1866         * class.c (fixed_type_or_null): Fix thinko.
1867
1868         PR c++/3331
1869         * init.c (resolve_offset_ref): Use build_indirect_ref.
1870
1871         * decl2.c (grokclassfn): Don't set DECL_REGISTER on 'this'.
1872
1873 2002-01-22  Jason Merrill  <jason@redhat.com>
1874
1875         * parse.y (function_body): Suppress the block for the outermost
1876         curly braces.
1877         * decl.c (pushdecl): Don't try to skip it.
1878         (begin_function_body): Keep the block we create, not the next one.
1879         * init.c (emit_base_init): Don't mess with keep_next_level.
1880
1881         * class.c (build_base_path): Tweak formatting.
1882
1883 2002-01-19  Nathan Sidwell  <nathan@codesourcery.com>
1884
1885         Fix regression introduced with patch for c++/775
1886         * parse.y (class_head_defn): Check for template specializations
1887         with a different class-key.
1888
1889 2002-01-17  Jason Merrill  <jason@redhat.com>
1890
1891         * decl.c (begin_constructor_body, begin_destructor_body): New fns.
1892         (begin_function_body): Call them and keep_next_level.
1893         * init.c (emit_base_init): Call keep_next_level.
1894         * semantics.c (setup_vtbl_ptr): Lose.
1895         * cp-tree.h (struct cp_language_function): Remove vtbls_set_up_p.
1896         (vtbls_set_up_p): Lose.
1897         * pt.c (tsubst_expr, CTOR_INITIALIZER): Call emit_base_init.
1898         * method.c (do_build_copy_constructor): Likewise.
1899         (synthesize_method): Call finish_mem_initializers.
1900         * parse.y (nodecls): Likewise.
1901
1902         * error.c (dump_type_suffix): Print the exception specs before
1903         recursing.
1904         (dump_function_decl): Here, too.
1905
1906         * cp-tree.h (TMPL_PARMS_DEPTH): Cast to signed HOST_WIDE_INT.
1907
1908 2002-01-10  Ira Ruben   <ira@apple.com>
1909
1910         PR c++/907
1911         * decl.c (start_method): Handle attrlist.
1912
1913 2002-01-10  Jakub Jelinek  <jakub@redhat.com>
1914
1915         * decl2.c (max_tinst_depth): Increase default limit to 500.
1916
1917 2002-01-10  Graham Stott  <grahams@redhat.com>
1918
1919         * spew.c (YYCHAR): Uppercase macro parameter and add
1920         parenthesis.
1921         (YYCODE): Likewise.
1922         (NAME): Uppercase macro parameter.
1923
1924 2002-01-09  Graham Stott  <grahams@redhat.com>
1925
1926         * decl.h (grokdeclarator): Wrap long line.
1927
1928         * semantics.c (FINISH_COND): Uppercase macro paramaters and
1929         add parenthesis.
1930
1931 2002-01-08  Graham Stott  <grahams@redhat.com>
1932
1933         * xref.c (FILE_NAME_ABSOLUTE_P): Add parenthesis.
1934         (PALLOC): Uppercase macro parameter and whitespace.
1935         (SALLOC): Uppercase macro parameter.
1936         (SFREE): Uppercase macros parameter, add parenthese and
1937         whitespace.
1938         (STREQL): Uppercase macro parameter and whitespace.
1939         (STRNEQ): Likewise.
1940         (STRLSS): Likewise.
1941         (STRLEQ): Likewise.
1942         (STRGTR): Likewise.
1943         (STRGEQ): Likewise.
1944
1945         * call.c (convert_like): Add parenthesis and wrap.
1946         (convert_like_with_context): Likewise.
1947         (ICS_RANK): Whitespace.
1948         (NEED_TEMPORARY_P): Remove parenthesis.
1949
1950         * class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
1951         whitespace.
1952         (VTT_MARKED_BINFO_P): Likewise.
1953
1954         * decl.c (BINDING_LEVEL): Add parenthesis.
1955         (DEF_OPERATOR): Likewise.
1956
1957         * mangle.c (MANGLE_TRACE): Add parenthesis.
1958         (MANGLE_TRACE_TREE): Likewise.
1959         (write_signed_number): Likewise.
1960         (write_unsigned_number): Likewise.
1961
1962         * pt.c (ccat): Uppercase macro parameter.
1963         (cat): Likewise
1964
1965         * search.c (SET_BINFO_ACCESS): Add parenthesis.
1966
1967 2002-01-07  Jason Merrill  <jason@redhat.com>
1968
1969         * decl2.c (coerce_new_type): Downgrade error for size_t mismatch
1970         to pedwarn.
1971
1972         PR c++/3536
1973         * method.c (make_thunk): If !flag_weak, give the thunk the
1974         function's linkage.
1975         (use_thunk): Here, too.
1976
1977 2002-01-07  Graham Stott  <grahams@redhat.com>
1978
1979         * error.c: Update copyright date.
1980         (print_scope_operator): Add parenthesis.
1981         (print_left_paren): Likewise.
1982         (print_right_paren): Likewise.
1983         (print_left_bracket): Likewise.
1984         (print_right_bracket): Likewise.
1985         (print_template_argument_list_start): Likewise.
1986         (print_template_argument_list_end): Likewise.
1987         (print_non_consecutive_character): Likewise.
1988         (print_tree_identifier): Likewise.
1989         (print_identifier): Likewise.
1990         (NEXT_CODE): Uppercase macro parameter.
1991         (ident_fndecl): Delete unused.
1992         (GLOBAL_THING): Likewise.
1993
1994 2002-01-06  Graham Stott  <grahams@redhat.com>
1995
1996         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK): Add parenthesis.
1997         (VAR_FUNCTION_OR_PARM_DECL_CHECK): Likewise.
1998         (VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK) Likewise.
1999         (RECORD_OR_UNION_TYPE_CHECK): Likewise.
2000         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Likewise.
2001         (C_IS_RESERVED_WORD): Uppercase macro parameter.
2002         (C_RID_YYCODE) Likewise.
2003         (ptrmem_cst): Use rtx.
2004         (LOCAL_BINDING_P): Add whitespace.
2005         (INHERITED_VALUE_BINDING_P): Likewise.
2006         (BINDING_SCOPE): Wrap long line.
2007         (BINDING_HAS_LEVEL_P): Remove parenthesis.
2008         (BINDING_VALUE): Wrap long line.
2009         (BINDING_TYPE): Whitespace.
2010         (IDENTIFIER_GLOBAL_VALUE): Add parenthesis.
2011         (SET_IDENTIFIER_GLOBAL_VALUE): Likewise.
2012         (IDENTIFIER_NAMESPACE_VALUE): Likewise.
2013         (SET_IDENTIFIER_NAMESPACE_VALUE: Likewise.
2014         (same_type_p): Uppercase macro parameters.
2015         (same_type_ignoring_top_level_qualifiers_p): Likewise.
2016         (OVL_FUNCTION): Wrap long line.
2017         (OVL_CHAIN): Whitespace.
2018         (OVL_CURRENT): Add parenthesis and whitespace.
2019         (OVL_NEXT): Whitespace.
2020         (OVL_USED): Likewise.
2021         (IDENTIFIER_TYPE_VALUE): Likewise.
2022         (REAL_IDENTIFIER_TYPE_VALUE): Remove parenthesis.
2023         (SET_IDENTIFIER_TYPE_VALUE): Add parenthesis and whitespace.
2024         (LANG_ID_FIELD): Whitespace.
2025         (SET_LANG_ID(NODE,VALUE,NAME): Likewise.
2026         (IDENTIFIER_LABEL_VALUE): Whitespace and wrap.
2027         (SET_IDENTIFIER_LABEL_VALUE): Whitespace.
2028         (IDENTIFIER_IMPLICIT_DECL): Whitespace and wrap.
2029         (SET_IDENTIFIER_IMPLICIT_DECL); Whitespace.
2030         (IDENTIFIER_ERROR_LOCUS): Whitespace and wrap.
2031         (SET_IDENTIFIER_ERROR_LOCUS); Whitespace.
2032         (IDENTIFIER_VIRTUAL_P): Likewise.
2033         (IDENTIFIER_OPNAME_P): Likewise.
2034         (IDENTIFIER_TYPENAME_P): Remove parenthesis.
2035         (C_TYPE_FIELDS_READONLY): Uppercase macro parameters.
2036         (C_SET_EXP_ORIGINAL_CODE): Likewise.
2037         (TYPE_ASSEMBLER_NAME_STRING): Wrap long line.
2038         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
2039         (IS_AGGR_TYPE): Uppercase macro parameter.
2040         (CLASS_TYPE_P): Likewise.
2041         (IS_AGGR_TYPE_CODE): Uppercase macro parameter and parenthesis.
2042         (IS_AGGR_TYPE_2): Whitespace.
2043         (TAGGED_TYPE_P): Uppercase macro parameter.
2044         (TYPE_BUILT_IN): Whitespace.
2045         (TYPE_FOR_JAVA): Likewise.
2046         (FUNCTION_ARG_CHAIN): Remove parenthesis.
2047         (FUNCTION_FIRST_USER_PARMTYPE): Add parenthesis.
2048         (FUNCTION_FIRST_USER_PARAM): Likewise.
2049         (PROMOTES_TO_AGGR_TYPE): Whitespace.
2050         (DERIVED_FROM_P): Add parenthesis and wrap.
2051         (UNIQUELY_DERIVED_FROM_P): Likewise.
2052         (ACCESSIBLY_UNIQUELY_DERIVED_P): Likewise.
2053         (PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
2054         (CLASSTYPE_USE_TEMPLATE): Whitespace.
2055         (CLASSTYPE_INLINE_FRIENDS): Remove parenthesis.
2056         (TYPE_GETS_DELETE): Add parenthesis.
2057         (TYPE_HAS_CONVERSION): Add parenthesis and wrap.
2058         (TYPE_HAS_ASSIGN_REF): Likewise,
2059         (TYPE_HAS_CONST_ASSIGN_REF): Likewise.
2060         (TYPE_HAS_INIT_REF): Likewise.
2061         (TYPE_HAS_CONST_INIT_REF): Likewise.
2062         (TYPE_BEING_DEFINED): Likewise.
2063         (TYPE_LANG_SPECIFIC): Likewise.
2064         (CLASSTYPE_RTTI): Likewise.
2065         (TYPE_OVERLOADS_CALL_EXPR): Likewise.
2066         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
2067         (TYPE_OVERLOADS_ARROW): Likewise.
2068         (TYPE_USES_MULTIPLE_INHERITANCE): Likewise.
2069         (TYPE_USES_VIRTUAL_BASECLASSES): Add parenthesis.
2070         (CLASSTYPE_METHOD_VEC): Likewise.
2071         (CLASSTYPE_MARKED_N): Likewise.
2072         (CLASSTYPE_MARKED): Likewise.
2073         (CLASSTYPE_MARKED2): Likewise.
2074         (CLASSTYPE_MARKED3): Likewise.
2075         (CLASSTYPE_MARKED4): Likewise.
2076         (CLASSTYPE_MARKED5): Likewise.
2077         (CLASSTYPE_MARKED6): Likewise.
2078         (SET_CLASSTYPE_MARKED): Whitespace.
2079         (CLEAR_CLASSTYPE_MARKED): Likewise.
2080         (SET_CLASSTYPE_MARKED2): Likewise.
2081         (CLEAR_CLASSTYPE_MARKED2): Likewise.
2082         (SET_CLASSTYPE_MARKED3): Likewise.
2083         (CLEAR_CLASSTYPE_MARKED3): Likewise.
2084         (SET_CLASSTYPE_MARKED4): Likewise.
2085         (CLEAR_CLASSTYPE_MARKED4): Likewise.
2086         (SET_CLASSTYPE_MARKED5): Likewise.
2087         (CLEAR_CLASSTYPE_MARKED5): Likewise.
2088         (SET_CLASSTYPE_MARKED6): Likewise.
2089         (CLEAR_CLASSTYPE_MARKED6): Likewise.
2090         (CLASSTYPE_TAGS): Likewise.
2091         (CLASSTYPE_VSIZE): Likewise.
2092         (CLASSTYPE_VBASECLASSES): Likewise.
2093         (CANONICAL_BINFO): Add parenthesis.
2094         (CLASSTYPE_SIZE(NODE): Likewise.
2095         (CLASSTYPE_SIZE_UNIT): Likewise.
2096         (CLASSTYPE_ALIGN(NODE): Likewise.
2097         (CLASSTYPE_USER_ALIGN): Likewise.
2098         (TYPE_JAVA_INTERFACE): Likewise.
2099         (CLASSTYPE_PURE_VIRTUALS): Likewise.
2100         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Whitespace and wrap.
2101         (TYPE_HAS_DEFAULT_CONSTRUCTOR): Likewise.
2102         (CLASSTYPE_HAS_MUTABLE): Likewise.
2103         (CLASSTYPE_FRIEND_CLASSES): Likewise. Likewise.
2104         (CLASSTYPE_DECLARED_CLASS): Whitespace and wrap.
2105         (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Likewise.
2106         (CLASSTYPE_REF_FIELDS_NEED_INIT): Likewise.
2107         (CLASSTYPE_INTERFACE_ONLY): Likewise.
2108         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
2109         (CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
2110         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
2111         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
2112         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
2113         (CLASSTYPE_DEBUG_REQUESTED): Whitespace and wrap.
2114         (BINFO_UNSHARED_MARKED): Whitespace.
2115         (BINFO_MARKED): Whitespace and wrap.
2116         (SET_BINFO_MARKED): Likewise.
2117         (CLEAR_BINFO_MARKED): Likewise.
2118         (BINFO_VTABLE_PATH_MARKED): Likewise.
2119         (SET_BINFO_VTABLE_PATH_MARKED): Likewise.
2120         (CLEAR_BINFO_VTABLE_PATH_MARKED): Likewise.
2121         (BINFO_SUBVTT_INDEX): Remove parenthesis.
2122         (BINFO_VPTR_INDEX): Likewise.
2123         (BINFO_PRIMARY_BASE_OF): Likewise,
2124         (CLASSTYPE_VFIELDS): Whitespace.
2125         (VF_DERIVED_VALUE): Wrap long line.
2126         (NAMESPACE_LEVEL): Whitespace.
2127         (CAN_HAVE_FULL_LANG_DECL_P): Remove parenthesis.
2128         (DEFARG_POINTER): Whitespace.
2129         (DECL_NEEDED_P): Remove parenthesis.
2130         (DECL_LANGUAGE): Whitespace.
2131         (SET_DECL_LANGUAGE): Add parenthesis.
2132         (DECL_CONSTRUCTOR_P): Whitespace and wrap.
2133         (DECL_OVERLOADED_OPERATOR_P): Remove parenthesis.
2134         (DECL_IN_AGGR_P): Whitespace.
2135         (DECL_FRIEND_P): Likewise.
2136         (DECL_BEFRIENDING_CLASSES): Likewise.
2137         (DECL_STATIC_FUNCTION_P): Whitespace and wrap.
2138         (DECL_NONCONVERTING_P): Whitespace.
2139         (DECL_PURE_VIRTUAL_P): Likewise.
2140         (DECL_NEEDS_FINAL_OVERRIDER_P): Likewise.
2141         (DECL_PENDING_INLINE_INFO): Whitespace.
2142         (DECL_SORTED_FIELDS): Likewise.
2143         (DECL_DEFERRED_FN): Likewise.
2144         (DECL_TEMPLATE_INFO): Likewise.
2145         (CLASSTYPE_TEMPLATE_INFO): Whitespace and wrap.
2146         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO); Likewise.
2147         (SET_TYPE_TEMPLATE_INFO): Add parenthesis.
2148         (TMPL_ARGS_LEVEL): Likewise.
2149         (SET_TMPL_ARGS_LEVEL): Likewise.
2150         (INNERMOST_TEMPLATE_PARMS): Whitespace.
2151         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter.
2152         (INTEGRAL_CODE_P(CODE): Add parenthesis.
2153         (CP_INTEGRAL_TYPE_P): Remove parenthesis.
2154         (TYPE_HAS_CONSTRUCTOR): Whitespace.
2155         (TREE_HAS_CONSTRUCTOR): Likewise.
2156         (TYPE_HAS_DESTRUCTOR): Likewise.
2157         (TYPE_HAS_REAL_ASSIGN_REF): Likewise.
2158         (TYPE_HAS_COMPLEX_ASSIGN_REF): Likewise.
2159         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
2160         (TYPE_HAS_COMPLEX_INIT_REF): Likewise.
2161         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): Likewise.
2162         (TYPE_PTRMEMFUNC_P): Likewise.
2163         (TYPE_PTRMEMFUNC_FLAG): Likewise.
2164         (TYPE_GET_PTRMEMFUNC_TYPE): Likewise.
2165         (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
2166         (TYPE_PTRMEM_CLASS_TYPE): Remove parenthesis.
2167         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
2168         (DECL_ACCESS): Whitespace.
2169         (DECL_GLOBAL_CTOR_P): Remove parenthesis.
2170         (DECL_GLOBAL_DTOR_P): Likewise.
2171         (GLOBAL_INIT_PRIORITY): Likewise.
2172         (DECL_TEMPLATE_PARMS): Likewise.
2173         (DECL_TEMPLATE_RESULT): Likewise.
2174         (DECL_TEMPLATE_INSTANTIATIONS): Likewise.
2175         (DECL_TEMPLATE_SPECIALIZATIONS): Likewise.
2176         (DECL_IMPLICIT_TYPEDEF_P): Remove parenthesis.
2177         (SET_DECL_IMPLICIT_TYPEDEF_P): Likewise.
2178         (PRIMARY_TEMPLATE_P): Add parenthesis.
2179         (DECL_USE_TEMPLATE): Whitespace.
2180         (CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
2181         (SET_CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
2182         (CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
2183         (SET_CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
2184         (CALL_DECLARATOR_PARMS): Remove parenthesis.
2185         (CALL_DECLARATOR_QUALS): Likewise.
2186         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
2187         (TEMP_NAME_P): Wrap.
2188         (VFIELD_NAME_P): Likewise.
2189         (B_SET): Uppercase macro parameters and add parenthesis.
2190         (B_CLR): Likewise.
2191         (B_TST): Likewise.
2192         (LOOKUP_NAMESPACES_ONLY): Uppercase macro parameters.
2193         (LOOKUP_TYPES_ONLY): Uppercase macro parameters.
2194         (LOOKUP_QUALIFIERS_ONLY): Uppercase macro parameters.
2195         (same_or_base_type_p): Likewise.
2196         (cp_deprecated): Likewise.
2197
2198 2002-01-05  Richard Henderson  <rth@redhat.com>
2199
2200         * semantics.c (expand_body): Revert last change.
2201
2202 2002-01-04  Jason Merrill  <jason@redhat.com>
2203
2204         PR c++/4122
2205         * class.c (update_vtable_entry_for_fn): Set delta to zero for a
2206         lost primary.
2207
2208         * class.c (build_vtbl_initializer): Check for a lost primary
2209         before calculating the vtable entry to throw away.
2210
2211 2002-01-02  Jason Merrill  <jason@redhat.com>
2212
2213         * semantics.c (expand_body): Call outlining_inline_function when
2214         emitting an inline function out of line.
2215
2216 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2217
2218         PR c++/5116, c++/764 reversion
2219         * call.c (build_new_op): Revert the instantiations. They are
2220         incorrect.
2221
2222 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2223
2224         PR c++/5089
2225         * decl2.c (reparse_absdcl_as_casts): Don't warn about casts to void.
2226
2227 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2228
2229         PR c++/3716
2230         * pt.c (tsubst_aggr_type): Move pmf handling into tsubst.
2231         (tsubst, case POINTER_TYPE): Handle pmfs here.
2232         (tsubst, case OFFSET_TYPE): Check it is not an offset to
2233         reference. If it is offset to FUNCTION_TYPE, create a METHOD_TYPE.
2234
2235 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2236
2237         PR c++/35
2238         * cp-tree.h (DECL_LANG_FLAG_0): Used for PARM_DECL too.
2239         (DECL_TEMPLATE_PARM_P): A PARM_DECL might be one too.
2240         * pt.c (process_template_parm): SET_DECL_TEMPLATE_PARM_P on the
2241         PARM_DECL.
2242         (tsubst_template_parms): Break up loop statements.
2243         (tsubst_decl, case PARM_DECL): Copy DECL_TEMPLATE_PARM_P. Template
2244         parm PARM_DECLs don't get promoted.
2245
2246 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2247
2248         PR c++/5123
2249         * typeck.c (build_component_ref): Cope with a TEMPLATE_ID_EXPR.
2250         (build_x_function_call): Cope with a COMPONENT_REF containing a
2251         TEMPLATE_ID_EXPR.
2252
2253 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2254
2255         PR c++/5213
2256         * pt.c (convert_template_argument): Be more careful determining
2257         when RECORD_TYPE templates are or are not templates.
2258
2259 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2260
2261         PR c++/775
2262         * cp-tree.h (handle_class_head): Adjust prototype.
2263         * decl2.c (handle_class_head): Add DEFN_P and NEW_TYPE_P
2264         parameters. Use for all class heads.
2265         * parse.y (named_class_head_sans_basetype, named_class_head,
2266         named_complex_class_head_sans_basetype,
2267         named_class_head_sans_basetype_defn,
2268         unnamed_class_head): Remove.
2269         (class_head, class_head_apparent_template): Recognize class heads
2270         (class_head_decl, class_head_defn): New reductions. Process class
2271         heads.
2272         (structsp): Adjust class definition and class declaration
2273         reductions.
2274         (maybe_base_class_list): Give diagnostic on empty list.
2275
2276 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2277
2278         PR c++/4379
2279         * typeck.c (build_x_unary_op): Don't destroy the OFFSET_REF on a
2280         single non-static member.
2281         (unary_complex_lvalue): If it cannot be a pointer to member, don't
2282         make it so. Check it is not pointer to reference.
2283
2284 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2285
2286         PR c++/5132
2287         * decl2.c (reparse_absdcl_as_casts): Don't digest_init if we
2288         are processing a template decl.
2289
2290 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2291
2292         PR c++/5116, c++/764
2293         * call.c (build_new_op): Make sure template class operands are
2294         instantiated. Simplify arglist construction.
2295
2296 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2297
2298         * call.c (build_user_type_conversion_1): Use my_friendly_assert
2299         rather than if ... abort.
2300         * cvt.c (convert_to_reference): Likewise.
2301         * semantics.c (setup_vtbl_ptr): Likewise.
2302         * pt.c (lookup_template_class): Comment typo.
2303
2304 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2305
2306         PR c++/5125
2307         * pt.c (push_template_decl_real): Make sure DECL has
2308         DECL_LANG_SPECIFIC.
2309
2310 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2311
2312         PR c++/335
2313         * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer
2314         for non-reference fields.
2315         * typeck.c (require_complete_type): Use resolve_offset_ref).
2316
2317 2001-12-26  Nathan Sidwell  <nathan@codesourcery.com>
2318
2319         PR c++/196
2320         * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF.
2321
2322 2001-12-24  Nathan Sidwell  <nathan@codesourcery.com>
2323
2324         PR c++/160
2325         * typeck.c (build_modify_expr): Remove old unreachable code & tidy
2326         up. Don't stabilize_references when initializing a reference.
2327
2328 2001-12-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2329
2330         * decl2.c (lang_f_options): Const-ify.
2331
2332 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
2333
2334         * config-lang.in (diff_excludes): Remove.
2335
2336 2001-12-19  Nathan Sidwell  <nathan@codesourcery.com>
2337
2338         PR c++/90
2339         * typeck.c (build_function_call_real): Use original function
2340         expression for errors.
2341
2342 2001-12-18  Jason Merrill  <jason@redhat.com>
2343
2344         PR c++/3242
2345         * class.c (add_method): Do compare 'this' quals when trying to match a
2346         used function.  Don't defer to another used function.
2347
2348 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
2349
2350         * pt.c (instantiate_clone): Remove, fold into ...
2351         (instantiate_template): ... here. Simplify by removing mutual
2352         recursion.
2353         * typeck2.c (build_m_component_ref): Don't cv qualify the function
2354         pointed to by a pointer to function.
2355         * class.c (delete_duplicate_fields_1): Typo.
2356
2357 2001-12-18  Jason Merrill  <jason@redhat.com>
2358
2359         C++ ABI change: destroy value arguments in caller.
2360         * semantics.c (genrtl_start_function, genrtl_finish_function): Don't
2361         create an extra binding level for the parameters.
2362         * decl.c (store_parm_decls): Don't do parameter cleanups.
2363
2364 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
2365
2366         * call.c (build_new_method_call): Use '%#V'.
2367         * error.c (cv_to_string): Use V parameter to determine padding.
2368
2369 2001-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
2370
2371         * call.c, decl2.c, init.c: Use "built-in" and "bit-field"
2372         spellings in messages.
2373
2374 2001-12-17  Zack Weinberg  <zack@codesourcery.com>
2375
2376         * cp-tree.h: Delete #defines for cp_error, cp_warning,
2377         cp_pedwarn, and cp_compiler_error.
2378         * call.c, class.c, cp-tree.h, cvt.c, decl.c, decl2.c, error.c,
2379         except.c, friend.c, init.c, lex.c, method.c, parse.y, pt.c,
2380         rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
2381         typeck2.c: Change calls to the above macros to use their
2382         language-independent equivalents: error, warning, pedwarn, and
2383         internal_error respectively.
2384
2385 2001-12-16  Neil Booth  <neil@daikokuya.demon.co.uk>
2386
2387         * decl2.c (finish_file): Remove back_end_hook.
2388
2389 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
2390
2391         * ChangeLog.1, ChangeLog.2, ChangeLog, NEWS, call.c, class.c,
2392         cp-tree.h, decl.c, decl2.c, except.c, operators.def, optimize.c,
2393         pt.c, rtti.c, semantics.c, typeck.c: Fix spelling errors.
2394
2395 2001-12-15  Joseph S. Myers  <jsm28@cam.ac.uk>
2396
2397         * lang-options.h: Use American spelling in messages.
2398
2399 2001-12-13  Jason Merrill  <jason@redhat.com>
2400
2401         * Make-lang.in (parse.h): Separate rule, just depend on parse.c.
2402
2403         Use cleanups to run base and member destructors.
2404         * init.c (push_base_cleanups): New function, split out from...
2405         (build_delete): ...here.  Lose !TYPE_HAS_DESTRUCTOR code.
2406         * decl.c (finish_destructor_body): Move vbase destruction code to
2407         push_base_cleanups.
2408         (begin_function_body, finish_function_body): New fns.
2409         (finish_function): Move [cd]tor handling and call_poplevel to
2410         finish_function_body.
2411         (pushdecl): Skip the new level.
2412         * semantics.c (genrtl_try_block): Don't call end_protect_partials.
2413         (setup_vtbl_ptr): Call push_base_cleanups.
2414         * method.c (synthesize_method): Call {begin,end}_function_body.
2415         * pt.c (tsubst_expr): Handle COMPOUND_STMT_BODY_BLOCK.
2416         * cp-tree.h: Declare new fns.
2417         * parse.y (function_body, .begin_function_body): New nonterminals.
2418         (fndef, pending_inline, function_try_block): Use function_body.
2419         (ctor_initializer_opt, function_try_block): No longer has a value.
2420         (base_init): Remove .set_base_init token.
2421         (.set_base_init, compstmt_or_error): Remove.
2422         * Make-lang.in (parse.c): Expect two fewer s/r conflicts.
2423
2424         * optimize.c (maybe_clone_body): Fix parameter updating.
2425
2426 2001-12-12  Jason Merrill  <jason@redhat.com>
2427
2428         * decl.c (store_parm_decls): Remove parms_have_cleanups cruft.
2429         * semantics.c (genrtl_start_function): Don't pass
2430         parms_have_cleanups or push an extra binding level.
2431         (genrtl_finish_function): Lose cleanup_label cruft.
2432
2433         * cp-tree.h (struct cp_language_function): Remove x_ctor_label.
2434         (ctor_label): Remove.
2435         * semantics.c (finish_return_stmt): Lose ctor_label support.
2436         * decl.c (finish_constructor_body, mark_lang_function): Likewise.
2437         * typeck.c (check_return_expr): Check DECL_DESTRUCTOR_P, not
2438         dtor_label.
2439
2440         * call.c (build_new_method_call): Let resolves_to_fixed_type_p
2441         check for [cd]tors.
2442         * class.c (fixed_type_or_null, case INDIRECT_REF): Fix.
2443
2444         * decl.c (finish_function): Check VMS_TARGET, not VMS.
2445
2446         * decl.c (start_cleanup_fn): Remove redundant pushlevel.
2447         (end_cleanup_fn): And poplevel.
2448
2449         * semantics.c (setup_vtbl_ptr): Always build a CTOR_INITIALIZER
2450         if we're in a template.
2451
2452 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
2453
2454         * cp-tree.h (DESTRUCTOR_DECL_PREFIX, DESTRUCTOR_NAME_P,
2455         ANON_PARMNAME_FORMAT, ANON_PARMNAME_P, DESTRUCTOR_NAME_FORMAT,
2456         THIS_NAME_P): Delete.
2457         * spew.c (read_process_identifier): Remove DESTRUCTOR_NAME_P,
2458         THIS_NAME_P and ANON_PARMNAME_P tests from warning about clash
2459         with internal naming scheme.
2460         * error.c (dump_decl): Remove DESTRUCTOR_NAME_P use.
2461
2462 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
2463
2464         * decl.c (grokdeclarator): Deprecated implicit typename use.
2465
2466 2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
2467
2468         PR g++/51
2469         * parse.y (frob_specs): Indicate it is a language linkage which
2470         contained the extern.
2471         * decl.c (grokdeclarator): Allow extern language linkage with
2472         other specifiers.
2473
2474 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
2475
2476         PR g++/72
2477         * decl.c (add_binding): Don't reject duplicate typedefs involving
2478         template parameters.
2479
2480 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
2481
2482         * parse.y, semantics.c: Similarly.
2483
2484 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
2485
2486         PR g++/87
2487         * cp-tree.h (DECL_COPY_CONSTRUCTOR_P): Use copy_fn_p.
2488         (copy_args_p): Rename to ...
2489         (copy_fn_p): ... here.
2490         (grok_special_member_properties): New function.
2491         (grok_op_properties): Lose VIRTUALP parameter.
2492         (copy_assignment_arg_p): Remove.
2493         * call.c (build_over_call): Use copy_fn_p.
2494         * decl.c (grokfndecl): Reformat. Adjust call to
2495         grok_op_properties.
2496         (copy_args_p): Rename to ...
2497         (copy_fn_p): ... here. Reject template functions. Check for pass
2498         by value.
2499         (grok_special_member_properties): Remember special functions.
2500         (grok_ctor_properties): Don't remember them here, just check.
2501         (grok_op_properties): Likewise.
2502         (start_method): Call grok_special_member_properties.
2503         * decl2.c (grokfield): Likewise.
2504         (copy_assignment_arg_p): Remove.
2505         (grok_function_init): Don't remember abstract assignment here.
2506         * pt.c (instantiate_class_template): Call
2507         grok_special_member_properties.
2508         (tsubst_decl): Adjust grok_op_properties call.
2509
2510 2001-12-08  Aldy Hernandez  <aldyh@redhat.com>
2511
2512         * lex.c (rid_to_yy): Add RID_CHOOSE_EXPR and
2513         RID_TYPES_COMPATIBLE_P.
2514
2515 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2516
2517         * semantics.c (simplify_aggr_init_exprs_r): Add DIRECT_BIND flag in
2518         call to build_aggr_init.
2519         * cp-tree.h (DIRECT_BIND): Document new use of DIRECT_BIND.
2520
2521 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
2522
2523         * parse.y: Replace uses of the string non-terminal with STRING.
2524         Don't perform string concatentaion here.
2525         (string): Remove non-terminal.
2526         * semantics.c (finish_asm_stmt): Don't concatenate strings here.
2527
2528 2001-12-05  Jason Merrill  <jason@redhat.com>
2529
2530         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
2531         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
2532         * tree.c (cp_start_inlining, cp_end_inlining): New fns.
2533         * pt.c (push_tinst_level): No longer static.
2534         * cp-tree.h: Declare them.
2535
2536         * init.c (resolve_offset_ref): Don't check access for the base
2537         conversion to access a FIELD_DECL.
2538
2539         * cp-tree.h (TYPE_REFFN_P): New macro.
2540         * decl.c (bad_specifiers): Check it, too.
2541
2542         * rtti.c (create_pseudo_type_info): Set CLASSTYPE_INTERFACE_ONLY
2543         on the __*_type_info type if we haven't seen a definition.
2544
2545 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
2546
2547         * decl.c: Include c-common.h.
2548         (shadow_warning): Move to c-common.c.
2549
2550 Wed Dec  5 17:00:49 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2551
2552         * decl.c (duplicate_decls): Don't copy DECL_NO_CHECK_MEMORY_USAGE.
2553
2554 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2555
2556         * pt.c (end_template_parm_list): Clear TREE_CHAIN of each parm.
2557
2558 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2559
2560         PR g++/164
2561         * init.c (sort_base_init): Allow binfos to be directly specified.
2562         * method.c (do_build_copy_constructor): Explicitly convert to the
2563         base instance.
2564         (do_build_assign_ref): Likewise.
2565
2566 2001-12-03  Hans-Peter Nilsson  <hp@bitrange.com>
2567
2568         * decl.c (xref_basetypes): Don't use C99 construct in tag_code
2569         declaration and initialization.
2570
2571 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
2572
2573         * typeck2.c: Remove leading capital from diagnostic messages, as
2574         per GNU coding standards.
2575
2576 2001-12-03  Mumit Khan  <khan@nanotech.wisc.edu>
2577
2578         PR c++/3394
2579         * decl.c (xref_basetypes): Handle attributes between
2580         'class' and name.
2581
2582 2001-12-03  Nathan Sidwell  <nathan@codesourcery.com>
2583
2584         PR g++/3381
2585         * parse.y (named_complex_class_head_sans_basetype): Add new
2586         reduction.
2587         * Make-lang.in (parse.c): Adjust expected conflict count.
2588
2589 2001-12-03  Jason Merrill  <jason@redhat.com>
2590
2591         * class.c (finish_vtbls): Fill in BINFO_VPTR_FIELD in the
2592         immediate binfos for our virtual bases.
2593
2594 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
2595
2596         * call.c (build_java_interface_fn_ref): Similarly.
2597         * except.c (is_admissible_throw_operand): Similarly.
2598         * init.c (build_java_class_ref): Similarly.
2599         * xref.c (open_xref_file): Similarly.
2600
2601 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
2602
2603         * class.c (finish_struct): Remove trailing periods from messages.
2604         * decl.c (check_tag_decl): Similarly.
2605         * lex.c (cxx_set_yydebug): Similarly.
2606         * typeck2.c (friendly_abort): Similarly.
2607
2608 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
2609
2610         PR c++/3048
2611         * cp-tree.h (ovl_member): Remove.
2612         * decl2.c (merge_functions): Handle extern "C" functions
2613         specially.
2614         * tree.c (ovl_member): Remove.
2615
2616 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
2617
2618         PR c++/4842
2619         * class.c (get_basefndecls): Take an IDENTIFIER_NODE, not a
2620         FUNCTION_DECL, as input.
2621         (mark_overriders): Remove.
2622         (warn_hidden): Rework for the new ABI.
2623
2624 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
2625
2626         PR c++/3471
2627         * call.c (convert_like_real): Do not build additional temporaries
2628         for rvalues of class type.
2629
2630 2001-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2631
2632         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Use lookup base.
2633         (ACCESSIBLY_UNIQUELY_DERIVED_FROM_P): Likewise.
2634         (PUBLICLY_UNIQUELY_DERIVED_FROM_P: Likewise.
2635         (DERIVED_FROM_P): Likewise.
2636         (enum base_access): Renumber, add ba_quiet bit mask.
2637         (get_binfo): Remove.
2638         (get_base_distance): Remove.
2639         (binfo_value): Remove.
2640         (ACCESSIBLY_DERIVED_FROM_P): Remove.
2641         * call.c (standard_conversion): Use lookup_base.
2642         * class.c (strictly_overrides): Likewise.
2643         (layout_virtual_bases): Likewise.
2644         (warn_about_ambiguous_direct_bases): Likewise.
2645         (is_base_of_enclosing_class): Likewise.
2646         (add_vcall_offset_vtbl_entries_1): Likewise.
2647         * cvt.c (build_up_reference): Adjust comment.
2648         * init.c (build_member_call): Reformat.
2649         * search.c (get_binfo): Remove.
2650         (get_base_distance_recursive): Remove.
2651         (get_base_distance): Remove.
2652         (lookup_base_r): Tweak.
2653         (lookup_base): Add ba_quiet control. Complete the types here.
2654         (covariant_return_p): Use lookup_base.
2655         * tree.c (binfo_value): Remove.
2656         (maybe_dummy_object): Use lookup_base.
2657         * typeck.c (build_static_cast): Use lookup_base.
2658         (get_delta_difference): Likewise.
2659         * typeck2.c (binfo_or_else): Use lookup_base.
2660         (build_scoped_ref): Add back error_mark_check.
2661         (build_m_component_ref): Use lookup_base.
2662
2663 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
2664
2665         * Make-lang.in (c++.generated-manpages): New dummy target.
2666
2667 Tue Nov 27 09:03:47 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2668
2669         * Make-lang.in (cp-lang.o): Depends on c-common.h.
2670         * cp-lang.c (c-common.h): Include.
2671         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
2672         * decl.c (cxx_init_decl_processing): Don't set lang_safe_from_p.
2673         * expr.c (init_cplus_expand): Don't set lang_expand_constant.
2674
2675 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
2676
2677         * decl2.c (c_language): Move to c-common.c.
2678         * lex.c (cxx_post_options, cxx_init_options): Use c-common.c
2679         functions.
2680         (cxx_init): Update.
2681
2682 2001-11-26  Jason Merrill  <jason@redhat.com>
2683
2684         * call.c (joust): Remove COND_EXPR hack.
2685
2686 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
2687
2688         * search.c (lookup_base_r): Declare bk in variable declaration
2689         space.
2690
2691 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
2692
2693         PR g++/3145
2694         * class.c (build_vbase_pointer): Remove.
2695         (build_vbase_path): Remove.
2696         (build_base_path): New function.
2697         * cp-tree.h (base_access, base_kind): New enumerations.
2698         (build_base_path): Declare.
2699         (convert_pointer_to_real): Remove.
2700         (convert_pointer_to): Remove.
2701         (lookup_base): Declare.
2702         (convert_pointer_to_vbase): Remove.
2703         * call.c (build_scoped_method_call): Use lookup_base &
2704         build_base_path instead of convert_pointer_to_real,
2705         get_base_distance & get_binfo.
2706         (build_over_call): Likewise.
2707         * cvt.c (cp_convert_to_pointer): Likewise.
2708         (convert_to_pointer_force): Likewise.
2709         (build_up_reference): Likewise.
2710         (convert_pointer_to_real): Remove.
2711         (convert_pointer_to): Remove.
2712         * init.c (dfs_initialize_vtbl_ptrs): Use build_base_path
2713         instead of convert_pointer_to_vbase & build_vbase_path.
2714         (emit_base_init): Use build_base_path instead of
2715         convert_pointer_to_real.
2716         (expand_virtual_init): Lose unrequired conversions.
2717         (resolve_offset_ref): Use lookup_base and build_base_path
2718         instead of convert_pointer_to.
2719         * rtti.c (build_dynamic_cast_1): Use lookup_base &
2720         build_base_path instead of get_base_distance & build_vbase_path.
2721         * search.c (get_vbase_1): Remove.
2722         (get_vbase): Remove.
2723         (convert_pointer_to_vbase): Remove.
2724         (lookup_base_r): New function.
2725         (lookup_base): New function.
2726         * typeck.c (require_complete_type): Use lookup_base &
2727         build_base_path instead of convert_pointer_to.
2728         (build_component_ref): Likewise.
2729         (build_x_function_call): Likewise.
2730         (get_member_function_from_ptrfunc): Likewise.
2731         (build_component_addr): Likewise.
2732         * typeck2.c (build_scoped_ref): Likewise.
2733
2734 2001-11-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
2735
2736         * cp-tree.h (CP_TYPE_QUALS): Removed.
2737         * decl.c (cxx_init_decl_processing): Don't set lang_dump_tree.
2738         * cp-lang.c: Set LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN and
2739         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN.
2740         * dump.c (cp_dump_tree): Use void* dump_info argument to match
2741         lang-hooks prototype.
2742         * call.c, cp-tree.h, cvt.c, decl.c, init.c, mangle.c, method.c, pt.c,
2743         rtti.c, semantics.c, tree.c, typeck.c, typeck2.c: All references to
2744         CP_TYPE_QUALS changed to cp_type_quals.
2745         * Make-lang.in: References to c-dump.h changed to tree-dump.h.
2746         (CXX_C_OBJS): Remove c-dump.o.
2747
2748 2001-11-21  Mark Mitchell  <mark@codesourcery.com>
2749
2750         PR c++/3637
2751         * pt.c (lookup_template_class): Ensure that all specializations
2752         are registered on the list corresponding to the most general
2753         template.
2754
2755 2001-11-20  Mark Mitchell  <mark@codesourcery.com>
2756
2757         * call.c (non_reference): Add documentation.
2758         (convert_class_to_reference): Do not strip reference types
2759         from conversion operators.
2760         (maybe_handle_ref_bind): Simplify.
2761         (compare_ics): Correct handling of references.
2762
2763 2001-11-19  John Wilkinson <johnw@research.att.com>
2764
2765         * dump.c (dump_op): New function.
2766         (cp_dump_tree): Dump CLASSTYPE_TEMPLATE_SPECIALIZATION.  Use
2767         dump_op.  Dump DECL_MUTABLE, access and staticness for VAR_DECLs.
2768         DECL_PURE_VIRTUAL_P, DECL_VIRTUAL_P,
2769
2770 2001-11-19  Mark Mitchell  <mark@codesourcery.com>
2771
2772         PR4629
2773         * semantics.c (finish_sizeof): Make sure that expression created
2774         while processing a template do not have a type.
2775         (finish_alignof): Likewise.
2776         * typeck.c (c_sizeof): Likewise.
2777         (expr_sizeof): Likewise.
2778
2779 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
2780
2781         * lex.c (cxx_finish): Call c_common_finish.
2782         (finish_parse): Remove.
2783
2784 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2785
2786         * decl.c (create_array_type_for_decl): Check if NAME is NULL_TREE
2787         when displaying error message about missing array bounds.
2788
2789 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2790
2791         * mangle.c (write_expression): Handle CAST_EXPR, STATIC_CAST_EXPR,
2792         CONST_CAST_EXPR.
2793         * operators.def: Add CAST_EXPR, STATIC_CAST_EXPR, CONST_CAST_EXPR.
2794
2795 2001-11-16  Neil Booth  <neil@daikokuya.demon.co.uk>
2796
2797         * cp-tree.h (print_class_statistics): Restore.
2798
2799 2001-11-15  Jason Merrill  <jason@redhat.com>
2800
2801         * method.c (use_thunk): Don't emit debugging information for thunks.
2802
2803         * parse.y: Add ... IDENTIFIER SCOPE and ... PTYPENAME SCOPE expansions.
2804         * decl.c (make_typename_type): Handle getting a class template.
2805         * search.c (lookup_field_r): A class template is good enough for
2806         want_type.
2807
2808         * call.c (convert_like_real): Only use cp_convert for the bad part.
2809         (standard_conversion): Also allow bad int->enum.
2810         * typeck.c (ptr_reasonably_similar): Also allow functions to
2811         interconvert.  Pointers to same-size integers are reasonably
2812         similar.
2813
2814         * cvt.c (convert_to_void): If we build a new COND_EXPR, always
2815         give it void type.
2816
2817 2001-11-15  Nathan Sidwell  <nathan@codesourcery.com>
2818
2819         PR g++/3154
2820         * init.c (sort_base_init): Remove unreachable code.
2821         (expand_member_init): Adjust comment to reflect reality. Simplify
2822         and remove unreachable code.
2823
2824 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
2825
2826         * cp-tree.h (init_reswords, cxx_init_decl_processing): New.
2827         (cxx_init): Update prototype.
2828         * decl.c (init_decl_processing): Rename.  Move null node init
2829         to its creation time.
2830         * lex.c (cxx_init_options): Update.
2831         (cxx_init): Combine with old init_parse; also call
2832         cxx_init_decl_processing.
2833
2834 2001-11-14  Richard Sandiford  <rsandifo@redhat.com>
2835
2836         * decl.c (check_initializer): Try to complete the type of an
2837         array element before checking whether it's complete.  Don't
2838         complain about arrays with complete element types but an
2839         unknown size.
2840         (cp_finish_decl): Build the hierarchical constructor before
2841         calling maybe_deduce_size_from_array_init.
2842
2843 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
2844
2845         * Make-lang.in: Change all uses of $(manext) to $(man1ext).
2846
2847 2001-11-13  Nathan Sidwell  <nathan@codesourcery.com>
2848
2849         PR g++/4206
2850         * parse.y (already_scoped_stmt): Remove.
2851         (simple_stmt, WHILE & FOR): Use implicitly_scoped_stmt.
2852
2853 2001-11-12  H.J. Lu <hjl@gnu.org>
2854
2855         * cvt.c (ocp_convert): Don't warn the address of a weak
2856         function is always `true'.
2857
2858 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
2859
2860         * cp-lang.c (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
2861         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
2862         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): Override.
2863         * cp-tree.h (print_class_statistics): Remove.
2864         (cxx_print_statistics, cxx_print_xnode, cxx_print_decl, cxx_print_type,
2865         cxx_print_identifier, cxx_set_yydebug): New.
2866         * lex.c (set_yydebug): Rename c_set_yydebug.
2867         * ptree.c (print_lang_decl, print_lang_type, print_lang_identifier,
2868         lang_print_xnode): Rename.
2869         * tree.c (print_lang_statistics): Rename.
2870
2871 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2872
2873         * class.c (dump_array): Fix format specifier warning.
2874
2875 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
2876
2877         * cp-lang.c (LANG_HOOKS_NAME): Override.
2878         (struct lang_hooks): Constify.
2879         * lex.c (cxx_init_options): Update.
2880         (lang_identify): Remove.
2881         * parse.y (language_string): Remove.
2882
2883 2001-11-08  Andreas Franck  <afranck@gmx.de>
2884
2885         * Make-lang.in (CXX_INSTALL_NAME, GXX_CROSS_NAME,
2886         DEMANGLER_CROSS_NAME): Handle program_transform_name the way
2887         suggested by autoconf.
2888         (GXX_TARGET_INSTALL_NAME, CXX_TARGET_INSTALL_NAME): Define.
2889         (c++.install-common): Use the transformed target alias names.
2890
2891 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
2892
2893         * Make-lang.in: Update.
2894         * cp-lang.c: Include langhooks-def.h.
2895
2896 2001-11-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2897
2898         * pt.c (tsubst_copy): Call tsubst for TYPEOF_EXPR.
2899
2900 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2901
2902         * lex.c (copy_lang_type): Add static prototype.
2903
2904 2001-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2905
2906         * pt.c (unify): Handle SCOPE_REF.
2907
2908 2001-11-01  Jakub Jelinek  <jakub@redhat.com>
2909
2910         * tree.c (cp_copy_res_decl_for_inlining): Adjust
2911         DECL_ABSTRACT_ORIGIN for the return variable.
2912
2913 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
2914
2915         *  Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
2916
2917 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
2918
2919         * ChangeLog.1, ChangeLog.2, ChangeLog, class.c, decl2.c, search.c,
2920         semantics.c, spew.c: Fix spelling errors.
2921
2922 2001-10-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2923
2924         * decl2.c (validate_nonmember_using_decl): Handle NAMESPACE_DECL.
2925
2926 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
2927
2928         * cp-lang.c: Redefine LANG_HOOKS_CLEAR_BINDING_STACK to
2929         pop_everything.
2930
2931 Tue Oct 23 14:00:20 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2932
2933         * cp-lang.c (cxx_get_alias_set): New function.
2934         Point LANG_HOOKS_GET_ALIAS_SET to it.
2935
2936 2001-10-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2937
2938         * cp-tree.def (UNBOUND_CLASS_TEMPLATE): New tree node.
2939         * cp-tree.h (make_unbound_class_template): Prototype new function.
2940         * decl.c (make_unbound_class_template): New function.
2941         * decl2.c (arg_assoc_template_arg): Handle UNBOUND_CLASS_TEMPLATE.
2942         * error.c (dump_type): Likewise.
2943         * mangle.c (write_type): Likewise.
2944         * parse.y (template_parm): Likewise.
2945         (template_argument): Use make_unbound_class_template.
2946         * pt.c (convert_template_argument): Handle UNBOUND_CLASS_TEMPLATE.
2947         (tsubst): Likewise.
2948         (tsubst_copy): Likewise.
2949         (unify): Likewise.
2950         * tree.c (walk_tree): Likewise.
2951         * typeck.c (comptypes): Likewise.
2952
2953 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2954
2955         * xref.c (GNU_xref_member): Use safe-ctype macros and/or fold
2956         extra calls into fewer ones.
2957
2958 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
2959
2960         * decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
2961         Warn when merging inline with attribute noinline.
2962         (start_decl, start_function): Warn if inline and attribute
2963         noinline appear in the same declaration.
2964
2965 2001-10-16  H.J. Lu <hjl@gnu.org>
2966
2967         * cp-tree.h (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Defined
2968         for tree checking disabled.
2969
2970 2001-10-16  Hans-Peter Nilsson  <hp@axis.com>
2971
2972         * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
2973         NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
2974
2975 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
2976
2977         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define.
2978         (unify): Only handle MINUS_EXPR specially if the above flag is set
2979         and the subtracted constant is 1.  Clear the flag on recursive calls.
2980         Set it when unifying the maximum value in an INTEGER_TYPE's range.
2981
2982 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
2983
2984         * decl.c (bad_specifiers): Don't allow exception specifications
2985         on any typedefs.
2986
2987 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
2988
2989         * cp/lex.c (init_cp_pragma): Similarly.
2990
2991 2001-10-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2992
2993         * pt.c (lookup_template_class): Build complete template arguments
2994         for BOUND_TEMPLATE_TEMPLATE_PARM.
2995
2996 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2997
2998         * cp-tree.h (TYPE_BINFO): Update comment.
2999         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): New macro.
3000         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Use template_info.
3001         (TYPENAME_TYPE_FULLNAME): Use TYPE_FIELDS.
3002         (copy_type): Prototype new function.
3003         * lex.c (copy_lang_decl): Gather tree node statistics.
3004         (copy_lang_type): New function.
3005         (copy_type): Likewise.
3006         (cp_make_lang_type): Create lang_type for
3007         BOUND_TEMPLATE_TEMPLATE_PARM.  Set TYPE_BINFO for TYPENAME_TYPE
3008         and BOUND_TEMPLATE_TEMPLATE_PARM.
3009         * pt.c (tsubst): Use copy_type instead of copy_node.
3010         * search.c (lookup_field_1): Ignore TYPENAME_TYPE.
3011
3012 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3013
3014         * pt.c (determine_specialization): Ignore functions without
3015         DECL_TEMPLATE_INFO.
3016
3017 2001-10-12  Nathan Sidwell  <nathan@codesourcery.com>
3018
3019         PR g++/4476
3020         * typeck2.c (abstract_virtuals_error): Ignore incomplete classes.
3021
3022 2001-10-11  Jason Merrill  <jason_merrill@redhat.com>
3023
3024         * typeck2.c (store_init_value): Don't re-digest a bracketed
3025         initializer.
3026
3027         * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
3028         ANON_AGGR_TYPE_P.
3029
3030 2001-10-11  Richard Henderson  <rth@redhat.com>
3031
3032         * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
3033         of an asm statement.
3034         (build_vtbl_ref_1): Split out from build_vtbl_ref.
3035         (build_vfn_ref): Use it to handle vtable descriptors before
3036         calling build_vtable_entry_ref.
3037         * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
3038
3039 2001-10-10  Richard Henderson  <rth@redhat.com>
3040
3041         * parse.y (asm_operand): Allow named operands.
3042         * semantics.c (finish_asm_stmt): Tweek for changed location
3043         of the operand constrant.
3044
3045 2001-10-09  Jason Merrill  <jason_merrill@redhat.com>
3046
3047         * call.c (standard_conversion): Add bad conversion between
3048         integers and pointers.
3049         (convert_like_real): Don't use convert_for_initialization for bad
3050         conversions; complain here and use cp_convert.
3051         (build_over_call): Don't handle bad conversions specially.
3052         (perform_implicit_conversion): Allow bad conversions.
3053         (can_convert_arg_bad): New fn.
3054         * cp-tree.h: Declare it.
3055         * typeck.c (convert_for_assignment): Use it.
3056         (ptr_reasonably_similar): Any target type is similar to void.
3057
3058 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
3059
3060         * Make-lang.in (CXX_OBJS): Added cp-lang.o.
3061         (cp/cp-lang.o): New rule.
3062         * cp-tree.h: Declare hooks.
3063         * tree.c: Make hooks non-static.
3064         (init_tree): Don't initialize hooks here.
3065         * lex.c: Likewise.  Move definition of lang_hooks to...
3066         * cp-lang.c: ... new file.
3067
3068 2001-10-08  Richard Henderson  <rth@redhat.com>
3069
3070         * cp-tree.h (struct lang_decl_flags): Remove declared_inline.
3071         (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl.
3072
3073 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3074
3075         * class.c (build_vtable_entry_ref): Const-ify.
3076         * decl.c (predefined_identifier,
3077         initialize_predefined_identifiers): Likewise.
3078         * init.c (build_new_1): Likewise.
3079         * lex.c (cplus_tree_code_type, cplus_tree_code_length, resword):
3080         Likewise.
3081
3082 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
3083
3084         * optimize.c (struct inline_data): Moved to ../tree-inline.c.
3085         (INSNS_PER_STMT): Likewise.
3086         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
3087         (copy_body, initialize_inlined_parameters): Likewise.
3088         (declare_return_variable, inlinable_function_p): Likewise.
3089         (expand_call_inline, expand_calls_inline): Likewise.
3090         (optimize_inline_calls, clone_body): Likewise.
3091         * tree.c (walk_tree): Moved to ../tree-inline.c.
3092         (walk_tree_without_duplicates): Likewise.
3093         (copy_tree_r, remap_save_expr): Likewise.
3094
3095 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
3096
3097         * Make-lang.in (cp/decl.o, cp/tree.o): Depend on tree-inline.h.
3098         (cp/pt.o, cp/semantics.o, cp/optimize.o): Likewise.
3099         * cp-tree.h (lang_decl): Moved inlined_fns to tree_decl.
3100         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved to ../tree.h.
3101         (flag_inline_trees): Moved declaration to ../tree-inline.h.
3102         (walk_tree): Moved declaration to ../tree-inline.h.
3103         (walk_tree_without_duplicates, copy_tree_r): Likewise.
3104         (remap_save_expr): Likewise.
3105         * decl.c: Include tree-inline.h.
3106         (lang_mark_tree): Don't mark inlined_fns.
3107         * decl2.c (flag_inline_trees): Moved defn to ../tree-inline.c.
3108         * optimize.c: Include tree-inline.h.
3109         (optimize_inline_calls): Move declaration to ../tree.h, as
3110         non-static.
3111         (remap_decl): Use language-independent constructs and hooks.
3112         (remap_block, copy_body_r, declare_return_variable): Likewise.
3113         (inlinable_function_p): Likewise.  Don't test for
3114         DECL_LANG_SPECIFIC before DECL_INLINED_FNS as inlined_fns is
3115         no longer language-specific.
3116         (optimize_inline_calls): Likewise.  Make it non-static.  Moved
3117         call of dump_function to...
3118         (optimize_function): Here...
3119         (clone_body): New function, extracted from...
3120         (maybe_clone_body): ... here.  Build decl_map locally and pass
3121         it on to clone_body.
3122         * pt.c, semantics.c: Include tree-inline.h.
3123         * tree.c: Likewise.
3124         (cp_walk_subtrees): New language-specific hook for tree inlining.
3125         (cp_cannot_inline_tree_fn, cp_add_pending_fn_decls,
3126         cp_is_overload_p, cp_auto_var_in_fn_p,
3127         cp_copy_res_decl_for_inlining): Likewise.
3128         (walk_tree): Move language-specific constructs into...
3129         (cp_walk_subtrees): this new function.
3130         (copy_tree_r): Use language-independent constructs and hooks.
3131         (init_tree): Initialize tree inlining hooks.
3132         (remap_save_expr): Adjust prototype so that the declaration
3133         does not require the definition of splay_tree.
3134
3135 2001-10-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3136
3137         * rtti.c (get_tinfo_decl): Call typeinfo_in_lib_p with the type used
3138         to build the declaration instead of the declaration itself.
3139
3140 2001-10-02  Jason Merrill  <jason_merrill@redhat.com>
3141
3142         * decl2.c (cxx_decode_option): Add 'else'.
3143
3144         * spew.c (end_input): No longer static.
3145         * cp-tree.h: Declare it.
3146         * parse.y (datadef): Add "error END_OF_SAVED_INPUT" expansion.
3147
3148 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
3149
3150         * call.c (build_over_call), typeck.c (build_function_call_real):
3151         Pass type attributes to check_function_format rather than name or
3152         assembler name.  Don't require there to be a name or assembler
3153         name to check formats.
3154
3155 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
3156
3157         * decl.c (init_decl_processing): Don't call
3158         init_function_format_info.  Initialize lang_attribute_table
3159         earlier.
3160         (builtin_function): Call decl_attributes.
3161         (insert_default_attributes): New.
3162
3163 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
3164
3165         * decl.c (grokdeclarator): Copy array typedef handling from C
3166         frontend.
3167
3168         * decl.c (grokdeclarator): Copy too-large array handling from C
3169         frontend.
3170
3171 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
3172
3173         * config-lang.in (target_libs): Added target-gperf, so that we
3174         don't try to build it if C++ is disabled.
3175
3176 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
3177
3178         * Make-lang.in (CXX_OBJS): Take out cp/errfn.o.
3179         (cp/errfn.o): Delete rule.
3180         (cp/error.o): Depend on flags.h.
3181         * errfn.c: Delete file.
3182         * cp-tree.h: Declare warn_deprecated.  Remove definitions of
3183         TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS,
3184         and TFF_TEMPLATE_DEFAULT_ARGUMENTS. #define cp_error, cp_warning,
3185         cp_pedwarn, and cp_compiler_error to error, warning, pedwarn, and
3186         internal_error respectively.  Make cp_deprecated into a macro.
3187         Don't define cp_printer typedef or declare cp_printers.
3188         * error.c: Include flags.h.
3189         Delete: struct tree_formatting_info, print_function_argument_list,
3190         print_declaration, print_expression, print_function_declaration,
3191         print_function_parameter, print_type_id, print_cv_qualifier_seq,
3192         print_type_specifier_seq, print_simple_type_specifier,
3193         print_elaborated_type_specifier, print_rest_of_abstract_declarator,
3194         print_parameter_declaration_clause, print_exception_specification,
3195         print_nested_name_specifier, and definition of cp_printers.
3196         (locate_error): New function.
3197         (cp_error_at, cp_warning_at, cp_pedwarn_at): Moved here and
3198         rewritten in terms of locate_error and diagnostic.c.
3199         (cp_tree_printer): Rename cp_printer; wire up to *_to_string
3200         instead of deleted print_* routines.  Handle %C, %L, %O, %Q also.
3201         (init_error): Adjust to match.
3202
3203 Sat Sep 22 09:15:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3204
3205         * Make-lang.in (CXX_C_OBJS): Add attribs.o.
3206
3207 2001-09-21  Richard Henderson  <rth@redhat.com>
3208
3209         * class.c (set_vindex): Mind TARGET_VTABLE_USES_DESCRIPTORS.
3210         (build_vtbl_initializer): Likewise.
3211         (build_vfn_ref): New.
3212         * cp-tree.h: Declare it.
3213         * call.c (build_over_call): Use it.
3214         * decl2.c (mark_vtable_entries): Mark FDESC_EXPR.
3215         * typeck.c (get_member_function_from_ptrfunc): Mind descriptors.
3216
3217 Fri Sep 21 08:16:19 2001  J"orn Rennecke <amylaar@redhat.com>
3218
3219         * decl.c (grokdeclarator): Use C syntax for attr_flags declaration.
3220
3221 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3222
3223         Table-driven attributes.
3224         * decl.c: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
3225         * decl2.c (cplus_decl_attributes): Only take one attributes
3226         parameter.
3227         * cp-tree.c (cplus_decl_attributes): Update prototype.
3228         * class.c (finish_struct), decl.c (start_decl, start_function),
3229         decl2.c (grokfield), friend.c (do_friend), parse.y
3230         (parse_bitfield): Update calls to cplus_decl_attributes.
3231         * decl.c (grokdeclarator): Take a pointer to a single ordinary
3232         attribute list.
3233         * decl.h (grokdeclarator): Update prototype.
3234         * decl2.c (grokfield): Take a single ordinary attribute list.
3235         * friend.c (do_friend): Likewise.
3236         * decl.c (shadow_tag, groktypename, start_decl,
3237         start_handler_parms, grokdeclarator, grokparms, start_function,
3238         start_method), decl2.c (grokfield, grokbitfield, grokoptypename),
3239         parse.y (parse_field, parse_bitfield, component_decl_1), pt.c
3240         (process_template_parm, do_decl_instantiation): Pass single
3241         ordinary attribute lists around.
3242         * decl.c (grokdeclarator): Correct handling of nested attributes.
3243         Revert the patch
3244         1998-10-18  Jason Merrill  <jason@yorick.cygnus.com>
3245                 * decl.c (grokdeclarator): Embedded attrs bind to the right,
3246                 not the left.
3247         .
3248         * cp-tree.h (cp_valid_lang_attribute): Remove declaration
3249         (cp_attribute_table): Declare.
3250         * decl.c (valid_lang_attribute): Don't define.
3251         (lang_attribute_table): Define.
3252         (init_decl_processing): Initialize lang_attribute_table instead of
3253         valid_lang_attribute.
3254         * tree.c (cp_valid_lang_attribute): Remove.
3255         (handle_java_interface_attribute, handle_com_interface_attribute,
3256         handle_init_priority_attribute): New functions.
3257         (cp_attribute_table): New array.
3258         * decl2.c (import_export_class): Don't use
3259         targetm.valid_type_attribute.
3260
3261 2001-09-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3262
3263         * Make-lang.in (cp/error.o): Depend on real.h
3264         * error.c: #include "real.h"
3265
3266 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3267
3268         * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of
3269         xmalloc/strcpy/strcat.
3270
3271 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3272
3273         * decl.c (warn_extern_redeclared_static, cp_make_fname_decl):
3274         Const-ification.
3275         * pt.c (tsubst_decl): Likewise.
3276
3277 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3278
3279         * decl2.c (lang_f_options): Const-ification.
3280         * lex.c (cplus_tree_code_name): Likewise.
3281         * spew.c (yyerror): Likewise.
3282
3283 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3284
3285         PR c++/3986
3286         * class.c (force_canonical_binfo_r): Check & move an indirect
3287         primary base first.
3288         (force_canonical_binfo): Check that it's not already
3289         canonical.
3290         (mark_primary_virtual_base): Remove BINFO parameter.
3291         (mark_primary_bases): Adjust, set BINFO_LOST_PRIMARY_P here.
3292
3293 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3294
3295         Remove TYPE_NONCOPIED_PARTS.
3296         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Map onto
3297         CLASSTYPE_PURE_VIRTUALS.
3298         (TYPE_RAISES_EXCEPTIONS): Map onto TYPE_BINFO.
3299         * class.c (duplicate_tag_error): Remove TYPE_NONCOPIED_PARTS.
3300         (layout_class_type): Don't call fixup_inline_methods here ...
3301         (finish_struct_1): ... call it here.
3302
3303 2001-09-04  Mark Mitchell  <mark@codesourcery.com>
3304
3305         * decl.c (duplicate_decls): Remove code deadling with
3306         DECL_SAVED_INSNS.
3307         * decl2.c (finish_file): Likewise.
3308         * pt.c (instantiate_decl): Likewise.
3309         * semantics.c (expand_body): Don't defer local functions if
3310         they wouldn't be deferred for some other reason.  Don't
3311         generate RTL for functions that will not be emitted.
3312         (genrtl_start_function): Remove code deadling with
3313         DECL_SAVED_INSNS.
3314         (genrtl_finish_function): Likewise.
3315
3316 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
3317
3318         PR c++/4203
3319         * call.c (build_over_call): Do not optimize any empty base
3320         construction.
3321
3322 2001-08-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3323
3324         * error.c (dump_template_decl): Output template parameters
3325         together with their specifiers.
3326         Output `class' prefix for template template parameter.
3327         (dump_decl): Fix formatting.
3328
3329 2001-08-30  Kurt Garloff  <garloff@suse.de>
3330
3331         * optimize.c (inlinable_function_p): Allow only smaller single
3332         functions. Halve inline limit after reaching recursive limit.
3333
3334 2001-08-30  Joern Rennecke <amylaar@redhat.com>
3335             Jason Merrill  <jason_merrill@redhat.com>
3336
3337         * class.c (build_vtable_entry_ref): Subtract in char*, not
3338         ptrdiff_t.
3339
3340 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
3341
3342         * tree.c (cp_build_qualified_type_real): Use get_qualified_type.
3343         (build_cplus_array_type): Use cp_build_qualified_type, not
3344         TYPE_MAIN_VARIANT, to get an unqualified version.
3345
3346         * decl2.c (grok_alignof): Lose.
3347         (build_expr_from_tree): Use expr_sizeof and c_alignof_expr.
3348         * typeck.c (c_alignof): Lose.
3349         * semantics.c (finish_sizeof, finish_alignof): New.
3350         * parse.y: Use them.
3351         * cp-tree.h: Declare them.
3352
3353 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
3354
3355         * pt.c (tsubst_expr): Hand off to the TREE_CHAIN of a statement.
3356         Don't loop in COMPOUND_STMT, FOR_STMT or TRY_BLOCK.
3357         * tree.c (cp_statement_code_p): A TAG_DEFN is a statement.
3358
3359 2001-08-19  Jakub Jelinek  <jakub@redhat.com>
3360
3361         * typeck2.c (add_exception_specifier): Only require complete type if
3362         not in processing template declaration.
3363
3364 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3365
3366         * decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
3367         GNU_xref_start_scope and GNU_xref_end_scope.
3368
3369         * tree.c (TYPE_HASH): Moved to ../tree.h.
3370
3371 2001-08-16  Mark Mitchell  <mark@codesourcery.com>
3372
3373         * cvt.c (convert_to_void): Preserve TREE_SIDE_EFFECTS
3374         on COMPOUND_EXPRs.
3375
3376 2001-08-14  Richard Henderson  <rth@redhat.com>
3377
3378         * class.c, cp-tree.h (build_vfn_ref): Remove.
3379         * call.c, rtti.c: Replace all refernces with build_vtbl_ref.
3380
3381 2001-08-13  Mark Mitchell  <mark@codesourcery.com>
3382
3383         * call.c (build_over_call): Mark COMPOUND_EXPRs generated for
3384         empty class assignment as having side-effects to avoid
3385         spurious warnings.
3386
3387 2001-08-13  Zack Weinberg  <zackw@panix.com>
3388
3389         * Make-lang.in (cp/except.o): Add libfuncs.h to dependencies.
3390         * except.c: Include libfuncs.h.
3391
3392 2001-08-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3393
3394         * decl.c (grokdeclarator): Clarify diagnostic message.
3395
3396 2001-08-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3397
3398         * decl2.c (do_nonmember_using_decl): Replace using directive
3399         with using declaration in the error message.
3400
3401 2001-08-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3402
3403         * pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
3404         criterion to avoid rebuilding expression tree instead of
3405         processing_template_decl.
3406
3407 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
3408
3409         Support named return value optimization for inlines, too.
3410         * decl.c (finish_function): Nullify returns here.
3411         * semantics.c (genrtl_start_function): Not here.
3412         (cp_expand_stmt): Don't mess with CLEANUP_STMTs.
3413         (nullify_returns_r): No longer static.  Just clear RETURN_EXPR.
3414         Also nullify the CLEANUP_STMT for the nrv.
3415         * cp-tree.h: Declare it.
3416         * optimize.c (declare_return_variable): Replace the nrv with the
3417         return variable.
3418         * typeck.c (check_return_expr): Be more flexible on alignment check.
3419         Ignore cv-quals when checking for a matching type.
3420
3421 2001-08-09  Richard Henderson  <rth@redhat.com>
3422
3423         * decl2.c (finish_objects): Use target hooks instead of
3424         assemble_constructor and assemble_destructor.
3425
3426 2001-08-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3427
3428         * g++spec.c (lang_specific_driver): Quote argument after `-Xlinker'.
3429
3430 2001-08-07  Nathan Sidwell  <nathan@codesourcery.com>
3431
3432         PR c++/3820
3433         Stop using TYPE_NONCOPIED_PARTS.
3434         * call.c (build_over_call): Be careful when copy constructing
3435         or assigning to an empty class.
3436         * class.c (check_bases_and_members): It has a
3437         COMPLEX_ASSIGN_REF if it has a vptr.
3438         (layout_class_type): Don't add empty class padding to
3439         TYPE_NONCOPIED_PARTS.
3440         (finish_struct_1): Don't add the VFIELD either.
3441         * cp-tree.h (TYPE_HAS_TRIVIAL_INIT_REF): Mention _copy_
3442         initialization.
3443
3444 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
3445
3446         * tree.c (walk_tree): Walk siblings even if !walk_subtrees.
3447
3448 2001-08-06  Richard Henderson  <rth@redhat.com>
3449
3450         * decl2.c (finish_objects): Pass a symbol_ref and priority to
3451         assemble_{constructor,destructor}.  Remove priority handling.
3452
3453 2001-08-05  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3454
3455         Don't allow template-id in using-declaration.
3456         * decl2.c (validate_nonmember_using_decl): Handle template-ids.
3457         (do_class_using_decl): Likewise.
3458
3459 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
3460
3461         * cp/spew.c (read_token): No need to pop buffers.
3462
3463 2001-08-02  Stan Shebs  <shebs@apple.com>
3464
3465         * cp-tree.h (FNADDR_FROM_VTABLE_ENTRY): Remove, no longer used.
3466         (fnaddr_from_vtable_entry): Remove decl.
3467         * method.c (use_thunk): Update comment.
3468
3469 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
3470
3471         * repo.c (get_base_filename): Change return value to const char
3472         pointer.
3473
3474 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
3475
3476         Kill -fhonor-std.
3477         * NEWS: Document.
3478         * cp-tree.h (flag_honor_std): Remove.
3479         (CPTI_FAKE_STD): Remove.
3480         (std_node): Remove comment about it being NULL.
3481         (fake_std_node): Remove.
3482         * decl.c (in_fake_std): Remove.
3483         (walk_namespaces_r): Remove fake_std_node check.
3484         (push_namespace): Remove in_fake_std code.
3485         (pop_namespace): Likewise.
3486         (lookup_name_real): Remove fake_std_node check.
3487         (init_decl_processing): Always create std_node. Always add
3488         std:: things there.
3489         (builtin_function): Always put non '_' fns in std.
3490         * decl2.c (flag_honor_std): Remove.
3491         (lang_f_options): Remove honor-std.
3492         (unsupported_options): Add honor-std.
3493         (set_decl_namespace): Remove fake_std_node check.
3494         (validate_nonmember_using_decl): Likewise.
3495         (do_using_directive): Likewise.
3496         (handle_class_head): Likewise.
3497         * dump.c (cp_dump_tree): Likewise.
3498         * except.c (init_exception_processing): Adjust.
3499         * init.c (build_member_call): Remove fake_std_node check.
3500         (build_offset_ref): Likewise.
3501         * lang-options.h: Remove -fhonor-std, -fno-honor-std.
3502         * rtti.c (init_rtti_processing): Adjust.
3503
3504 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
3505
3506         * tree.c (cp_tree_equal): WITH_CLEANUP_EXPR node to use its second
3507         operand while calling cp_tree_equal.
3508
3509 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3510
3511         The 3.0 ABI no longer has vbase pointer fields.
3512         * cp-tree.h (VBASE_NAME, VBASE_NAME_FORMAT, VBASE_NAME_P,
3513         FORMAT_VBASE_NAME): Remove.
3514         * method.c (do_build_copy_constructor): Adjust.
3515         (do_build_assign_ref): Adjust.
3516         * search.c (lookup_field_r): Adjust.
3517         * typeck.c (build_component_ref): Adjust.
3518
3519         The 3.0 ABI always has a vtable pointer at the start of every
3520         polymorphic class.
3521         * rtti.c (build_headof_sub): Remove.
3522         (build_headof): Adjust.
3523         (get_tinfo_decl_dynamic): No need to check flag_rtti
3524         here. Adjust.
3525         (create_real_tinfo_var): Explain why we need a hidden name.
3526
3527 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3528
3529         PR c++/3631
3530         * class.c (update_vtable_entry_for_fn): The fixed adjustment
3531         of a virtual thunk should be from declaring base.
3532
3533 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3534
3535         * class.c (dfs_ctor_vtable_bases_queue_p): Always walk into
3536         the shared virtual base, so preserving inheritance graph order.
3537
3538 2001-07-30  Andreas Jaeger  <aj@suse.de>
3539
3540         * decl2.c: Remove unused var global_temp_name_counter.
3541
3542 2001-07-28  Richard Henderson  <rth@redhat.com>
3543
3544         * method.c (pending_inlines): Remove.
3545
3546 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
3547
3548         * class.c (mark_primary_virtual_base): Don't adjust base
3549         offsets here.
3550         (dfs_unshared_virtual_bases): Adjust them here.
3551         (mark_primary_bases): Explain why we adjust at the end.
3552
3553 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
3554
3555         * class.c (finish_struct_1): When copying the primary base's
3556         VFIELD, make sure we find it is at offset zero.
3557
3558 2001-07-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3559
3560         * pt.c (tsubst_template_parms): Call maybe_fold_nontype_arg and
3561         tsubst_expr for default template arguments.
3562
3563 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3564
3565         PR c++/3621
3566         * spew.c (yylex): Only copy the token's lineno, if it is
3567         non-zero.
3568
3569 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3570
3571         PR c++/3624
3572         * call.c (resolve_args): Simplify, call
3573         convert_from_reference.
3574         (build_new_op): Resolve and convert from reference ARG1
3575         earlier. Adjust ARG2 & ARG3 resolve and conversion.
3576
3577 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3578
3579         * decl.c (last_function_parm_tags): Remove.
3580         (current_function_parm_tags): Remove.
3581         (init_decl_processing): Adjust.
3582         (start_function): Adjust.
3583         (store_parm_decls): Adjust.
3584
3585         PR c++/3152
3586         * decl.c (grokdeclarator): Detect when a function typedef is
3587         declaring a function, and create last_function_parms correctly.
3588
3589 2001-07-25  Jason Merrill  <jason_merrill@redhat.com>
3590
3591         * call.c (joust): Only prefer a non-builtin candidate to a builtin
3592         one if they have the same signature.
3593
3594         * cvt.c (build_up_reference): Take DECL parm.  Check TREE_STATIC on
3595         it rather than toplevel_bindings_p.  Give it a mangled name if static.
3596         (convert_to_reference): Adjust.
3597         * decl2.c (get_temp_name): Lose.
3598         * mangle.c (mangle_ref_init_variable): New fn.
3599         (mangle_guard_variable): Strip the ref-init header.
3600         * cp-tree.h: Adjust.
3601         * decl.c (cp_finish_decl): Add the DECL_STMT after processing the
3602         initializer.
3603         (grok_reference_init): Always use DECL_INITIAL.
3604
3605 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3606
3607         PR c++/3416
3608         * call.c (build_conditional_expr): Recheck args after
3609         conversions.
3610         * cp-tree.h (build_conditional_expr): Move to correct file.
3611         * typeck.c (decay_conversion): Diagnose any unknown types
3612         reaching here.
3613         (build_binary_op): Don't do initial decay or default
3614         conversions on overloaded functions.
3615         (build_static_cast): Don't do a decay conversion here.
3616
3617 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3618
3619         PR c++/3543
3620         * typeck.c (condition_conversion): Resolve an OFFSET_REF.
3621         * expr.c (cplus_expand_expr): An OFFSET_REF should never get here.
3622
3623 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3624
3625         * class.c (build_vtbl_or_vbase_field): Remove, move into ...
3626         (create_vtbl_ptr): ... here.
3627
3628 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3629
3630         * class.c (build_vbase_offset_vbtl_entries): Look for
3631         non-primary base of which we are a sub vtable.
3632
3633 2001-07-24  Phil Edwards  <pme@sources.redhat.com>
3634
3635         * semantics.c (finish_this_expr):  Remove unused code.
3636
3637 2001-07-24  Nathan Sidwell  <nathan@codesourcery.com>
3638
3639         Simplify rtti, now we've only one ABI.
3640         * cp-tree.h (cp_tree_index): Remove CPTI_TINFO_DECL_ID,
3641         CPTI_TINFO_VAR_ID.
3642         (tinfo_decl_id, tinfo_var_id): Remove.
3643         (get_typeid_1): Remove.
3644         * rtti.c
3645         (init_rtti_processing): Remove tinfo_decl_id & tinfo_var_id.
3646         (typeid_ok_p): New function.
3647         (build_type_id): Call typeid_ok_p. Don't call tinfo_from_decl.
3648         (get_tinfo_decl): Remove old abi documentation.
3649         (tinfo_from_decl): Remove.
3650         (get_type_id): Call typeid_ok_p. Absorb get_typeid_1.
3651         (get_typeid_1): Remove.
3652         (get_base_offset): Remove.
3653         (synthesize_tinfo_var): Absorb get_base_offset.
3654         (create_real_tinfo_var): Don't use tinfo_decl_id.
3655
3656 2001-07-23  Graham Stott  <grahams@redhat.com>
3657
3658         * cp/class.c (type_requires_array_cookie): Fix use of uninitialised
3659         variable has_two_argument_delete_p.
3660
3661 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
3662
3663         Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
3664         * cp-tree.h (CPTI_DELTA2_IDENTIFIER): Remove.
3665         (CPTI_INDEX_IDENTIFIER): Remove.
3666         (CPT_PFN_OR_DELTA2_IDENTIFIER): Remove.
3667         (delta2_identifier): Remove.
3668         (index_identifier): Remove.
3669         (pfn_or_delta2_identifier): Remove.
3670         (flag_vtable_thunks): Remove.
3671         (VTABLE_DELTA2_NAME): Remove.
3672         (VTABLE_INDEX_NAME): Remove.
3673         (FNADDR_FROM_VTABLE_ENTRY): Adjust.
3674         (vfunc_ptr_type_node): Adjust.
3675         (VTABLE_NAME_PREFIX): Adjust.
3676         (build_vfn_ref): Lose first parameter.
3677         (fixup_all_virtual_upcast_offsets): Remove.
3678         * decl.c (initialize_predefined_identifiers): Remove
3679         delta2_identifier, index_identifier, pfn_or_delta2_identifier.
3680         (init_decl_processing): Remove no-vtable-thunk code.
3681         * decl2.c (flag_vtable_thunks): Remove.
3682         (mark_vtable_entries): Remove no-vtable-thunk code.
3683         * error.c (dump_decl): Remove no-vtable-thunk code.
3684         (dump_expr): Adjust ptr to member function code.
3685         * init.c (initialize_vtable_ptrs): Remove no-vtable-thunk
3686         code.
3687         * rtti.c (build_headof): Remove no-vtable-thunk code.
3688         (get_tinfo_decl_dynamic): Adjust build_vfn_ref call.
3689         * search.c (get_base_distance): Remove expand_upcast_fixups case.
3690         (virtual_context) Remove.
3691         (expand_upcast_fixups): Remove.
3692         (fixup_virtual_upcast_offsets): Remove.
3693         (fixup_all_virtual_upcast_offsets): Remove.
3694         * typeck.c (get_member_function_from_ptrfunc): Remove
3695         no-vtable-thunk code.
3696         * call.c (build_over_call): Adjust call to build_vfn_ref.
3697         * class.c (build_vfn_ref): Lose first parameter. Remove
3698         no-vtable-thunk code.
3699         (build_rtti_vtbl_entries): Remove no-vtable-thunk code.
3700         (build_vtable_entry): Remove no-vtable-thunk code.
3701
3702 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
3703
3704         Remove old-abi remnants. Remove comments about old abi
3705         behaviour. Remove references to 'new-abi' in comments.
3706         * cp-tree.h: Adjust comments.
3707         (vbase_offsets_in_vtable_p): Delete.
3708         (vcall_offsets_in_vtable_p): Delete.
3709         (vptrs_present_everywhere_p): Delete.
3710         (all_overridden_vfuns_in_vtables_p): Delete.
3711         (merge_primary_and_secondary_vtables_p): Delete.
3712         (TYPE_CONTAINS_VPTR_P): Adjust.
3713         (VTT_NAME_PREFIX): Remove.
3714         (CTOR_VTBL_NAME_PREFIX): Remove.
3715         (init_vbase_pointers): Remove.
3716         * class.c: Adjust coments.
3717         (build_vbase_pointer_fields): Delete.
3718         (build_vbase_pointer): Remove old-abi code.
3719         (build_secondary_vtable): Likewise.
3720         (modify_all_vtables): Likewise.
3721         (create_vtable_ptr): Likewise.
3722         (layout_class_type): Likewise.
3723         (finish_struct_1): Likewise.
3724         (finish_vtbls): Likewise.
3725         (dfs_finish_vtbls): Delete.
3726         (build_vbase_offset_vtbl_entries): Remove old-abi code.
3727         * cvt.c: Adjust comments.
3728         * decl.c: Adjust comments.
3729         * decl2.c: Adjust comments.
3730         * init.c: Adjust comments.
3731         (construct_virtual_bases): Remove old-abi code.
3732         * lang-specs.h: Remove -fno-new-abi.
3733         * mangle.c: Adjust comments.
3734         * rtti.c: Adjust comments.
3735         (get_base_offset): Remove old-abi-code.
3736         * search.c: Adjust comments.
3737         (dfs_init_vbase_pointers): Remove.
3738         (dfs_vtable_path_unmark): Remove.
3739         (init_vbase_pointers): Remove.
3740         * semantics.c: Adjust comments.
3741         (emit_associated_thunks): Remove old-abi code.
3742         * typeck.c: Adjust comments.
3743
3744 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
3745
3746         * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not
3747         params.h.
3748
3749 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
3750
3751         * class.c (finish_struct_anon): Forbid nested classes.
3752
3753 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
3754
3755         * decl2.c: Don't include dwarfout.h and dwarf2out.h.
3756         * optimize.c: Include debug.h.
3757         (maybe_clone_body): Use debug hook.
3758         * semantics.c: Include debug.h.
3759         (expand_body): Use debug hook.
3760
3761 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
3762
3763         * spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
3764
3765 2001-07-18  Mark Mitchell  <mark@codesourcery.com>
3766
3767         * class.c (type_requires_array_cookie): New function.
3768         (check_methods): Don't try to figure out whether the type needs a
3769         cookie here.
3770         (check_bases_and_members): Set TYPE_VEC_NEW_USES_COOKIE here.
3771         * cp-tree.h (TYPE_VEC_DELETE_TAKES_SIZE): Remove.
3772         (TYPE_VEC_NEW_USES_COOKIE): Reimplement.
3773         * pt.c (instantiate_class_template): Don't set
3774         TYPE_VEC_DELETE_TAKES_SIZE.
3775         * NEWS: Document ABI changes from GCC 3.0.
3776
3777 2001-07-18  Xavier Delacour <xavier@fmaudio.net>,
3778             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3779
3780         * NEWS (Changes in GCC 3.0): Fix typo.
3781
3782 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
3783
3784         * decl2.c (cplus_decl_attributes): Take a pointer to the node to
3785         which attributes are to be attached, and a flags argument.  Update
3786         call to decl_attributes.
3787         (grokfield): Update call to decl_attributes.
3788         * class.c (finish_struct): Update call to cplus_decl_attributes.
3789         * cp-tree.h (cplus_decl_attributes): Update prototype.
3790         * decl.c (start_decl, grokdeclarator, start_function): Update
3791         calls to decl_attributes and cplus_decl_attributes.
3792         * friend.c (do_friend): Update call to cplus_decl_attributes.
3793         * parse.y (parse_bitfield): Update call to cplus_decl_attributes.
3794
3795 2001-07-12  Mark Mitchell  <mark@codesourcery.com>
3796
3797         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_C_HARD_REGISTER
3798         for `register' variables with an asm-specification.
3799
3800 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
3801
3802         * semantics.c (finish_asm_stmt): Mark the output operands
3803         to an asm addressable, if necessary.
3804
3805 2001-07-11  Ben Elliston  <bje@redhat.com>
3806
3807         * Revert this change -- there is a subtle bug.
3808
3809         PR c++/80
3810         * decl.c (finish_enum): New "attributes" argument; pass it to
3811         cplus_decl_attributes.  Use a narrower type if the enum is packed.
3812         * cp-tree.h (finish_enum): Adjust prototype.
3813         * parse.y (enum_head): New non-terminal.
3814         (structsp): Use it. Enums now may be preceded or followed by
3815         optional attributes -- pass their chained tree to finish_enum().
3816         * pt.c (tsubst_enum): Pass NULL_TREE for the new argument.
3817
3818 2001-07-10  Mark Mitchell  <mark@codesourcery.com>
3819
3820         * pt.c (tsubst_decl): Set DECL_CONTEXT for namespace-scope
3821         variables.
3822
3823 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
3824
3825         * semantics.c (cp_expand_stmt): Fix for null
3826         current_function_return_value.
3827
3828 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
3829
3830         * call.c (build_op_delete_call): Initialize fn.
3831         (convert_like_real): Delete conditional.
3832         (joust): Initialize *w and *l.
3833         * class.c: Add prototype for binfo_ctor_vtable.
3834         (get_primary_binfo): Initialize result.
3835         * init.c (build_java_class_ref): Initialize name.
3836
3837 2001-07-09  Erik Rozendaal  <dlr@acm.org>
3838
3839         * typeck.c (unary_complex_lvalue): Do not duplicate the
3840         argument to modify, pre-, or post-increment when used as an
3841         lvalue and when the argument has side-effects.
3842
3843 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
3844
3845         * decl.c (start_decl): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
3846         (start_function): Don't call SET_DEFAULT_DECL_ATTRIBUTES.  Call
3847         cplus_decl_attributes even if attrs is NULL.
3848         * friend.c (do_friend): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
3849
3850 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
3851
3852         * decl.c (grokdeclarator), decl2.c (cplus_decl_attributes): Update
3853         calls to decl_attributes.
3854
3855 2001-07-06  Ira Ruben   <ira@apple.com>
3856
3857         * cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
3858         be DECL_TEMPLATE_RESULT.
3859
3860 2001-07-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3861
3862         * cp-tree.h (copy_template_template_parm): Rename to ...
3863         (bind_template_template_parm): ... here.
3864         * tree.c (copy_template_template_parm): Rename to ...
3865         (bind_template_template_parm): ... here.  Remove the case when
3866         NEWARGS is NULL_TREE.
3867         (copy_tree_r): Don't copy TEMPLATE_TEMPLATE_PARM and
3868         BOUND_TEMPLATE_TEMPLATE_PARM.
3869         * pt.c (lookup_template_class): Adjust.
3870
3871 2001-07-05  Jason Merrill  <jason_merrill@redhat.com>
3872
3873         * cvt.c (convert_lvalue): New fn.
3874         * cp-tree.h: Declare it.
3875         * method.c (do_build_assign_ref): Use it.
3876         (do_build_copy_constructor): Convert parm to base types
3877         before calling base constructors.
3878
3879         * typeck.c (check_return_expr): Check DECL_ALIGN instead of
3880         DECL_USER_ALIGN.  Check flag_elide_constructors instead of
3881         optimize.
3882         * semantics.c (cp_expand_stmt): Don't destroy the named return value.
3883
3884 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
3885
3886         * optimize.c (optimize_inline_calls): New function, broken out
3887         of ...
3888         (optimize_function): ... here. Call it. Don't inline if it is
3889         a thunk.
3890         (dump_function): Print name of dump flag causing this dump.
3891         * semantics.c (expand_body): Move thunk inline check to
3892         optimize_function.
3893
3894 2001-06-29  Joseph S. Myers  <jsm28@cam.ac.uk>
3895
3896         * typeck.c (COMP_TYPE_ATTRIBUTES): Don't define.
3897         (comptypes): Use target.comp_type_attributes.
3898
3899 2001-06-29  Nathan Sidwell  <nathan@codesourcery.com>
3900
3901         * cp-tree.h (flag_dump_class_layout): Remove unneeded declaration.
3902
3903 2001-06-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3904
3905         * error.c (lang_print_error_function): Add a `diagnostic_context *'
3906         parameter. Tweak.
3907
3908 2001-06-27  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
3909
3910         * decl2.c (import_export_class): Update.
3911
3912 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
3913
3914         * error.c (init_error): Adjust settings.
3915
3916 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
3917
3918         * error.c (init_error): Adjust settings.
3919
3920 2001-06-19  Richard Sandiford  <rsandifo@redhat.com>
3921
3922         * except.c (initialize_handler_parm): Expect __cxa_begin_catch to
3923         return pointers to data members by reference rather than by value.
3924
3925 2001-06-18  Jason Merrill  <jason_merrill@redhat.com>
3926
3927         Implement the Named Return Value optimization.
3928         * cp-tree.h (struct cp_language_function): Add x_return_value.
3929         (current_function_return_value): Now a macro.
3930         * decl.c: Don't define it.
3931         (define_label, finish_case_label): Don't clear it.
3932         (init_decl_processing): Don't register it with GC.
3933         * semantics.c (genrtl_finish_function): Don't check it for
3934         no_return_label.  Copy the RTL from the return value to
3935         current_function_return_value and walk, calling...
3936         (nullify_returns_r): ...this new fn.
3937         * typeck.c (check_return_expr): Set current_function_return_value.
3938
3939 2001-06-15  Jason Merrill  <jason_merrill@redhat.com>
3940
3941         * class.c (dfs_accumulate_vtbl_inits): Just point to the base we're
3942         sharing a ctor vtable with.  Merge code for cases 1 and 2.
3943         (binfo_ctor_vtable): New fn.
3944         (build_vtt_inits, dfs_build_secondary_vptr_vtt_inits): Use it.
3945
3946 2001-06-14  Jason Merrill  <jason_merrill@redhat.com>
3947
3948         * class.c (dfs_find_final_overrider): Fix logic.
3949
3950         * class.c (update_vtable_entry_for_fn): Uncomment optimization to use
3951         virtual thunk instead of non-virtual.
3952         (get_matching_virtual): Uncomment.
3953
3954         * pt.c (unify): Don't recurse between the POINTER_TYPE and the
3955         OFFSET_TYPE.  If we're adding cv-quals, the extra ones would be on
3956         PARM, not ARG.
3957
3958 2001-06-14  Nathan Sidwell  <nathan@codesourcery.com>
3959
3960         * class.c (dfs_accumulate_vtbl_inits): For case 2 & 3, make sure
3961         we've not emerged from the hierarchy of RTTI_BINFO on reaching
3962         a non-virtual base.
3963
3964 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
3965
3966         * NEWS: Update release number.
3967
3968 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
3969
3970         PR c++/3130, c++/3131, c++/3132
3971         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
3972         * class.c (force_canonical_binfo_r): Move
3973         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
3974         virtual bases unless they're primary and what they're primary
3975         too has been moved.
3976         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
3977         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
3978         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
3979         derived binfo.
3980         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
3981         (layout_nonempty_base_or_field): Add most derived type
3982         parameter. Adjust.
3983         (layout_empty_base): Likewise.
3984         (build_base_field): Likewise.
3985         (build_base_fields): Likewise.
3986         (propagate_binfo_offsets): Add most derived type
3987         parameter. Skip non canonical virtual bases too.
3988         (dfs_set_offset_for_unshared_vbases): Don't skip primary
3989         bases. Do skip canonical bases.
3990         (layout_virtual_bases): Adjust.
3991         (layout_class_type): Adjust.
3992         (dfs_get_primary_binfo): Build list of virtual primary base
3993         candidates.
3994         (get_primary_binfo): Check that the shared virtual primary
3995         base candidate was found first.
3996         (accumulate_vtbl_inits): Don't do anything for non-vptr
3997         containing binfos. For case 1 primary virtual bases, keep
3998         checking that we've not emerged from the hierarchy of RTTI_BINFO.
3999
4000 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
4001
4002         PR c++/3089
4003         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
4004         hierarchy looking for primary bases for a ctor
4005         vtable. Recursively call oneself, if we meet our primary via
4006         this route and haven't met it yet via inheritance graph order.
4007
4008 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
4009
4010         * lang-options.h: Emit documentation for -fno-honor-std, not
4011         -fhonor-std.
4012
4013 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
4014
4015         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
4016         Don't clobber delta.
4017         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
4018
4019 2001-06-10  Mark Mitchell <mark@codesourcery.com>
4020             Gabriel Dos Reis  <gdr@codesourcery.com>
4021
4022         * Make-lang.in (cp/call.o): Depend on diagnostic.h
4023         (cp/typeck.o): Depend on diagnostic.h
4024         (cp/typeck2.o): Depend on diagnostic.h
4025         (cp/repo.o): Depend on dignostic.h
4026         * typeck.c: #include diagnostic.h
4027         (convert_for_initialization): Remove extern declaration for
4028         warningcount and errorcount.
4029
4030         * call.c: #include diagnostic.h
4031         (convert_like_real): Remove extern declaration for warnincount and
4032         errorcount.
4033
4034         * repo.c: #include diagnostic.h
4035         * typeck2.c: #include diagnostic.h
4036
4037 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
4038
4039         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
4040         in previous change.
4041
4042 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
4043
4044         PR c++/2929
4045         * friend.c (do_friend): Use push_decl_namespace for classes at
4046         namespace scope.
4047
4048 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
4049             Jason Merrill <jason_merrill@redhat.com>
4050
4051         PR c++/3061
4052         * class.c (build_secondary_vtable): Use assert, rather than an error
4053         message.
4054         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
4055         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
4056         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
4057         Don't set BINFO_VTABLE for a primary virtual base.
4058
4059 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
4060
4061         * decl.c (duplicate_decls): Update source position information
4062         when a template function is defined.
4063
4064 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
4065
4066         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
4067
4068 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
4069
4070         PR c++/2914
4071         * decl.c (pushtag): Don't push into a complete type's scope.
4072
4073 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
4074
4075         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
4076         (struct lang_decl_flags): Lose generate_with_vtable_p.
4077         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
4078         * class.c (copy_virtuals): Adjust.
4079         * decl2.c (mark_vtable_entries): Adjust.
4080         * method.c (make_thunk, build_vtable_entry): Adjust.
4081         * class.c (update_vtable_entry_for_fn): Only look as far as the
4082         first defining class.
4083         (build_vtbl_initializer): Put nothing in the slot for a function only
4084         defined in a lost primary virtual base.
4085         (add_vcall_offset_vtbl_entries_1): Use the same code for
4086         the lost primary case and the normal case.
4087         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
4088         (get_vfield_offset, get_derived_offset): Lose.
4089         (dfs_find_final_overrider): Use look_for_overrides_here.
4090         (get_matching_virtual): New fn.
4091         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
4092         not BV_VCALL_INDEX.
4093         * search.c (look_for_overrides_here): Split out from...
4094         (look_for_overrides_r): Here.
4095
4096         * class.c (find_final_overrider): Return error_mark_node on error.
4097
4098         * decl2.c (key_method): #if 0 accidental change.
4099
4100 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4101
4102         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
4103         (build_over_call): Likewise.
4104         * decl.c (grokparms): Likewise.
4105         * pt.c (tsubst_decl): Likewise.
4106         * typeck.c (convert_arguments): Likewise.
4107
4108 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
4109
4110         * semantics.c (begin_class_definition): Robustify.
4111
4112         * pt.c (instantiate_decl): Tell the repository code about the
4113         clones, not the cloned functions.
4114         * repo.c (repo_template_used): Explicitly instantiate the cloned
4115         function, not the clones.
4116
4117 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4118
4119         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
4120         ICS_BAD_FLAG on created conversion.
4121         (compare_ics): Break out rank.
4122
4123 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4124
4125         * decl.c (xref_tag): Remove extraneous %s on dependent name
4126         lookup warning.
4127
4128 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4129
4130         * class.c (layout_vtable_decl): Fix off by one error on
4131         build_index_type.
4132         (build_vtt): Likewise.
4133         (build_ctor_vtbl_group): Likewise.
4134
4135 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4136
4137         * class.c (maybe_indent_hierarchy): New function.
4138         (dump_class_hierarchy_r): Add flags. Dump extra binfo
4139         information, if enabled. Use maybe_indent_hierarchy. Adjust
4140         output format.
4141         (dump_class_hierarchy): Adjust prototype. Adjust output format.
4142         (dump_array, dump_vtable, dump_vtt): New functions.
4143         (finish_struct_1): Adjust hierarchy dumping.
4144         (initialize_vtable): Call dump_vtable.
4145         (build_vtt): Call dump_vtt.
4146         (build_ctor_vtbl_group): Call dump_vtable.
4147         * decl2.c (flag_dump_class_layout): Remove.
4148         (cxx_decode_option): Remove dump translation unit
4149         and dump class hierarchy check. Call dump_switch_p.
4150         (finish_file): Adjust dumping.
4151         (dump.c): Only dump base classes if not TDF_SLIM.
4152         Only dump namespace members if not TDF_SLIM.
4153         * optimize.c (dump_function): New function.
4154         (optimize_function): Call dump_function.
4155         * semantics.c (expand_body): Use dump_enabled_p.
4156
4157 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
4158
4159         PR g++/2936
4160         Part missed from first commit
4161         * decl2.c (finish_anon_union): Copy context.
4162
4163 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
4164
4165         PR g++/2936
4166         * optimize.c (remap_decl): Remap anonymous aggregate members too.
4167
4168 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
4169
4170         PR g++/2823
4171         * semantics.c (expand_body): Don't optimize thunks.
4172
4173 2001-05-25  Sam TH  <sam@uchicago.edu>
4174
4175         * cp-tree.h lex.h: Fix header include guards.
4176
4177 2001-05-25  Mark Mitchell <mark@codesourcery.com>
4178
4179         * decl.c (init_decl_processing): Tweak.
4180
4181 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
4182
4183         * decl.c (duplicate_decls): Tidy.
4184         (init_decl_processing): Always set flag_no_builtin.
4185
4186 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
4187
4188         PR c++/2184
4189         * decl2.c (do_local_using_decl): Push the decls, even in a
4190         template.
4191
4192 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
4193
4194         * optimize.c (initialize_inlined_parameters): Don't set
4195         TREE_READONLY for a VAR_DECL taking the place of an inlined
4196         PARM_DECL.
4197
4198 2001-05-22  Jason Merrill  <jason_merrill@redhat.com>
4199
4200         * class.c, cp-tree.h, rtti.c: Remove com_interface attribute support.
4201         * tree.c (cp_valid_lang_attribute): Warn about use of com_interface
4202         attribute.
4203
4204 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
4205
4206         * parse.y: Refer to compound literals as such, not as
4207         constructor-expressions.
4208
4209 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
4210
4211         * call.c (build_op_delete_call): Ignore exception-specifications
4212         when looking for matching delete operators.
4213         * init.c (build_new_1): Compute whether or not the allocation
4214         function used is a placement allocation function or not, and
4215         communicate this information to build_op_delete_call.
4216
4217 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
4218
4219         * class.c (build_vtable_entry_ref): Lose vtbl parm.  Fix for new abi.
4220         (build_vtbl_ref): Adjust.
4221         (dfs_accumulate_vtbl_inits): Set TREE_CONSTANT on the vtable address.
4222         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
4223         Re-add vtable-gc.
4224         (unsupported_options): Correspondingly.
4225
4226         * decl2.c (maybe_make_one_only): Check flag_weak, not
4227         supports_one_only().
4228
4229         * cp-tree.def (START_CATCH_STMT): Lose.
4230         * dump.c (cp_dump_tree): Don't dump it.  Do dump HANDLER_PARMS.
4231         * tree.c (cp_statement_code_p): Don't case it.
4232         * semantics.c (cp_expand_stmt): Likewise.
4233         * cp-tree.h (START_CATCH_TYPE): Lose.
4234         (HANDLER_TYPE): New.
4235         * except.c (expand_start_catch_block): Don't start any blocks.
4236         Return the type.
4237         (expand_end_catch_block): Don't end any blocks.
4238         * parse.y (handler): Don't pass anything from finish_handler_parms
4239         to finish_handler.
4240         * pt.c (tsubst_expr): Likewise.
4241         * semantics.c (begin_handler): Call note_level_for_catch here.
4242         (finish_handler_parms): Don't return anything.
4243         (genrtl_catch_block, begin_catch_block): Lose.
4244         (genrtl_handler): Call expand_start_catch here.
4245
4246 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
4247
4248         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
4249         (get_vtable_decl, build_vtt): Not here.
4250
4251 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
4252
4253         PR c++/2781
4254         * optimize.c (update_cloned_parm): Copy addressability and other
4255         flags.
4256
4257 2001-05-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4258
4259         * pt.c (determine_specialization): Ignore artificial functions.
4260
4261 2001-05-20  Neil Booth  <neil@daikokuya.demon.co.uk>
4262
4263         * cp-tree.h (struct lang_identifier, C_RID_YYCODE): Update.
4264         (C_RID_CODE): Remove.
4265         * lex.c (cxx_init_options): Call set_identifier_size.  Update.
4266         (init_parse): Don't do it here.
4267
4268 2001-05-18  Diego Novillo  <dnovillo@redhat.com>
4269
4270         * decl2.c (finish_objects): Use the original SYMBOL_REF from the
4271         function declaration to avoid stripping the symbol's attributes.
4272
4273 2001-05-18  Nathan Sidwell  <nathan@codesourcery.com>
4274
4275         * decl.c (pushdecl): Adjust error string.
4276         (xref_tag): Adjust friend class injection warning. Remove the
4277         inherited name from the class shadowed scope.
4278
4279 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
4280
4281         * except.c (cp_protect_cleanup_actions): New function.
4282         (init_exception_processing): Don't set protect_cleanup_actions
4283         here.  Do set lang_protect_cleanup_actions.
4284
4285 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
4286
4287         * spew.c (read_token): Call yyerror on all unexpected tokens.
4288
4289 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
4290
4291         * init.c (member_init_ok_or_else): Take a tree rather than
4292         string for name.
4293         (expand_member_init): Adjust.
4294
4295 2001-05-14  Nick Clifton  <nickc@cambridge.redhat.com>
4296
4297         * decl.c (duplicate_decls): Suppress warning about duplicate
4298         decls if the first decl is a friend.
4299
4300 2001-05-12  Zack Weinberg  <zackw@stanford.edu>
4301
4302         * except.c (choose_personality_routine): Export.  Add
4303         explanatory comment.  Take an enum languages, not a boolean.
4304         (initialize_handler_parm): Adjust to match.
4305         * cp-tree.h: Prototype choose_personality_routine.
4306         * lex.c (handle_pragma_java_exceptions): New function.
4307         (init_cp_pragma): Register #pragma GCC java_exceptions.
4308
4309 2001-05-12  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4310
4311         * method.c (build_mangled_C99_name): Remove unused prototype.
4312
4313 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
4314
4315         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
4316         * typeck.c (get_member_function_from_ptrfunc,
4317         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
4318         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
4319
4320         Reverted Geoff Keating's 2001-05-03's patch.
4321
4322 2001-05-11  Ira Ruben   <ira@apple.com>
4323
4324         * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
4325
4326 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
4327
4328         * cp-tree.h (finish_label_expr, lookup_label): Delete.
4329         * parse.y: Update for '&&'; don't issue warning here.
4330         * semantics.c (finish_label_expr): Delete.
4331
4332 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
4333
4334         * splay-tree.h (splay_tree_max): New function.
4335         (splay_tree_min): Likewise.
4336
4337 2001-05-03  Geoffrey Keating  <geoffk@redhat.com>
4338
4339         * cp-tree.h (enum cp_tree_index): Add CPTI_PFN_VFLAG_IDENTIFIER.
4340         (pfn_vflag_identifier): Define.
4341         Update comment about layout of pointer functions.
4342         (build_ptrmemfunc1): Update prototype.
4343         (expand_ptrmemfunc_cst): Update prototype.
4344         * decl.c (initialize_predefined_identifiers): Initialize
4345         pfn_vflag_identifier.
4346         (build_ptrmemfunc_type): When FUNCTION_BOUNDARY < 16, add
4347         an extra field to the type.
4348         * expr.c (cplus_expand_constant): Pass 'flag' between
4349         expand_ptrmemfunc_cst and build_ptrmemfunc1.
4350         * typeck.c (get_member_function_from_ptrfunc): When
4351         FUNCTION_BOUNDARY < 16, look at additional field to determine
4352         if a pointer-to-member is a real pointer or a vtable offset.
4353         (build_ptrmemfunc1): Add new parameter to contain extra field.
4354         (build_ptrmemfunc): Pass the extra field around.
4355         (expand_ptrmemfunc_cst): Add new parameter to return extra field.
4356         (pfn_from_ptrmemfunc): Ignore the extra field.
4357
4358 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
4359
4360         * cp-tree.h (flag_inline_trees): Update documentation.
4361         * decl.c (init_decl_processing): Adjust handling of
4362         flag_inline_functions and flag_inline_trees to support -O3.
4363         (grokfndecl): Set DECL_INLINE on all functions if that's what
4364         the user requested.
4365         (save_function_data): Clear DECL_INLINE in
4366         current_function_cannot_inline is non-NULL.
4367         * decl2.c (flag_inline_trees): Update documentation.
4368
4369 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
4370
4371         * dump.c (cp_dump_tree, USING_STMT case): New case.
4372         * tree.c (cp_statement_code_p): Add USING_STMT.
4373         * decl2.c (do_using_directive): Add the using directive statement.
4374
4375         * tree.c (walk_tree): Reformat an if block.
4376
4377 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
4378
4379         * decl.c (compute_array_index_type): Don't try to do anything with
4380         the indices when processing a template.
4381
4382 2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4383
4384         * call.c: NULL_PTR -> NULL.
4385         * class.c: Likewise.
4386         * cvt.c: Likewise.
4387         * decl.c: Likewise.
4388         * decl2.c: Likewise.
4389         * except.c: Likewise.
4390         * init.c: Likewise.
4391         * rtti.c: Likewise.
4392         * search.c: Likewise.
4393         * tree.c: Likewise.
4394         * typeck.c: Likewise.
4395         * typeck2.c: Likewise.
4396
4397 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
4398
4399         * decl2.c (do_using_directive): Revert previous patch.
4400
4401 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4402
4403         * cp-tree.def (USING_STMT): New statement node.
4404         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
4405         * decl2.c (do_using_directive): Add USING_STMT to statement
4406         tree. Don't emit errors when processing template decl.
4407         * pt.c (tsubst_expr, USING_STMT case): New case.
4408         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
4409
4410 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4411
4412         * call.c (build_new_op): Convert args from reference here.
4413         (build_conditional_expr): Don't convert here.
4414
4415 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4416
4417         * spew.c (last_token_id): New static variable.
4418         (read_token): Set it here.
4419         (yyerror): Use it here.
4420
4421 2001-04-30  Richard Henderson  <rth@redhat.com>
4422
4423         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
4424         * decl.c: Likewise.
4425
4426 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
4427
4428         * gxxint.texi: Remove.
4429         * Make-lang.in: Remove all traces of gxxint.texi.
4430
4431 Mon Apr 30 16:14:10 2001  Mark P Mitchell  <mark@codesourcery.com>
4432
4433         * decl2.c (start_static_initialization_or_destruction): Correct
4434         logic to handle the -fno-use-cxa-atexit case.
4435
4436 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
4437
4438         * optimize.c (update_cloned_parm): New function.
4439         (maybe_clone_body): Use it.  Update the `this' parameter too.
4440
4441 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
4442
4443         * decl2.c (unsupported_options): Add new-abi.
4444         * lang-options.h: Remove no longer supported options.
4445
4446 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4447
4448         * except.c (can_convert_eh): Don't check template parms,
4449         typename types etc.
4450
4451 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4452
4453         * optimize.c (maybe_clone_body): Copy parameter names and locations.
4454
4455 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4456
4457         * cp-tree.h (adjust_clone_args): Prototype new function.
4458         * class.c (adjust_clone_args): New function.
4459         * decl.c (start_function): Call it for in charge ctors.
4460
4461 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
4462
4463         * method.c (use_thunk): Make sure that thunks really are emitted
4464         when requested.
4465
4466 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
4467
4468         * mangle.c (write_chars): New macro.
4469         (hwint_to_ascii): New function
4470         (write_number): Use it.
4471         (write_integer_cst): Deal with really big numbers.
4472
4473 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
4474
4475         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
4476         the clone.
4477
4478 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
4479
4480         * decl.c (grokdeclarator): Set context of namespace scope
4481         TYPE_DECLS.
4482
4483 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
4484
4485         * cp/optimize.c: Include hashtab.h.
4486         (struct inline_data): Add tree_pruner.
4487         (expand_call_inline, expand_calls_inline): Use it when calling
4488         walk_tree.
4489         (optimize_function): Initialize and free tree_pruner.
4490
4491 2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
4492
4493         Lazy __FUNCTION__ generation.
4494         * cp-tree.def (FUNCTION_NAME): Remove.
4495         * cp-tree.h (function_name_declared_p): Remove.
4496         (cp_fname_init): Prototype.
4497         * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
4498         don't call declare_function_name. Call start_fname_decls.
4499         (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
4500         clobber the line number.
4501         (cp_fname_init): New function.
4502         (start_function): Call start_fname_decls.
4503         (finish_function): Call finish_fname_decls.
4504         * lex.c (reswords): Add slots for __FUNCTION__ et al.
4505         (rid_to_yy): Add mappings for __FUNCTION__ et al.
4506         * optimize.c (maybe_clone_body): Remove function_name_declared_p.
4507         * parse.y (VAR_FUNC_NAME): New token.
4508         (primary): Add VAR_FUNC_NAME.
4509         * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
4510         generation.
4511         (tsubst, FUNCTION_NAME case): Remove.
4512         (tsubst_copy, FUNCTION_NAME case): Remove.
4513         (tsubst_expr, DECL_STMT case): Be careful with a
4514         DECL_PRETTY_FUNCTION_P.
4515         (instantiate_decl): Remove function_name_declared_p.
4516         * semantics.c (begin_compound_statement): Don't call
4517         declare_function_name here.
4518         (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
4519         (finish_translation_unit): Call finish_fname_decls.
4520         (expand_body): Remove function_name_declared_p.
4521         * typeck2.c (digest_init): Allow any ERROR_MARK.
4522
4523 2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
4524
4525         * pt.c (tsubst_decl): Use VOID_TYPE_P.
4526         * semantics.c: Fix some typos.
4527
4528 2001-04-23  Phil Edwards  <pme@sources.redhat.com>
4529
4530         * cp/decl2.c (flag_honor_std):  Always initialize to 1.
4531
4532 2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4533
4534         * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
4535
4536 2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
4537
4538         * except.c (build_throw): Wrap the initialization of the exception
4539         object in a MUST_NOT_THROW_EXPR.
4540         (do_free_exception): #if 0.
4541
4542 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
4543
4544         * cp-tree.h (finish_enum): Change prototype.
4545         * decl.c (finish_enum): Reorganize.
4546         * parse.y (structsp): Adjust calls to finish_enum.
4547
4548 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4549
4550         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
4551         't' case.
4552
4553 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4554
4555         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
4556         (layout_empty_base): Return at end flag.
4557         (build_base_field): Likewise.
4558         (build_base_fields): Likewise.
4559         (layout_virtual_bases): Don't add 1 to eoc value.
4560         (end_of_class): Use full size for empty bases.
4561         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
4562         empty bases. Don't add 1 to eoc value. Only add trailing padding
4563         if we're an empty class with no empty bases.
4564         (dump_class_hierarchy): Dump size and alignment.
4565
4566 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
4567
4568         * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
4569         ICS_BAD_FLAG.
4570
4571 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
4572
4573         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
4574         is found, look first if name does not match the structure name.
4575
4576 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
4577
4578         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
4579         set.
4580         (SET_DECL_LANGUAGE): New macro.
4581         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
4582         (pushdecl): Likewise.
4583         (build_library_fn_1): Likewise.
4584         (build_cp_library_fn): Likewise.
4585         (grokfndecl): Likewise.
4586         (grokvardecl): Mark `extern "C"' variables as having C linkage.
4587         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
4588         * lex.c (retrofit_lang_decl): Likewise.
4589         * mangle.c (mangle_decl_string): Don't mangle the names of
4590         variables declared with C language linkage.
4591         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
4592
4593 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4594
4595         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
4596         flag_access_control from uninitialized storage.
4597
4598 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
4599
4600         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
4601         * mangle.c (write_pointer_to_member_type): Fix mangling of
4602         pointers to cv-qualified member function types.
4603
4604         * init.c (build_delete): Create a SAVE_EXPR for the address if
4605         we're going to use it more than once.
4606
4607 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
4608
4609         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
4610         (expand_ptremfunc_cst): Change prototype.
4611         (delta2_from_ptrmemfunc): Remove.
4612         * expr.c (cplus_expand_constant): Adjust call to
4613         expand_ptrmemfunc_cst.
4614         * typeck.c (build_ptrmemfunc1): Simplify.
4615         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
4616         results in a constant.
4617         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
4618         (delta2_from_ptrmemfunc): Remove.
4619         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
4620
4621 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
4622
4623         * cp-tree.h (decl_namespace_list): New macro.
4624         (struct saved_scope): Add decl_ns_list.
4625         * decl.c (mark_saved_scope): Mark it.
4626         * decl2.c: Lose static decl_namespace_list.
4627         (init_decl2): Don't save it.
4628
4629 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4630
4631         * cp-tree.h (warn_return_type, yylex): Delete redundant
4632         declarations.
4633
4634         * decl.c (current_class_depth, global_namespace): Likewise.
4635
4636         * decl2.c (current_class_depth, flag_gnu_xref): Likewise
4637
4638         * repo.c (flag_use_repository): Likewise.
4639
4640 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4641
4642         * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
4643         set_block, pushdecl, getdecls, gettags, init_decl_processing,
4644         maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
4645         lvalue_or_else, print_lang_statistics, comp_target_types,
4646         unsigned_type, signed_type, signed_or_unsigned_type,
4647         build_function_call, mark_addressable, incomplete_type_error):
4648         Delete redundant declarations.
4649
4650 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
4651
4652         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
4653         (TYPE_ANONYMOUS_P): New macro.
4654         (TAGGED_TYPE_P): New macro.
4655         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
4656         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
4657         * tree.c (no_linkage_helper): Likewise.
4658         * semantics.c (begin_class_definition): Likewise.
4659         * pt.c (convert_template_argument): Likewise.
4660         * lex.c (check_for_missing_semicolon): Likewise.
4661
4662 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
4663
4664         * class.c (dfs_unshared_virtual_bases): New function.
4665         (mark_primary_bases): Call it.
4666         (check_bases): Ignore virtual bases when determining
4667         nearly-emptiness.
4668
4669 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
4670
4671         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
4672
4673 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
4674
4675         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
4676         cloned function to the clone.
4677
4678 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4679
4680         * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
4681
4682         * semantics.c: Include expr.h.
4683
4684 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
4685
4686         * method.c (implicitly_declare_fn): Commonize code for copy ctor
4687         and assignment op. Set TREE_USED for parameter.
4688
4689 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
4690
4691         * class.c (find_final_overrider_data): Add `candidates'.
4692         (dfs_find_final_overrider): Don't issue error messages
4693         prematurely.
4694         (find_final_overrider): Issue error messages here.
4695         (build_base_field): Don't warn about amgibuous direct bases here.
4696         (warn_about_ambiguous_direct_bases): New function.
4697         (layout_class_type): Use it.
4698
4699 2001-04-10  Richard Henderson  <rth@redhat.com>
4700
4701         * typeck.c (build_array_ref): Push the array reference inside
4702         COMPOUND_EXPR and COND_EXPR.
4703
4704 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
4705
4706         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
4707         * decl.c (duplicate_decls): Adjust accordingly.
4708         (maybe_commonize_var): Likewise.
4709         (grokfndecl): Likewise.
4710         (start_function): Likewise.
4711         (start_method): Likewise.
4712         * decl2.c (key_method): Likewise.
4713         (import_export_decl): Likewise.
4714         * method.c (implicitly_declare_fn): Likewise.
4715         * optimize.c (maybe_clone_body): Likewise.
4716
4717 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
4718
4719         * lang-specs.h: Add __DEPRECATED.
4720
4721 Thu Apr  5 16:54:29 2001  J"orn Rennecke <amylaar@redhat.com>
4722
4723         * search.c (get_dynamic_cast_base_type): When building a new
4724         constant, set its type to ssizetype.
4725
4726 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
4727
4728         * optimize.c (expand_call_inline): Only add newly inlined statements
4729         into inlined_stmts.
4730
4731 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
4732
4733         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
4734         (OPERATOR_FORMAT): Likewise.
4735         (OPERATOR_TYPENAME_FORMAT): Likewise.
4736         * operators.def: Remove old name-mangling information.
4737         * decl.c (grok_op_properties): Adjust accordingly.
4738         * lex.c (init_operators): Likewise.
4739         * rtti.c (get_tinfo_decl): Issue error messages about types that
4740         have variable size.
4741
4742 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
4743
4744         * decl2.c (import_export_decl): Don't call import_export_class
4745         when processing an inline member function.
4746         * semantics.c (expand_body): Call import_export_decl before
4747         emitting inline functions.
4748
4749 2001-03-28  Richard Henderson  <rth@redhat.com>
4750
4751         IA-64 ABI Exception Handling:
4752         * cp-tree.def (EH_SPEC_BLOCK): New.
4753         (MUST_NOT_THROW_EXPR): New.
4754         * cp-tree.h: Update changed function declarations.
4755         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
4756         (CPTI_CALL_UNEXPECTED): New.
4757         (struct cp_language_function): Rename x_eh_spec_try_block
4758         to x_eh_spec_block.
4759         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
4760         * decl.c (current_binding_level): If no current function
4761         bindings, revert to scope_chain.
4762         (initialize_predefined_identifiers): Remove __cp_push_exception.
4763         (store_parm_decls): Use begin_eh_spec_block.
4764         (finish_function): Use finish_eh_spec_block.
4765         (mark_lang_function): Update for name changes.
4766         * decl2.c (finish_file): No mark_all_runtime_matches.
4767         * dump.c (cp_dump_tree): Handle new tree codes.
4768         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
4769         * except.c (catch_language_init, catch_language): Remove.
4770         (init_exception_processing): Don't set language code.
4771         Initialize call_unexpected_node, protect_cleanup_actions,
4772         eh_personality_libfunc, lang_eh_runtime_type.
4773         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
4774         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
4775         (prepare_eh_type): Split out type canonicalizations ...
4776         (build_eh_type_type): ... from here.
4777         (build_eh_type_type_ref): Remove.
4778         (mark_all_runtime_matches): Remove.
4779         (build_exc_ptr): New.
4780         (do_begin_catch, do_end_catch): New.
4781         (do_pop_exception): Remove.
4782         (build_terminate_handler): Remove.
4783         (choose_personality_routine): Split out language choice from ...
4784         (initialize_handler_parm): ... here.
4785         Use MUST_NOT_THROW_EXPR.
4786         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
4787         exception object handling.
4788         (expand_start_eh_spec, expand_end_eh_spec): Remove.
4789         (expand_exception_blocks, alloc_eh_object): Remove.
4790         (begin_eh_spec_block, finish_eh_spec_block): New.
4791         (do_allocate_exception, do_free_exception): New.
4792         (expand_throw): Merge into ...
4793         (build_throw): ... here.  Update for abi.
4794         * expr.c (cplus_expand_expr): No expand_internal_throw.
4795         Handle MUST_NOT_THROW_EXPR.
4796         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
4797         * semantics.c (*) Update for except.h name changes.
4798         (genrtl_try_block): No protect_with_terminate.
4799         (genrtl_eh_spec_block): New.
4800         (genrtl_handler): Don't emit the goto here.
4801         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
4802         (genrtl_finish_function): Don't expand_exception_blocks.
4803         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
4804
4805 2001-03-28  Richard Henderson  <rth@redhat.com>
4806
4807         * decl.c (struct named_label_list): Rename eh_region to
4808         in_try_scope, add in_catch_scope.
4809         (struct binding_level): Rename eh_region to is_try_scope,
4810         add is_catch_scope.
4811         (note_level_for_try): Rename from note_level_for_eh.
4812         (note_level_for_catch): New.
4813         (poplevel): Copy both is_try_scope and is_catch_scope to
4814         the named_label_list struct.
4815         (check_previous_goto_1): Don't check for catch block via
4816         DECL_ARTIFICIAL; use in_try_scope instead.
4817         (check_goto): Likewise.
4818         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
4819         * except.c (expand_start_catch_block): Call note_level_for_catch.
4820         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
4821
4822 2001-03-27  Richard Henderson  <rth@redhat.com>
4823
4824         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
4825         exceptions_via_longjmp.
4826
4827 2001-03-27  Phil Edwards  <pme@sources.redhat.com>
4828
4829         * pt.c (check_default_tmpl_args):  Make error messages clearer.
4830
4831 2001-03-26  Phil Edwards  <pme@sources.redhat.com>
4832
4833         * error.c:  Also undefine 'A' macro used for cp_printers definition.
4834
4835 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4836
4837         * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
4838
4839 2001-03-26  Mike Yang <yang@research.att.com>
4840             Mark Mitchell  <mark@codesourcery.com>
4841
4842         * dump.c (dump_access): New function.
4843         (cp_dump_tree): Use it.  Dump basetype information for class
4844         types.
4845
4846 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
4847
4848         * Makefile.in (optimize.o): Depend on params.h.
4849         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
4850         (init_decl_processing): Set flag_no_inline when doing
4851         inlining-on-trees.
4852         * optimize.c: Include params.h.
4853         (struct inline_data): Improve documentation of FNS.  Add
4854         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
4855         (INSNS_PER_STMT): New macro.
4856         (remap_block): Use CLONING_P.
4857         (inlinable_function_p): Don't inline big functions.
4858         (expand_call_inline): Keep track of how much inlining we've done.
4859         (optimize_function): Set FIRST_INLINED_FN.
4860         (maybe_clone_body): Set CLONING_P.
4861         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
4862         tree nodes.
4863         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
4864         rest_of_compilation.  Clear DECL_RTL for local variables
4865         afterwards.
4866         (clear_decl_rtl): New function.
4867
4868 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
4869
4870         Implement DR 209
4871         * cp-tree.h (skip_type_access_control,
4872         reset_type_access_control): Prototype.
4873         * decl.c (grokdeclarator): Access of friends is not checked.
4874         * parse.y (component_decl_list): Reset type access control.
4875         * semantics.c (decl_type_access_control): Clear
4876         current_type_lookups.
4877         (save_type_access_control): Don't save if not deferring.
4878         (skip_type_access_control, reset_type_access_control): New
4879         functions.
4880         (begin_class_definition): Do type access control for basetypes.
4881         Start deferred access control.
4882         (finish_class_definition): Resume immediate access control if
4883         this is a local class.
4884
4885 2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4886
4887         * class.c (add_method): Use memcpy/memmove, not bcopy.
4888
4889         * decl.c (duplicate_decls): Likewise.
4890
4891 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
4892
4893         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
4894         not `_'.
4895
4896 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
4897
4898         * decl.c (local_names): Define.
4899         (push_local_name): New.
4900         (grok_reference_init): Return init if initializing static reference
4901         variable with non-constant instead of emitting it.
4902         Move expand_static_init call to cp_finish_decl.
4903         (layout_var_decl): Call push_local_name.
4904         (maybe_commonize_var): Allow inlining functions even if they have
4905         static local variables, use comdat_linkage for them if flag_weak.
4906         (check_initializer): Call obscure_complex_init if
4907         grok_reference_init returned non-zero.
4908         (save_function_data): Clear x_local_names.
4909         (pop_cp_function_context): Free x_local_names.
4910         (mark_inlined_fns): Remove.
4911         (mark_lang_function): Mark x_local_names.
4912         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
4913         Mark inlined_fns as tree, remove call to mark_inlined_fns.
4914         * class.c (alter_access): Ensure DECL_ACCESS is never set if
4915         DECL_DISCRIMINATOR_P.
4916         * cp-tree.h (cp_language_function): Add x_local_names.
4917         (lang_decl_flags): Add discriminator into u2.
4918         (lang_decl_inlined_fns): Remove.
4919         (lang_decl): inlined_fns is now a TREE_VEC.
4920         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
4921         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
4922         TREE_VEC, not a custom structure.
4923         (optimize_function): Likewise.
4924         * mangle.c (discriminator_for_local_entity): Discriminate among
4925         VAR_DECL local entities.
4926         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
4927         is not valid.
4928
4929 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
4930
4931         Add support for Java interface method calls.
4932         * cp-tree.h (struct lang_type): Add java_interface flag.
4933         (TYPE_JAVA_INTERFACE): New macro.
4934         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
4935         by setting TYPE_JAVA_INTERFACE.
4936         * call.c (java_iface_lookup_fn): New static.
4937         (build_over_call): If calling a method declared in a
4938         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
4939         expression which resolves the function address.
4940         (build_java_interface_fn_ref): New function.
4941
4942 2001-03-22  Richard Henderson  <rth@redhat.com>
4943
4944         * Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
4945         * except.c: Don't include it.
4946
4947 2001-03-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
4948             based on an idea from Joe Buck <jbuck@synopsys.com>
4949
4950         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
4951         New nonterminals.
4952         (data_def, component_decl): Add reductions to bad_decl.
4953
4954 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
4955
4956         * method.c (do_build_assign_ref): Don't use build_modify_expr for
4957         anonymous aggregates, since they don't have assignment operator
4958         method.
4959         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
4960         assignment operators for anonymous structure fields.
4961
4962 2001-03-21  Jason Merrill  <jason@redhat.com>
4963
4964         * pt.c (instantiate_decl): Abort if we see a member constant
4965         instantiation that doesn't already have its initializer.
4966         Downgrade explicit instantiation without definition to pedwarn.
4967
4968         * cp-tree.h (DECL_TINFO_FN_P, SET_DECL_TINFO_FN_P): Remove.
4969         * class.c (build_vtable_entry): Don't check DECL_TINFO_FN_P.
4970         (import_export_decl): Check tinfo_decl_p, not DECL_TINFO_FN_P.
4971
4972         * cp-tree.h (CLASSTYPE_VTABLE_NEEDS_WRITING): Remove.
4973         (pending_vtables): Remove.
4974         * decl2.c (pending_vtables): Remove.
4975         (import_export_vtable): Use CLASSTYPE_INTERFACE_ONLY, not
4976         CLASSTYPE_VTABLE_NEEDS_WRITING.
4977         (import_export_class): Likewise.
4978         (init_decl2): Don't mark pending_vtables.
4979         * lex.c (handle_pragma_vtable): Just sorry.
4980         * pt.c (instantiate_class_template): Don't mess with
4981         CLASSTYPE_VTABLE_NEEDS_WRITING.
4982         (mark_class_instantiated): Likewise.
4983         * ptree.c (print_lang_type): Don't print it.
4984         * semantics.c (begin_class_definition): Don't set it.
4985
4986         * pt.c (template_tail): Replace with last_pending_template.
4987         (maybe_templates, maybe_template_tail): Remove.
4988         (add_pending_template): Adjust.
4989         (instantiate_pending_templates): Adjust.
4990
4991         * cp-tree.h (struct saved_scope): Remove lang_stack field.
4992         (current_lang_stack): Remove.
4993         * decl.c (maybe_push_to_top_level): Don't initialize it.
4994         (duplicate_decls): Use current_lang_depth.
4995         (xref_basetypes): Likewise.
4996         * class.c (current_lang_depth): New fn.
4997         (push_lang_context): Use more varray functionality.
4998         (pop_lang_context): Likewise.
4999
5000         * error.c (GLOBAL_THING): Always use '__'.
5001
5002 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
5003
5004         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
5005
5006         * mangle.c (mangle_decl_string): Mangle the names of overloaded
5007         operators, even when they have `extern "C"' linkage.
5008
5009 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
5010
5011         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
5012         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5013         where it's not necessary.
5014         (add_method): Remove optimization involving comparison of
5015         DECL_ASSEMBLER_NAME.
5016         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
5017         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5018         where it's not necessary.
5019         (check_methods): Likewise.
5020         (build_clone): Likewise.
5021         (built_vtt): Likewise.
5022         * cp-tree.h (DECL_NEEDED_P): Likewise.
5023         * decl.c (pushtag): Likewise.
5024         (duplicate_decls): Likewise.
5025         (pushdecl): Likewise.
5026         (builtin_function): Likewise.
5027         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
5028         (build_cp_library_fn): Likewise.
5029         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
5030         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5031         where it's not necessary.
5032         (make_rtl_for_nonlocal_decl): Likewise.
5033         (cp_finish_decl): Likewise.
5034         (grokfndecl): Likewise.
5035         (grokvardecl): Likewise.
5036         (grokdeclarator): Likewise.
5037         (start_function): Likewise.
5038         (cp_missing_return_ok_p): Likewise.
5039         * decl2.c (grokclassfn): Likewise.
5040         (check_classfn): Likewise.
5041         (finish_static_data_member_decl): Likewise.
5042         (grokfield): Likewise.
5043         * error.c (GLOBAL_IORD_P): Remove.
5044         (dump_global_iord): Improve output.
5045         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
5046         * except.c (nothrow_libfn_p): Summarily reject any function not in
5047         namespace-scope.
5048         * init.c (build_java_class_ref): Don't explicitly set
5049         DECL_ASSEMBLER_NAME after calling mangle_decl.
5050         * mangle.c (mangle_decl_string): Handle extern "C" functions.
5051         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
5052         * method.c (set_mangled_name_for_decl): Don't explicitly set
5053         DECL_ASSEMBLER_NAME after calling mangle_decl.
5054         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
5055         IDENTIFIER_GLOBAL_VALUE for the thunk.
5056         * pt.c (set_mangled_name_for_template_decl): Remove.
5057         (check_explicit_specialization): Don't use it.
5058         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
5059         (tsubst_friend_function): Likewise.
5060         (tsubst_decl): Likewise.
5061         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
5062         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
5063         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
5064         where it's not necessary.
5065         (tinfo_base_init): Likewise.
5066         (create_real_tinfo_var): Likewise.
5067         * search.c (looup_field_1): Likewise.
5068         * semantics.c (finish_named_return_value): Likewise.
5069         * tree.c (init_tree): Set lang_set_decl_assembler_name.
5070
5071 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
5072
5073         Correct semantics restrictions checking in throw-expression.
5074         * except.c (is_admissible_throw_operand): New function.
5075         (build_throw): Use it.
5076
5077 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
5078
5079         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
5080         and its ilk.
5081
5082 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
5083
5084         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5085         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
5086         * decl.c (duplicate_decls): Likewise.
5087         (builtin_function): Likewise.
5088         (build_library_fn): Likewise.
5089         (build_cp_library_fn): Likewise.
5090         (check_initializer): Likewise.
5091         (cp_finish_decl): Likewise.
5092         * decl2.c (grokfield): Likewise.
5093         (grok_function_init): Remove #if 0'd code.
5094         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5095         * friend.c (do_friend): Likewise.
5096         * init.c (get_temp_regvar): Likewise.
5097         * method.c (make_thunk): Likewise.
5098         * pt.c (tsubst_friend_function): Likewise.
5099         (tsubst_decl): Likewise.
5100         (regenerate_decl_from_template): Likewise.
5101         * semantics.c (genrtl_named_return_value): Likewise.
5102         (expand_body): Likewise.
5103         (genrtl_finish_function): Likewise.
5104         * tree.c (cp_tree_equal): Likewise.
5105
5106 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
5107
5108         * call.c (convert_like_real): Add extra semantics to INNER
5109         parameter. Don't convert to temporary if a user conversion
5110         gives us an lvalue that we're about to bind to a reference.
5111         Set INNER to indicate pending reference binding on recursive
5112         calls.
5113
5114 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5115
5116         * cp/lex.c: Delete duplicate pending_lang_change.
5117
5118 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5119
5120         * cp/lex.c (handle_pragma_interface, handle_pragma_implementation):
5121         Similarly.
5122         * cp/repo.c (get_base_filename, open_repo_file): Similarly.
5123         * cp/cp-tree.h: Remove file_name_nondirectory prototype.
5124
5125 2001-03-09  Zack Weinberg  <zackw@stanford.edu>
5126
5127         * Make-lang.in: Add dependencies on $(TM_P_H) as appropriate.
5128
5129 2001-03-08  Stan Shebs  <shebs@apple.com>
5130
5131         * cp-tree.h (set_identifier_local_value): Remove unused decl.
5132
5133 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
5134
5135         * spew.c: Remove references to CPP_OSTRING.
5136
5137 2001-03-06  Andrew Haley  <aph@redhat.com>
5138
5139         * typeck.c (convert_arguments): Check that we have an fndecl.
5140
5141 2001-03-05  Andrew Haley  <aph@redhat.com>
5142
5143         * typeck.c (convert_arguments): Don't do ellipsis conversion for
5144         __built_in_constant_p.
5145
5146 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5147
5148         * typeck.c (build_static_cast): Allow enum to enum conversions
5149         as per DR 128.
5150
5151 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5152
5153         * class.c (check_field_decls): Pointers to member do not a
5154         non-pod struct make, as per DR 148.
5155
5156 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5157
5158         * call.c (joust): cp_pedwarn when using gnu extension concerning
5159         worst conversion sequences.
5160
5161 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
5162
5163         * decl.c: Replace all uses of 'boolean' with 'bool'.
5164
5165 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
5166
5167         * lang-specs.h: Add zero initializer for cpp_spec field to
5168         all array elements that need one.  Don't put an #ifdef inside
5169         the initializer list; set a default for CPLUSPLUS_CPP_SPEC and
5170         use it.
5171
5172 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5173
5174         Implement using decls inside template functions.
5175         * decl2.c (validate_nonmember_using_decl): Don't special case
5176         fake_std_node in the global namespace. Don't reject early when
5177         processing a template.
5178         (do_local_using_decl): Add to statement tree. Don't do further
5179         processing when building a template.
5180         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
5181
5182 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5183
5184         * decl2.c (do_nonmember_using_decl): Don't complain if we find
5185         same function. Do complain about ambiguating extern "C"
5186         declarations.
5187
5188 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
5189
5190         Remove floating point and complex type template constant parms.
5191         * pt.c (convert_nontype_argument): Remove REAL_TYPE and
5192         COMPLEX_TYPE extensions.
5193         (invalid_nontype_parm_type_p): Likewise.
5194
5195 2001-02-27  Jeffrey Oldham  <oldham@codesourcery.com>
5196
5197         * except.c (call_eh_info): Revert "match_function"'s type.
5198
5199 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
5200
5201         Fix ctor vtable vcall offsets.
5202         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
5203         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
5204         (get_matching_base): Remove.
5205         (get_original_base): New function.
5206         (build_vtbl_initializer): Initialize vid.rtti_binfo.
5207         Use a virtual thunk for a ctor vtable with an index
5208         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
5209         primary base within a constructor vtable. Only set
5210         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
5211         when primary base has been lost.
5212         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
5213
5214 2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>
5215
5216         * call.c (joust): Ensure more_specialized()'s argument length
5217         parameter has correct value for constructors.
5218
5219 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
5220
5221         * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
5222
5223         * decl.c (mark_inlined_fns): Prototype.
5224
5225 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
5226
5227         * spew.c (yylex): Correct handling of friends.
5228
5229 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
5230
5231         * mangle.c (write_encoding): Pass write_function_type the
5232         FUNCTION_DECL for the function being encoded.
5233         (write_function_type): Pass it along to write_bare_function_type.
5234         (write_bare_function_type): Pass it along to write_method_parms.
5235         (write_method_parms): Don't mangle the compiler-generated
5236         parameters to a constructor or destructor.
5237
5238 2001-02-22  Andreas Jaeger  <aj@suse.de>
5239
5240         * optimize.c: Include toplev.h for
5241         note_deferral_of_defined_inline_function prototype.
5242
5243 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
5244
5245         * cp-tree.h (struct lang_decl_inlined_fns): New.
5246         (struct lang_decls): Add inlined_fns.
5247         (DECL_INLINED_FNS): New macro.
5248         * optimize.c (struct inline_data): Add inlined_fns.
5249         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
5250         (inlinable_function_p): Likewise, fix typo in comment,
5251         function is not inlinable if it already inlined function currently
5252         being optimized.
5253         (expand_call_inline): Add fn to inlined_fns if necessary.
5254         (optimize_function): Initialize inlined_fns.
5255         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
5256         * decl.c (mark_inlined_fns): New function.
5257         (lang_mark_tree): Call it.
5258
5259 2001-02-21  Jason Merrill  <jason@redhat.com>
5260
5261         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
5262         (DECL_UNINLINABLE): Move to middle-end.
5263
5264         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
5265         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
5266         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
5267         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
5268         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
5269
5270         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
5271         second parm of op=.
5272
5273 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
5274
5275         * decl2.c (set_decl_namespace): Allow explicit instantiations in
5276         any namespace.
5277
5278 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5279
5280         * optimize.c (expand_call_inline): Don't walk subtrees of type
5281         nodes.
5282
5283 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
5284
5285         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
5286         for a destructor.
5287
5288 2001-02-18  Jason Merrill  <jason@redhat.com>
5289
5290         Do put the VTT parameter in DECL_ARGUMENTS.
5291         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
5292         (current_vtt_parm): New macro.
5293         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
5294         (DECL_HAS_VTT_PARM_P): New macro.
5295         (DECL_VTT_PARM): Remove.
5296         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
5297         * decl.c (duplicate_decls): Only copy the operator code if
5298         appropriate.
5299         (start_function): Set current_vtt_parm.
5300         (lang_mark_tree): Don't mark vtt_parm.
5301         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
5302         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
5303         * class.c (build_clone): Maybe remove the VTT parm.
5304         * optimize.c (maybe_clone_body): Set up the VTT parm.
5305         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
5306         * call.c (build_over_call): Just allow the VTT arg.
5307         * method.c (make_thunk): Don't set DECL_VTT_PARM.
5308         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
5309         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
5310         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
5311         * error.c (dump_function_decl): Likewise.
5312         * call.c (build_user_type_conversion_1, convert_like_real): Abort
5313         if we try to call a constructor with in-charge or VTT parms.
5314         * method.c (skip_artificial_parms_for): New fn.
5315         * call.c (add_function_candidate, build_over_call): Call it.
5316         * call.c (build_new_method_call): Use current_vtt_parm.
5317         * init.c (expand_virtual_init): Likewise.
5318         * class.c (same_signature_p): No longer static.
5319         * cp-tree.h: Declare it.
5320         * search.c (look_for_overrides_r): Use it.
5321
5322 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
5323
5324         * cp-tree.h (new_abi_rtti_p): Remove.
5325         (name_mangling_version): Likewise.
5326         (flag_do_squangling): Likewise.
5327         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
5328         * decl.c (grokfndecl): Likewise.
5329         * decl2.c (name_mangling_version): Remove.
5330         (flag_do_squangling): Likewise.
5331         (lang_f_options): Remove `squangle'.
5332         (unsupported_options): Add `squangle'.
5333         (cxx_decode_option): Issue a warning about uses of
5334         -fname-mangling-version.
5335         (finish_file): Remove old ABI support.
5336         * pt.c (check_explicit_specialization): Likewise.
5337         (tsubst_decl): Likewise.
5338         * rtti.c (init_rtti_processing): Likewise.
5339         (build_headof): Likewise.
5340         (get_tinfo_decl_dynamic): Likewise.
5341         (tinfo_from_decl): Likewise.
5342         (build_dynamic_cast_1): Likewise.
5343         (synthesize_tinfo_var): Likewise.
5344         * init.c (build_new): Allow enumeration types for the array-bounds
5345         in a direct-new-declarator.
5346
5347         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
5348
5349         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
5350         TREE_PROTECTED from the template being specialized.
5351
5352 2001-02-17  Jason Merrill  <jason@redhat.com>
5353
5354         * decl2.c (build_artificial_parm): Set TREE_READONLY.
5355
5356         * decl.c (bad_specifiers): Allow throw specs on things with
5357         pointer-to-function or -member-function type.
5358         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
5359         a pmf.
5360
5361 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
5362
5363         * call.c (check_dtor_name): Handle template names correctly.
5364
5365 2001-02-16  Jason Merrill  <jason@redhat.com>
5366
5367         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
5368         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
5369         * optimize.c (maybe_clone_body): Don't substitute it.
5370         * call.c (build_new_method_call): Check in_chrg instead.
5371         * init.c (expand_virtual_init): Likewise.
5372
5373 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
5374
5375         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
5376         class-type introduces at least a type-name.
5377
5378 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
5379
5380         * call.c (convert_like_real): Create a temporary for non-lvalue.
5381
5382 2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>
5383
5384         * cp-tree.h: Fix typos in comments.
5385
5386 2001-02-16  Jason Merrill  <jason@redhat.com>
5387
5388         * optimize.c (remap_block): If we're compiling a clone, pass the
5389         new block to insert_block.
5390
5391 2001-02-16  Mark Mitchell  <mark@codesourcery.com>
5392
5393         * semantics.c (finish_asm_stmt): Robustify.
5394
5395 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
5396
5397         * pt.c (push_template_decl_real): Don't remangle the name of a
5398         class template.
5399
5400 2001-02-15  Jim Meyering  <meyering@lucent.com>
5401
5402         * Make-lang.in (c++.install-common): Depend on installdirs.
5403         (c++.install-info): Likewise.
5404         (c++.install-man): Likewise.
5405
5406 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
5407
5408         * typeck2.c (build_m_component_ref): Robustify.
5409
5410 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
5411
5412         * friend.c (do_friend): Don't take the nested [template] class
5413         into account when deciding whether to warn about the friend
5414         function not referring to a template function.
5415
5416 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
5417
5418         * typeck.c (build_unary_op): Clarify error message.
5419
5420 2001-02-08  Aldy Hernandez  <aldyh@redhat.com>
5421
5422         * parse.y (component_constructor_declarator): allow optional
5423         parentheses around constructor class name.
5424
5425 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5426
5427         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
5428         section.
5429         * init.c (emit_base_init): Remove incorrect comment about
5430         virtual bases.
5431         * method.c (make_thunk): Fix comment alignment.
5432
5433 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5434
5435         Kill remnants of this is variable.
5436         * cp-tree.h (flag_this_is_variable): Remove.
5437         * decl2.c (flag_this_is_variable): Remove.
5438         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
5439         (build_vbase_path): The path is non-static, even in a cdtor.
5440         (resolves_to_fixed_type_p): Add additional return value.
5441         * search.c (init_vbase_pointers): Adjust.
5442         * tree.c (lvalue_p_1): Adjust.
5443         * typeck.c (mark_addressable): Adjust.
5444
5445 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5446
5447         * pt.c (unify): Don't check cv quals of array types.
5448
5449 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5450
5451         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
5452         check whether we already have the type.
5453
5454 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
5455
5456         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
5457         * call.c (build_op_delete_call): Simplify to remove duplicate
5458         code.
5459         * class.c (clone_function_decl): Don't build the deleting variant
5460         of a non-virtual destructor.
5461         * decl.c (finish_destructor_body): Don't call delete if this is a
5462         non-virtual destructor.
5463         * init.c (build_delete): Explicitly call `operator delete' when
5464         deleting an object with a non-virtual destructor.
5465
5466 2001-02-13  Jason Merrill  <jason@redhat.com>
5467
5468         * lang-specs.h: Add more __EXCEPTIONS.
5469
5470 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5471
5472         * typeck2.c (process_init_constructor): Check
5473         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
5474
5475 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5476
5477         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
5478         Remove spurious information in comment. Allow further
5479         adjustments of REFERENCE_TYPE args.
5480
5481 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5482
5483         * errfn.c (cp_deprecated): Tweak diagnostic text.
5484         * parse.y (new_initializer): Deprecate initializer lists
5485         extension.
5486
5487 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
5488
5489         Remove old ABI support.
5490
5491 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
5492
5493         * decl2.c (flag_vtable_thunks): Always set it to 1.
5494         (flag_new_abi): Likewise.
5495         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
5496
5497         * Makefile.in (g++spec.o): Fix typo.
5498
5499 2001-02-09  Jason Merrill  <jason@redhat.com>
5500
5501         * lang-specs.h: Restore definition of __EXCEPTIONS.
5502
5503 2001-02-08  Jason Merrill  <jason@redhat.com>
5504
5505         * search.c (shared_member_p): New function.
5506         (lookup_field_r): Use it.
5507         * cp-tree.h (SHARED_MEMBER_P): Remove.
5508
5509         * method.c (process_overload_item): Handle template-dependent array
5510         bounds.
5511         * pt.c (type_unification_real): If we end up with undeduced nontype
5512         parms, try again.
5513
5514         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
5515         types.
5516
5517         * typeck2.c (friendly_abort): Don't say anything if we have
5518         earlier errors or sorries.
5519
5520         * decl.c (check_tag_decl): Notice attempts to redefine bool and
5521         wchar_t.  Ignore if in_system_header.
5522
5523         * decl.c (maybe_push_cleanup_level): New fn...
5524         (start_decl_1): ...split out from here.
5525         * cvt.c (build_up_reference): Use it.
5526         * cp-tree.h: Declare it.
5527
5528 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
5529
5530         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
5531         spec.
5532
5533 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
5534
5535         * pt.c (lookup_template_class): Make sure it's a primary
5536         template or template_template_parm when called from the parser.
5537         (instantiate_template_class): Add assertion.
5538
5539 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
5540
5541         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
5542         from error_mark_node.
5543
5544 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
5545
5546         Fix specification and implementation bugs in V3 ABI
5547         construction vtables.
5548         * cp-tree.h (flag_dump_class_layout): New flag.
5549         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
5550         (BINFO_LOST_PRIMARY_P): New flag.
5551         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
5552         (BINFO_PRIMARY_MARKED_P): Rename to ...
5553         (BINFO_PRIMARY_P): ... here.
5554         (binfo_via_virtual): New prototype.
5555         * decl2.c (flag_dump_class_layout): New flag.
5556         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
5557         use `=' as a file name separator.
5558         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
5559         bases.
5560         (build_vtbl_address): If this is a virtual primary base, then
5561         get the vtbl of what it is ultimately primary for.
5562         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
5563         for BINFO_PRIMARY_P.
5564         (dfs_skip_nonprimary_vbases_markedp): Likewise.
5565         (get_shared_vbase_if_not_primary): Likewise.
5566         (dfs_get_pure_virtuals): Likewise.
5567         (expand_upcast_fixups): Likewise.
5568         (fixup_virtual_upcast_offsets): Likewise.
5569         (dfs_find_vbase_instance): Likewise.
5570         (find_vbase_instance): Likewise.
5571         (binfo_from_vbase): Adjust comment to reflect reality.
5572         (binfo_via_virtual): New function.
5573         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
5574         for binfo walking during VTT construction.
5575         (dfs_mark_primary_bases): Remove.
5576         (force_canonical_binfo_r): New function.
5577         (force_canonical_binfo): New function.
5578         (mark_primary_virtual_base): New function.
5579         (mark_primary_bases): Walk in inheritance graph order, use
5580         mark_primary_virtual_base.
5581         (determine_primary_base): Use some more intermediate variables.
5582         (dfs_find_final_overrider): Don't check for overriding along a
5583         virtual path.
5584         (dfs_modify_vtables): Walk into primary virtual bases too.
5585         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
5586         (build_base_fields): Likewise.
5587         (dfs_set_offset_for_unshared_vbases): Likewise.
5588         (layout_virtual_bases): Likewise.
5589         (end_of_class): Likewise.
5590         (finish_struct_1): Call dump_class_hierarchy, if requested.
5591         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
5592         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
5593         (dump_class_hierarchy): Add file parameter. Append to file, if
5594         required.
5595         (finish_vtbls): Adjust accumulate_vtbl_inits call.
5596         Use canonical base for virtual bases.
5597         (build_vtt): Add more comments. Adjust build_vtt_inits call.
5598         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
5599         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
5600         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
5601         virtual VTTs.
5602         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
5603         from DATA.  We want virtual primary bases and all bases via virtual.
5604         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
5605         virtual base when not a construction vtable.
5606         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
5607         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
5608         Use canonical bases when processing virtual bases.
5609         (accumulate_vtbl_inits): We're interested in any base via a
5610         virtual path.
5611         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
5612         within a construction vtable, determine what is being overridden.
5613         (build_vtbl_initializer): Add more comments
5614         (add_vcall_offset_vtbl_entries_1): Adjust comment.
5615         (build_rtti_vtbl_entries): Check if the base has lost its
5616         primary.
5617
5618 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
5619
5620         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
5621
5622 Sun Feb  4 15:52:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5623
5624         * decl.c (pushdecl): Call abort instead of fatal.
5625         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
5626         * init.c (build_new_1): Likewise.
5627         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
5628         * decl.c (build_typename_type): hash_table_init now returns void.
5629         decl.c (init_decl_processing): Make an error non-fatal.
5630
5631 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
5632
5633         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
5634         Document.
5635         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
5636         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
5637         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
5638         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
5639         * decl.c (maybe_commonize_var): Use the new name-mangling where
5640         appropriate.
5641         * decl2.c (comdat_linkage): Enhance comments.  Make all
5642         compiler-generated things static, if COMDAT is not available.
5643         (get_tinfo_decl): Do not make typeinfo objects that belong in the
5644         library COMDAT.
5645         (tinfo_base_init): Use the correct mangled name for typeinfo
5646         strings, and push them into the global scope.
5647         (typeinfo_in_lib_p): New function.
5648         (synthesize_tinfo_var): Use it.
5649         (create_real_tinfo_var): Likewise.
5650
5651 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
5652
5653         * decl.c (push_class_binding): Use context_for_name_lookup instead
5654         of CP_DECL_CONTEXT.
5655         * search.c (context_for_name_lookup): Remove static.  Check for NULL
5656         context in the loop.
5657         * cp-tree.h (context_for_name_lookup): Add prototype.
5658
5659 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
5660
5661         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
5662         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
5663         Remove.
5664         * call.c (convert_class_to_reference, build_user_type_conversion_1,
5665         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
5666
5667 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
5668
5669         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
5670         of macros used when compiling g++spec.c.
5671         * g++spec.c (lang_specific_driver): Link with the shared
5672         libgcc by default.
5673
5674 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
5675
5676         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
5677         make_reference_declarator, make_call_declarator), method.c
5678         (implicitly_declare_fn), parse.y (namespace_using_decl,
5679         notype_unqualified_id, expr_or_declarator, new_type_id,
5680         after_type_declarator, direct_after_type_declarator,
5681         notype_declarator, complex_notype_declarator,
5682         complex_direct_notype_declarator, qualified_id,
5683         notype_qualified_id, overqualified_id, direct_new_declarator,
5684         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
5685         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
5686         instead of build_parse_node.
5687
5688 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5689
5690         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
5691         (minus_one_node): Moved to top level gcc directory.  Renamed
5692         to integer_minus_one_node.
5693
5694         * init.c (init_init_processing): Don't set minus_one_node.
5695         (build_vec_init): Use integer_minus_one_node.
5696
5697         * rtti.c (get_tinfo_decl_dynamic): Likewise.
5698
5699 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
5700
5701         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
5702         identical and they would be replaced with constant, remove
5703         MODIFY_EXPR from the tree.
5704
5705 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5706
5707         * Make-lang.in: Remove all dependencies on defaults.h.
5708         * call.c: Don't include defaults.h.
5709         * decl.c: Likewise.
5710         * decl2.c: Likewise.
5711         * except.c: Likewise.
5712         * pt.c: Likewise.
5713         * rtti.c: Likewise.
5714         * tree.c: Likewise.
5715         * typeck.c: Likewise.
5716
5717 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
5718
5719         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
5720         operators even in "C" linkage.
5721         * method.c (set_mangled_name_for_decl): Likewise.
5722         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
5723         overloaded operators in "C" linkage.
5724
5725 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
5726
5727         * pt.c (tsubst_decl): Remove IN_DECL parameter.
5728         (tsubst_arg_types): Check parameter is not void.
5729         (tsubst): Adjust tsubst_decl call.
5730
5731 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
5732
5733         * call.c (add_builtin_candidate): Quote std properly, from
5734         previous change.
5735
5736 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5737
5738         * pt.c (check_explicit_specialization): Clone constructors and
5739         destructors.
5740
5741 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
5742
5743         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
5744         indicates anything special about template depth. Make sure we
5745         only count the user visible template classes.
5746
5747 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
5748
5749         * call.c (build_conv): Typo in comment.
5750         (add_builtin_candidate): Add more explanation.
5751         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
5752         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
5753         when we have enumeral types.
5754         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
5755         candidates for relops and eqops.
5756         (joust): Simplify control flow. Allow a non-template user
5757         function to hide a builtin.
5758
5759 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
5760
5761         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
5762         (more_specialized): Add deduction parameter.
5763         * call.c (joust): Adjust more_specialized call.
5764         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
5765         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
5766         (get_bindings_order): Remove.
5767         (get_bindings_real): Add DEDUCE parameter.
5768         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
5769         REFERENCE_TYPE jig for DEDUCE_ORDER.
5770         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
5771         maybe_adjust_types_for_deduction.
5772         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
5773         directly.
5774         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
5775         (check_cv_quals_for_unify): Use new unify qualifier flags.
5776         (unify): Clear new unify qualifier flags.
5777         (get_bindings_real): Add DEDUCE parameter.
5778         (get_bindings): Adjust call to get_bindings_real.
5779         (get_bindings_overload): Likewise.
5780         (most_specialized_instantiation): Adjust call to
5781         more_specialized.
5782
5783 2001-01-19  Jason Merrill  <jason@redhat.com>
5784
5785         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
5786
5787         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
5788         -fnew-abi.
5789
5790 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
5791
5792         * decl2.c (arg_assoc_class): Fix double iteration logic.
5793
5794 2001-01-19  Jason Merrill  <jason@redhat.com>
5795
5796         * init.c (build_delete): Always call convert_force to strip cv-quals.
5797
5798         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
5799         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
5800         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
5801
5802 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5803
5804         * search.c (get_vbase_1): Count only virtual bases.
5805
5806 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5807
5808         * class.c (duplicate_tag_error): Robustify flag clearing.
5809
5810 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5811
5812         * cp-tree.h (lookup_template_class): Add complain parm.
5813         * decl.c (lookup_namespace_name): Adjust call to
5814         lookup_template_class.
5815         (make_typename_type): Likewise.
5816         * semantics.c (finish_template_type): Likewise.
5817         * pt.c (lookup_template_class): Add complain parm. Adjust.
5818         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
5819         (tsubst): Likewise.
5820
5821 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5822
5823         * pt.c (copy_default_args_to_explicit_spec): Preserve
5824         object's CV quals. Reorganize.
5825
5826 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5827
5828         * typeck.c (build_modify_expr): Say `initialization' for
5829         INIT_EXPRs.
5830         * init.c (build_default_init): Convert to enumeral type, if
5831         needed.
5832
5833 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
5834
5835         * parse.y (nomods_initdcl0): Properly set things up for
5836         initdcl0_innards.
5837
5838 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5839
5840         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
5841         (type_unification_real): Set it.
5842         (unify): Use it.
5843
5844 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5845
5846         * decl.c (finish_destructor_body): Convert to vbase pointer here.
5847
5848 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5849
5850         * semantics.c (begin_class_definition): Check we're not inside a
5851         template parm list.
5852
5853 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5854
5855         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
5856         BASELINK_P.
5857
5858 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5859
5860         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
5861         * call.c (build_over_call): Add comment.
5862
5863 2001-01-16 Daniel Berlin <dberlin@redhat.com>
5864
5865         * cvt.c (ocp_convert): Handle vector type conversion
5866         * typeck2.c (digest_init): Handle vector type initializations
5867
5868 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
5869
5870         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
5871           was given.
5872
5873 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
5874
5875         * pt.c (check_nontype_parm): Rename to ...
5876         (invalid_nontype_parm_type_p): ... here.
5877         (process_template_parm): Adjust.
5878         (convert_template_argument): Adjust.
5879
5880 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
5881
5882         * pt.c (check_nontype_parm): New function.
5883         (process_template_parm): Use it.
5884         (convert_template_argument): Use it.
5885         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
5886         member.
5887
5888 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
5889
5890         * tree.c: Add defaults.h
5891         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
5892         * Make-lang.in (cp/tree.o): Add defaults.h.
5893
5894 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
5895
5896         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
5897
5898 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
5899
5900         * g++.1: Change to be ".so man1/gcc.1".
5901
5902 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
5903
5904         * Make-lang.in (c++.info, c++.install-info): Build and install g++
5905         internals info.
5906         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
5907         ($(srcdir)/cp/g++int.info): New target.
5908         * gxxint.texi: Add info directory entry.  Use @@ in email address.
5909         * .cvsignore: Update.
5910
5911 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
5912
5913         * typeck.c (build_c_cast): Do template processing earlier.
5914         Always pedwarn on array casts.
5915
5916 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
5917
5918         * friend.c (make_friend_class): Make sure a templated class is
5919         actually a template.
5920
5921 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5922
5923         * decl2.c (get_guard): Set linkage from guarded decl.
5924
5925 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5926
5927         * call.c (convert_default_arg): Check for unprocessed
5928         DEFAULT_ARG.
5929         * cp-tree.h (replace_defarg): Move to spew.c.
5930         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
5931         spew.c, which is where they really are.
5932         (done_pending_defargs): Declare.
5933         (unprocessed_defarg_fn): Declare.
5934         * decl.c (replace_defarg): Move to spew.c
5935         * parse.y (structsp): Call done_pending_defargs.
5936         * spew.c (defarg_fns): Rearrange list structure.
5937         (defarg_fnsdone): New static variable.
5938         (defarg_depfns): New static variable.
5939         (init_spew): Adjust.
5940         (add_defarg_fn): Store the type in TREE_TYPE.
5941         (do_pending_defargs): Detect and deal with ordering constraints
5942         and circularity.
5943         (done_pending_defargs): New function.
5944         (unprocessed_defarg_fn): New function.
5945         (replace_defarg): Moved from decl.c. Robustify. Don't save
5946         if circularity detected.
5947
5948 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5949
5950         * pt.c (unify): Check array has a domain, before checking
5951         whether it is variable sized.
5952
5953 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5954
5955         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
5956         parameters with pointers to arrays of unknown bound.
5957
5958 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5959
5960         * parse.y (template_parm_header, template_spec_header): New
5961         reductions. Split out from ...
5962         (template_header): ... here. Use them.
5963         (template_template_parm): Use template_parm_header.
5964         * semantics.c (finish_template_template_parm): Add assert.
5965
5966 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
5967
5968         * mangle.c (write_builtin_type): Fix thinko.
5969
5970         * pt.c (copy_default_args_to_explicit_spec_1): New function.
5971         (copy_default_args_to_explicit_spec): Likewise.
5972         (check_explicit_specialization): Use it.
5973
5974         * class.c (finish_struct_1):  Remove last argument in call to
5975         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
5976         * decl.c (builtin_function): Likewise.
5977         (build_cp_library_fn): Likewise.
5978         (check_initializer): Likewise.
5979         (make_rtl_for_nonlocal_decl): Likewise.
5980         (cp_finish_decl): Likewise.
5981         (start_function): Likewise.
5982         * decl2.c (finish_anon_union): Likewise.
5983         * friend.c (do_friend): Likewise.
5984         * init.c (build_java_class_ref): Likewise.
5985         * method.c (make_thunk): Likewise.
5986         * pt.c (tsubst_friend_function): Likewise.
5987         * semantics.c (expand_body): Likewise.
5988
5989 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
5990
5991         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
5992         looking at DECL_CLONED_FUNCTION for non-functions.
5993
5994 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
5995
5996         * error.c (dump_template_parameter): Use parm to determine how
5997         to print default value.
5998
5999 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
6000
6001         * class.c (duplicate_tag_error): Clear more flags.
6002
6003 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
6004
6005         * call.c (build_new_method_call): Use binfo_for_vbase.
6006
6007 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
6008
6009         * cp-tree.h (flag_cond_mismatch): Don't declare.
6010         * decl2.c (flag_cond_mismatch): Don't define.
6011         (lang_f_options): Remove cond-mismatch.
6012         (unsupported_options): Add cond-mismatch.
6013
6014 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
6015
6016         * class.c (handle_using_decl): Reject using of constructor name
6017         of sourcing class. Allow injecting of a method with same name as
6018         nested class. Fixup error messages.
6019
6020 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
6021
6022         * decl2.c (lang_decode_option): Handle -Wformat=2.
6023
6024 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
6025
6026         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
6027         initialized_in_class.
6028         (DECL_DEFINED_IN_CLASS_P): Rename to ...
6029         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
6030         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
6031         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
6032         * pt.c (check_default_tmpl_args): Adjust for
6033         DECL_INITIALIZED_IN_CLASS_P.
6034         (instantiate_class_template): Likewise.
6035         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
6036
6037         * class.c (finish_struct): Constify saved_filename.
6038
6039 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
6040
6041         * class.c (duplicate_tag_error): Adjust diagnostic.
6042         (finish_struct): Locally set location to start of struct.
6043         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
6044
6045 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
6046
6047         * decl.c (struct binding_level): Adjust class_shadowed comments
6048         to reflect reality.
6049         (push_class_level_binding): Adjust comments to reflect reality.
6050         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
6051         Don't set TREE_VALUE on the class_shadowed list.
6052
6053 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
6054
6055         * decl2.c (acceptable_java_type): Allow references too.
6056         * init.c (build_java_class_ref): When using the new ABI, search
6057         `class$' and have it mangled with `mangle_decl.'
6058         * mangle.c (write_java_integer_type_codes): New function.
6059         (write_builtin_type): Detect and mangle Java integer and real
6060         types.
6061
6062 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
6063
6064         * decl2.c (grokfield): Don't accept `asm' specifiers for
6065         non-static data members.
6066
6067 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6068
6069         * expr.c (cplus_expand_expr): Don't reset `target'.
6070
6071 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
6072
6073         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
6074
6075 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
6076
6077         * parse.y (template_datadef): Check for error_mark_node.
6078
6079 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
6080
6081         * cp-tree.def (DEFAULT_ARG): Make `x' class.
6082
6083 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
6084
6085         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
6086         (record_builtin_type): Make non-static.
6087         (flag_short_double): Don't declare.
6088         (init_decl_processing): Remove the creation of many tree nodes now
6089         in c_common_nodes_and_builtins.
6090         (build_void_list_node): New function.
6091         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
6092         * cp-tree.h (flag_short_wchar): Don't declare.
6093
6094 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
6095
6096         * call.c (build_conv): Don't use build1 for USER_CONV.
6097         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
6098
6099 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
6100
6101         * lex.c (lang_init): Call c_common_lang_init.
6102
6103 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6104
6105         * search.c (lookup_fnfields_here): Remove.
6106         (look_for_overrides_r): Use lookup_fnfields_1.
6107         Ignore functions from using declarations.
6108
6109 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6110
6111         Implement exceptions specifiers for implicit member functions.
6112         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
6113         * method.c (synthesize_exception_spec): New function.
6114         (locate_dtor, locate_ctor, locate_copy): New functions.
6115         (implicitly_declare_fn): Generate the exception spec too.
6116         * search.c (check_final_overrider): Check artificial functions
6117         too.
6118         * typeck2.c (merge_exception_specifiers): New function.
6119
6120 2001-01-03  Jason Merrill  <jason@redhat.com>
6121
6122         * init.c (build_default_init): New fn.
6123         (perform_member_init): Split out from here.
6124         (build_new_1): Use it.  Simplify initialization logic.
6125         (build_vec_init): Take an array, rather than a pointer and maxindex.
6126         Speed up simple initializations.  Don't clean up if we're assigning.
6127         * cp-tree.h: Adjust.
6128         * decl2.c (do_static_initialization): Remove TREE_VEC case.
6129         * parse.y (new_initializer): Return void_zero_node for ().
6130         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
6131         * typeck2.c (digest_init): Only complain about user-written
6132         CONSTRUCTORs.
6133
6134 2000-12-22  Mike Stump  <mrs@wrs.com>
6135
6136         * decl2.c: (max_tinst_depth): Increase to 50.
6137
6138 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
6139
6140         * class.c (invalidate_class_lookup_cache): Zero the
6141         previous_class_values.
6142         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
6143         TREE_INT_CST_HIGH.
6144         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
6145         * decl.c (free_bindings): New variable.
6146         (push_binding): Don't create a new binding if we have one on the
6147         free list.
6148         (pop_binding): Put old bindings on the free list.
6149         (init_decl_processing): Use size_int, not build_int_2.
6150         Register free_bindings as a GC root.
6151         (cp_make_fname_decl): Use size_int, not build_int_2.
6152         (push_inline_template_parms_recursive): Likewise.
6153         (end_template_parm_list): Likewise.
6154         (for_each_tempalte_parm): Do not use walk_tree_without_duplicates.
6155         (tsubst_template_parms): Use size_int, not build_int_2.
6156         (tsubst): Likewise.
6157         * rtti.c (get_vmi_pseudo_type_info): Likewise.
6158
6159 2001-01-02  Richard Henderson  <rth@redhat.com>
6160
6161         * parse.y (asm): Set ASM_INPUT_P.
6162
6163 2001-01-02  Jason Merrill  <jason@redhat.com>
6164
6165         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
6166         for v3 ABI.
6167
6168         * typeck.c (cp_truthvalue_conversion): New fn.
6169         * cvt.c (ocp_convert): Use it.
6170
6171         * cp-tree.h: Lose c-common.c decls.
6172
6173         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
6174         * cvt.c (convert_to_void): Use type_unknown_p.
6175
6176         * typeck.c (strip_all_pointer_quals): Also strip quals from
6177         pointer-to-member types.
6178
6179         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
6180         parse.y as C.
6181
6182         * call.c (build_new_method_call): Do evaluate the object parameter
6183         when accessing a static member.
6184         * typeck.c (build_component_ref): Likewise.
6185
6186 2001-01-02  Andreas Jaeger  <aj@suse.de>
6187
6188         * decl.c (cp_missing_noreturn_ok_p): New.
6189         (init_decl_processing): Set lang_missing_noreturn_ok_p.
6190
6191 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
6192
6193         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
6194
6195 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
6196
6197         * class.c (pushclass): Remove #if 0'd code.
6198         * cp-tree.h (overload_template_name): Remove.
6199         * decl.c (store_bindings): Simplify.
6200         (pop_from_top_level): Likewise.
6201         * pt.c (overload_template_name): Remove.
6202         (instantiate_decl): Don't call push_to_top_level if it's not
6203         needed.
6204
6205 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
6206
6207         * pt.c (register_local_specialization): Don't return a value.
6208         (lookup_template_class): Use move-to-front heuristic when looking
6209         up template instantiations.
6210         (instantiate_decl): Only push_to_top_level when we're actually
6211         going to instantiate the template.
6212
6213 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
6214
6215         * search.c (binfo_for_vtable): Return least derived class, not
6216         most.  Handle secondary vtables.
6217
6218 2000-12-22  Jason Merrill  <jason@redhat.com>
6219
6220         * pt.c (more_specialized): Don't optimize len==0.
6221         (fn_type_unification): If we're adding the return type, increase len.
6222
6223         * typeck.c (build_binary_op): Fix pmf comparison logic.
6224
6225         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
6226         DECL_STATIC_FUNCTION_P.
6227
6228         * semantics.c (genrtl_finish_function): Don't try to jump to
6229         return_label unless it exists.
6230
6231         In partial ordering for a call, ignore parms for which we don't have
6232         a real argument.
6233         * call.c (joust): Pass len to more_specialized.
6234         (add_template_candidate_real): Strip 'this', pass len.
6235         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
6236         (get_bindings_order): New fn.  Pass len down.
6237         (get_bindings_real): Strip 'this', pass len.
6238         (fn_type_unification): Likewise.
6239         (type_unification_real): Succeed after checking 'len' args.
6240         (most_specialized_instantiation): Lose explicit_args parm.
6241         * class.c (resolve_address_of_overloaded_function): Strip 'this',
6242         pass len.
6243
6244 2000-12-21  Jason Merrill  <jason@redhat.com>
6245
6246         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
6247         DECL_TEMPLATE_RESULT.
6248
6249         * search.c (lookup_field_r): Call lookup_fnfields_1, not
6250         lookup_fnfields_here.
6251
6252         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
6253
6254         * call.c (build_object_call): Also allow conversions that return
6255         reference to pointer to function.
6256         (add_conv_candidate): Handle totype being ref to ptr to fn.
6257         (build_field_call): Also allow members of type reference to function.
6258         Lose support for calling pointer to METHOD_TYPE fields.
6259
6260         * error.c (dump_expr): Handle *_CAST_EXPR.
6261
6262         * typeck2.c (build_scoped_ref): Always convert to the naming class.
6263
6264         * tree.c (break_out_cleanups): Lose.
6265         * cp-tree.h: Remove prototype.
6266         * typeck.c (build_component_ref): Don't break_out_cleanups.
6267         (build_compound_expr): Likewise.
6268         * semantics.c (finish_expr_stmt): Likewise.
6269
6270 2000-12-20  Richard Henderson  <rth@redhat.com>
6271
6272         * cp-tree.h: Update declarations.
6273         * decl.c (finish_case_label): Return the new stmt node.
6274         * semantics.c (finish_goto_stmt): Likewise.
6275         (finish_expr_stmt, finish_return_stmt): Likewise.
6276         (finish_break_stmt, finish_continue_stmt): Likewise.
6277         (finish_asm_stmt): Likewise.
6278         * parse.y (already_scoped_stmt): Set STMT_LINENO.
6279         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
6280         (simple_if, simple_stmt): Return the new stmt node.
6281         (save_lineno): New.
6282
6283 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
6284
6285         * cp-tree.h: Don't declare warn_long_long.
6286
6287 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6288
6289         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
6290         IS_AGGR_TYPE.
6291
6292 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6293
6294         * pt.c (unify): Handle when both ARG and PARM are
6295         BOUND_TEMPLATE_TEMPLATE_PARM.
6296
6297 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6298
6299         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
6300         DECL_TEMPLATE_PARM_P.
6301
6302 2000-12-15  Jason Merrill  <jason@redhat.com>
6303
6304         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
6305
6306         * init.c (build_new_1): Don't strip quals from type.
6307
6308         * decl.c (pushdecl): Don't check for linkage on a non-decl.
6309
6310         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
6311
6312         * call.c (build_new_function_call): Lose space before paren in
6313         error message.
6314         (build_new_method_call): Likewise.
6315
6316         * typeck2.c (build_m_component_ref): Propagate quals from datum.
6317
6318 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6319
6320         * pt.c (check_explicit_specialization): Propagate default
6321         function arguments to explicit specializations.
6322
6323 2000-12-13  DJ Delorie  <dj@redhat.com>
6324
6325         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
6326         and <? operators.
6327
6328 2000-12-08  Jason Merrill  <jason@redhat.com>
6329
6330         * error.c (dump_function_name): Don't let the user see __comp_ctor.
6331
6332         Clean up copy-initialization in overloading code.
6333         * call.c (build_user_type_conversion_1): Die if we are asked to
6334         convert to the same or a base type.
6335         (implicit_conversion): Avoid doing so.  Lose reference binding code.
6336         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
6337         direct-initialization.  Also do direct-init part of copy-init.
6338         (build_user_type_conversion): Don't provide context to convert_like.
6339         * cvt.c (ocp_convert): build_user_type_conversion will now provide
6340         the constructor call for copy-init.
6341
6342         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
6343         instantiation of a member template.
6344         (do_decl_instantiation): Not here.
6345
6346 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
6347
6348         * class.c (check_field_decls): Don't special case anonymous
6349         fields in error messages.
6350         (note_name_declared_in_class): Use %D on diagnostic.
6351
6352         * tree.c (pod_type_p): Use strip_array_types.
6353         (cp_valid_lang_attribute): Likewise.
6354         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
6355         multiple evaluations.
6356         (cp_has_mutable_p): Use strip_array_types.
6357
6358 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
6359
6360         * cp-tree.h (sufficient_parms_p): Declare new function.
6361         * call.c (sufficient_parms_p): New function, broken out of ...
6362         (add_function_candidate): ... here. Use it.
6363         (add_conv_candidate): Use it.
6364         * decl.c (grok_ctor_properties): Use it.
6365
6366 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
6367
6368         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
6369
6370 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
6371
6372         * decl2.c (lang_decode_option): Handle -Wformat-security.
6373
6374 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6375
6376         * pt.c (verify_class_unification): New function.
6377         (get_class_bindings): Use it.
6378         (try_class_unification): Tidy.
6379         (unify): Handle when argument of a template-id is not
6380         template parameter dependent.
6381         (template_args_equal): Handle when TREE_CODE's do not match.
6382
6383 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
6384
6385         * lang-specs.h (c++): When invoking the stand-alone preprocessor
6386         for -save-temps, pass all relevant -Defines to it, and then don't
6387         pass them to cc1plus.
6388
6389 2000-12-05  Will Cohen  <wcohen@redhat.com>
6390
6391         * decl.c (finish_case_label): Cleared
6392         more_cleanups_ok in surrounding function scopes.
6393         (define_label): Likewise.
6394
6395 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
6396
6397         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
6398         (get_matching_virtual): Remove.
6399         (look_for_overrides): Declare new function.
6400         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
6401         DECL_VINDEX here.
6402         * class.c (check_for_override): Move base class iteration code
6403         to look_for_overrides.
6404         * search.c (next_baselink): Remove.
6405         (get_virtuals_named_this): Remove.
6406         (get_virtual_destructor): Remove.
6407         (tree_has_any_destructors_p): Remove.
6408         (struct gvnt_info): Remove.
6409         (check_final_overrider): Remove `virtual' from error messages.
6410         (get_matching_virtuals): Remove. Move functionality to ...
6411         (look_for_overrides): ... here, and ...
6412         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
6413         to be overriding.
6414
6415 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
6416
6417         * typeck.c (get_delta_difference): If via a virtual base,
6418         return zero.
6419         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
6420         adjustment.
6421
6422 2000-12-04  Richard Henderson  <rth@redhat.com>
6423
6424         * error.c (dump_tree): Use output_add_string not OB_PUTS.
6425
6426 2000-12-04  Jason Merrill  <jason@redhat.com>
6427
6428         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
6429         (write_builtin_type): Pass intSI_type_node and the like through
6430         type_for_mode.
6431         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
6432         Pass intSI_type_node and the like through type_for_mode.
6433         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
6434         * pt.c (tsubst, unify): Likewise.
6435         * tree.c (walk_tree): Likewise.
6436         * error.c (dump_type): Likewise.
6437         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
6438
6439         * Make-lang.in: Tweak top comment for emacs.
6440         (cp/TAGS): Restore.
6441
6442         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
6443
6444         * class.c (clone_function_decl): Robustify.
6445
6446 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
6447
6448         * decl.c (store_bindings): Only search in the non modified
6449         old_bindings for duplicates.
6450
6451 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
6452
6453         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
6454         TYPE_POLYMORPHIC_P.
6455
6456         * typeck.c (build_static_cast): Remove unused variable.
6457
6458 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6459
6460         * pt.c: Fix typo in comment.
6461
6462 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6463
6464         * decl2.c (warn_format): Remove definition.
6465         (lang_decode_option): Handle -Wformat-nonliteral,
6466         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
6467
6468 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6469
6470         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
6471         (init_decl_processing): Don't create string_type_node,
6472         const_string_type_node, wint_type_node, intmax_type_node,
6473         uintmax_type_node, default_function_type, ptrdiff_type_node and
6474         unsigned_ptrdiff_type_node.  Adjust position of call to
6475         c_common_nodes_and_builtins.
6476         (identifier_global_value): New function.
6477
6478 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
6479
6480         * call.c (standard_conversion): Reject pointer to member
6481         conversions from ambiguous, inaccessible or virtual bases.
6482         * typeck.c (build_static_cast): Don't check pointers to members
6483         specially.
6484
6485 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6486
6487         * method.c (do_build_copy_constructor): Preserve cv
6488         qualifications when accessing source object members.
6489         (do_build_assign_ref): Likewise. Remove separate diagnostics for
6490         unnamed fields.
6491
6492 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6493
6494         * method.c (do_build_assign_ref): Construct appropriately
6495         CV-qualified base reference. Don't allow const casts in base
6496         conversion.
6497
6498 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6499
6500         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
6501         incomplete return type.
6502
6503 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6504
6505         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
6506         * semantics.c (finish_base_specifier): Accept a _TYPE not a
6507         _DECL.
6508
6509 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6510
6511         * spew.c (yyerror): Cope if yylval.ttype is NULL.
6512
6513 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6514
6515         * decl.c (grokdeclarator): Diagnose undefined template contexts.
6516
6517 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6518
6519         * decl.c (grokdeclarator): Do type access control on friend
6520         class.
6521
6522 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
6523
6524         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
6525         bison parser ickiness.
6526         * pt.c (tsubst_friend_function): Enter namespace scope when
6527         tsubsting the function name.
6528         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
6529
6530 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
6531
6532         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
6533         * cvt.c (cp_convert_to_pointer): Add force parameter.
6534         Allow conversions via virtual base if forced.
6535         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
6536         (ocp_convert): Likewise.
6537         * search.c (binfo_from_vbase): Return the virtual base's binfo.
6538         * typeck.c (get_delta_difference): Adjust handling of virtual
6539         bases.
6540
6541 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
6542
6543         * tree.c (struct list_hash): Remove.
6544         (list_hash_table): Make it be an htab.
6545         (struct list_proxy): New type.
6546         (list_hash_eq): New function.
6547         (list_hash_pieces): Renamed from ...
6548         (list_hash): ... this.
6549         (list_hash_lookup): Remove.
6550         (list_hash_add): Remove.
6551         (hash_tree_cons): Use the generic hashtable.
6552         (mark_list_hash): Remove.
6553         (init_tree): Create the hashtable.
6554
6555 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
6556
6557         * method.c (build_mangled_C9x_name): Rename to
6558         build_mangled_C99_name.  Change C9X references in comments to
6559         refer to C99.
6560
6561 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
6562
6563         * parse.y (unary_expr): Move VA_ARG from here ...
6564         (primary): ... to here.
6565
6566 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
6567
6568         * semantics.c (finish_id_expr): If type is error_mark, return
6569         error_mark.
6570
6571 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
6572
6573         * pt.c (lookup_template_class): Simplify loop exit constructs.
6574         Cope when there is no partial instantiation of a template
6575         template member.
6576
6577 Thu Nov 23 02:16:47 2000  J"orn Rennecke <amylaar@redhat.com>
6578
6579         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
6580
6581 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
6582
6583         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
6584         prefix.
6585
6586         * pt.c (do_decl_instantiate): Explicitly clone constructors and
6587         destructors that haven't already been cloned.
6588
6589 2000-11-20  Richard Henderson  <rth@redhat.com>
6590
6591         * parse.y (yyparse_1): Rename the parser entry point.
6592
6593 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
6594
6595         * mangle.c (write_name): Use <unscoped-name> for names directly in
6596         function scope.
6597         (write_unscoped_name): Accept names directly in function scope.
6598
6599 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
6600
6601         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
6602         * parse.y (extdef): Add EXPORT reduction.
6603         * spew.c (yylex): Don't skip export here.
6604
6605 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
6606
6607         * decl.c (init_decl_processing): Correct name of pure virtual
6608         function under the new ABI.
6609         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
6610         (throw_bad_typeid): Likewise for bad typeid function.
6611
6612 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
6613
6614         * decl.c (grokparms): Don't even function types of `void' type,
6615         either.
6616         * mangle.c (write_type): Don't crash when confronted with the
6617         error_mark_node.
6618
6619         * decl.c (grokparms): Don't create parameters of `void' type.
6620
6621 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
6622
6623         * lex.c (mark_impl_file_chain): Delete.
6624         (init_parse): Remove call to ggc_add_string_root.  No need to
6625         ggc_strdup a string constant.  Do not add impl_file_chain to GC
6626         roots.
6627         (handle_pragma_implementation): No need to ggc_strdup main_filename.
6628
6629 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
6630
6631         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
6632
6633 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
6634
6635         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
6636         * decl.c (grokdeclarator): Don't reject void parms here.
6637         (require_complete_types_for_parms): Simplify, use
6638         complete_type_or_else.
6639         (grokparms): Remove bitrot. Remove funcdef parm.
6640         Deal with ellipsis parm lists here.
6641         * semantics.c (finish_parmlist): Don't append void_list_node
6642         here. Set PARMLIST_ELLIPSIS_P.
6643
6644 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
6645
6646         * typeck2.c (incomplete_type_error): Reorganise to avoid
6647         excessive diagnostics.
6648
6649 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
6650
6651         * lex.c (struct impl_files, internal_filename): Constify a char *.
6652
6653 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
6654
6655         * mangle.c (write_special_name_constructor): Don't generate
6656         assembler junk when confronted with an old-style constructor.
6657         (write_special_name_destructor): Likewise.
6658         (mangle_decl_string): Do it here instead.
6659
6660 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
6661
6662         * call.c (op_error): Make error messages clearer.
6663
6664 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
6665
6666         * decl.c (wrapup_globals_for_namespace): Don't mark things
6667         TREE_ASM_WRITTEN when they're not.
6668
6669 2000-11-15  Jason Merrill  <jason@redhat.com>
6670
6671         * typeck2.c (friendly_abort): Uncount the error before handing
6672         off to fancy_abort.
6673
6674 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
6675
6676         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
6677
6678 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
6679
6680         * class.c (build_vtbl_initializer): Fix typo in comment.
6681         * typeck.c (expr_sizeof): Don't crash on errors.
6682
6683 2000-11-14  Jim Wilson  <wilson@redhat.com>
6684
6685         * lang-specs.h: Add %2 after %(cc1_options).
6686
6687 2000-11-14  Richard Henderson  <rth@redhat.com>
6688
6689         * typeck.c (c_sizeof): Be strict about casting result value
6690         back to c_size_type_node.
6691         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
6692
6693 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
6694
6695         * typeck.c (build_unary_op): Use boolean_increment from
6696         c-common.c, moving the relevant code there.
6697
6698 2000-11-11  Jason Merrill  <jason@redhat.com>
6699
6700         * typeck.c (mark_addressable): Don't call put_var_into_stack.
6701
6702         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
6703         in inlines.
6704
6705 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6706
6707         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
6708         * lex.c (copy_lang_decl): Likewise.
6709
6710 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
6711
6712         * dump.c (cp_dump_tree): Don't dump function bodies here.
6713
6714         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
6715         (dump.o): Update dependency list.
6716         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
6717         (flag_dump_translation_unit): Likewise.
6718         (CP_TYPE_QUALS): Adjust definition.
6719         (DECL_C_BIT_FIELD): Remove.
6720         (SET_DECL_C_BIT_FIELD): Likewise.
6721         (CLEAR_DECL_C_BIT_FIELD): Likewise.
6722         (add_maybe_template): Likewise.
6723         (strip_array_types): Likewise.
6724         (dump_node_to_file): Likewise.
6725         (cp_dump_tree): New function.
6726         * decl.c (init_decl_processing): Set lang_dump_tree.
6727         * decl2.c (flag_dump_translation_unit): Remove.
6728         * dump.c: Move most of it to ../c-dump.c.
6729         (cp_dump_tree): New function.
6730         * pt.c (add_maybe_template): Remove.
6731         * typeck.c (strip_array_types): Likewise.
6732
6733 2000-11-07  Eric Christopher  <echristo@redhat.com>
6734
6735         * decl.c (init_decl_processing): Change definition of
6736         __wchar_t to wchar_t.  Remove artificial declaration of
6737         wchar_t.
6738         * lex.c: Change instances of __wchar_t to wchar_t.
6739
6740 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
6741
6742         * lex.c (do_identifier): Don't lookup_name for operators.
6743         * parse.y (operator): Save looking_for_typename.
6744         (unoperator): Restore it.
6745         * spew.c (frob_opname): Use nth_token for lookahead.
6746
6747 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
6748
6749         * decl.c (grok_op_properties): Always use coerce_new_type and
6750         coerce_delete_type.
6751         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
6752         exception specification. Tidy up.
6753         (coerce_delete_type): Preserve exception specification. Tidy up.
6754
6755 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
6756
6757         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
6758         (push_binding_level), error.c (cp_tree_printer), pt.c
6759         (process_partial_specialization, tsubst_template_arg_vector),
6760         search.c (lookup_member): Use memset () instead of bzero ().
6761
6762 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
6763
6764         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
6765
6766 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
6767
6768         * Make-lang.in (c++.distdir): Remove.
6769
6770 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
6771
6772         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
6773         declarations from different namespaces to be combined.
6774
6775 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
6776
6777         * decl.c: Include tm_p.h.
6778
6779 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
6780
6781         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
6782
6783 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
6784
6785         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
6786         (build_overload_value), repo.c (open_repo_file), xref.c
6787         (open_xref_file): Use strchr () and strrchr () instead of index ()
6788         and rindex ().
6789
6790 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
6791
6792         * call.c (build_over_call): Call fold on the CALL_EXPR.
6793
6794 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
6795
6796         * error.c (dump_template_decl): Separate template hearders with
6797         space not comma.
6798
6799 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
6800
6801         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
6802         TS_* flags with corresponding TFF_*.  Adjust prototypes of
6803         functions (which used to take a tree_string_flags) to take an int.
6804
6805         * cp-tree.h (enum tree_string_flags): Remove
6806         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
6807         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
6808         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
6809         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
6810         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
6811         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
6812         (type_as_string, decl_as_string, expr_as_string,
6813         context_as_string): Adjust prototype.
6814
6815         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
6816         instead of TS_PLAIN.
6817
6818         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
6819         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
6820         plain `0'.
6821
6822 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
6823
6824         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
6825         (linkage_kind): New enumeration.
6826         (decl_linkage): New function.
6827         * decl2.c (comdat_linkage): Extend comment.
6828         * error.c (dump_function_decl): Print the arguments used to
6829         instantiate a template, even when not printing the type of the
6830         function.
6831         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
6832         not TREE_PUBLIC, to test for external linkage.
6833         * tree.c (decl_linkage): New function.
6834
6835 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
6836
6837         * pt.c (instantiate_decl): Always instantiate static data members
6838         initialized in-class.
6839
6840 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
6841
6842         * Make-lang.in: Move all build rules here from Makefile.in,
6843         adapt to new context.  Wrap all rules that change the current
6844         directory in parentheses.  Expunge all references to $(P).
6845         When one command depends on another and they're run all at
6846         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
6847         all object-file generation rules.  Delete obsolete variables.
6848
6849         * Makefile.in: Delete.
6850         * config-lang.in: Delete outputs= line.
6851
6852 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
6853
6854         * error.c (dump_function_decl): Print no space between
6855         `ptr-operator' the `type-specifier' of the return type.
6856         (dump_type_prefix): Make sure we put space at the appropriate
6857         place.
6858
6859 2000-10-23  Jason Merrill  <jason@redhat.com>
6860
6861         * call.c (equal_functions): Also call decls_match for extern "C" fns.
6862
6863 2000-10-22  Jason Merrill  <jason@redhat.com>
6864
6865         * call.c (build_conditional_expr): Use ocp_convert to force
6866         rvalue conversion.
6867
6868 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
6869
6870         * call.c (standard_conversion): Use RVALUE_CONVs for all
6871         expressions that satisfy lvalue_p, not just those that satisfy
6872         real_lvalue_p.
6873
6874         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
6875
6876         * typeck.c (c_sizeof): Return an expression of `size_t' type,
6877         not one with TYPE_IS_SIZETYPE set.
6878         (dubious_conversion_warnings): Remove special-case code.
6879
6880 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
6881
6882         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
6883         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
6884         (dump_type_prefix): Print vector-of-int as 'int vector'.
6885         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
6886         * tree.c (walk_tree): Handle VECTOR_TYPE.
6887
6888         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
6889
6890 2000-10-21  Jason Merrill  <jason@redhat.com>
6891
6892         * parse.y (operator): Set got_object from got_scope.
6893         Set looking_for_typename.
6894         * decl.c (lookup_name_real): Clear val after setting from_obj.
6895         Reorganize diagnostic.
6896
6897 2000-10-20  Jason Merrill  <jason@redhat.com>
6898
6899         * tree.c (walk_tree): Don't walk into default args.
6900
6901         * error.c (dump_expr): Use host_integerp.
6902
6903 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
6904
6905         * typeck2.c (abstract_virtuals_error): Use "because" instead of
6906         "since" in error message.
6907
6908 Fri Oct 20 13:54:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6909
6910         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
6911
6912 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
6913
6914         * decl.c (revert_static_member_fn): Fixed typo.
6915
6916 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
6917
6918         * class.c (subobject_offset_fn): New type.
6919         (dfs_record_base_offsets): Remove.
6920         (record_base_offsets): Likewise.
6921         (dfs_search_base_offsets): Likewise.
6922         (record_subobject_offset): New function.
6923         (check_subobject_offset): Likewise.
6924         (walk_subobject_offsets): Likewise.
6925         (record_subobject_offsets): Likewise.
6926         (layout_conflict_p): Reimplement.
6927         (layout_nonempty_base_or_field): Correct handling of type
6928         conflicts during layout.
6929         (layout_empty_base): Likewise.
6930         (build_base_field): Adjust to handle new representation of empty
6931         base offset table.
6932         (build_base_fields): Likewise.
6933         (layout_virtual_bases): Likewise.
6934         (splay_tree_compare_integer_csts): New function.
6935         (layout_class_type): Use a splay_tree, rather than a varray, to
6936         represent the offsets of empty bases.
6937
6938         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
6939         * decl.c (select_decl): Don't return declarations that are
6940         DECL_ANTICIPATED.
6941
6942 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
6943
6944         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
6945         (fake_std_node): New macro.
6946         * decl.c (in_std): Rename to ...
6947         (in_fake_std): ... this.
6948         (flag_no_builtin): Remove.
6949         (flag_no_nonansi_builtin): Likewise.
6950         (walk_namespaces_r): Use fake_std_node.
6951         (push_namespace): Use std_identifier.
6952         (pop_namespace): Use in_fake_std.
6953         (lookup_name_real): Use fake_std_node.
6954         (init_decl_processing): When -fhonor-std, create the `std'
6955         namespace.  Don't create a dummy fake_std_node in that case.
6956         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
6957         (builtin_function): Put builtins whose names don't begin
6958         with `_' in the std namespace.
6959         * decl2.c (flag_no_builtin): Remove.
6960         (flag_no_nonansi_builtin): Likewise.
6961         (set_decl_namespace): Use fake_std_node.
6962         (validate_nonmember_using_decl): Likewise.
6963         (do_using_directive): Likewise.
6964         (handle_class_head): Likewise.
6965         * dump.c (dequeue_and_dump): Likewise.
6966         * except.c (init_exception_processing): Use std_identifier.
6967         * init.c (build_member_call): Use fake_std_node.
6968         * rtti.c (init_rtti_processing): Use std_identifier.
6969
6970 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
6971
6972         * cp-tree.h (back_end_hook): Remove declaration.
6973         * decl2.c (back_end_hook): Remove definition.
6974
6975         * dump.c (dequeue_and_dump): Dump TREE_USED.
6976
6977 Tue Oct 17 20:19:06 2000  Brad Lucier <lucier@math.purdue.edu>
6978
6979         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
6980
6981 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
6982
6983         * decl.c (WINT_TYPE): Define.
6984         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
6985         c_size_type_node, signed_size_type_node and wint_type_node.
6986
6987 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
6988
6989         * decl2.c (warn_missing_format_attribute): New variable.
6990         (lang_decode_option): Decode -Wmissing-format-attribute.
6991
6992 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
6993
6994         * typeck.c (qualify_type): Remove.
6995         (composite_pointer_type): Fix handling of conversions to `cv void*'.
6996
6997 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6998
6999         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
7000
7001 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7002
7003         * Makefile.in (parse.c, parse.h): Create atomically.
7004
7005 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
7006
7007         * class.c (current_obstack): Remove.
7008         * decl.c (ggc_p): Remove.
7009         (start_decl): Don't use decl_tree_cons.
7010         (grokdeclarator): Don't use build_decl_list.
7011         (start_function): Don't use decl_tree_cons.
7012         (finish_function): Don't mess with obstacks.
7013         * decl2.c (grok_x_components): Don't use build_decl_list.
7014         * lex.c (make_call_declarator): Don't call decl_tree_cons.
7015         (implicitly_declare_fn): Don't call build_decl_list.
7016         * parse.y (frob_specs): Don't call build_decl_list or
7017         decl_tree_cons.
7018         (expr_or_declarator_intern): Don't call decl_tree_cons.
7019         (primary): Don't call build_decl_list.
7020         (fcast_or_absdcl): Likewise.
7021         (typed_declspecs): Don't call decl_tree_cons.
7022         (reserved_declspecs): Don't call build_decl_list.
7023         (declmods): Likewise.
7024         (reserved_typespecquals): Likewise.
7025         (aggr): Likewise.
7026         (new_type_id): Likewise.
7027         (cv_qualifiers): Likewise.
7028         (after_type_declarator_intern): Likewise.
7029         (notype_declarator_intern): Likewise.
7030         (absdcl_intern): Likewise.
7031         (named_parm): Likewise.
7032         * pt.c (most_specialized_class): Likewise.
7033         * repo.c (temporary_obstack): Make it a structure, not a pointer.
7034         (init_repo): Initialize it.
7035         * search.c (current_obstack): Remove.
7036         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
7037
7038 2000-10-09  Richard Henderson  <rth@cygnus.com>
7039
7040         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
7041         (c++ language support bits for libgcc): Remove.
7042         (c++.clean): Remove cplib2.txt cleanup.
7043         * config-lang.in (headers, lib2funcs): Remove.
7044
7045         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
7046         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
7047         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
7048         * inc/new.h, inc/typeinfo: Remove files.
7049
7050 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
7051
7052         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
7053         defined.
7054         (init_decl_processing): Initialize intmax_type_node and
7055         uintmax_type_node.
7056
7057 2000-10-06  Richard Henderson  <rth@cygnus.com>
7058
7059         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
7060         (original_result_rtx): Remove.
7061         * decl.c (save_function_data): Don't clear x_result_rtx.
7062         (mark_lang_function): Don't mark it either.
7063         * expr.c (fixup_result_decl): Remove.
7064         * semantics.c (genrtl_named_return_value): Frob the return decl
7065         before calling emit_local_var.
7066         (genrtl_finish_function): Don't call fixup_result_decl.
7067         Always emit the jump to return_label.
7068
7069 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
7070
7071         * pt.c (lookup_template_class): Set current access for enum.
7072         (tsubst_enum): Set file & line for enum decl.
7073
7074         * spew.c (yylex): Remove unused variable.
7075
7076 2000-10-05  Richard Henderson  <rth@cygnus.com>
7077
7078         * semantics.c (genrtl_finish_function): Don't init or check
7079         can_reach_end; remove noreturn and return value checks.
7080
7081 2000-10-05  Tom Tromey  <tromey@cygnus.com>
7082
7083         * init.c (build_java_class_ref): Use `build_static_name' with a
7084         suffix, not a prefix, to build the class object's name.
7085
7086 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7087
7088         * cp-tree.h (access_kind): Fix comment typo.
7089         * decl2.c (grokfield): Fix diagnostic typo.
7090         * semantics.c (finish_template_type): Fix comment typo.
7091         (finish_qualified_object_call_expr): Likewise.
7092
7093 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7094
7095         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
7096         tsubsting fails.
7097
7098 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7099
7100         * spew.c (frob_id): New static function.
7101         (frob_opname): Use it.
7102         (yylex): Use it.
7103
7104 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
7105
7106         * decl.c (lang_mark_false_label_stack): Remove.
7107         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
7108
7109 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
7110
7111         * gxxint.texi: Use @email for formatting email addresses.
7112
7113 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
7114
7115         * error.c: Remove direct obstack manipulation.  Replace with
7116         output_buffer-based formatting.  Adjust calls to removed macros.
7117         (obstack_chunk_alloc, obstack_chunk_free): Remove.
7118         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
7119         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
7120
7121 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
7122
7123         * ir.texi: Move to ../c-tree.texi.
7124
7125 2000-09-20  Jason Merrill  <jason@redhat.com>
7126
7127         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
7128
7129 2000-09-21  Andreas Jaeger  <aj@suse.de>
7130
7131         * errfn.c: Move declaration of cp_printer and cp_printers to ...
7132         * cp-tree.h: ... here.
7133
7134         * error.c: Remove declaration of cp_printer.
7135
7136 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
7137
7138         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
7139
7140 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
7141
7142         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
7143         users.
7144
7145 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
7146
7147         * decl.c (start_function): Robustify.
7148
7149 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7150
7151         * cp-tree.h (check_function_format): Accept a `status' parameter.
7152
7153         * call.c, typeck.c: Updates calls to `check_function_format'.
7154
7155 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
7156
7157         * decl2.c (handle_class_head): Always push some scope even
7158         in the error case.
7159
7160 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
7161
7162         * cp-tree.h (struct cp_language_function): Remove
7163         x_scope_stmt_stack and name_declared.
7164         (current_scope_stmt_stack): Remove.
7165         (function_name_declared_p): New macro.
7166         (struct lang_decl_flags): Use c_lang_decl as a base class.
7167         (context): Remove.
7168         (struct lang_decl): Replace saved_tree with context.
7169         (DECL_FRIEND_CONTEXT): Adjust accordingly.
7170         (SET_DECL_FRIEND_CONTEXT): Likewise.
7171         (DECL_VIRTUAL_CONTEXT): Likewise.
7172         (DECL_SAVED_TREE): Remove.
7173         (C_DECLARED_LABEL_FLAG): Likewise.
7174         (cplus_expand_expr_stmt): Don't declare.
7175         (add_decl_stmt): Likewise.
7176         (add_scope_stmt): Likewise.
7177         * decl.c (mark_stmt_tree): Remove.
7178         (case_compare): Likewise.
7179         (finish_case_label): Use c_add_case_label.
7180         (init_decl_processing): Set more language-specific hooks.
7181         (build_enumerator): Fix typo in comment.
7182         (cplus_expand_expr_stmt): Remove.
7183         (mark_lang_function): Use mark_c_language_function.
7184         (lang_mark_tree): Use c_mark_lang_decl.
7185         * decl2.c: Change order of inclusion.
7186         * except.c: Likewise.
7187         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
7188         back on c_expand_expr.
7189         * friend.c: Include expr.h.
7190         * init.c: Change order of inclusion.
7191         * Makefile.in: Update dependencies.
7192         * lex.h (free_lang_decl_chain): Remove.
7193         * optimize.c (maybe_clone_body): Use function_name_declared_p.
7194         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
7195         it doesn't exist.
7196         (instantiate_decl): Use function_name_declared_p.
7197         * semantics.c (lang_expand_expr_stmt): Remove.
7198         (set_current_function_name_declared): Likewise.
7199         (current_function_name_declared): Likewise.
7200         (begin_compound_stmt): Use function_name_declared_p.
7201         (add_decl_stmt): Remove.
7202         (setup_vtbl_ptr): Use function_name_declared_p.
7203         (add_scope_stmt): Remove.
7204         (current_scope_stmt_stack): New function.
7205         (cp_expand_stmt): Don't handle SCOPE_STMTs.
7206         (expand_body): Use function_name_declared_p.
7207         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
7208         * typeck.c: Change order of includes.
7209         (convert_sequence): Remove.
7210
7211 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
7212
7213         * lex.c (reswords): Add _Complex.
7214
7215 Thu Sep 14 12:10:45 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7216
7217         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
7218
7219 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
7220
7221         * init.c (begin_init_stmts): Don't use // comments.
7222
7223 2000-09-12  Jason Merrill  <jason@redhat.com>
7224
7225         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
7226         all non-extern arrays.
7227
7228         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
7229         typenames, too.  Downgrade complaint to pedwarn.
7230         (xref_tag): Warn about surprising behavior of 'friend struct T'.
7231         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
7232         'class This::Inherited'.
7233
7234 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
7235
7236         * decl.c (finish_case_label): Given the LABEL_DECL a
7237         DECL_CONTEXT.
7238
7239 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
7240
7241         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
7242         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
7243         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
7244         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
7245         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
7246         New macros.
7247         (sorry_for_unsupported_tree, print_scope_operator,
7248         print_left_paren, print_right_paren, print_left_bracket,
7249         print_right_bracket, print_whitespace): Likewise.
7250         (aggr_variety): Rename to class_key_or_enum.
7251         (print_type): Rename to print_type_id.
7252         (print_type_specifier_seq, print_simple_type_specifier,
7253         print_elaborated_type_specifier,
7254         print_rest_of_abstract_declarator,
7255         print_parameter_declaration_clause, print_exception_specification,
7256         print_nested_name_specifier, print_template_id,
7257         typedef_original_name,  print_template_argument_list_start,
7258         print_template_argument_list_end): New functions.
7259
7260 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
7261
7262         * ir.texi: Add more documentation.
7263
7264 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
7265
7266         * cp-tree.h (struct saved_scope): Remove x_function_parms.
7267         (current_function_parms): Don't define.
7268         (struct cp_language_function): Remove parms_stored.
7269         (current_function_just_assigned_this): Don't define.
7270         (current_function_parms_stored): Likewise.
7271         (static_ctors): Declare.
7272         (static_dtors): Likewise.
7273         (SF_EXPAND): Don't define.
7274         (expand_start_early_try_stmts): Remove declaration.
7275         (store_parm_decls): Likewise.
7276         * decl.c (static_ctors): Don't declare.
7277         (static_dtors): Likewise.
7278         (struct binding_level): Remove this_block.
7279         (poplevel): Remove dead code.
7280         (set_block): Likewise.
7281         (mark_binding_level): Don't mark this_block.
7282         (mark_saved_scope): Don't mark x_function_parms.
7283         (init_decl_processing): Don't add current_function_parms as a GC
7284         root.
7285         (check_function_type): Change prototype.
7286         (start_function): Remove RTL-generation code.
7287         (expand_start_early_try_stmts): Remove.
7288         (store_parm_decls): Give it internal linkage.  Remove
7289         RTL-generation code.
7290         (finish_function): Remove RTL-generation code.
7291         * decl2.c (static_ctors): Fix formatting.
7292         (static_dtors): Likewise.
7293         * method.c (use_thunk): Don't call store_parm_decls.
7294         (synthesize_method): Likewise.
7295         * optimize.c (maybe_clone_body): Likewise.
7296         * parse.y (fn.def2): Likewise.
7297         (.set_base_init): Likewise.
7298         (nodecls): Likewise.
7299         * pt.c (instantiate_decl): Likewise.
7300         * rtti.c (synthesize_tinfo_fn): Likewise.
7301         * semantics.c (genrtl_try_block): Simplify.
7302         (expand_body): Use genrtl_start_function and
7303         genrtl_finish_function.
7304         (genrtl_start_function): New function.
7305         (genrtl_finish_function): Likewise.
7306
7307 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
7308
7309         * error.c (cp_tree_printer, case 'P'): Append break.
7310
7311 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
7312
7313         * cp-tree.h (frob_opname): Declare.
7314         * parse.y (saved_scopes): New static variable.
7315         (cp_parse_init): Adjust.
7316         (do_id): If lastiddecl is NULL, do do_identifier.
7317         (operator): Save scope information.
7318         (unoperator): New reduction. Restore scope information.
7319         (operator_name): Append unoperator. Call frob_opname.
7320         * spew.c (frob_opname): Define.
7321
7322 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
7323
7324         * decl.c, rtti.c: Include defaults.h if not already included.
7325         Don't define the *_TYPE_SIZE macros.
7326
7327 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
7328
7329         * cp-tree.h (push_switch): Change prototype.
7330         (check_cp_case_value): Remove declaration.
7331         (decl_constant_value): Likewise.
7332         * decl.c (struct cp_switch): Add switch_stmt and cases.
7333         (case_compare): New function.
7334         (push_switch): Set switch_stmt.  Initialize cases.
7335         (pop_switch): Clean up cases.
7336         (define_case_label): Rename to ...
7337         (finish_case_label): ... this.  Do semantic analysis for case
7338         labels here.
7339         (start_function): Correct comment.
7340         * decl2.c (check_cp_case_value): Remove.
7341         * expr.c (do_case): Remove.
7342         * pt.c (tsubst_expr): Adjust call to finish_case_label.
7343         * semantics.c (genrtl_do_poplevel): Remove declaration.
7344         (RECHAIN_STMTS): Remove.
7345         (finish_break_stmt): Use build_break_stmt.
7346         (finish_continue_stmt): Use build_continue_stmt.
7347         (finish_switch_cond): Adjust condition here, rater than in
7348         c_expand_start_case.
7349         (finish_case_label): Remove.
7350         * typeck.c (c_expand_return): Remove.
7351         (c_expand_start_case): Likewise.
7352
7353 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
7354
7355         * ir.texi: Document type nodes.
7356
7357 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
7358
7359         * cp-tree.h (init_cp_semantics): Declare.
7360         (genrtl_try_block): Don't declare.
7361         (genrtl_handler): Likewise.
7362         (genrtl_catch_block): Likewise.
7363         (genrtl_ctor_stmt): Likewise.
7364         (genrtl_subobject): Likewise.
7365         (genrtl_do_poplevel): Likewise.
7366         (genrtl_named_return_value): Likewise.
7367         * lex.c (init_parse): Call init_cp_semantics.
7368         * semantics.c (genrtl_try_block): Give it internal linkage.
7369         (genrtl_handler): Likewise.
7370         (genrtl_catch_block): Likewise.
7371         (genrtl_ctor_stmt): Likewise.
7372         (genrtl_subobject): Likewise.
7373         (genrtl_do_poplevel): Likewise.
7374         (genrtl_named_return_value): Likewise.
7375         (lang_expand_stmt): Rename to ...
7376         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
7377         (init_cp_semantics): Define.
7378
7379         * decl.c (initialize_local_var): Remove RTL-generating code.
7380         * semantics.c (genrtl_try_block): Fix formatting.
7381
7382         Move statement-tree facilities from C++ to C front-end.
7383         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
7384         (void_zero_node): Remove.
7385         (stmt_tree): Likewise.
7386         (scope_chain): Adjust.
7387         (language_function): Rename to cp_language_function.
7388         (cp_function_chain): Adjust.
7389         (current_stmt_tree): Remove.
7390         (last_tree): Likewise.
7391         (last_expr_type): Likewise.
7392         (struct lang_decl): Adjust.
7393         (STMT_IS_FULL_EXPR_P): Remove.
7394         (add_tree): Remove.
7395         (begin_stmt_tree): Likewise.
7396         (finish_stmt_tree): Likewise.
7397         (walk_tree_fn): Likewise.
7398         (walk_stmt_tree): Likewise.
7399         * class.c (finish_struct): Replace use of add_tree with add_stmt.
7400         * decl.c (mark_stmt_tree): Adjust type.
7401         (init_decl_processing): Don't build void_zero_node.
7402         (initialize_local_var): Adjust usage of current_stmt_tree.
7403         (finish_enum): Use add_stmt, not add_tree.
7404         (save_function_data): Adjust use of language_function.
7405         (finish_constructor_body): Use add_stmt, not add_tree.
7406         (finish_destructor_body): Likewise.
7407         (push_cp_function_context): Adjust use of language_function.
7408         (pop_cp_function_context): Likewise.
7409         (mark_lang_function): Likewise.
7410         (mark_cp_function_context): Likewise.
7411         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
7412         (build_vec_init): Likewise.
7413         * semantics.c (SET_LAST_STMT): Remove.
7414         (RECHAIN_STMTS): Don't use it.
7415         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
7416         (current_stmt_tree): Define.
7417         (add_tree): Remove.
7418         (finish_goto_stmt): Use add_stmt, not add_tree.
7419         (finish_expr_stmt): Likewise.
7420         (begin_if_stmt): Likewise.
7421         (finish_then_clause): Likewise.
7422         (begin_while_stmt): Likewise.
7423         (begin_do_stmt): Likewise.
7424         (finish_return_stmt): Likewise.
7425         (begin_for_stmt): Likewise.
7426         (finish_break_stmt): Likewise.
7427         (finish_continue_stmt): Likewise.
7428         (begin_switch_stmt): Likewise.
7429         (finish_case_label): Likewise.
7430         (begin_try_block): Likewise.
7431         (begin_function_try_block): Likewise.
7432         (begin_handler): Likewise.
7433         (begin_catch_block): Likewise.
7434         (begin_compound_stmt): Likewise.
7435         (begin_asm_stmt): Likewise.
7436         (finish_asm_stmt): Likewise.
7437         (finish_label_stmt): Likewise.
7438         (add_decl_stmt): Likewise.
7439         (finish_subobject): Likewise.
7440         (finish_decl_cleanup): Likewise.
7441         (finish_named_return_value): Likewise.
7442         (setup_vtbl_ptr): Likewise.
7443         (add_scope_stmt): Likewise.
7444         (finish_stmt_expr): Likewise.
7445         (prune_unused_decls): Remove.
7446         (begin_stmt_tree): Likewise.
7447         (finish_stmt_tree): Likewise.
7448         (prep_stmt): Adjust use of current_stmt_tree.
7449         (lang_expand_stmt): Likewise.
7450         * tree.c (statement_code_p): Remove.
7451         (cp_statement_code_p): New function.
7452         (walk_stmt_tree): Remove.
7453         (init_tree): Set lang_statement_code_p.
7454
7455 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
7456
7457         Integrated preprocessor.
7458
7459         * Make-lang.in, Makefile.in: Remove all references to input.c,
7460         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
7461         * gxx.gperf, hash.h, input.c: Delete.
7462         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
7463         initialized properly.
7464
7465         * class.c (fixup_pending_inline): Take a tree, not a
7466         struct pending_inline *.  All callers changed.
7467         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
7468         RID_PROTECTED entries in ridpointers[] array here.
7469         * decl.c (duplicate_decls): Do not refer to struct
7470         pending_inline.
7471         (record_builtin_type, init_decl_processing): Use RID_MAX not
7472         CP_RID_MAX.
7473         (grokdeclarator): Use C_IS_RESERVED_WORD.
7474         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
7475         cpplib.
7476         (grok_x_components): Do not inspect pending_inlines chain.
7477
7478         * cp-tree.h (struct lang_identifier): Add rid_code entry.
7479         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
7480         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
7481         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
7482         TIME_IDENTIFIER_FILEINFO): Kill.
7483         Update prototypes.
7484         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
7485         single 32-bit word.
7486         * parse.y: Call do_pending_inlines unconditionally.
7487         reinit_parse_for_method is now snarf_method.  fn.defpen is no
7488         longer necessary.  Remove unnecessary <itype> annotation on
7489         SCOPE.  Do not refer to end_of_file or struct pending_inline.
7490         * semantics.c (begin_inline_definitions): Call
7491         do_pending_inlines unconditionally.
7492
7493         * lex.c: Remove all code now shared with C front end.
7494         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
7495         into the get_identifier table.  Rewrite pragma handling to
7496         work with the registry.  Move code to save tokens for later
7497         processing to spew.c.
7498
7499         * spew.c: Rewrite everything in terms of token streams instead
7500         of text.  Move routines here from lex.c / input.c as
7501         appropriate.  GC-mark trees hanging off the pending inlines
7502         chain.
7503
7504 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
7505
7506         * NEWS: Mention that the named return value extension has been
7507         deprecated.
7508         * cp-tree.h (original_result_rtx): Define.
7509         (TREE_REFERENCE_EXPR): Remove.
7510         (DECL_VPARENT): Likewise.
7511         (pushdecl_nonclass_level): Likewise.
7512         (store_return_init): Likewise.
7513         (reinit_lang_specific): Likewise.
7514         (genrtl_named_return_value): Change prototype.
7515         * decl.c (original_result_rtx): Remove.
7516         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
7517         Do not generate RTL for local variables here.
7518         (store_return_init): Remove.
7519         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
7520         store_return_init.
7521         (finish_named_return_value): Adjust accordingly.  Warn that this
7522         extension is deprecated.
7523         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
7524
7525 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7526
7527         * pt.c (type_unification_real): Replace switch with if.
7528         (unify): Tsubst non-type parms before comparing.
7529
7530 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7531
7532         * error.c (dump_typename): New function, broken out of ...
7533         (dump_type): ... here. Use it.
7534         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
7535
7536 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7537
7538         * init.c (build_offset_ref): Deal with namespace scoped
7539         TEMPLATE_ID_EXPRs.
7540
7541 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7542
7543         * class.c (resolve_address_of_overloaded_function): Add
7544         explanation message.
7545         * decl.c (define_case_label): Reformat explanation.
7546         * decl2.c (finish_static_data_member_decl): Likewise.
7547         (grokfield): Likewise.
7548         * friend.c (do_friend): Likewise.
7549
7550 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
7551
7552         * tree.c (walk_tree): Expose tail recursion.
7553         (walk_stmt_tree): New function.
7554         * cp-tree.h: Prototype walk_stmt_tree.
7555         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
7556         the BLOCKs directly.  If a BLOCK has no variables after
7557         pruning, discard it.
7558         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
7559         restore the line number.
7560
7561 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
7562
7563         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
7564         (pt.o): Remove dependency on HTAB_H.
7565         * cp-tree.h: Include hashtab.h.
7566         (walk_tree): Change prototype.
7567         (walk_tree_without_duplicates): New function.
7568         * decl.c (check_default_argument): Use it.
7569         * optimize.c (remap_decl): Adjust calls to walk_tree.
7570         (copy_body): Likewise.
7571         (expand_calls_inline): Likewise.
7572         (calls_setjmp_p): Use walk_tree_without_duplicates.
7573         * pt.c: Don't include hashtab.h.
7574         (for_each_template_parm): Use walk_tree_without_duplicates.
7575         * semantics.c (finish-stmt_tree): Likewise.
7576         (expand_body): Likewise.
7577         * tree.c (walk_tree): Add additional parameter.
7578         (walk_tree_without_duplicates): New function.
7579         (count_trees): Use it.
7580         (verify_stmt_tree): Adjust call to walk_tree.
7581         (find_tree): Use walk_tree_without_duplicates.
7582         (no_linkage_check): Likewise.
7583         (break_out_target_exprs): Adjust call to walk_tree.
7584         (cp_unsave): Likewise.
7585
7586 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7587
7588         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
7589         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
7590         * cp-tree.h (TYPE_BINFO): Adjust comment.
7591         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
7592         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
7593         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
7594         (TYPE_TEMPLATE_INFO): Likewise.
7595         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
7596         * class.c (push_nested_class): Likewise.
7597         * decl.c (lookup_name_real): Likewise.
7598         (grokdeclarator): Likewise.
7599         (grok_op_properties): Likewise.
7600         (xref_tag): Likewise.
7601         (xref_basetypes): Likewise.
7602         * decl2.c (constructor_name_full): Likewise.
7603         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
7604         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
7605         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
7606         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7607         (dump_type_suffix): Likewise.
7608         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
7609         instead.
7610         (get_aggr_from_typedef): Likewise.
7611         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
7612         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7613         (write_template_parm): Likewise.
7614         (write_template_template_parm): Check tree code instead of
7615         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
7616         * method.c (build_overload_nested_name): Add
7617         BOUND_TEMPLATE_TEMPLATE_PARM.
7618         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
7619         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7620         * pt.c (convert_template_argument): Check tree code instead of
7621         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
7622         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
7623         (for_each_template_parm): Adjust comment.
7624         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
7625         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7626         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
7627         template_args_equal to compare template template parameter cases.
7628         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7629         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
7630         instead.
7631         * tree.c (copy_template_template_parm): Decide whether to create
7632         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
7633         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7634         (copy_tree_r): Likewise.
7635         * typeck.c (comptypes): Likewise.  Check tree code instead of
7636         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
7637
7638 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
7639
7640         * decl.c (finish_function): Move the code for handling functions
7641         marked with the constructor and destructor attributes inside the
7642         expand_p block.
7643
7644 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
7645
7646         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
7647
7648 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
7649
7650         * pt.c (lookup_template_class): Remove abort.
7651         * tree.c (get_type_decl): Allow error_mark_node.
7652
7653 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
7654
7655         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
7656         TEMPLATE_ID_EXPRs.
7657
7658 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
7659
7660         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
7661         new ABI mangling.
7662
7663 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
7664
7665         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
7666         union tag mismatch error reporting.
7667
7668 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
7669
7670         * call.c (build_scoped_method_call): Check it is not a namespace.
7671
7672 2000-08-30  Jason Merrill  <jason@redhat.com>
7673
7674         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
7675
7676         * tree.c (bot_manip): Check TREE_CONSTANT rather than
7677         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
7678         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
7679
7680         * decl.c (start_function): Always call make_function_rtl.
7681
7682 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
7683
7684         * semantics.c (prune_unused_decls): New function.
7685         (finish_stmt_tree): Call it via walk_tree.
7686
7687 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
7688
7689         * class.c (build_secondary_vtable): Constify a char *.
7690         * decl.c (init_decl_processing): Initialize function_id_node,
7691         pretty_function_id_node, and func_id_node.
7692         * input.c (struct input_source): Constify 'str'.
7693         (feed_input): Constify first argument.
7694         * mangle.c (write_identifier): Constify argument.
7695         * pt.c (mangle_class_name_for_template): Constify argument.
7696
7697 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
7698
7699         * typeck.c (mark_addressable): Remove code that pokes around in
7700         RTL.
7701
7702 2000-08-28  Jason Merrill  <jason@redhat.com>
7703
7704         * lex.c (file_name_nondirectory): Move to toplev.c.
7705
7706         * cp-tree.h (LOCAL_CLASS_P): New macro.
7707         * class.c (finish_struct_1): Use it.
7708
7709 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
7710
7711         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
7712         (write_encoding): Pass another argument to write_name.
7713         (write_name): Add ignore_local_scope parameter.  Fix handling of
7714         local names.
7715         (write_nested_name): Use write_unqualified_name.
7716         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
7717         (write_template_prefix): Use write_unqualified_name.
7718         (write_component): Remove.
7719         (write_local_name): Add parameter.  Use direct local entity to
7720         discriminator calculation.
7721         (write_class_enum_type): Pass another argument to write_name.
7722         (write_template_template_arg): Likewise.
7723         (make_guard_variable): Likewise.
7724
7725 2000-08-27  Jason Merrill  <jason@redhat.com>
7726
7727         * decl.c (pushdecl): Matching decls for local externs are found in
7728         the current level.  Propagate linkage information from previous
7729         declarations.
7730
7731 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
7732
7733         * ir.texi (Expressions): Fix typo.
7734
7735 2000-08-25  Greg McGary  <greg@mcgary.org>
7736
7737         * tree.c (init_tree): Use ARRAY_SIZE.
7738
7739 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
7740
7741         * error.c (cp_tree_printer): Rework.
7742
7743 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
7744
7745         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
7746         dyn-string.o.
7747         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
7748         (cp-demangle.o): Remove target.
7749         (dyn-string.o): Likewise.
7750
7751         * decl.c (grokfndecl): Require that `main' return an `int'.
7752         * mangle.c (write_encoding): Don't mangle return types for
7753         conversion functions.
7754
7755 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
7756
7757         * error.c (tree_formatting_info): New data type.
7758         (tree_being_formatted): New macro.
7759         (tree_formatting_flags): Likewise.
7760         (put_whitespace): Likewise.
7761         (print_tree_identifier): Likewise.
7762         (print_identifier): Likewise.
7763         (cp_tree_printer, print_function_argument_list, print_declaration,
7764         print_expression, print_function_declaration,
7765         print_function_parameter, print_type, print_cv_qualifier): New
7766         functions.
7767         (init_error): Initialize lang_printer.
7768
7769 2000-08-24  Jason Merrill  <jason@redhat.com>
7770
7771         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
7772         adjustment necessary.
7773
7774 2000-08-24  Greg McGary  <greg@mcgary.org>
7775
7776         * cp-tree.h (MAIN_NAME_P): Remove macro.
7777
7778 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
7779
7780         * error.c (print_instantiation_context): Don't forget to flush the
7781         buffer.
7782
7783 2000-08-23  Jason Merrill  <jason@redhat.com>
7784
7785         * typeck.c (build_ptrmemfunc): Save the input pmf.
7786
7787         * method.c (process_modifiers): Use same_type_p.
7788
7789 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
7790
7791         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
7792         * mangle.c (write_function_type): Change prototype.
7793         (write_encoding): Don't mangle return types for
7794         constructors or destructors.
7795         (write_type): Adjust call to write_function_type.
7796         * pt.c (instantiate_template): Instantiate alternate entry points
7797         when instantiating the main function.
7798
7799 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
7800
7801         * error.c (cp_print_error_function): Don't use embedded '\n' in
7802         output_printf.
7803
7804 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
7805
7806         * decl.c (init_decl_processing): Remove bogus initialization.
7807         * error.c (lang_print_error_function): Restore here.
7808         (init_error): Initialize print_error_function.
7809
7810 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
7811
7812         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
7813
7814 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
7815
7816         * Makefile.in (error.o): Depends on diagnostic.h
7817
7818         * cp-tree.h (problematic_instantiation_changed,
7819         record_last_problematic_instantiation, current_instantiation,
7820         print_instantiation_context): Declare.
7821         (maybe_print_template_context): Remove.
7822
7823         * decl.c (init_decl_processing): Set print_error_function to NULL.
7824         (lang_print_error_function): Remove, since we're using a new
7825         machinery.
7826
7827         * error.c: #include diagnostic.h
7828         (function_category): New function.
7829         (cp_diagnostic_starter): Likewise.
7830         (cp_diagnostic_finalizer): Likewise.
7831         (cp_print_error_function): Likewise.
7832         (maybe_print_instantiation_context): Likewise.
7833         (print_instantiation_full_context): Likewise.
7834         (print_instantiation_partial_context): Likewise.
7835         (print_instantiation_context): Define.
7836         (init_error): Initialize diagnostic pager and finalizer.
7837
7838         * pt.c (problematic_instantiation_changed): Define.
7839         (record_last_problematic_instantiation): Likewise.
7840         (current_instantiation): Likewise.
7841         (maybe_print_template_context): Remove.
7842         (print_template_context): Likewise.
7843         (current_tinst_level): Make static to reflect Brendan Kehoe's
7844         change of 1995-04-13.
7845         (push_tinst_level): Call print_instantiation_context.
7846
7847 2000-08-21  Nix  <nix@esperi.demon.co.uk>
7848
7849         * lang-specs.h: Do not process -o or run the assembler if
7850         -fsyntax-only.
7851
7852 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
7853
7854         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
7855         variables.
7856         * decl2.c (lang_decode_option): Disable gettext attributes for
7857         -ansi.
7858
7859 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
7860
7861         * lex.c (lang_init_options): Default diagnostic message maximum
7862         length to 80, when line-wrapping.
7863
7864 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
7865
7866         * class.c (build_vtbl_initializer): Clear the entire
7867         vtbl_init_data.  Start keeping track of the functions for which we
7868         have created vcall offsets here.
7869         (dfs_build_vcall_offset_vtbl_entries): Remove.
7870         (build_vcall_offset_vtbl_entries): Reimplement.
7871         (add_vcall_offset_vtbl_entries_r): New function.
7872         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
7873         computing when vcall offsets are necessary.
7874
7875 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7876
7877         * decl.c (member_function_or_else): Use cp_error ... %T.
7878         (grokdeclarator): Likewise.
7879         (start_method): Likewise.
7880         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
7881
7882 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7883
7884         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
7885         TYPE_DECLs.
7886
7887 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7888
7889         * cp-tree.h (PTRMEM_OK_P): New macro.
7890         (itf_ptrmem_ok): New enumeration value.
7891         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
7892         argument. Diagnose implicit pointer to member.
7893         (instantiate_type): Don't diagnose implicit pointer to member
7894         here. Pass itf_ptrmem_ok if ok. Adjust calls to
7895         resolve_address_of_overloaded_function.
7896         * init.c (build_offset_ref): Set PTRMEM_OK_P.
7897         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
7898         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
7899         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
7900         (build_unary_op): Deal with single non-static member in
7901         microsoft-land.
7902
7903 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7904
7905         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
7906
7907 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7908
7909         * cp-tree.h (enum_name_string): Remove prototype.
7910         (report_case_error): Remove prototype.
7911         * cp/typeck2.c (enum_name_string): Remove.
7912         (report_case_error): Remove.
7913         * error.c (dump_expr): Deal with enum values directly.
7914         Correctly negate integer constant.
7915
7916 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7917
7918         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
7919         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
7920         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
7921         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
7922         (__cxa_vec_new): Use __cxa_vec_new2.
7923         (__cxa_vec_delete): Use __cxa_vec_delete2.
7924
7925 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7926
7927         * vec.cc (__cxa_vec_new): Set "C" linkage.
7928         (__cxa_vec_ctor): Likewise.
7929         (__cxa_vec_cctor): Likewise.
7930         (__cxa_vec_dtor): Likewise.
7931         (__cxa_vec_delete): Likewise.
7932         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
7933         (__cxa_vec_ctor): Likewise.
7934         (__cxa_vec_cctor): Likewise.
7935         (__cxa_vec_dtor): Likewise.
7936         (__cxa_vec_delete): Likewise.
7937
7938 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7939
7940         * class.c (instantiate_type): Reinstate local variable
7941         deleted in previous change.
7942
7943         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
7944         itf_no_attributes.
7945
7946 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7947
7948         * cp-tree.h (instantiate_type_flags): New enumeration.
7949         (instantiate_type): Change parameter.
7950         * class.c (instantiate_type): Adjust prototype. Adjust.
7951         * call.c (standard_conversion): Adjust instantiate_type call.
7952         (reference_binding): Likewise.
7953         (build_op_delete_call): Likewise.
7954         (convert_like_real): Likewise.
7955         * cvt.c (cp_convert_to_pointer): Likewise.
7956         (convert_to_reference): Likewise.
7957         * pt.c (convert_nontype_argument): Likewise.
7958         * typeck.c (build_binary_op): Likewise.
7959         (build_ptrmemfunc): Likewise.
7960         (convert_for_assignment): Likewise.
7961
7962 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7963
7964         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
7965         (current_aggr): Define.
7966         * decl.c (grokdeclarator): Make sure a friend class is an
7967         elaborated type specifier.
7968         * parse.y (current_aggr): Remove static definition.
7969         (cp_parse_init): Adjust.
7970         (structsp): Clear and restore current_aggr.
7971         (component_decl_list): Clear current_aggr.
7972
7973         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
7974         aggregate tag on the typename's context.
7975
7976         * pt.c (tsubst_friend_class): Return error_mark_node, if
7977         parms becomes NULL.
7978         (instantiate_class_template): Ignore error_mark_node friend types.
7979
7980 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
7981
7982         * cvt.c (warn_ref_binding): New static function, broken out of ...
7983         (convert_to_reference): ... here. Use it.
7984
7985 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
7986
7987         * parse.y (template_arg): Add rule for template qualified with
7988         global scope.
7989
7990 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
7991
7992         * decl2.c (add_function): Reorganize.
7993         (arg_assoc): Do not consider function template decls.
7994
7995 2000-08-11  Jason Merrill  <jason@redhat.com>
7996
7997         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
7998         looking inside.
7999
8000 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8001
8002         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
8003         (lookup_nested_tag): Likewise.
8004
8005         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
8006         can be produced.
8007
8008 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8009
8010         * parse.y (named_complex_class_head_sans_basetype): Remove
8011         always true if.
8012
8013 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8014
8015         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
8016         explicit TEMPLATE_ID_EXPR args.
8017         (build_expr_from_tree, case CALL_EXPR): Likewise.
8018
8019 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
8020
8021         * decl.c (check_tag_decl): Diagnose typename's which don't
8022         declare anything.
8023
8024 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
8025
8026         * init.c (build_aggr_init): Reject bogus array initializers
8027         early.
8028
8029 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
8030
8031         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
8032         runtime.
8033         * cp/tinfo.cc (__dynamic_cast): Likewise.
8034         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
8035
8036 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
8037
8038         * cvt.c (convert_to_pointer_force): Fix error message when
8039         attempting to cast from ambiguous base.
8040
8041 2000-08-08  Jason Merrill  <jason@redhat.com>
8042
8043         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
8044         (tsubst_template_arg_vector): Likewise.
8045
8046         * decl2.c (build_anon_union_vars): Choose the largest field; don't
8047         assume that one will be as large as the union.
8048
8049 2000-08-07  Kazu Hirata  <kazu@hxi.com>
8050
8051         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
8052         * decl.c (pop_labels): Likewise.
8053
8054 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
8055
8056         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
8057         specifications.
8058         (__pointer_to_member_type_info): Likewise.
8059         (__base_class_info): Likewise.
8060         (__class_type_info): Likewise.
8061         (__si_class_type_info): Likewise.
8062         (__vmi_class_type_info): Likewise.
8063         * tinfo.cc (__si_class_type_info::__do_find_public_src):
8064         Changed member names to match specifications.
8065         (__vmi_class_type_info::__do_find_public_src): Likewise.
8066         (__si_class_type_info::__do_dyncast): Likewise.
8067         (__vmi_class_type_info::__do_dyncast): Likewise.
8068         (__si_class_type_info::__do_upcast): Likewise.
8069         (__vmi_class_type_info::__do_upcast): Likewise.
8070         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
8071         (__pbase_type_info::__pointer_catch): Likewise.
8072         (__pointer_type_info::__pointer_catch): Likewise.
8073         (__pointer_to_member_type_info::__pointer_catch): Likewise.
8074
8075 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
8076
8077         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
8078         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
8079         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
8080
8081 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
8082
8083         * cp-tree.h (add_method): Change prototype.
8084         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
8085         Don't double the size of the method vector in the error case.
8086         (handle_using_decl): Adjust call to add_method.
8087         (add_implicitly_declared_members): Likewise.
8088         (clone_function_decl): Likewise.
8089         * decl2.c (check_classfn): Likewise.
8090         * semantics.c (finish_member_declaration): Likewise.
8091
8092 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
8093
8094         * decl.c (flag_isoc94): New variable.
8095
8096 2000-08-02  Jason Merrill  <jason@redhat.com>
8097
8098         * pt.c (do_type_instantiation): Add complain parm; don't complain
8099         if called recursively.
8100         * cp-tree.h, parse.y: Adjust.
8101
8102 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
8103
8104         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
8105         -Wno-strict-prototypes.
8106
8107         * g++spec.c: Adjust type of second argument to
8108         lang_specific_driver, and update code as necessary.
8109
8110         * cp-tree.h: Don't prototype min_precision here.
8111         (my_friendly_assert): Cast expression to void.
8112         * semantics.c (do_poplevel): Initialize scope_stmts.
8113
8114 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
8115
8116         * cp-tree.h (DECL_NEEDED_P): Tweak.
8117
8118 2000-07-28  Jason Merrill  <jason@redhat.com>
8119
8120         * lang-specs.h: Use %i in rule for .ii files.
8121
8122 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
8123
8124         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
8125
8126 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
8127
8128         Allow indirect primary bases.
8129         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
8130         primary_base.
8131         (CLASSTYPE_VFIELD_PARENT): Remove.
8132         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
8133         (BINFO_PRIMARY_BINFO): Remove.
8134         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
8135         (BINFO_VBASE_PRIMARY_P): Likewise.
8136         (BINFO_PRIMARY_BASE_OF): New macro.
8137         (BINFO_INDIRECT_PRIMARY_P): Likewise.
8138         (get_primary_binfo): New function.
8139         * decl.c (lang_mark_tree): Make lang_type::primary_base.
8140         * class.c (vcall_offset_data_s): Rename to ...
8141         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
8142         and add ctor_vtbl_p.
8143         (get_derived_offset): Use get_primary_binfo.
8144         (dfs_mark_primary_bases): Adjust handling of virtual primary
8145         bases.
8146         (mark_primary_bases): Likewise.
8147         (set_primary_base): Take a binfo, not an integer, as a
8148         representation of the primary base.
8149         (indirect_primary_base_p): Remove.
8150         (determine_primary_base): Adjust for indirect primary bases.
8151         (dfs_find_final_overrider): Fix typo in coment.
8152         (update_vtable_entry_for_fn): Use get_primary_binfo.
8153         (layout_nonempty_base_or_field): Tweak.
8154         (build_base_fields): Adjust for new primary base semantics.
8155         (dfs_propagate_binfo_offsets): Remove.
8156         (propagate_binfo_offsets): Rewrite.
8157         (dfs_set_offset_for_shared_vbases): Remove.
8158         (layout_virtual_bases): Don't use it.
8159         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
8160         ABI.
8161         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
8162         CLASSTYPE_VFIELD_PARENT.
8163         (dfs_get_primary_binfo): New function.
8164         (get_primary_binfo): Likewise.
8165         (dump_class_hierarchy_r): Tweak printing of primary bases.
8166         (build_vtbl_initializer): Fix typo in comments.  Use
8167         vtbl_init_data.
8168         (build_vcall_and_vbase_vtbl_entries): Likewise.
8169         (build_vbaes_offset_vtbl_entries): Likewise.
8170         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
8171         BV_VCALL_INDEX to handle indirect primary bases.
8172         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
8173         (build_rtti_vtbl_entries): Likewise.
8174         * search.c (get_shared_vbase_if_not_primary): Tweak.
8175         (find_vbase_instance): Likewise.
8176         (binfo_for_vtable): Simplify.
8177         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
8178         (make_binfo): Make it have 11 entries.
8179
8180 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
8181
8182         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
8183         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
8184         ascertaining primaryness.
8185         (G): Remove template_args.
8186         (decl_is_template_id): New function.
8187         (write_encoding): Use decl_is_template_id.
8188         (write_name): Likewise.  Handle type_decls.  Get main variant of
8189         type decls.
8190         (write_nested_name): Likewise.
8191         (write_prefix): Likewise.
8192         (write_template_prefix): Likewise.
8193         (write_special_name_constructor): Remove defunct production from
8194         comment.
8195         (write_bare_function_type): Remove comment about absent parameter.
8196         (write_template_template_arg): Add missing grammar production to
8197         comment.
8198
8199 2000-07-27  Jason Merrill  <jason@redhat.com>
8200
8201         * decl.c (duplicate_decls): If common_type produces a non-typedef
8202         type for a typedef, just use the old type.
8203
8204 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
8205
8206         * cp-tree.h (function_depth): Declare.
8207         (verify_stmt_tree): Likewise.
8208         (find_tree): Likewise.
8209         * decl.c (function_depth): Give it external linkage.
8210         * optimize.c (optimize_function): Increment and decrement it.
8211         * tree.c (verify_stmt_tree_r): New function.
8212         (verify_stmt_tree): Likewise.
8213         (find_tree_r): Likewise.
8214         (find_tree): Likewise.
8215
8216 2000-07-27  Jason Merrill  <jason@redhat.com>
8217
8218         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
8219         TYPE_PTRMEMFUNC_P.
8220         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
8221
8222 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
8223
8224         * decl.c (start_cleanup_fn): Mark the function as `inline'.
8225         * decl2.c (get_guard): Call cp_finish_decl, not
8226         rest_of_decl_compilation, for local guards.
8227         * lex.c (do_identifier): Remove unused variable.
8228
8229 Wed Jul 26 15:05:51 CEST 2000   Marc Espie <espie@cvs.openbsd.org>
8230
8231         * parse.y:  Add missing ';'.
8232
8233 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
8234
8235         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
8236         of `extern "C++"'.
8237
8238 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
8239
8240         Kill strict_prototype. Backwards compatibility only for
8241         non NO_IMPLICIT_EXTERN_C systems.
8242         * cp-tree.h (flag_strict_prototype): Remove.
8243         (strict_prototype): Remove.
8244         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
8245         * decl.c (maybe_push_to_top_level): Adjust.
8246         (pop_from_top_level): Adjust.
8247         (decls_match): Only allow sloppy parm matching for ancient
8248         system headers.
8249         (init_decl_processing): Adjust.
8250         (grokdeclarator): Adjust.
8251         * decl2.c (flag_strict_prototype): Remove.
8252         (strict_prototype): Remove.
8253         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
8254         (lang_f_options): Remove "strict-prototype".
8255         (unsupported-options): Add "strict-prototype".
8256         * lex.c (do_identifier): Adjust.
8257         (do_scoped_id): Adjust.
8258         * parse.y (empty_parms): Adjust.
8259         * class.c (push_lang_context): Adjust.
8260         (pop_lang_context): Adjust.
8261         * typeck.c (comp_target_parms): Adjust.
8262
8263 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
8264
8265         * decl.c (poplevel): Deal with anonymous variables at for scope.
8266         (maybe_inject_for_scope_var): Likewise.
8267
8268 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
8269
8270         * decl.c: Remove all signal handling code, now done in toplev.c.
8271
8272 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
8273
8274         * decl.c (make_rtl_for_nonlocal_decl): Rework.
8275
8276         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
8277         correctly.
8278
8279 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
8280
8281         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
8282         Define my_friendly_assert and my_friendly_abort as macros
8283         which may call friendly_abort.  Prototype friendly abort, not
8284         my_friendly_abort or my_friendly_assert.
8285         * decl.c (signal_catch): Report the signal caught in the error
8286         message.  Call fatal directly.
8287         * typeck2.c (ack, my_friendly_assert): Delete.
8288         (my_friendly_abort): Rename to friendly_abort.  Expect file,
8289         line, and function parameters.  Report the abort code, then
8290         call fancy_abort.  Do not mask an abort if errors have
8291         already occurred.
8292
8293 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
8294
8295         * typeck.c (comp_target_parms): Remove obsolete parameter.
8296         (comp_target_types): Adjust.
8297
8298 2000-07-17  Jason Merrill  <jason@redhat.com>
8299
8300         * typeck.c (mark_addressable): Never set TREE_USED.
8301         * call.c (build_call): Don't abort on calls to library functions
8302         that have been declared normally.
8303
8304         * typeck.c (build_binary_op): Fix grammar in warning.
8305
8306         * exception.cc (__eh_free): Fix prototype.
8307
8308         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
8309
8310         * decl.c (pushdecl): Handle seeing an OVERLOAD in
8311         IDENTIFIER_NAMESPACE_VALUE.
8312
8313 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
8314
8315         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
8316         * method.c (use_thunk): Correct handling of vcall offsets.
8317
8318 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
8319
8320         * .cvsignore: parse.h and parse.c have no cp- prefix.
8321
8322 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
8323
8324         * .cvsignore: New file.
8325
8326 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
8327
8328         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
8329
8330 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
8331
8332         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
8333         * parse.c: Remove.
8334         * parse.h: Likewise.
8335
8336 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
8337
8338         * class.c (layout_class_type): Add pointers to virtual bases after
8339         base classes under the old ABI.
8340
8341 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
8342
8343         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
8344         (finish_continue_stmt): Likewise.
8345         (begin_for_stmt): Remove call to note_level_for_for.
8346         (finish_goto_stmt): Change call from build_min_nt
8347         to build_stmt.
8348         (finish_expr_stmt): Likewise.
8349         (begin_if_stmt): Likewise.
8350         (begin_while_stmt): Likewise.
8351         (finish_while_stmt): Likewise.
8352         (finish_return_stmt): Likewise.
8353         (begin_for_stmt): Likewise.
8354         (finish_for_stmt): Likewise.
8355         (finish_break_stmt): Likewise.
8356         (begin_switch_stmt): Likewise.
8357         (finish_case_label): Likewise.
8358         (genrtl_try_block): Likewise.
8359         (begin_try_block): Likewise.
8360         (begin_handler): Likewise.
8361         (begin_compound_stmt): Likewise.
8362         (finish_asm_stmt): Likewise.
8363         (finish_label_stmt): Likewise.
8364         (add_decl_stmt): Likewise.
8365         (finish_subobject): Likewise.
8366         (finish_decl_cleanup): Likewise.
8367         (finish_named_return_value): Likewise.
8368         (setup_vtbl_ptr): Likewise.
8369         (add_scope_stmt): Likewise.
8370         * decl.c (finish_constructor_body): Likewise.
8371         (finish_destructor_body): Likewise.
8372         * optimize.c (copy_body_r): Likewise.
8373         (initialize_inlined_parameters): Likewise.
8374         (declare_return_variable): Likewise.
8375         (expand_call_inline): Likewise.
8376
8377 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
8378
8379         * semantics.c (expand_body): Sync interface information
8380         at the end of function body expansion.
8381
8382 2000-07-09  Jason Merrill  <jason@redhat.com>
8383
8384         * init.c (build_new_1): Bail early if the call to new fails.
8385
8386         * decl.c (compute_array_index_type): Check specifically for
8387         an INTEGER_CST, not just TREE_CONSTANT.
8388
8389         * decl.c (duplicate_decls): Don't call duplicate_decls on
8390         the DECL_TEMPLATE_RESULT.
8391         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
8392         codes.
8393
8394         * error.c (dump_template_bindings): Don't crash if we had an
8395         invalid argument list.
8396
8397         * typeck.c (c_expand_start_case): Do narrowing here.
8398         * semantics.c (finish_switch_cond): Not here.
8399
8400 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
8401
8402         * parse.y (asm_clobbers): Do string concatenation.
8403
8404 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
8405
8406         * decl.c (pushtag): Don't put local classes in template functions
8407         on the local_classes list.
8408
8409 2000-07-04  Scott Snyder  <snyder@fnal.gov>
8410
8411         * decl2.c (get_guard): Add missing return for old ABI local
8412         variable case.
8413
8414 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
8415
8416         * cp-tree.h (char_type_p): New function.
8417         * decl.c (init_decl_processing): Don't initialize
8418         signed_wchar_type_node or unsigned_wchar_type_node.
8419         (complete_array_type): Handle brace-enclosed string-constants.
8420         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
8421         * tree.c (char_type_p): New function.
8422         * typeck2.c (digest_init): Use char_type_p.
8423
8424 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
8425
8426         * pt.c (tsubst): Don't layout type, if it's error_mark.
8427
8428 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
8429
8430         * pt.c (instantiate_pending_templates): Reset template level.
8431
8432 2000-07-05  Jason Merrill  <jason@redhat.com>
8433
8434         * call.c (joust): Don't complain about `operator char *()' beating
8435         `operator const char *() const'.
8436
8437 2000-07-04  scott snyder  <snyder@fnal.gov>
8438             Jason Merrill  <jason@redhat.com>
8439
8440         * repo.c (repo_get_id): Handle the case where a class with virtual
8441         bases has a null TYPE_BINFO_VTABLE.
8442
8443 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
8444             Jason Merrill  <jason@redhat.com>
8445
8446         * parse.y (member_init): Just pass in the type.
8447         * init.c (expand_member_init): Handle getting a type.
8448
8449 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8450             Jason Merrill  <jason@redhat.com>
8451
8452         * decl.c (finish_function): Warn if a function has no return
8453         statement.
8454         Suggested by Andrew Koenig.
8455         * typeck.c (check_return_expr): Do set current_function_returns_value
8456         if we got an error_mark_node.
8457
8458 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
8459
8460         * decl2.c (push_decl_namespace): Push the original namespace.
8461
8462 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
8463
8464         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
8465         * semantics.c (begin_class_definition): Clear it.
8466
8467 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
8468
8469         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
8470         (genrtl_expr_stmt): Likewise.
8471         (genrtl_decl_stmt): Likewise.
8472         (genrtl_if_stmt): Likewise.
8473         (genrtl_while_stmt): Likewise.
8474         (genrtl_do_stmt): Likewise.
8475         (genrtl_return_stmt): Likewise.
8476         (genrtl_for_stmt): Likewise.
8477         (genrtl_break_stmt): Likewise.
8478         (genrtl_continue_stmt): Likewise.
8479         (genrtl_scope_stmt): Likewise.
8480         (genrtl_switch_stmt): Likewise.
8481         (genrtl_case_label): Likewise.
8482         (genrtl_begin_compound_stmt): Likewise.
8483         (genrtl_finish_compound_stmt): Likewise.
8484         (genrtl_compound_stmt): Likewise.
8485         (genrtl_asm_stmt): Likewise.
8486
8487         * init.c (begin_init_stmts): Remove call to
8488         genrtl_begin_compound_stmt.
8489         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
8490
8491         * semantics.c (lang_expand_stmt): Changed call to
8492         genrtl_compound_stmt to ignore return value.
8493
8494 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
8495
8496         * mangle.c (canonicalize_for_substitution): Return the canonical
8497         variant of a type.
8498
8499         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
8500         TYPE_DECL.
8501         * typeck.c (commonparms): Remove obstack manipulations.
8502
8503 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
8504
8505         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
8506
8507         * Makefile.in (OBJS): Added ../c-semantics.o.
8508         (OBJDEPS): Likewise.
8509
8510         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
8511         ../c-common.h.
8512         (struct stmt_tree): Added comment.
8513         (current_function_name_declared): Removed.
8514         (stmts_are_full_exprs_p): Likewise.
8515         (genrtl_do_pushlevel): Likewise.
8516         (genrtl_clear_out_block): Likewise.
8517         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
8518         (DECL_ANON_UNION_ELEMS): Likewise.
8519         (emit_local_var): Likewise.
8520         (make_rtl_for_local_static): Likewise.
8521         (do_case): Likewise.
8522         (expand_stmt): Likewise.
8523         (genrtl_decl_cleanup): Likewise.
8524         (c_expand_asm_operands): Likewise.
8525         (c_expand_return): Likewise.
8526         (c_expand_start_case): Likewise.
8527
8528         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
8529         (emit_local_var): Likewise.
8530         (initialize_local_var): Change reference to
8531         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
8532         Change reference to stmts_are_full_exprs_p to
8533         current_stmt_tree->stmts_are_full_exprs_p.
8534         (push_cp_function_context): Likewise.
8535
8536         * expect.c (expand_throw): Change reference to
8537         stmts_are_full_exprs_p.
8538
8539         * init.c (build_aggr_init): Change reference to
8540         stmts_are_full_exprs_p.
8541         (build_vec_init): Likewise.
8542
8543         * optimize.c (maybe_clone_body): Change reference to
8544         current_function_name_declared to
8545         cp_function_chain->name_declared.
8546
8547         * pt.c (instantiate_decl): Change reference to
8548         current_function_name_declared to
8549         cp_function_chain->name_declared.
8550
8551         * semantics.c (expand_cond): Moved declaration to c-common.h.
8552         (genrtl_do_pushlevel): Moved to c-semantics.c.
8553         (genrtl_clear_out_block): Likewise.
8554         (genrtl_goto_stmt): Likewise.
8555         (genrtl_expr_stmt): Likewise.
8556         (genrtl_decl_stmt): Likewise.
8557         (gerntl_if_stmt): Likewise.
8558         (genrtl_while_stmt): Likewise.
8559         (genrtl_do_stmt): Likewise.
8560         (genrtl_return_stmt): Likewise.
8561         (genrtl_for_stmt): Likewise.
8562         (genrtl_break_stmt): Likewise.
8563         (genrtl_continue_stmt): Likewise.
8564         (genrtl_scope_stmt): Likewise.
8565         (genrtl_switch_stmt): Likewise.
8566         (genrtl_case_label): Likewise.
8567         (genrtl_begin_compound_stmt): Likewise.
8568         (genrtl_finish_compound_stmt): Likewise.
8569         (genrtl_compound_stmt): Likewise.
8570         (genrtl_asm_stmt): Likewise.
8571         (genrtl_decl_cleanup): Likewise.
8572         (expand_cond): Likewise.
8573         (expand_stmt): Renamed to ...
8574         (lang_expand_stmt): ... this.
8575         (lang_expand_expr_stmt): Initialize.
8576         (set_current_function_name_declared): Likewise.
8577         (stmts_are_full_exprs_p): Likewise.
8578         (current_function_name_declared): Likewise.
8579         (anon_aggr_type_p): Likewise.
8580         (do_poplevel): Change reference to
8581         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
8582         Change reference to stmts_are_full_exprs_p to
8583         current_stmt_tree->stmts_are_full_exprs_p.
8584         (add_tree): Likewise.
8585         (finish_expr_stmt): Likewise.
8586         (prep_stmt): Likewise.
8587         (lang_expand_stmt): Likewise.
8588         (begin_compound_stmt): Change reference to
8589         current_function_name_declared to
8590         cp_function_chain->name_declared and call to
8591         current_function_name_declared().
8592         (setup_vtbl_ptr): Likewise.
8593         (genrtl_do_poplevel): Removed.
8594
8595 2000-06-30  Jason Merrill  <jason@redhat.com>
8596
8597         * init.c (init_init_processing): Go back to aligning like
8598         double_type_node for old ABI.
8599         (get_cookie_size): Make cookie larger if we get a type that needs
8600         more alignment.
8601         (build_vec_delete): Call it.
8602
8603         * typeck.c (qualify_type_recursive): New fn.
8604         (composite_pointer_type): Use it.
8605         (build_binary_op): Use composite_pointer_type.
8606
8607 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
8608             Jason Merrill  <jason@redhat.com>
8609
8610         * typeck.c (check_return_expr): Don't complain about returning
8611         NULL from operator new if -fcheck-new.
8612         * cp-tree.h: Declare flag_check_new here.
8613         * init.c: Not here.
8614
8615 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
8616
8617         * mangle.c (find_substitution): Use same_type_p.
8618         (write_encoding): Don't check for substitutions.
8619
8620 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
8621
8622         * parse.y (expr_no_comma_rangle): New non-terminal.
8623         (template_parm): Use it for default parameter case.
8624         (template_arg): Use it.
8625         (expr_no_commas): Remove commented out undefined extensions.
8626         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
8627         * parse.h, parse.c: Rebuilt.
8628
8629 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
8630
8631         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
8632         (finish_asm_stmt): Do it here, instead.
8633
8634         * cp-tree.h (ridpointers): Don't declare.
8635         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
8636         (record_builtin_java_type): Likewise.
8637         (init_decl_processing): Likewise.
8638         * lex.c: Move inclusion of lex.h.
8639         (ridpointers): Don't define.
8640         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
8641         RID_MAX.
8642         * lex.h (enum rid): Rename to ...
8643         (enum cp_rid): ... this.
8644         (ridpointers): Don't declare.
8645         * parse.y: Move inclusion of lex.h.
8646         * parse.c: Regenerated.
8647         * spew.c: Move inclusion of lex.h.
8648
8649         * cp-tree.h (struct language_function): Remove temp_name_counter.
8650         (temp_name_counter): Remove.
8651         (get_temp_name): Change prototype.
8652         (get_guard): New function.
8653         (get_guard_cond): Likewise.
8654         (set_guard): Likewise.
8655         * cvt.c (build_up_reference): Adjust call to get_temp_name.
8656         * decl.c (expand_static_init): Use get_guard and friends to
8657         implement guard variables.
8658         * decl2.c (get_temp_name): Assume that the variables created are
8659         always static.
8660         (get_sentry): Rename to ...
8661         (get_guard): ... this.  Implement new ABI guard variables.
8662         (get_guard_bits): New function.
8663         (get_guard_cond): Likewise.
8664         (set_guard): Likewise.
8665         (start_static_initialization_or_destruction): Use them.
8666         (do_static_initialization): Replace sentry with guard throughout.
8667         (do_static_destruction): Likewise.
8668         * init.c (create_temporary_var): Add comment.
8669
8670 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
8671
8672         * mangle.c (find_substitution): Use same_type_p.
8673         (write_encoding): Don't check for substitutions.
8674
8675 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
8676
8677         * parse.y (expr_no_comma_rangle): New non-terminal.
8678         (template_parm): Use it for default parameter case.
8679         (template_arg): Use it.
8680         (expr_no_commas): Remove commented out undefined extensions.
8681         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
8682         * parse.h, parse.c: Rebuilt.
8683
8684 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
8685
8686         * cp-tree.h (flag_const_strings): Remove.
8687         (warn_parentheses): Likewise.
8688         (warn_format): Likewise.
8689         (common_type): Likewise.
8690         (default_conversion): Likewise.
8691         (build_binary_op): Likewise.
8692         (cp_build_binary_op): New macro.
8693         * call.c (build_new_op): Use cp_build_binary_op instead of
8694         build_binary_op.
8695         * class.c (build_vtable_entry_ref): Likewise.
8696         * decl.c (expand_static_init): Likewise.
8697         (compute_array_index_type): Likewise.
8698         (build_enumerator): Likewise.
8699         * decl2.c (delete_sanity): Likewise.
8700         (start_static_initialization_or_destruction): Likewise.
8701         * error.c (dump_type_suffix): Likewise.
8702         * init.c (resolve_offset_ref): Likewise.
8703         (build_new): Likewise.
8704         (build_new_1): Likewise.
8705         (build_vec_delete_1): Likewise.
8706         (build_vec_init): Likewise.
8707         (build_delete): Likewise.
8708         * rtti.c (synthesize_tinfo_fn): Likewise.
8709         (synthesize_tinfo_var): Likewise.
8710         * search.c (expand_upcast_fixups): Likewise.
8711         (fixup_all_virtual_upcast_offsets): Likewise.
8712         * typeck.c (build_array_ref): Likewise.
8713         (get_member_function_from_ptrfunc): Likewise.
8714         (build_binary_op): Add parameter.
8715         (pointer_int_sum): Use cp_build_binary_op.
8716         (pointer_diff): Likewise.
8717         (build_modify_expr): Likewise.
8718         (get_delta_difference): Likewise.
8719         (build_ptrmemfunc): Likewise.
8720
8721 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
8722
8723         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
8724         * decl.c (create_implicit_typedef): Adjust.
8725         * decl2.c (build_artificial_parm): Adjust.
8726         * method.c (implicitly_declare_fn): Adjust.
8727         * pt.c (push_inline_template_parms_recursive): Adjust.
8728         (process_template_parm): Adjust.
8729         (overloaded_template_name): Adjust.
8730         * semantics.c (finish_template_template_parm): Adjust.
8731
8732 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
8733
8734         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
8735         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
8736         where to emit thunks.
8737         (build_vtt): Adjust call to build_vtt_inits.
8738         (build_vtt_inits): Add parameter to indicate whether or not
8739         sub-VTTs for virtual bases should be included.  Adjust handling of
8740         construction vtables.
8741         (get_matching_base): New function.
8742         (dfs_build_vtt_inits): Rename to ...
8743         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
8744         construction vtables.
8745         (dfs_fixup_binfo_vtbls): Likewise.
8746         (build_ctor_vtbl_groups): Build construction vtables for virtual
8747         bases, too.
8748         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
8749         to build construction vtbls.
8750         (dfs_accumulate_vtbl_inits): Adjust handling of
8751         construction vtables.
8752
8753         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
8754         types correctly.
8755
8756 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
8757
8758         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
8759
8760 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
8761
8762         * search.c (hides): Remove.
8763         (is_subobject_of_p): Add most_derived parameter. Use
8764         CANONICAL_BINFO.
8765         (lookup_field_queue_p): Adjust.
8766         (lookup_field_r): Adjust.
8767
8768 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
8769
8770         * decl2.c (handle_class_head): Bash typedefs to the type's main
8771         decl.
8772
8773 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
8774
8775         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
8776         (begin_global_stmt_expr): ... this.
8777         (genrtl_finish_stmt_expr): Rename to ...
8778         (finish_global_stmt_expr): ... this.
8779         * init.c (begin_init_stmts): Adjust calls.
8780         (finish_init_stmts): Likewise.
8781         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
8782         (begin_global_stmt_expr): ... this.
8783         (genrtl_finish_stmt_expr): Rename to ...
8784         (finish_global_stmt_expr): ... this.
8785
8786 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
8787
8788         * search.c (lookup_member): Fix typo in comment.
8789
8790 2000-06-24  Jason Merrill  <jason@redhat.com>
8791
8792         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
8793         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
8794
8795 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8796
8797         * parse.y (complex_direct_notype_declarator): Support global_scope.
8798         * Makefile.in: Adjust conflict count.
8799
8800 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
8801
8802         * parse.y (template_arg): Convert TEMPLATE_DECL
8803         that is a template template parameter to
8804         TEMPLATE_TEMPLATE_PARM here.
8805
8806         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
8807         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
8808         (copy_template_template_parm): Adjust prototype.
8809         * decl.c (grokdeclarator): Remove dead code.
8810         * pt.c (process_template_parm): Tidy.
8811         (lookup_template_class): Construct nodes in
8812         copy_template_template_parm.
8813         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
8814         lookup_template_class.  Use TYPE_TI_TEMPLATE.
8815         * tree.c (copy_template_template_parm): Add NEWARGS
8816         parameter.
8817         (mapcar): Adjust call to copy_template_template_parm.
8818         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
8819         * method.c (build_template_template_parm_names): Change error
8820         code to avoid compilation warning.
8821
8822         * gxxint.texi: Document template template parameter
8823         name mangling.
8824
8825 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
8826
8827         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
8828         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
8829         (cp-demangle.o): New rule.
8830         (dyn-string.o): Likewise.
8831         * inc/cxxabi.h (__cxa_demangle): New declaration.
8832
8833 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
8834
8835         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
8836         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
8837         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
8838         a tree, not an int.
8839         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
8840         (make_thunk): Change prototype.
8841         (emit_thunk): Rename to use_thunk.
8842         (mangle_thunk): Change prototype.
8843         * class.c (get_derived_offset): Simplify.
8844         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
8845         BV_GENERATE_THUNK_WITH_VTABLE_P.
8846         (build_primary_vtable): Simplify.
8847         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
8848         (dfs_find_base): Remove.
8849         (update_vtable_entry_for_fn): Correct bug in finding the base
8850         where a virtual function was first declared.  Figure out whether
8851         or not to emit a vcall-thunk with the vtables in which it appears.
8852         Correct logic for deciding whether to use an ordinary thunk, or a
8853         vcall thunk.
8854         (finish_struct_1): Remove unnecssary code.
8855         (build_vtbl_initializer): Use ssize_int for the running counter of
8856         negative indices.
8857         (build_vtbl_initializer): Only use vcall thunks where necessary.
8858         Mark thunks as needing to be emitted with their vtables, or not.
8859         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
8860         indices.  Use size_binop.
8861         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
8862         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
8863         size_binop.
8864         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
8865         (build_vtable_entry): Mark thunks as needing to be emitted with
8866         their vtables, or not.
8867         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
8868         * decl2.c (mark_vtable_entries): Use use_thunk instead of
8869         emit_thunk.
8870         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
8871         information.
8872         * error.c (dump_expr): Use BV_FN.
8873         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
8874         not an int.
8875         * method.c (make_thunk): Likewise.
8876         (emit_thunk): Rename to use_thunk.  Allow callers to decide
8877         whether or not to actually emit the thunk.  Adjust for changes in
8878         representation of vcall offsets.
8879         * search.c (dfs_get_pure_virtuals): Use BV_FN.
8880         * semantics.c (emit_associated_thunks): New function.
8881         (expand_body): Use it.
8882         * ir.texi: Adjust decriptions of thunks.
8883
8884 2000-06-22  Jason Merrill  <jason@redhat.com>
8885
8886         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
8887         (tsubst_friend_function): Copy it here.
8888
8889         * decl.c (grok_op_properties): Fix typo.
8890
8891         * decl2.c (delete_sanity): Clarify warning, avoid failure on
8892         deleting void*.
8893
8894         * pt.c (check_explicit_specialization): Clarify error.
8895
8896         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
8897         an old OVERLOAD when we're declaring a non-function.
8898         (pushdecl, destroy_local_var): Check for error_mark_node.
8899         (warn_extern_redeclared_static): Also bail early if
8900         we're a CONST_DECL.
8901         (push_overloaded_decl): Ignore an old error_mark_node.
8902
8903 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
8904
8905         * call.c (build_x_va_arg): Check if in a template decl.
8906         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
8907
8908 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
8909
8910         * class.c (push_lang_context): TYPE_NAME gets you to the Java
8911         types DECLs.
8912         * decl.c (check_goto): Computed gotos assumed OK.
8913
8914 2000-06-20  Jason Merrill  <jason@redhat.com>
8915
8916         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
8917         for which we don't need to look for instantiations.
8918
8919 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
8920
8921         * parse.y (program): Always call finish_translation_unit.
8922         * parse.c, parse.h: Rebuilt.
8923
8924 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
8925
8926         * method.c: Don't include hard-reg-set.h.
8927
8928 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
8929
8930         * rtti.c (get_base_offset): Cope when vbase field is in a base.
8931
8932 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
8933
8934         * call.c (build_conditional_expr): Use VOID_TYPE_P.
8935         * cvt.c (cp_convert_to_pointer): Likewise.
8936         (convert_to_void): Likewise.
8937         * error.c (dump_expr): Likewise.
8938         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
8939         * init.c (build_delete): Likewise.
8940         * method.c (emit_thunk): Likewise.
8941         * optmize.c (declare_return_variable): Likewise.
8942         * rtti.c (get_tinfo_decl_dynamic): Likewise.
8943         (get_typeid): Likewise.
8944         (build_dynamic_cast_1): Likewise.
8945         * typeck.c (composite_pointer_type): Likewise.
8946         (common_type): Likewise.
8947         (build_indirect_ref): Likewise.
8948         (build_binary_op): Likewise.
8949         (build_x_compound_expr): Likewise.
8950         (check_return_expr): Likewise.
8951         * typeck2.c (add_exception_specifier): Likewise.
8952
8953         * mangle.c (write_method_parms): Use direct comparison for end
8954         of parmlist.
8955
8956 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
8957
8958         * cp-tree.h (genrtl_try_block): Declare function.
8959         (genrtl_handler): Likewise.
8960         (genrtl_catch_block): Likewise.
8961         (genrtl_ctor_stmt): Likewise.
8962         (genrtl_subobject): Likewise.
8963         (genrtl_decl_cleanup): Likewise.
8964         (genrtl_do_poplevel): Likewise.
8965         (genrtl_do_pushlevel): Likewise.
8966         (genrtl_clear_out_block): Likewise.
8967         (genrtl_goto_stmt): Likewise.
8968         (genrtl_expr_stmt): Likewise.
8969         (genrtl_decl_stmt): Likewise.
8970         (genrtl_if_stmt): Likewise.
8971         (genrtl_while_stmt): Likewise.
8972         (genrtl_do_stmt): Likewise.
8973         (genrtl_return_stmt): Likewise.
8974         (genrtl_for_stmt): Likewise.
8975         (genrtl_break_stmt): Likewise.
8976         (genrtl_continue_stmt): Likewise.
8977         (genrtl_scope_stmt): Likewise.
8978         (genrtl_switch_stmt): Likewise.
8979         (genrtl_case_label): Likewise.
8980         (genrtl_begin_compound_stmt): Likewise.
8981         (genrtl_finish_compound_stmt): Likewise.
8982         (genrtl_compound_stmt): Likewise.
8983         (genrtl_asm_stmt): Likewise.
8984         (genrtl_named_return_value): Likewise.
8985         (genrtl_begin_stmt_expr): Likewise.
8986         (genrtl_finish_stmt_expr): Likewise.
8987         (finish_for_stmt): Removed first argument.
8988         (finish_switch_stmt): Likewise.
8989
8990         * semantics.c (genrtl_try_block): Define function.
8991         (genrtl_handler): Likewise.
8992         (genrtl_catch_block): Likewise.
8993         (genrtl_ctor_stmt): Likewise.
8994         (genrtl_subobject): Likewise.
8995         (genrtl_decl_cleanup): Likewise.
8996         (genrtl_do_poplevel): Likewise.
8997         (genrtl_do_pushlevel): Likewise.
8998         (genrtl_clear_out_block): Likewise.
8999         (genrtl_goto_stmt): Likewise.
9000         (genrtl_expr_stmt): Likewise.
9001         (genrtl_decl_stmt): Likewise.
9002         (genrtl_if_stmt): Likewise.
9003         (genrtl_while_stmt): Likewise.
9004         (genrtl_do_stmt): Likewise.
9005         (genrtl_return_stmt): Likewise.
9006         (genrtl_for_stmt): Likewise.
9007         (genrtl_break_stmt): Likewise.
9008         (genrtl_continue_stmt): Likewise.
9009         (genrtl_scope_stmt): Likewise.
9010         (genrtl_switch_stmt): Likewise.
9011         (genrtl_case_label): Likewise.
9012         (genrtl_begin_compound_stmt): Likewise.
9013         (genrtl_finish_compound_stmt): Likewise.
9014         (genrtl_compound_stmt): Likewise.
9015         (genrtl_asm_stmt): Likewise.
9016         (genrtl_named_return_value): Likewise.
9017         (genrtl_begin_stmt_expr): Likewise.
9018         (genrtl_finish_stmt_expr): Likewise.
9019         (finish_for_stmt): Removed first argument and generate rtl
9020         specific code.
9021         (finish_switch_stmt): Likewise.
9022         (do_poplevel): Removed generate rtl specific code.
9023         (do_pushlevel): Likewise.
9024         (add_tree): Likewise.
9025         (finish_goto_stmt): Likewise.
9026         (finish_expr_stmt): Likewise.
9027         (begin_if_stmt): Likewise.
9028         (finish_if_stmt_cond): Likewise.
9029         (finish_then_clause): Likewise.
9030         (begin_else_clause): Likewise.
9031         (finish_else_clause): Likewise.
9032         (finish_if_stmt): Likewise.
9033         (clear_out_block): Likewise.
9034         (begin_while_stmt): Likewise.
9035         (finish_while_stmt_cond): Likewise.
9036         (finish_while_stmt): Likewise.
9037         (begin_do_stmt): Likewise.
9038         (finish_do_body): Likewise.
9039         (finish_do_stmt): Likewise.
9040         (finish_return_stmt): Likewise.
9041         (begin_for_stmt): Likewise.
9042         (finish_for_init_stmt): Likewise.
9043         (finish_for_cond): Likewise.
9044         (finish_for_expr): Likewise.
9045         (finish_break_stmt): Likewise.
9046         (finish_continue_stmt): Likewise.
9047         (begin_switch_stmt): Likewise.
9048         (finish_switch_cond): Likewise.
9049         (finish_case_label): Likewise.
9050         (begin_try_block): Likewise.
9051         (begin_function_try_block): Likewise.
9052         (finish_try_block): Likewise.
9053         (finish_cleanup_try_block): Likewise.
9054         (finish_cleanup): Likewise.
9055         (finish_function_try_block): Likewise.
9056         (finish_handler_sequence): Likewise.
9057         (finish_function_handler_sequence): Likewise.
9058         (begin_handler): Likewise.
9059         (finish_handler_parms): Likewise.
9060         (begin_catch_block): Likewise.
9061         (finish_handler): Likewise.
9062         (begin_compound_stmt): Likewise.
9063         (finish_compound_stmt): Likewise.
9064         (finish_asm_stmt): Likewise.
9065         (finish_label_stmt): Likewise.
9066         (finish_label_decl): Likewise.
9067         (finish_subobject): Likewise.
9068         (finish_decl_cleanup): Likewise.
9069         (finish_named_return_value): Likewise.
9070         (begin_stmt_expr): Likewise.
9071         (finish_stmt_expr): Likewise.
9072
9073         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
9074         to call genrtl_expr_stmt when appropriate.
9075
9076         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
9077         begin_compound_expr to call genrtl_begin_stmt_expr and
9078         genrtl_begin_compound_expr when appropriate.
9079         (finish_init_stmts): Changed calls to finish_compound_expr and
9080         finish_stmt_expr to call genrtl_finish_compound_expr and
9081         genrtl_finish_stmt_expr when appropriate.
9082         (expand_default_init): Changed call to finish_expr_stmt to call
9083         genrtl_expr_stmt when appropriate.
9084         (build_vec_init): Likewise.
9085
9086         * parse.y (simple_stmt): Removed first argument from call to
9087         finish_for_stmt. Removed first argument from call to
9088         finish_switch_stmt.
9089
9090         * parse.c: Regenerated.
9091
9092         * pt.c (tsubst_expr): Removed first argument from call to
9093         finish_for_stmt. Removed first argument from call to
9094         finish_switch_stmt.
9095
9096 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
9097
9098         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
9099         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
9100
9101         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
9102         (cplus_tree_code_length[]): Likewise.
9103         (cplus_tree_code_name[]): Likewise.
9104         (init_parse): Added call to add_c_tree_codes. Changed
9105         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
9106
9107 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
9108
9109         * cp-tree.h (finish_mem_initializers): Declare.
9110         (count_trees): Likewise.
9111         * parse.y (base_init): Use finish_mem_initializers.
9112         * semantics.c (finish_mem_initializers): New function.
9113
9114         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
9115         the number of trees.
9116         (n_trees): Remove.
9117         (count_trees): Don't use it.
9118
9119 2000-06-15  Jason Merrill  <jason@redhat.com>
9120
9121         * tree.c (count_trees): New debugging function.
9122
9123         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
9124         * init.c (build_member_call): Pull out the name of a DECL.
9125
9126         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
9127         * semantics.c (expand_body): Push to TV_INTEGRATION here.
9128         * optimize.c (optimize_function): Not here.
9129         * pt.c (instantiate_decl): Push to TV_PARSE.
9130
9131 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
9132
9133         * cp-tree.h (struct language_function): Remove x_base_init_list
9134         and x_member_init_list.
9135         (current_base_init_list): Remove.
9136         (current_member_init_list): Likewise.
9137         (setup_vtbl_ptr): Change prototype.
9138         (emit_base_init): Likewise.
9139         (expand_member_init): Likewise.
9140         (reinit_parse_for_function): Remove.
9141         * decl.c (save_function_data): Don't clear x_base_init_list and
9142         x_member_init_list.
9143         (mark_language_function): Don't mark them.
9144         * init.c (perform_member_init): Tweak comment.
9145         (sort_member_init): Take the list of initializers as an argument.
9146         (sort_base_init): Likewise.
9147         (emit_base_init): Likewise.
9148         (expand_member_init): Return the initializer.  Don't use global
9149         variables.
9150         * lex.c (reinit_parse_for_function): Remove.
9151         * method.c (build_template_parm_names): Correct substitution.
9152         (do_build_copy_constructor): Don't use current_member_init_list
9153         and current_base_init_list.
9154         (synthesize_method): Likewise.
9155         * parse.y (base_init): Split mem-initializers into
9156         base-initializers and field-initializers.
9157         (member_init_list): Build up the list here.
9158         (member_init): Return the initializer.
9159         (fn.depfn): Don't use reinit_parse_for_function.
9160         * parse.c: Regenerated.
9161         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
9162         ERROR_MARK.
9163         (tsubst_expr): Don't use current_member_init_list
9164         and current_base_init_list.
9165         (tsubst_expr_values): Rename to ...
9166         (tsubst_initializer_list): ... this.  Use convert_from_reference.
9167         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
9168         and current_base_init_list.
9169         (begin_function_definition): Don't call reinit_parse_for_function.
9170
9171         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
9172
9173         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
9174         correctly.
9175
9176         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
9177
9178 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
9179
9180         * cp-tree.h (IF_COND): Move to c-common.h.
9181         (THEN_CLAUSE): Likewise.
9182         (ELSE_CLAUSE): Likewise.
9183         (WHILE_COND): Likewise.
9184         (WHILE_BODY): Likewise.
9185         (DO_COND): Likewise.
9186         (DO_BODY): Likewise.
9187         (RETURN_EXPR): Likewise.
9188         (EXPR_STMT_EXPR): Likewise.
9189         (FOR_INIT_STMT): Likewise.
9190         (FOR_COND): Likewise.
9191         (FOR_EXPR): Likewise.
9192         (FOR_BODY): Likewise.
9193         (SWITCH_COND): Likewise.
9194         (SWITCH_BODY): Likewise.
9195         (CASE_LOW): Likewise.
9196         (CASE_HIGH): Likewise.
9197         (GOTO_DESTINATION): Likewise.
9198         (COMPOUND_BODY): Likewise.
9199         (ASM_CV_QUAL): Likewise.
9200         (ASM_STRING): Likewise.
9201         (ASM_OUTPUTS): Likewise.
9202         (ASM_INPUTS): Likewise.
9203         (ASM_CLOBBERS): Likewise.
9204         (DECL_STMT_DECL): Likewise.
9205         (STMT_EXPR_STMT): Likewise.
9206         (LABEL_STMT_LABEL): Likewise.
9207         (SCOPE_BEGIN_P): Likewise.
9208         (SCOPE_END_P): Likewise.
9209         (SCOPE_STMT_BLOCK): Likewise.
9210         (SCOPE_NULLIFIED_P): Likewise.
9211         (SCOPE_NO_CLEANUPS_P): Likewise.
9212         (SCOPE_PARTIAL_P): Likewise.
9213         (ASM_VOLATILE_P): Likewise.
9214         (STMT_LINENO): Likewise.
9215         (STMT_LINENO_FOR_FN_P): Likewise.
9216
9217         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
9218         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
9219         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
9220         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
9221         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
9222
9223         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
9224
9225         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
9226         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
9227
9228         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
9229         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
9230         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
9231
9232 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
9233
9234         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
9235         * class.c (dfs_find_final_overrider): Set it appropriately.
9236         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
9237         avoid unneeded secondary vptrs.
9238
9239 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
9240
9241         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
9242         (check_bitfield_decl, check_field_decl): Likewise.
9243         (build_vtbl_or_vbase_field, build_base_field): Likewise.
9244         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
9245         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
9246         (xfer_tag, finish_enum): Likewise.
9247         * decl2.c (finish_builtin_type): Likewise.
9248         * init.c (init_init_processing): Likewise.
9249         * pt.c (instantiate_class_template): Likewise.
9250         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
9251         * cp-tree.h (struct lang_type): Add user_align member.
9252         (CLASSTYPE_USER_ALIGN): Define.
9253
9254 Tue Jun 13 15:48:03 2000  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
9255
9256         * Make-lang.in (c++.install-common): Install g++-cross in
9257         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
9258         $(target_alias)-g++ and $(target_alias)-c++.
9259
9260 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
9261
9262         * class.c (vcall_offset_data_s): Add last_init and fns.
9263         (overrides): Rename to same_signature_p.
9264         (dfs_find_final_overrider): Adjust accordingly.
9265         (mark_overriders): Likewise.
9266         (warn_hidden): Likewise.
9267         (build_vtbl_initializer): Reorganize machinery for building things
9268         at negative offsets.
9269         (build_vcall_and_vbase_vtbl_entries): Likewise.
9270         (build_vbase_offset_vtbl_entries): Likewise.
9271         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
9272         offset entries.  Do not create two entries for functions with the
9273         same signature.
9274         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
9275         (build_rtti_vtbl_entries): Reorganize machinery for building things
9276         at negative offsets.
9277
9278         * optimize.c (expand_call_inline): Don't recurse into the code
9279         used to initialize the parameters more than once.
9280
9281 2000-06-11  Mark Mitchell <mark@codesourcery.com>
9282
9283         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
9284         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
9285         (find_substitution): Only use the `Sa' substitution for
9286         std::allocator, not instantiations of it.
9287         (write_template_prefix): Move comment.  Only use a TREE_LIST to
9288         represent substitutions for a member template.
9289         (write_array_type): Mangle array dimensions correctly.
9290         * optimize.c (maybe_clone_body): Copy more information from the
9291         cloned function.
9292         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
9293         on the regenerated declaration.
9294
9295 2000-06-11  Chip Salzenberg  <chip@valinux.com>
9296             Mark Mitchell <mark@codesourcery.com>
9297
9298         * class.c (build_vtable): Clarify comment.
9299         (build_ctor_vtbl_group): Pass the most derived type to
9300         build_vtable.
9301
9302 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9303
9304         * decl2.c (compare_options): Don't needlessly cast away const-ness.
9305
9306 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
9307
9308         * decl.c (add_binding): Handle duplicate declarations of external
9309         variables.
9310
9311 2000-06-09  Chip Salzenberg  <chip@valinux.com>
9312             Mark Mitchell <mark@codesourcery.com>
9313
9314         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
9315         argument.
9316         (write_signed_number): New macro.
9317         (write_unsigned_number): Likewise.
9318         (write_source_name): Use them.
9319         (write_number): Handle signed and unsigned values.
9320         (write_integer_cst): Use tree_int_cst_sgn, and use
9321         write_unsigned_number or write_signed_number as appropriate.
9322         (write_discriminator): Use write_unsigned_number or
9323         write_signed_number as appropriate.
9324         (write_template_arg_literal): Likewise.
9325         (write_array_type): Use tree_low_cst.
9326         (write_template_parm):  Use write_unsigned_number or
9327         write_signed_number as appropriate.
9328         (write_substitution): Adjust call to write_number.
9329         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
9330         (write_expression): Handle non-type template arguments of
9331         reference type correctly.
9332         (mangle_thunk): Use write_signed_number.
9333
9334 2000-06-09  Chip Salzenberg  <chip@valinux.com>
9335
9336         * mangle.c (find_substition): Don't mangle objects with typename
9337         substitutions (e.g. "cin" as "Si").
9338
9339 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
9340
9341         * call.c (add_candidate): Use ggc_alloc_cleared.
9342         * decl.c (lookup_label): Likewise.
9343         * lex.c (retrofit_lang_decl): Likewise.
9344
9345 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
9346
9347         * semantics.c (expand_body): Push to TV_EXPAND.
9348         * optimize.c (optimize_function): Push to TV_INTEGRATION.
9349         * decl.c (start_function): Always call announce_function.
9350
9351         * tinfo2.cc: Just declare abort.
9352
9353 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
9354
9355         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
9356         whenever @ is a symbolic name.
9357
9358 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
9359
9360         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
9361
9362 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
9363
9364         * decl.c (pushdecl): Look up functions by DECL_NAME, not
9365         DECL_ASSEMBLER_NAME.
9366
9367 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
9368
9369         * decl2.c (c_language): Define.
9370
9371 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
9372
9373         * lex.c (lang_init_options): Tweak.
9374
9375         * decl2.c: Remove #inclusion of diagnostic.h
9376         (lang_decode_option): Move diagnostic formatting options to
9377         toplevel.
9378
9379         * lang-options.h: Remove documentation for diagnostic options.
9380
9381         * Makefile.in (lex.o): Depends upon diagnostic.h
9382
9383 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
9384
9385         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
9386         the same DECL_RESULT, it's not a redefinition.
9387         * pt.c (tsubst_decl): Remove code to handle illegal
9388         specializations.
9389
9390 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
9391
9392         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
9393
9394 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
9395
9396         * search.c (maybe_suppress_debug_info): Don't check
9397         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
9398
9399         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
9400         here if extern_p.
9401
9402         Remember instantiation context in deferred instantiations.
9403         * cp-tree.h (struct tinst_level): Remove.
9404         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
9405         * pt.c (current_tinst_level): Now a tree.
9406         (print_template_context, push_tinst_level, pop_tinst_level,
9407         tinst_for_decl): Adjust.
9408         (reopen_tinst_level): New fn.
9409         (init_pt): Register current_tinst_level as a root.
9410         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
9411         of the pending templates list.
9412         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
9413         * lex.c (extract_interface_info): Adjust.
9414         * decl2.c (warn_if_unknown_interface): Adjust.
9415
9416 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
9417
9418         * class.c (indirect_primary_base_p): New function.
9419         (determine_primary_base): Use it.
9420
9421 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
9422
9423         Update new-abi dynamic cast algorithm.
9424         * tinfo.cc (__class_type_info::__dyncast_result): Add
9425         whole_details. Adjust constructor.
9426         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
9427         Avoid unnecessary searching.
9428         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
9429
9430 Mon Jun  5 06:48:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9431
9432         * decl.c (init_decl_processing): Don't call record_component_aliases.
9433         * tree.c (build_cplus_array_type_1): Likewise.
9434
9435 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
9436
9437         * ir.texi: Correct typo.
9438         * mangle.c (write_expression): Handle non-type template arguments
9439         with reference type.
9440         * method.c (build_overload_value): Likewise.
9441         * pt.c (convert_nontype_argument): Explicitly represent conversion
9442         to a reference with an ADDR_EXPR.
9443         (unify): Always unify arguments in left-to-right order.
9444
9445 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
9446             Mark Mitchell  <mark@codesourcery.com>
9447
9448         * Make-lang.in (CXX_SRCS): Add mangle.c.
9449         * Makefile.in (CXX_OBJS): Add mangle.o.
9450         (mangle.o): New rule.
9451
9452         * class.c (local_classes): New variable.
9453         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
9454         (get_vtt_name): Use mangle_vtt_name for new ABI.
9455         (init_class_processing): Initialize local_classes.
9456         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
9457         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
9458         (std_identifier): New macro.
9459         (DECL_VOLATILE_MEMFUNC_P): New macro.
9460         (DECL_NAMESPACE_STD_P): Likewise.
9461         (local_classes): Declare.
9462         (get_mostly_instantiated_function_type): Declare.
9463         (init_mangle): Declare.
9464         (mangle_decl): Likewise.
9465         (mangle_type_string): Likewise.
9466         (mangle_type): Likewise.
9467         (mangle_typeinfo_for_type): Likewise.
9468         (mangle_typeinfo_string_for_type): Likewise.
9469         (mangle_vtbl_for_type): Likewise.
9470         (mangle_vtt_for_type): Likewise.
9471         (mangle_ctor_vtbl_for_type): Likewise.
9472         (mangle_thunk): Likewise.
9473         (mangle_conv_op_name_for_type): Likewise.
9474         (mangle_guard_variable): Likewise.
9475         * decl.c (pushtag): Keep track of local classes.
9476         (initialize_predefined_identifiers): Initialize std_identifier.
9477         (init_decl_processing): Use std_identifier.
9478         (start_decl): Don't treat instantiations as specializations.
9479         (grokdeclarator): Likewise.
9480         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
9481         name for fully-instantiated templates.
9482         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
9483         destructors with the new ABI.
9484         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
9485         (grokfield): Use mangle_type for new ABI.
9486         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
9487         (get_sentry): Use mangle_guard_variable for new ABI.
9488         (start_static_initialization_or_destruction): Likewise.
9489         * expr.c (extract_aggr_init): Remove.
9490         (extract_scalar_init): Likewise.
9491         (extract_init): Remove #if 0'd code.
9492         * mangle.c: New function.
9493         * method.c (build_mangled_name): Assert not flag_new_abi.
9494         (build_static_name): Likewise.
9495         (build_decl_overload_real): Likewise.
9496         (build_typename_overload): Likewise.
9497         (build_overload_with_type): Likewise.
9498         (build_overload_name): Likewise.
9499         (get_ctor_vtbl_name): Likewise.
9500         (start_squangling): Likewise.
9501         (get_id_2): Likewise.
9502         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
9503         (init_method): Call init_mangle for new ABI.
9504         (make_thunk): Call mangle_thunk for new ABI.
9505         * operators.def: Correct new ABI manglings for the `%' operator.
9506         Add `::' operator.
9507         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
9508         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
9509         (lookup_template_class): Call mangle_decl for new ABI.
9510         (get_mostly_instantiated_function_type): New function.
9511         (set_mangled_name_for_template_decl): Use it.
9512         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
9513         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
9514         conversion op names.
9515         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
9516         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
9517         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
9518         mangle_typeinfo_string_for_type.
9519
9520 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
9521
9522         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
9523         (INNERMOST_TEMPLATE_ARGS): New macro.
9524         (innermost_args): Remove.
9525         (get_innermost_template_args): New function.
9526         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
9527         * error.c (dump_function_decl): Be caution when using
9528         most_general_template.
9529         * method.c (build_template_parm_names):  Use
9530         INNERMOST_TEMPLATE_ARGS.
9531         * pt.c (add_to_template_args): Tidy comment
9532         (get_innermost_template_args): New function.
9533         (check_explicit_specialization): Clear DECL_INITIAL for a new
9534         specialization.
9535         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
9536         Tidy.
9537         (push_template_decl): Always register specializations of the most
9538         general template.
9539         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
9540         (coerce_template_parms): Likewise.
9541         (lookup_template_class): Likewise.
9542         (innermost_args): Remove.
9543         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
9544         (tsubst_decl): Handle tricky specializations.  Use
9545         get_innermost_template_args.
9546         (instantiate_template): Simplify handling of partial
9547         instantiations.
9548         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
9549         (most_general_template): Reimplement, in a more straightforward
9550         manner.
9551         (regenerate_decl_from_template): Tweak formatting.  Use
9552         TMPL_ARGS_DEPTH for clarity.
9553         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
9554
9555         * dump.c (dequeue_and_dump): Dump information about thunks.
9556
9557 2000-06-01  Richard Henderson  <rth@cygnus.com>
9558
9559         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
9560
9561 2000-06-01  Richard Henderson  <rth@cygnus.com>
9562
9563         * decl2.c (unsupported_options): Fix typo, make const.
9564         (lang_decode_option): Fix bsearch argument order.
9565
9566 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
9567
9568         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
9569         on FIELD_DECLs.
9570
9571 Wed May 31 14:09:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9572
9573         * cp-tree.h (c_get_alias_set): Deleted.
9574         * Makefile.in (decl.o): Include ../expr.h.
9575         * decl.c (expr.h): Include.
9576         (init_decl_processing): Call record_component_aliases for arrays.
9577         (grokdeclarator): Likewise.
9578         Set TREE_ADDRESSABLE for fields that aren't bitfields.
9579         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
9580
9581 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
9582
9583         Remove guiding declaration support.
9584         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
9585         (flag_guiding_decls): Remove.
9586         * call.c (build_user_type_conversion_1): Remove support for
9587         guiding decls.
9588         (build_new_function_call): Likewise.
9589         (build_new_op): Likewise.
9590         (build_new_method_call): Likewise.
9591         * decl.c (start_function): Likewise.
9592         * friend.c (is_friend): Likewise.
9593         (do_friend): Likewise.
9594         * decl2.c ((flag_dump_translation_unit): Make it const.
9595         (flag_guiding_decls): Remove.
9596         (unsupported_options): New variable
9597         (compare_options): New function.
9598         (lang_decode_option): Use them.
9599
9600         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
9601
9602         * method.c (mangle_expression): Adjust test for legal expression
9603         operators.
9604
9605         * pt.c (instantiate_decl): Save and restore the local
9606         specializations list.
9607
9608 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
9609
9610         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
9611
9612 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
9613
9614         * call.c (add_template_candidate_real): Handle member template
9615         constructors for classes with virtual bases.
9616         (build_user_type_conversion_1): Use in_charge_arg_for_name.
9617         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
9618
9619         * ir.texi: Update thunk documentation.
9620
9621         * call.c (joust): Fix handling of overloaded builtin operators.
9622
9623 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
9624
9625         * cp-tree.h (DECL_ANTICIPATED): New macro.
9626         Document new use of DECL_LANG_FLAG_7.
9627         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
9628         in the user namespace.
9629         * lex.c (do_identifier): If the identifier's declaration has
9630         DECL_ANTICIPATED on, it has not yet been declared.  But do not
9631         replace it with an ordinary implicit declaration.
9632
9633         * tinfo2.cc: Include stdlib.h.
9634
9635 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
9636
9637         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
9638         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
9639         CLASSTYPE_ALIGN.
9640
9641 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
9642
9643         * decl2.c (lang_decode_option): Use skip_leading_substring instead
9644         of plain strncmp.
9645
9646 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
9647
9648         * operators.def (<?): Duplicated, should have been...
9649         (>?): this.  Fixed.
9650
9651 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
9652             Mark Mitchell  <mark@codesourcery.com>
9653
9654         * cp-tree.h (ansi_opname): Make it a macro.
9655         (ansi_assopname): Likewise.
9656         (struct lang_decl_flags): Add assignment_operator_p.
9657         (struct lang_decl): Add operator_code.
9658         (DECL_VTT_PARM): Adjust.
9659         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
9660         overloaded operator.
9661         (SET_OVERLOADED_OPERATOR_CODE): New macro.
9662         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
9663         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
9664         (opname_tab): Remove.
9665         (assignop_tab): Likewise.
9666         (operator_name_info_t): New type.
9667         (operator_name_info): New variable.
9668         (assignment_operator_name_info): Likewise.
9669         (build_cp_library_fn): Remove declaration.
9670         (push_cp_library_fn): Likewise.
9671         (operator_name_string): Likewise.
9672         (build_decl_overload): Likewise.
9673         * call.c (print_z_candidates): Simplify.
9674         (build_object_call): Adjust usage of ansi_opname.  Use
9675         DECL_OVERLOADED_OPERATOR_P.
9676         (op_error): Adjust operator name lookup.
9677         (build_conditional_expr): Adjust usage of ansi_opname.
9678         (build_new_op): Likewise.
9679         (build_op_delete_call): Likewise.
9680         (build_over_call): Likewise.
9681         (joust): Use DECL_OVERLOADED_OPERATOR_P.
9682         * decl.c (duplicate_decls): Copy operator_code.
9683         (init_decl_processing): Adjust parameters to push_cp_library_fn.
9684         (builtin_function): Adjust parameters to build_library_fn_1.
9685         (build_library_fn_1): Accept an overloaded operator code.
9686         (build_library_fn): Pass ERROR_MARK.
9687         (build_cp_library_fn): Accept an overloaded operator code.
9688         (push_cp_library_fn): Likewise.
9689         (grokfndecl): Tweak.
9690         (grokdeclarator): Simplify code to compute names of overloaded
9691         operators.  Adjust use of ansi_opname.
9692         (ambi_op_p): Work on tree_codes, not identifiers.
9693         (unary_op_p): Likewise.
9694         (grok_op_properties): Likewise.
9695         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
9696         (lang_mark_tree): Don't try to mark the operator_code.
9697         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
9698         * error.c (dump_decl): Remove special handling for operator
9699         names.
9700         (dump_function_name): Likewise.
9701         (dump_expr): Adjust name lookup of operators.
9702         (op_to_string): Simplify.
9703         (assop_to_string): Likewise.
9704         * init.c (build_new_1): Adjust use of ansi_opname.
9705         * lex.c (opname_tab): Remove.
9706         (assignop_tab): Likewise.
9707         (ansi_opname): Likewise.
9708         (ansi_assopname): Likewise.
9709         (operator_name_string): Likewise.
9710         (reinit_lang_specific): Likewise.
9711         (operator_name_info): New variable.
9712         (assignment_operator_name_info): Likewise.
9713         (init_operators): New function.
9714         (init_parse): Use it.
9715         (do_identifier): Adjust use of ansi_opname.
9716         * method.c (mangle_expression): Don't use ansi_opname for
9717         mangling.
9718         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
9719         (build_decl_overload): Remove.
9720         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
9721         (do_build_assign_ref): Adjust use of ansi_opname.
9722         (synthesize_method): Likewise.
9723         (implicitly_declare_fn): Likewise.
9724         * operators.def: New file.
9725         * parse.y (operator): Adjust use of ansi_opname.
9726         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
9727         (set_mangled_name_for_template_decl): Don't play games with
9728         current_namespace.
9729         (special_function_p): Adjust use of ansi_opname.
9730         * typeck.c (check_return_expr): Likewise.
9731         * Make-lang.in (cc1plus): Depend on operators.def.
9732         * Makefile.in (lex.o): Likewise.
9733         (decl.o): Likewise.
9734
9735 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
9736
9737         * Make-lang.in (cplib2.ready): Eradicate.
9738
9739 Sat May 27 11:25:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9740
9741         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
9742         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
9743         (built_min, cp_tree_equal): Likewise.
9744
9745 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
9746
9747         * class.c (layout_nonempty_base_or_field): Replace
9748         `record_layout_info' with `record_layout_info_s'.
9749
9750 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
9751
9752         Fix goto checking.
9753         * cp-tree.h (struct language_function): x_named_labels is now
9754         a struct named_label_list*.
9755         * decl.c (struct named_label_use_list): Renamed from...
9756         (struct named_label_list): ...this.  New struct.
9757         (push_binding_level): Don't set eh_region.
9758         (note_level_for_eh): New fn.
9759         (pop_label): Take label and old value directly.
9760         (pop_labels): Adjust for new named_labels format.
9761         (lookup_label): Likewise.
9762         (poplevel): Note characteristics of a binding level containing a
9763         named label.  Mess with named label lists earlier.
9764         (mark_named_label_lists): New fn.
9765         (mark_lang_function): Call it.
9766         (use_label): New fn, split out from...
9767         (make_label_decl): ...here.  Don't call it.
9768         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
9769         check_previous_gotos): New fns, split out from...
9770         (define_label): ...here.
9771         (check_switch_goto): New fn.
9772         (define_case_label): Call it.
9773         (check_goto): New fn.
9774         * semantics.c (finish_goto_stmt): Call it and use_label.
9775         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
9776         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
9777
9778 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
9779
9780         * class.c (build_vtable_entry_ref): Correct usage of
9781         get_vtbl_decl_for_binfo.
9782
9783         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
9784         * method.c (implicitly_declare_fn): Not here.
9785
9786 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
9787
9788         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
9789         (CPTI_PTMD_DESC_TYPE): ... here.
9790         (ptmd_desc_type_node): Rename to ...
9791         (ptm_desc_type_node): ... here.
9792         * decl.c: Likewise.
9793         * rtti.c (ptmd_initializer): Rename to ...
9794         (ptm_initializer): ... here.
9795         (sythesize_tinfo_var): Adjust. Deal with pointer to member
9796         function.
9797         (create_tinfo_types): Adjust.
9798
9799 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
9800
9801         Finish implementation of VTTs.
9802         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
9803         CPTI_VTT_PARM_IDENTIFIER.
9804         (vtt_parm_identifier): New macro.
9805         (vtt_parm_type): Likewise.
9806         (BINFO_SUBVTT_INDEX): Likewise.
9807         (BINFO_VPTR_INDEX): Likewise.
9808         (struct lang_decl): Add vtt_parm.
9809         (DECL_VTT_PARM): New macro.
9810         (DECL_USE_VTT_PARM): Likewise.
9811         (DECL_NEEDS_VTT_PARM_P): Likewise.
9812         (get_vtt_name): Declare.
9813         (build_artificial_parm): Likewise.
9814         (fixup_all_virtual_upcast_offsets): Likewise.
9815         (expand_indirect_vtbls_init): Remove.
9816         * call.c (build_new_method_call): Pass the vtt to subobject
9817         constructors and destructors.
9818         * class.c (get_vtt_name): Give it external linkage.
9819         (build_clone): Handle the magic VTT parameters for clones.
9820         (clone_function_decl): Fix typo in comment.
9821         (build_vtt): Keep track of the indices in the VTTs where various
9822         entities are stored.
9823         (build_vtt_inits): Likewise.
9824         (dfs_build_vtt_inits): Likewise.
9825         (build_ctor_vtbl_group): Tweak type of construction vtables.
9826         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
9827         primary bases, when building construction vtables.
9828         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
9829         (initialize_predefined_identifiers): Add vtt_parm_identifier.
9830         (init_decl_processing): Initialize vtt_parm_type.
9831         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
9832         (lang_mark_tree): Make vtt_parm.
9833         * decl2.c (build_artificial_parm): New function.
9834         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
9835         (grokclassfn): Use build_artificial_parm.
9836         * init.c (initialize_vtbl_ptrs): Call
9837         fixup_all_virtual_upcast_offsets directly.
9838         (perform_member_init): Use the complete subobject destructor for
9839         member cleanups.
9840         (build_vtbl_address): New function.
9841         (expand_virtual_init): Handle VTTs.
9842         * optimize (maybe_clone_body): Likewise.
9843         * search.c (fixup_all_virtual_upcast_offsets): Give it external
9844         linkage.
9845         (expand_indirect_vtbls_init): Remove.
9846         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
9847         * tree.c (make_binfo): Make them bigger.
9848
9849 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
9850
9851         * inc/cxxabi.h (__pbase_type_info): Define, based on
9852         __pointer_type_info.
9853         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
9854         (__pointer_to_member_type_info): Likewise.
9855         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
9856         (__pointer_to_member_type_info::__is_pointer_p): Remove.
9857         (__pointer_type_info::__do_catch): Rename to ...
9858         (__pbase_type_info::__do_catch): ... here. Adjust.
9859         (__pbase_type_info::__pointer_catch): Implement.
9860         (__pointer_type_info::__pointer_catch): Adjust.
9861         (__pointer_to_member_type_info::__pointer_catch): Adjust.
9862
9863 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
9864
9865         * tinfo.h (__user_type_info::contained_virtual_p): New
9866         predicate.
9867         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
9868         shaped hierarchy.
9869         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
9870         diamond shaped hierarchy. Add early out for mixed diamond and
9871         duplicate shaped hierarchy.
9872
9873 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
9874
9875         * cp-tree.h (build_delete): Change prototype.
9876         (build_vec_delete): Likewise.
9877         * call.c (build_scoped_method_call): Use special_function_kind
9878         values to indicate the kind of destruction to be done.
9879         (build_method_call): Likewise.
9880         * decl.c (finish_destructor_body): Likewise.
9881         (maybe_build_cleanup_1): Likewise.  Rename to ...
9882         (maybe_build_cleanup): ... this.
9883         * decl2.c (delete_sanity): Use special_function_kind
9884         values to indicate the kind of destruction to be done.
9885         (build_cleanup): Likewise.
9886         * init.c (perform_member_init): Likewise.
9887         (build_vec_delete_1): Likewise.
9888         (build_dtor_call): Simplify.
9889         (build_delete): Use special_function_kind
9890         values to indicate the kind of destruction to be done.
9891         (build_vbase_delete): Likewise.
9892         (build_vec_delete): Likewise.
9893
9894         * init.c (sort_member_init): Fix typo in error message generation
9895         code.
9896
9897 Mon May 15 11:46:29 2000  Donald Lindsay  <dlindsay@cygnus.com>
9898
9899         * semantics.c (begin_class_definition): make the packed
9900         attribute be sensitive to the "-fpack-struct" command line flag
9901
9902 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
9903
9904         Update new-abi upcast algorithm.
9905         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
9906         prototype and meaning of return value.
9907         (__si_class_type_info::__do_upcast): Likewise.
9908         (__vmi_class_type_info::__do_upcast): Likewise.
9909         * tinfo.cc (__class_type_info::__upcast_result): Replace
9910         whole2dst with part2dst. Adjust ctor.
9911         (__class_type_info::__do_upcast): Adjust call of worker function.
9912         (__class_type_info::__do_upcast): Adjust.
9913         (__si_class_type_info::__do_upcast): Adjust. Use parent's
9914         __do_upcast.
9915         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
9916         virtual base in diamond hierarchy bug.
9917
9918 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
9919
9920         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
9921         and bitfield to tinfo_fn_p.
9922         (DECL_TINFO_FN_P): Adjust.
9923         (SET_DECL_TINFO_FN_P): Likewise.
9924         (DECL_MUTABLE_P): Likewise.
9925         (DECL_C_BIT_FIELD): Likewise.
9926         (SET_DECL_C_BIT_FIELD): Likewise.
9927         (CLEAR_DECL_C_BIT_FIELD): Likewise.
9928         (DECL_UNINLINABLE): Likewise.
9929         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
9930         (handle_using_decl): Remove assertion.
9931         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
9932         to build FIELD_DECLs.
9933         (build_base_field): Likewise.
9934         (layout_class_type): Likewise.
9935         * decl.c (init_decl_processing): Likewise.
9936         (build_ptrmemfunc_type): Likewise.
9937         (grokdeclarator): Likewise.
9938         * decl2.c (grok_x_components): Likewise.
9939         * except.c (call_eh_info): Likewise.
9940         * init.c (init_init_processing): Likewise.
9941         * rtti.c (expand_class_desc): Likewise.
9942         (create_pseudo_type_info): Likewise.
9943         (get_vmi_pseudo_type_info): Likewise.
9944         (create_tinfo_types): Likewise.
9945         * ptree.c (print_lang_decl): Adjust.
9946         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
9947         before checking DECL_MUTABLE_P.
9948
9949         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
9950         parameters for template functions.
9951         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
9952         destructors as well as constructors.
9953
9954 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
9955
9956         * class.c (build_ctor_vtbl_group): Set inits.
9957         * optimize.c (maybe_clone_body): Set DECL_INLINE and
9958         DECL_THIS_INLINE appropriately for clones.
9959
9960         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
9961         (DECL_CONV_FN_P): Simplify.
9962         (DECL_OPERATOR): Remove.
9963         (language_to_string): Declare.
9964         * decl.c (duplicate_decls): Fix typo in comment.
9965         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
9966         (grok_op_properties): Use DECL_CONV_FN_P instead of
9967         IDENTIFIER_TYPENAME_P.
9968         * dump.c (dequeue_and_dump): Dump the language linkage of
9969         declarations.
9970         * error.c (language_to_string): Give it external linkage.
9971         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
9972         (implicitly_declare_fn): Set DECL_LANGUAGE.
9973         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
9974         IDENTIFIER_TYPENAME_P.
9975         (tsubst_decl): Likewise.
9976         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
9977         * semantics.c (finish_member_declaration): Don't mark members of
9978         classes declared in an extern "C" region as extern "C".
9979
9980 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9981
9982         * decl2.c (qualified_lookup_using_namespace): Look through
9983         namespace aliases.
9984
9985         * decl.c (push_using_decl): Return the old decl on namespace level.
9986
9987 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
9988
9989         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
9990         (VTT_NAME_PREFIX): New macro.
9991         (CTOR_VTBL_NAME_PREFIX): Likewise.
9992         (get_ctor_vtbl_name): New function.
9993         * class.c (get_vtable_name): Simplify.
9994         (get_vtt_name): New function.
9995         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
9996         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
9997         when a virtual base becomes primary.
9998         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
9999         VTTs.
10000         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
10001         additional parameters.
10002         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
10003         (initialize_array): New function.
10004         (build_vtt): Likewise.
10005         (build_vtt_inits): Likewise.
10006         (dfs_build_vtt_inits): Likewise.
10007         (dfs_fixup_binfo_vtbls): Likewise.
10008         (build_ctor_vtbl_group): Likewise.
10009         (initialize_vtable): Use initialize_array.
10010         (accumulate_vtbl_inits): Reimplement to handle construction
10011         vtables.
10012         (dfs_accumulate_vtbl_inits): Likewise.
10013         (bulid_vtbl_initializer): Adjust parameter name.
10014         * method.c (build_typename_overload): Remove #if 0'd code.
10015         (get_ctor_vtbl_name): New function.
10016         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
10017         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
10018
10019         * cp-tree.h (struct lang_type): Remove search_slot.
10020         (CLASSTYPE_SEARCH_SLOT): Remove.
10021         (emit_base_init): Change prototype.
10022         (initialize_vtbl_ptrs): Likewise.
10023         (expand_indirect_vtbls_init): Likewise.
10024         (clear_search_slots): Remove.
10025         * decl.c (lang_mark_tree): Don't mark search_slot.
10026         * init.c (initialize_vtbl_ptrs): Simplify.
10027         (emit_base_init): Likewise.
10028         * search.c (struct vbase_info): Document decl_ptr.
10029         (convert_pointer_to_single_level): Remove.
10030         (dfs_find_vbases): Remove.
10031         (dfs_init_base_pointers): Simplify.
10032         (dfs_clear_vbase_slots): Remove.
10033         (dfs_vtable_path_unmark): New function.
10034         (init_vbase_pointers): Simplify.
10035         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
10036         (expand_indirect_vtbls_init): Simplify.  Don't call
10037         mark_all_temps_used.
10038         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
10039         initialize_vtbl_ptrs.
10040
10041 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
10042
10043         * except.c: Add static prototypes.
10044
10045 2000-05-20  H.J. Lu  <hjl@gnu.org>
10046
10047         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
10048
10049 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
10050
10051         Don't create a separate copy of virtual bases for the
10052         CLASSTYPE_VBASECLASSES list.
10053         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
10054         (BINFO_FOR_VBASE): Remove.
10055         (CANONICAL_BINFO): Adjust.
10056         (binfo_for_vbase): New function.
10057         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
10058         instead of BINFO_FOR_VBASE.
10059         (build_vbase_pointer): Likewise.
10060         (build_secondary_vtable): Likewise.
10061         (dfs_mark_primary_bases): Likewise.
10062         (mark_primary_bases): Likewise.
10063         (layout_nonempty_base_or_field): Likewise.
10064         (dfs_set_offset_for_shared_vbases): Likewise.
10065         (dfs_set_offset_for_unshared_vbases): Likewise.
10066         (layout_virtual_bases): Likewise.  Adjust for changes to the
10067         CLASSTYPE_VBASECLASSES list.
10068         (dump_class_hierarchy_r): Use binfo_for_vbase
10069         instead of BINFO_FOR_VBASE.
10070         (dump_class_hierarchy): Likewise.
10071         (finish_vtbls): Likewise.
10072         (build_vtbl_initializer): Adjust for changes to the
10073         CLASSTYPE_VBASECLASSES list.
10074         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
10075         * decl.c (finish_destructor_body): Adjust for changes to the
10076         CLASSTYPE_VBASECLASSES list.
10077         * init.c (sort_base_init): Use binfo_for_vbase.
10078         (construct_virtual_bases): Adjust for changes to the
10079         CLASSTYPE_VBASECLASSES list.
10080         (expand_member_init): Use binfo_for_vbase.
10081         (build_vbase_delete):  Adjust for changes to the
10082         CLASSTYPE_VBASECLASSES list.
10083         * method.c (do_build_copy_constructor): Likewise.
10084         * rtti.c (get_base_offset): Use binfo_for_vbase.
10085         (expand_class_desc): Remove #if 0'd code.
10086         * search.c (struct vbase_info): Remove vbase_types.
10087         (get_base_distance):  Use binfo_for_vbase.
10088         (lookup_field_queue_p): Use CANONICAL_BINFO.
10089         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
10090         (get_pure_virtuals): Adjust for changes to the
10091         CLASSTYPE_VBASECLASSES list.
10092         (dfs_find_vbases): Use binfo_for_vbase.
10093         (dfs_init_vbase_pointers): Likewise.
10094         (init_vbase_pointers): Don't initialize vi.vbase_types.
10095         (virtual_context): Use binfo_for_vbase.
10096         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
10097         CLASSTYPE_VBASECLASSES list.
10098         (expand_indirect_vtbls_init): Simplify.
10099         (dfs_get_vbase_types): Don't replicate virtual bases.
10100         (find_vbase_instance): Use binfo_for_vbase.
10101         (binfo_for_vbase): New function.
10102         * typeck.c (get_delta_difference): Use binfo_for_vbase.
10103
10104 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
10105
10106         * decl2.c (finish_anon_union): Generalize error messages to handle
10107         anonymous structures.
10108         * init.c (perform_member_init): Remove `name' parameter.
10109         (build_field_list): New function.
10110         (sort_member_init): Handle anonymous union initialization order
10111         correctly.  Check for multiple initializations of the same union.
10112         (emit_base_init): Don't look up fields by name here.
10113         (expand_member_init): Record the result of name lookup for future
10114         reference.
10115         * typeck.c (build_component_ref): Fix formatting.
10116
10117 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
10118
10119         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
10120         * typeck.c (build_x_compound_expr): Replace warn_unused with
10121         warn_unused_value.
10122
10123         * decl2.c (lang_decode_option): Update -Wall unused flags by
10124         calling set_Wunused.
10125
10126 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
10127
10128         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
10129         * init.c (dfs_vtable_path_unmark): Remove.
10130         * search.c (marked_new_vtable_p): Likewise.
10131         (unmarked_new_vtable_p): Likewise.
10132         (dfs_search_slot_nonempty_p): Likewise.
10133         (dfs_mark): Likewise.
10134         (dfs_vtable_path_unmark): Likewise.
10135         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
10136         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
10137         (dfs_init_vbase_pointers): Remove special-case new ABI code.
10138         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
10139         (init_vbase_pointers): Simplify.
10140         (expand_indirect_vtbls_init): Likewise.
10141
10142         * class.c (copy_virtuals): New function.
10143         (build_primary_table): Use it.
10144         (build_secondary_vtable): Likewise.
10145         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
10146         indicate that no vcall offset is required.
10147         (add_virtual_function): Likewise.
10148         (modify_all_vtables): Likewise.
10149         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
10150         (dfs_accumulate_vtbl_inits): Likewise.
10151         (build_vtbl_initializer): Make changes to handle construction
10152         vtables.
10153         (dfs_build_vcall_offset_vtbl_entries): Likewise.
10154         (build_rtti_vtbl_entries): Likewise.
10155         (build_vtable_entries): Handle a NULL vcall_index.
10156
10157 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
10158
10159         * decl2.c (lang_decode_option): Fix thinko.
10160
10161 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
10162
10163         * except.c (check_handlers): New fn.
10164         * cp-tree.h: Declare it.
10165         * semantics.c (finish_handler_sequence): Call it.
10166         (finish_function_handler_sequence): Likewise.
10167         (finish_handler_parms): Set TREE_TYPE on the handler.
10168         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
10169         * search.c (get_base_distance_recursive): If protect>1, ignore
10170         special access.
10171         (get_base_distance): Don't reduce watch_access.
10172
10173 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
10174
10175         * lex.c: #include diagnostic.h.
10176         (lang_init_options): Set default prefixing rules.
10177
10178         * lang-options.h: Add -fdiagnostics-show-location=.
10179
10180         * decl2.c: #include diagnostic.h.
10181         (lang_decode_option): Handle -fdiagnostics-show-location=.
10182
10183 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
10184
10185         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
10186         * vec.cc: Revert my 2000-05-07 change.
10187
10188 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
10189
10190         * class.c (check_field_decls): Complain about non-static data
10191         members with same name as class in class with constructor.
10192
10193 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
10194
10195         * decl.c (grokdeclarator): Allow non-static data members with
10196         same name as class.
10197
10198 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
10199
10200         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
10201         and pending_inline.filename.  Update prototypes.
10202         * decl.c (define_label): Constify filename parameter.
10203         * decl2.c (warn_if_unknown_interface): Constify local char *.
10204         * input.c Constify input_source.filename. Don't declare
10205         input_filename or lineno.  Constify filename parameter to feed_input.
10206         * lex.c (init_parse): Constify parameter and return value.
10207         (cp_pragma_interface, cp_pragma_implementation): Constify
10208         filename argument.
10209         (reinit_parse_for_method, reinit_parse_for_block,
10210         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
10211         Constify local char *.
10212         * pt.c: Don't declare lineno or input_filename.
10213         (print_template_context, tsubst_friend_function, tsubst_decl,
10214         tsubst, instantiate_decl): Constify local char *.
10215         * semantics.c (expand_body): Constify local char *.
10216         * tree.c (build_srcloc): Constify filename parameter.
10217         * typeck.c (c_expand_asm_operands): Constify filename
10218         parameter.
10219
10220 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
10221
10222         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
10223         offsetof expansion.
10224
10225 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
10226
10227         * inc/cxxabi.h:  Fix typos in comment.
10228         (__base_class_info::__offset): Use a static_cast.
10229
10230 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
10231
10232         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
10233         of std::size_t and std::ptrdiff_t respectively.
10234         * tinfo.cc: Likewise.
10235         * vec.cc: Likewise.
10236
10237 2000-05-06  Richard Henderson  <rth@cygnus.com>
10238
10239         * typeck.c (build_c_cast): Don't warn integer->pointer size
10240         mismatch for constants.
10241
10242 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
10243
10244         * rtti.c (ptmd_initializer): Set non-public, if class is
10245         incomplete.
10246
10247         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
10248         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10249         __cxa_vec_delete): Likewise.
10250         * tinfo.cc (__dynamic_cast): Likewise.
10251         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10252         __cxa_vec_delete): Likewise.
10253
10254 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
10255
10256         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
10257         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
10258         (lang_decl_flags): Add vcall_offset.
10259         (THUNK_VCALL_OFFSET): Use it.
10260         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
10261         * method.c (make_thunk): Create the lang_decl here, not in
10262         emit_thunk.
10263         (emit_thunk): Make generic thunks into ordinary functions once
10264         they have been fed to expand_body.
10265         * semantics.c (expand_body): Set current_function_is_thunk here.
10266
10267 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10268
10269         * class.c (update_vtable_entry_for_fn): Prototype.
10270
10271         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
10272         and `tmpl'.
10273
10274         * search.c (dfs_build_inheritance_graph_order): Prototype.
10275
10276 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
10277
10278         * cp-tree.h (special_function_kind): Add various kinds of
10279         destructors.
10280         (special_function_p): New function.
10281         * class.c (overrides): Don't let one kind of destructor override
10282         another.
10283         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
10284         whether or not to instantiate a template.
10285         * tree.c (special_function_p): Define.
10286
10287 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
10288
10289         * cp-tree.def (THUNK_DECL): Remove.
10290         * cp-tree.h (DECL_THUNK_P): New macro.
10291         (DECL_NON_THUNK_FUNCTION_P): Likewise.
10292         (DECL_EXTERN_C_FUNCTION_P): Likewise.
10293         (SET_DECL_THUNK_P): Likewise.
10294         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
10295         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
10296         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
10297         * decl.c (decls_match): Use DECL_EXTERN_C_P.
10298         (duplicate_decls): Likewise.
10299         (pushdecl): Likewise.  Adjust thunk handling.
10300         (grokfndecl): Use DECL_EXTERN_C_P.
10301         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
10302         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
10303         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
10304         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
10305         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
10306         DECL_NO_STATIC_CHAIN.
10307         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
10308         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
10309         * search.c (covariant_return_p): Remove THUNK_DECL handling.
10310         * ir.texi: Update.
10311
10312 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
10313
10314         * tree.c (walk_tree): Set lineno.
10315
10316 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
10317
10318         * exception.cc: Update license notice.
10319         * new.cc: Likewise.
10320         * new1.cc: Likewise.
10321         * new2.cc: Likewise.
10322         * tinfo.cc: Likewise.
10323         * tinfo2.cc: Likewise.
10324         * vec.cc: Likewise.
10325         * inc/cxxabi.h: Likewise.
10326         * inc/exception: Likewise.
10327         * inc/new: Likewise.
10328         * inc/new.h: Likewise.
10329         * inc/typeinfo: Likewise.
10330
10331 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
10332
10333         * tree.c (build_target_expr_with_type): If we already have a
10334         TARGET_EXPR, just return it.
10335
10336         * optimize.c (initialize_inlined_parameters): Don't generate an
10337         EXPR_STMT if we can just use DECL_INITIAL.
10338         * decl.c (emit_local_var): Only make the initialization a
10339         full-expression if stmts_are_full_exprs_p.
10340
10341 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
10342
10343         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
10344         macro.
10345         * call.c (standard_conversion): Use it.
10346         (direct_reference_binding): Likewise.
10347         (build_over_call): Likewise.
10348         (is_properly_derived_from): Likewise.
10349         (compare_ics): Likewise.
10350         * class.c (resolves_to_fixed_type_p): Likewise.
10351         * optimize.c (declare_return_variable): Likewise.
10352         * pt.c (is_specialization_of): Likewise.
10353         (unify): Likewise.
10354         * typeck.c (comp_target_parms): Likeiwse.
10355         (build_static_cast): Likewise.
10356         (build_reinterpret_cast): Likewise.
10357         (build_const_cast): Likewise.
10358         (comp_ptr_ttypes_real): Likewise.
10359         (comp_ptr_ttypes_const): Likewise.
10360         * typeck2.c (process_init_constructor): Likewise.
10361
10362 2000-04-30  Scott Snyder <snyder@fnal.gov>
10363
10364         * decl.c (finish_destructor_body): Use the base destructor when
10365         destroying virtual bases.
10366
10367 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
10368
10369         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
10370         STMT_EXPRs.
10371         * optimize.c (struct inline_data): Add target_exprs field.
10372         (declare_return_variable): When a function returns an aggregate,
10373         use the variable declared in the TARGET_EXPR as the remapped
10374         DECL_RESULT.
10375         (expand_call_inline): Update the pending target_exprs stack.
10376         (optimize_function): Initialize the stack.
10377
10378         * decl2.c (finish_file): Fix typo in comment.
10379
10380         * method.c (emit_thunk): Don't try to return a `void' value.
10381
10382         * optimize.c (initialize_inlined_parameters): If the parameter is
10383         addressable, we need to make a new VAR_DECL, even if the
10384         initializer is constant.
10385
10386 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
10387
10388         * decl.c (grok_op_properties): Add an extra check of argtypes.
10389
10390 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
10391
10392         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
10393         variables.
10394         (initialize_inlined_parameters): Try to avoid creating new
10395         VAR_DECLs.
10396
10397 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
10398
10399         * lex.c (my_get_run_time): Remove.
10400         (init_filename_times): Use get_run_time instead of my_get_run_time.
10401         (check_newline): Likewise.
10402         (dump_time_statistics): Likewise.
10403         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
10404         of computing elapsed time explicitly.
10405
10406 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
10407
10408         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
10409         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
10410         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
10411         before calling decl_constant_value.
10412         * class.c (check_bitfield_decl): Likewise.
10413         * cvt.c (ocp_convert): Likewise.
10414         (convert): Likewise.
10415         * decl.c (compute_array_index_type): Likewise.
10416         (build_enumerator): Likewise.
10417         * decl2.c (check_cp_case_value): Likewise.
10418         * pt.c (convert_nontype_argument): Likewise.
10419         (tsubst): Likewise.
10420         * typeck.c (decay_conversion): Likewise.
10421         (build_compound_expr): Likewise.
10422         (build_reinterpret_cast): Likewise.
10423         (build_c_cast): Likewise.
10424         (convert_for_assignment): Likewise.
10425
10426 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
10427
10428         * decl.c (finish_function): Don't play games with DECL_INLINE.
10429
10430 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
10431
10432         * ir.texi: Correct typo.
10433
10434 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10435
10436         * decl.c (grokdeclarator): Reject VLAs as members.
10437
10438 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
10439
10440         * call.c (standard_conversion): Accept conversion between
10441         COMPLEX_TYPEs.
10442
10443         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
10444
10445 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
10446
10447         * decl2.c (finish_file): Remove double setup for accounting
10448         compile time.
10449
10450 2000-04-24  Robert Lipe <robertlipe@usa.net>
10451
10452         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
10453
10454 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
10455
10456         * new.cc (set_new_handler): Needs to be in std::.
10457
10458 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
10459
10460         * cp-tree.h (lang_decl): Remove pretty_function_p.
10461         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
10462         language-specific node.
10463         * decl.c (cp_make_fname_decl): Use build_decl, not
10464         build_lang_decl, to build the variables.
10465         (grokvardecl): Don't call build_lang_decl for local variables in
10466         templates.
10467         (grokdeclarator): Don't call build_lang_decl for local type
10468         declarations in templates.
10469         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
10470         zero'd memory, rather than calling memset.
10471         * pt.c: Include hashtab.h.
10472         (local_specializations): New variable.
10473         (retrieve_local_specialization): Use it.
10474         (register_local_specialization): Likewise.
10475         (tsubst_decl): Don't assume local variables have
10476         DECL_LANG_SPECIFIC.
10477         (instantiate_decl): Set up local_specializations.
10478         * Makefile.in (HTAB_H): New variable.
10479
10480 2000-04-23  Richard Henderson  <rth@cygnus.com>
10481
10482         * typeck.c (c_expand_asm_operands): Restore the original
10483         contents of the output list.
10484
10485 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
10486
10487         * ir.texi:  Document complex number representation.
10488
10489 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
10490
10491         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
10492         (target_incomplete_p): New function.
10493         (tinfo_base_init): Create comdat NTBS name variable.
10494         (ptr_initializer): Add non_public parameter. Calculate it.
10495         (ptmd_initializer): Likewise.
10496         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
10497         (create_real_tinfo_var): Add non_public parameter. Use it.
10498         Push proxy into global namespace.
10499         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
10500         New enumeration.
10501         * inc/typeinfo (type_info::before, type_info::operator==):
10502         Compare __name addresses.
10503
10504         * tinfo2.cc: Remove new-abi builtins comment.
10505
10506 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
10507
10508         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
10509
10510         * call.c (joust): Exit early if we get the same function, too.
10511
10512         * decl2.c (key_method): Return NULL_TREE for template classes.
10513         (import_export_class): Don't need to check for template classes.
10514
10515 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
10516
10517         * lex.c: Remove references to cccp.c.
10518
10519 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
10520
10521         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
10522         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
10523         (DECL_DESTRUCTOR_P): Use destructor_attr.
10524         (DECL_CONST_MEMFUNC_P): Reimplement.
10525         (DECL_VOLATILE_MEMFUNC_P): Remove.
10526         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
10527         (overrides): Use DECL_DESTRUCTOR_P.
10528         (check_for_override): Likewise.
10529         * decl.c (start_function): Likewise.
10530         * decl2.c (grokfclassfn): Likewise.
10531         (check_classfn): Likewise.
10532         (grok_function_init): Likewise.
10533
10534 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
10535
10536         * decl2.c (grokfield): Issue error on illegal data member
10537         declaration.
10538
10539 Mon Apr 17 17:11:16 2000  Mark P Mitchell  <mark@codesourcery.com>
10540
10541         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
10542
10543 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
10544
10545         * class.c (build_vtable_entry): Don't build thunks for type-info
10546         functions.
10547
10548 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
10549
10550         * decl.c (decls_match): Allow a redeclaration of a builtin to
10551         specify args while the builtin did not.
10552
10553 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
10554
10555         * cp-tree.def (THUNK_DECL): Add to documentation.
10556         * cp-tree.h (flag_huge_objects): Declare.
10557         * class.c (modify_vtable_entry): Tidy.
10558         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
10559         Calculate delta appropriately for the new ABI.
10560         (dfs_modify_vtables): Use it.
10561         (modify_all_vtables): Fix thinko in code to add overriding copies
10562         of functions to primary vtables.
10563         (build_clone): Fix typo in comment.
10564         (clone_function_decl): Correct order of destructors in vtable.
10565         (build_vbase_offset_vtbl_entries): Adjust comment.
10566         (dfs_vcall_offset_queue_p): Remove.
10567         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
10568         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
10569         (build_vtable_entry): Correct check for pure virtual functions.
10570         Don't declare flag_huge_objects.
10571         * decl.c (flag_huge_objects): Remove declaration.
10572         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
10573         Use int_size_in_bytes.
10574         (emit_thunk): Handle vcall offset thunks.
10575
10576 Sat Apr 15 16:00:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10577
10578         * decl2.c (parse_time, varconst_time): Delete declarations.
10579         (finish_file): Delete LINENO declaration.
10580         START_TIME and THIS_TIME now long.
10581
10582 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
10583
10584         * class.c (build_base_field): Reformat comment.
10585
10586         * inc/cxxabi.h (stddef.h): Comment inclusion.
10587         (__base_class_info::__offset): Comment shift.
10588
10589 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
10590
10591         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
10592         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
10593         (cp_push_exception_identifier): New macro.
10594         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
10595         (DECL_BASE_DESTRUCTOR_P): Likewise.
10596         (DECL_DELETING_DESTRUCTOR_P): Likewise.
10597         (get_vtbl_decl_for_binfo): Fix formatting.
10598         (in_charge_arg_for_name): New macro.
10599         (maybe_build_cleanup_and_delete): Remove declaration.
10600         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
10601         (in_charge_arg_for_name): New function.
10602         (build_new_method_call): Use it.  Handle cloned destructors.
10603         (build_clone): Don't make the base constructor virtual.
10604         Automatically defer generated functions.
10605         (clone_function_decl): Handle destructors, too.
10606         (clone_constructors_and_destructors): Likewise.
10607         (create_vtable_ptr): Don't create a vtable entry for a cloned
10608         function.
10609         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
10610         (initialize_predefined_identifiers): Update appropriately.
10611         (finish_destructor_body): Simplify.
10612         (maybe_build_cleanup_and_delete): Remove.
10613         * except.c (expand_throw): Handle new-ABI destructors.
10614         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
10615         (build_dtor_call): New function.
10616         (build_delete): Use it.  Simplify.
10617         * optimize.c (maybe_clone_body): Handle destructors.
10618         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
10619
10620         * exception.cc (cleanup_fn): New typedef.
10621         (CALL_CLEANUP): New macro.
10622         (cp_eh_info): Use them.
10623         (__cp_push_exception): Likewise.
10624         (__cp_pop_exception): Likewise.
10625
10626 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
10627
10628         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
10629         (complete_dtor_identifier): New macro.
10630         (CLASSTYPE_FIRST_CONVERSION): Remove.
10631         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
10632         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
10633         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
10634         (CLASSTYPE_CONSTRUCTORS): Likewise.
10635         (CLASSTYPE_DESTRUCTORS): Likewise.
10636         (lang_decl): Add cloned_function.
10637         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
10638         (DECL_BASE_CONSTRUCTOR_P): Likewise.
10639         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
10640         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
10641         (DECL_CLONED_FUNCTION_P): Likewise.
10642         (DECL_CLONED_FUNCTION): Likewise.
10643         (clone_function_decl): Declare.
10644         (maybe_clone_body): Likewise.
10645         * call.c (build_user_type_conversion_1): Call complete object
10646         constructors in the new ABI.
10647         (build_new_method_call): Don't add in-charge parameters under the
10648         new ABI.
10649         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
10650         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
10651         CLASSTYPE_DESTRUCTOR_SLOT.
10652         (build_clone): New function.
10653         (clone_function_decl): Likewise.
10654         (clone_constructors_and_destructors): Likewise.
10655         (check_bases_and_members): Use it.
10656         * decl.c (iniitialize_predefined_identifiers): Initialize
10657         complete_dtor_identifier.
10658         (finish_function): Don't add extra code to a clone.
10659         (lang_mark_tree): Mark cloned_function.
10660         * decl2.c (mark_used): Don't bother trying to instantiate things
10661         we synthesized.
10662         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
10663         * method.c (set_mangled_name_for_decl): Don't treat clones as
10664         constructors.
10665         (synthesize_method): Sythesize cloned functions, not the clones.
10666         * optimize.c (inline_data): Update comment on ret_label.
10667         (remap_block): Don't assume DECL_INITIAL exists.
10668         (copy_body_r): Allow ret_label to be NULL.
10669         (maybe_clone_body): Define.
10670         * pt.c (tsubst_decl): Handle clones.
10671         (instantiate_clone): New function.
10672         (instantiate_template): Use it.
10673         (set_mangled_name_for_template_decl): Don't treat clones as
10674         constructors.
10675         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
10676         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
10677         * semantics.c (expand_body): Clone function bodies as necessary.
10678
10679         * optimize.c (remap_decl): Avoid sharing structure for arrays
10680         whose size is only known at run-time.
10681         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
10682
10683         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
10684         to has_in_charge_parm_p.
10685         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
10686         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
10687         (DECL_COPY_CONSTRUCTOR_P): New macro.
10688         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
10689         (build_user_type_conversion_1): Likewise.
10690         (convert_like_real): Likewise.
10691         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
10692         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
10693         (copy_args_p): Likewise.
10694         (grok_ctor_properties): Likewise.
10695         (start_function): Likewise.
10696         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
10697         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
10698         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
10699         * method.c (do_build_copy_constructor): Use
10700         DECL_HAS_IN_CHARGE_PARM_P.
10701         (synthesize_method): Likewise.
10702         * pt.c (instantiate_template): Remove goto.
10703         * tree.c (build_cplus_method_type): Remove mention of obstacks in
10704         comment.
10705
10706         * cp-tre.h (finish_function): Change prototype.
10707         * decl.c (end_cleanup_fn): Adjust caller.
10708         (finish_function): Take only one parameter.
10709         * decl2.c (finish_objects): Adjust caller.
10710         (finish_static_storage_duration_function): Likewise.
10711         * method.c (emit_thunk): Likewise.
10712         * parse.y: Likewise.
10713         * parse.c: Regenerated.
10714         * pt.c (instantiate_decl): Likewise.
10715         * rtti.c (synthesize_tinfo_fn): Likewise.
10716         * semantics.c (expand_body): Likewise.
10717
10718         * cp-tree.h (copy_decl): New function.
10719         * class.c (finish_struct_1): Use it.
10720         * lex.c (copy_decl): Define it.
10721         * pt.c (tsubst_decl): Likewise.
10722         * tree.c (copy_template_template_parm): Likewise.
10723
10724         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
10725         has_nonpublic_assign_ref.
10726         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
10727         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
10728         * class.c (finish_struct_methods): Don't set
10729         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
10730         (interface_only): Don't declare.
10731         (interface_unknown): Likewise.
10732
10733 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10734
10735         * tree.h (HAVE_TEMPLATES): Remove definition.
10736         * lang-options.h (-fthis-is-variable): Remove documentation.
10737
10738 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
10739
10740         * class.c (instantiate_type): Handle object-relative template-id.
10741
10742         * semantics.c (finish_expr_stmt): Call convert_to_void here.
10743         * decl.c (cplus_expand_expr_stmt): Not here.
10744
10745         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
10746         Initialize exprtype earlier.
10747
10748         * parse.y (fn.def1): Check for defining types in return types.
10749
10750         * decl.c (check_tag_decl): Notice extra fundamental types.
10751         Diagnose empty decls in classes, too.
10752
10753         * decl.c (grokdeclarator): Don't override an anonymous name if no
10754         declarator was given.
10755
10756         * cvt.c (convert_to_void): Call resolve_offset_ref.
10757
10758         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
10759
10760         * decl2.c (decl_namespace): Handle getting a type.
10761
10762         * typeck.c (build_c_cast): Re-enable warning for cast between
10763         pointer and integer of different size.
10764
10765 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
10766
10767         * inc/cxxabi.h (__pointer_type_info): Add restrict and
10768         incomplete flags.
10769         (__pointer_type_info::__pointer_catch): New virtual function.
10770         (__pointer_to_member_type_info): Derive from
10771         __pointer_type_info. Adjust.
10772         (__pointer_to_member_type_info::__do_catch): Remove.
10773         (__pointer_to_member_type_info::__is_pointer_p): Declare.
10774         (__pointer_to_member_type_info::__pointer_catch): Declare.
10775         * rtti.c (qualifier_flags): Add restrict flag.
10776         (ptmd_initializer): Reorder members.
10777         (create_tinfo_types): Expand comments. Reorder
10778         ptmd_desc_type_node members.
10779         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
10780         Implement.
10781         (__pointer_type_info::__do_catch): Move specific code into
10782         __pointer_catch. Call it.
10783         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
10784         specific catch checking. Fix void conversion check.
10785         (__pointer_to_member_type_info::__do_catch): Remove.
10786         (__pointer_to_member_type_info::__pointer_catch): Implement.
10787
10788 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10789
10790         * lex.c (init_parse): Remove traces of classof and headof.
10791         * decl2.c (flag_operator_names): Default to 1.
10792         (lang_decode_option): Do not set it for -ansi.
10793
10794 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
10795
10796         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
10797         (DECL_MAIN_VARIANT): Remove.
10798         * decl.c (duplicate_decls): Don't set it.
10799         (start_function): Likewise.
10800         (lang_mark_tree): Don't mark it.
10801         * decl2.c (defer_fn): Don't use it.
10802         * lex.c (retrofit_lang_decl): Don't set it.
10803         * pt.c (tsubst_decl): Likewise.
10804         * ptree.c (print_lang_decl): Don't print it.
10805         * typeck.c (mark_addressable): Don't use it.
10806
10807 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
10808
10809         * vec.cc: Include <new> and <exception>.
10810         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
10811         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
10812         terminate.
10813         (__cxa_vec_delete): Catch dtor exceptions.
10814
10815 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
10816
10817         Prepend __ to implementation defined names.
10818         * inc/typeinfo (type_info): Rename _name to __name.
10819         (type_info::type_info): Rename parameter.
10820         (type_info::operator==, type_info::operator!=,
10821         type_info::before): Likewise.
10822         (type_info::is_pointer_p, type_info::is_function_p,
10823         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
10824         parameters.
10825         * inc/cxxabi.h
10826         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
10827         (__pointer_type_info::__pointer_type_info): Likewise.
10828         (__pointer_type_info::is_pointer_p,
10829         __pointer_type_info::do_catch): Prepend __. Rename parameters.
10830         (__array_type_info::__array_type_info): Rename parameters.
10831         (__function_type_info::__function_type_info): Likewise.
10832         (__function_type_info::is_function_p): Prepend __.
10833         (__enum_type_info::__enum_type_info): Rename parameters.
10834         (__pointer_to_member_type_info::__pointer_to_member_type_info):
10835         Likewise.
10836         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
10837         parameters.
10838         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
10839         (__class_type_info::__class_type_info): Rename parameters.
10840         (__class_type_info::sub_kind): Prepend __. Adjust member names.
10841         (__class_type_info::upcast_result,
10842         __class_type_info::dyncast_result): Prepend __. Move definition
10843         into tinfo.cc.
10844         (__class_type_info::do_upcast, __class_type_info::do_catch,
10845         __class_type_info::find_public_src,
10846         __class_type_info::do_dyncast,
10847         __class_type_info::do_find_public_src): Prepend __. Rename
10848         parameters.
10849         (__si_class_type_info::__si_class_type_info): Rename parameters.
10850         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
10851         __si_class_type_info::do_find_public_src): Prepent __. Rename
10852         parameters.
10853         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
10854         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
10855         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
10856         parameters.
10857         (__dynamic_cast): Rename parameters.
10858         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
10859         type_info::do_catch, type_info::do_upcast): Prepend __.
10860         (contained_p, public_p, virtual_p, contained_public_p,
10861         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
10862         (__class_type_info::do_catch,
10863         __class_type_info::do_upcast): Prepend __. Adjust.
10864         (__class_type_info::__upcast_result,
10865         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
10866         Adjust.
10867         (__class_type_info::find_public_src): Prepend __. Adjust.
10868         (__class_type_info::do_find_public_src,
10869         __si_class_type_info::do_find_public_src,
10870         __vmi_class_type_info::do_find_public_src): Likewise.
10871         (__class_type_info::do_dyncast,
10872         __si_class_type_info::do_dyncast,
10873         __vmi_class_type_info::do_dyncast): Likewise.
10874         (__class_type_info::do_upcast,
10875         __si_class_type_info::do_upcast,
10876         __vmi_class_type_info::do_upcast): Likewise.
10877         (__dynamic_cast): Adjust.
10878         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
10879         (__function_type_info::is_function_p): Likewise.
10880         (__pointer_type_info::do_catch): Likewise. Adjust.
10881         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
10882         (__throw_type_match_rtti_2): Adjust.
10883         (__is_pointer): Adjust.
10884
10885 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
10886
10887         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
10888         (complete_ctor_identifier): New macro.
10889         (special_function_kind): Add sfk_copy_constructor and
10890         sfk_assignment_operator.
10891         (LOOKUP_HAS_IN_CHARGE): Remove.
10892         (cons_up_default_function): Rename to ...
10893         (implicitly_declare_fn): ... this.
10894         * call.c (build_new_method_call): Add in-charge parameters for
10895         constructors here.
10896         * class.c (add_implicitly_declared_members): Change parameter name
10897         from cant_have_assignment to cant_have_const_assignment.
10898         Replace calls to cons_up_default_function to implicitly_declare_fn.
10899         * cvt.c (ocp_convert): Use complete_ctor_identifier.
10900         * decl.c (initialize_predefined_identifiers): Initialize it.
10901         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
10902         complex expression.
10903         * init.c (expand_default_init): Don't calculate the in-charge
10904         parameter here.
10905         (build_new_1): Likewise.
10906         * lex.c (cons_up_default_function): Move to method.c.
10907         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
10908         (implicitly_declare_fn): New function.
10909         * typeck.c (build_static_cast): Use complete_ctor_identifier.
10910         (build_modify_expr): Likewise.
10911         * typeck2.c (build_functional_cast): Likewise.
10912
10913         Under the new ABI, constructors don't return `this'.
10914         * cp-tree.h (warn_reorder): Declare.
10915         (special_function_kind): New enum.
10916         (global_base_init_list): Remove declaration.
10917         (emit_base_init): Don't return a value.
10918         (check_base_init): Don't declare.
10919         (is_aggr_typedef): Likewise.
10920         * decl.c (check_special_function_return_type): New function.
10921         (return_types): Remove.
10922         (grokdeclarator): Use check_special_function_return_type.
10923         (start_function): Don't initialize ctor_label under the new ABI.
10924         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
10925         * init.c (begin_init_stmts): Move to top of file.
10926         (finish_init_stmts): Likewise.
10927         (warn_reorder): Don't declare.
10928         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
10929         value.
10930         (check_base_init): Remove.
10931         (is_aggr_typedef): Likewise.
10932         (build_new_1): Don't use the return value of a constructor.
10933         * semantics.c (setup_vtbl_ptr): Don't use the return value
10934         of emit_base_init.
10935         * typeck.c (check_return_expr): Don't magically convert return
10936         statements into `return this' in constructors under the new ABI.
10937
10938         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
10939         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
10940         (base_ctor_identifier): New macro.
10941         (base_dtor_identifier): Likewise.
10942         (deleting_dtor_identifier): Likewise.
10943         * decl.c: Don't include obstack.h.
10944         (obstack_chunk_alloc): Don't define.
10945         (obstack_chunk_free): Likewise.
10946         (struct predefined_identifier): New type.
10947         (initialize_predefined_identifiers): New function.
10948         (init_decl_processing): Use it.
10949         (debug_temp_inits): Remove.
10950         (start_method): Don't call preserve_data.
10951         (hack_incomplete_structures): Update comment.
10952         * init.c (init_init_processing): Don't initialize
10953         nelts_identifier.
10954         (build_offset_rf): Remove dead code.
10955         (build_delete): Use CLASSTYPE_N_BASECLASSES.
10956         * search.c (init_search_processing): Don't initialize
10957         vptr_identifier.
10958
10959 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10960
10961         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
10962         some sign_compare warnings.
10963
10964 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
10965
10966         Rename abi::__vmi_class_type_info members.
10967         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
10968         base_list, detail_masks members to vmi_flags, vmi_base_count,
10969         vmi_bases and vmi_flags_masks respectively.
10970         (__vmi_class_type_info::vmi_flags_masks): Rename
10971         details_unknown_mask to flags_unknown_mask.
10972         * tinfo.cc (__class_type_info::do_upcast): Adjust.
10973         (__vmi_class_type_info::do_find_public_src): Adjust.
10974         (__vmi_class_type_info::do_dyncast): Adjust.
10975         (__vmi_class_type_info::do_upcast): Adjust.
10976
10977 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
10978
10979         * tinfo.cc (convert_to_base): New function.
10980         (get_vbase_offset): Remove. Move into convert_to_base.
10981         (__vmi_class_type_info::do_find_public_src): Adjust.
10982         (__vmi_class_type_info::do_dyncast): Adjust.
10983         (__vmi_class_type_info::do_upcast): Adjust.
10984
10985 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
10986
10987         * tinfo.cc (operator=): Use __builtin_strcmp.
10988         * tinfo2.cc (before): Likewise.
10989
10990 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
10991
10992         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
10993         (DECL_SAVED_INLINE): Rename to ...
10994         (DECL_DEFERRED_FN): ... this.
10995         (in_function_p): Remove declaration.
10996         (mark_inline_for_output): Rename to ...
10997         (defer_fn): ... this.
10998         * decl.c (finish_function): Adjust call to mark_inline_for_output.
10999         (in_function_p): Remove definition.
11000         * decl2.c (saved_inlines): Rename to ...
11001         (deferred_fns): ... this.
11002         (saved_inlines_used): Rename to ...
11003         (deferred_fns_used): ... this.
11004         (mark_inline_for_output): Rename to ...
11005         (defer_fn): ... this.
11006         (finish_file): Adjust accordingly.
11007         (init_decl2): Likewise.
11008         * lex.c (cons_up_default_function): Likewise.
11009         * pt.c (mark_decl_instantiated): Likewise.
11010         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
11011         circumstances.
11012         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
11013         * semantics.c (expand_body): Defer more functions.
11014
11015 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
11016
11017         * vec.cc: New file.
11018         * Make-lang.in (CXX_LIB2FUNCS): Add it.
11019         (vec.o): Build it.
11020         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
11021         __cxa_vec_delete): Declare.
11022
11023 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
11024
11025         * rtti.c (dfs_class_hint_mark): New static function.
11026         (dfs_class_hint_unmark): New static function.
11027         (class_hint_flags): Use them.
11028
11029 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
11030
11031         * decl2.c: Make flag_honor_std dependent on ENABLE_STD_NAMESPACE.
11032
11033 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
11034
11035         * cp-tree.h (instantiate_decl): Change prototype.
11036         * decl2.c (mark_used): Adjust call.
11037         * optimize.c (inlinable_function_p): Adjust handling of templates.
11038         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
11039         (do_type_instantiation): Likewise.
11040         (instantiate_decl): Defer more templates.
11041         (instantiate_pending_templates): Adjust logic to handle inline
11042         friend functions.
11043
11044         * Makefile.in (GGC_H): New variable.  Use it throughout in place
11045         of ggc.h.
11046
11047         * call.c: Don't include obstack.h.  Include ggc.h.
11048         (obstack_chunk_alloc): Don't define.
11049         (obstack_chunk_free): Likewise.
11050         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
11051         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
11052         (pop_switch): Free it.
11053
11054         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
11055
11056         * dump.c (dequeue_and_dump): Don't try to print the bit_position
11057         if we don't have a DECL_FIELD_OFFSET.
11058
11059 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
11060
11061         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
11062         special_function_p.
11063
11064 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11065
11066         * cfns.gperf (hash, libc_name_p): Prototype.
11067
11068         * rtti.c (build_dynamic_cast_1): Constification.
11069
11070         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
11071
11072         * semantics.c (deferred_type_access_control): Prototype.
11073
11074 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
11075
11076         Correct many new ABI issues regarding vbase and vcall offset
11077         layout.
11078         * cp-tree.h (BINFO_VTABLE): Document.
11079         (struct lang_type): Tweak formatting.
11080         (BINFO_PRIMARY_BINFO): Add to documentation.
11081         (CLASSTYPE_VSIZE): Fix typo in comment.
11082         (CLASSTYPE_VBASECLASSES): Update documentation.
11083         (BINFO_VBASE_MARKED): Remove.
11084         (SET_BINFO_VBASE_MARKED): Likewise.
11085         (CLEAR_BINFO_VBASE_MARKED): Likewise.
11086         (BINFO_FIELDS_MARKED): Remove.
11087         (SET_BINFO_FIELDS_MARKED): Likewise.
11088         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
11089         (enum access_kind): New enumeration.
11090         (num_extra_vtbl_entries): Remove declaration.
11091         (size_extra_vtbl_entries): Likewise.
11092         (get_vtbl_decl_for_binfo): New function.
11093         (dfs_vbase_unmark): Remove declaration.
11094         (mark_primary_bases): Likewise.
11095         * class.c (SAME_FN): Remove.
11096         (struct vcall_offset_data_s): Move definition.
11097         (build_vbase_pointer): Use `build', not `build_binary_op', to
11098         access the vbase pointer under the new ABI.
11099         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
11100         (build_primary_vtable): Likewise.
11101         (dfs_mark_primary_bases): Move here from search.c.
11102         (mark_primary_bases): Likewise.
11103         (determine_primary_bases): Under the new ABI, don't make a base
11104         class a primary base just because we don't yet have any virtual
11105         functions.
11106         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
11107         (num_vfun_entries): Remove.
11108         (dfs_count_virtuals): Likewise.
11109         (num_extra_vtbl_entries): Likewise.
11110         (size_extra_vtbl_entries): Likewise.
11111         (layout_virtual_bases): Iterate in inheritance graph order under
11112         the new ABI.
11113         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
11114         indicate that a vfield is present.
11115         (init_class_processing): Initialize access_public_node, etc., from
11116         ak_public, etc.
11117         (get_vtbl_decl_for_binfo): New function.
11118         (dump_class_hierarchy_r): Likewise.
11119         (dump_class_hierarchy): Use it.
11120         (finish_vtbls): Build the vtbls in inheritance graph order.
11121         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
11122         (initialize_vtable): Use get_vtbl_decl_for_binfo.
11123         (accumulate_vtbl_inits): Add comments explaining why a pre-order
11124         walk is required.
11125         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
11126         where the vptr points, even for primary vtables.
11127         (build_vtbl_initializer): Adjust handling of vbase and vcall
11128         offsets.
11129         (build_vcall_and_vbase_vtable_entries): New function.
11130         (dfs_build_vbase_offset_vtbl_entries): Remove.
11131         (build_vbase_offset_vtbl_entries): Reimplement.
11132         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
11133         were already handled in a primary base class vtable.
11134         (build_vcall_offset_vtbl_entries): Adjust.
11135         (build_rtti_vtbl_entries): Adjust.
11136         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
11137         * init.c (expand_virtual_init): Simplify.
11138         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
11139         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
11140         * search.c (BINFO_ACCESS): New macro.
11141         (SET_BINFO_ACCESS): Likewise.
11142         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
11143         (access_in_type): Likewise.
11144         (dfs_accessible_p): Likewise.
11145         (protected_accessible_p): Likewise.
11146         (lookup_fnfields_1): Adjust documentation.
11147         (dfs_mark_primary_bases): Move to class.c
11148         (mark_primary_bases): Likewise.
11149         (dfs_vbase_unmark): Remove.
11150         (virtual_context): Use BINFO_FOR_VBASE.
11151         (dfs_get_vbase_types): Simplify.
11152         (dfs_build_inheritance_graph_order): New function.
11153         (get_vbase_types): Use it.
11154         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
11155
11156         * tinfo.cc (get_vbase_offset): New function.
11157         (__vmi_class_type_info::do_find_public_src): Use it.
11158         (__vmi_class_type_info::do_dyncast): Likewise.
11159         (__vmi_class_type_info::do_upcast): Likewise.
11160
11161 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
11162
11163         * lang-specs.h: Pass -fno-show-column to the preprocessor.
11164
11165 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
11166
11167         * rtti.c (class_hint_flags): Rename flags.
11168         (class_initializer): Remove flags.
11169         (synthesize_tinfo_var): Combine offset and flags. Add flags
11170         for __vmi_class_type_info.
11171         (create_tinfo_types): Remove flags from __class_type_info and
11172         __si_class_type_info. Merge flags and offset from
11173         base_class_type_info.
11174         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
11175         (__base_class_info::is_virtual_p): Adjust.
11176         (__base_class_info::is_public_p): Adjust.
11177         (__base_class_info::offset): New accessor.
11178         (__class_type_info::details): Remove member.
11179         (__class_type_info::__class_type_info): Lose details.
11180         (__class_type_info::detail_masks): Remove.
11181         (__si_class_type_info::__si_class_type_info): Lose details.
11182         (__vmi_class_type_info::details): New member.
11183         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
11184         (__vmi_class_type_info::detail_masks): New member.
11185         * tinfo.cc (__class_type_info::do_upcast): Initialize result
11186         with unknown_details_mask.
11187         (__vmi_class_type_info::do_find_public_src): Adjust
11188         (__vmi_class_type_info::do_dyncast): Adjust.
11189         (__vmi_class_type_info::do_upcast): Set result details, if
11190         needed. Adjust.
11191         (__dynamic_cast): Temporarily #if out optimization.
11192
11193 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
11194
11195         * rtti.c (get_tinfo_decl): Mark used.
11196         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
11197         mark as dealt with, if we output it.
11198
11199 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
11200
11201         * class.c: Reorganize to put virtual function table initialization
11202         machinery at the end of the file.
11203
11204 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
11205
11206         * class.c (finish_struct): Use bitsize_zero_node.
11207         * pt.c (instantiate_class_template): Likewise.
11208
11209 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
11210
11211         Put RTTI entries at negative offsets in new ABI.
11212         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
11213         vbase offset at index -3, not -1.
11214         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
11215         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
11216         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
11217         (build_rtti_vtbl_entries): New function.
11218         (set_rtti_entry): Remove.
11219         (build_primary_vtable): Don't use it.
11220         (build_secondary_vtable): Likewise.
11221         (start_vtable): Remove.
11222         (first_vfun_index): New function.
11223         (set_vindex): Likewise.
11224         (add_virtual_function): Don't call start_vtable.  Do call
11225         set_vindex.
11226         (set_primary_base): Rename parameter.
11227         (determine_primary_base): Likewise.
11228         (num_vfun_entries): Don't use skip_rtti_stuff.
11229         (num_extra_vtbl_entries): Include RTTI information.
11230         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
11231         (skip_rtti_stuff): Remove.
11232         (dfs_modify_vtables): Don't use it.
11233         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
11234         (layout_nonempty_base_or_field): Update size handling.
11235         (create_vtable_ptr): Tweak.
11236         (layout_class_type): Adjust parameter names.
11237         (finish_struct_1): Simplify.
11238         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
11239         (skip_rtti_stuff): Remove.
11240         (first_vfun_index): New function.
11241         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
11242         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
11243         (marked_vtable_pathp): Declare.
11244         (unmarked_vtable_pathp): Likewise.
11245         * error.c (dump_expr): Use first_vfun_index to calculate vtable
11246         offsets.
11247         * rtti.c (build_headof): Look for RTTI at negative offsets.
11248         (get_tinfo_decl_dynamic): Likewise.
11249         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
11250         here.
11251         (create_pseudo_type_info): Do it here instead.  Adjust so that
11252         vptr points at first virtual function.
11253         * search.c (marked_vtable_pathp): Make it global.
11254         (unmarked_vtable_pathp): Likewise.
11255         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
11256         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
11257         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
11258         (get_pure_virtuals): Likewise.
11259         (expand_upcast_fixups): Likewise.
11260         * tree.c (debug_binfo): Likewise.
11261         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
11262         negative offset.
11263
11264 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11265
11266         * class.c (check_field_decl): Fix typo.
11267         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
11268         (check_methods): Likewise.
11269         (check_field_decls): Likewise.
11270         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
11271         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
11272         Use DECL_RESULT_FLD, not DECL_RESULT.
11273         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
11274         * lex.c (identifier_type): Likewise.
11275         * pt.c (determine_specialization, lookup_template_class): Likewise.
11276         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
11277         (resolve_overloaded_unification, more_specialized): Likewise.
11278         * semantics.c (finish_member_declaration): Likewise.
11279         * typeck.c (build_x_function_call): Likewise.
11280
11281 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
11282
11283         * class.c (layout_empty_base): Handle empty bases with non-byte
11284         alignment.
11285         (build_base_field): Likewise.
11286         (layout_virtual_bases): Likewise.
11287
11288         * class.c (finish_struct_1): Fix typo in this change:
11289
11290         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11291
11292 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
11293
11294         * decl.c (grokdeclarator): Count partial specializations when
11295         keeping track of how many template classes have been seen.
11296
11297         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
11298
11299 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11300
11301         * class.c (build_vbase_pointer_fields): layout_field now place_field.
11302         (get_vfield_offset): Use byte_position.
11303         (set_rtti_entry): Set OFFSET to ssizetype zero.
11304         (get_binfo_offset_as_int): Deleted.
11305         (dfs_record_base_offsets): Use tree_low_cst.
11306         (dfs_search_base_offsets): Likewise.
11307         (layout_nonempty_base_or_field): Reflect changes in RLI format
11308         and call byte_position.
11309         (layout_empty_base): Convert offset to ssizetype.
11310         (build_base_field): use rli_size_unit_so_far.
11311         (dfs_propagate_binfo_offsets): Do computation in proper type.
11312         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
11313         (layout_class_type): Reflect changes in RLI names and fields.
11314         (finish_struct_1): Set DECL_FIELD_OFFSET.
11315         * dump.c (dequeue_and_dump): Call bit_position.
11316         * expr.c (cplus_expand_constant): Use byte_position.
11317         * rtti.c (expand_class_desc): Use bitsize_one_node.
11318         * typeck.c (build_component_addr): Use byte_position and don't
11319         special case for zero offset.
11320
11321 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
11322
11323         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
11324
11325         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
11326         tinfo object.
11327         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
11328         vtable.
11329
11330 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11331
11332         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
11333         DECL_P macros.
11334         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
11335         make_typename_type, check_initializer, cp_finish_decl,
11336         xref_tag): Likewise.
11337         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
11338         decl_namespace, arg_assoc_template_arg, arg_assoc,
11339         validate_nonmember_using_decl, do_class_using_decl): Likewise.
11340         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
11341         args_to_string): Likewise.
11342         * friend.c (is_friend): Likewise.
11343         * lex.c (note_got_semicolon, note_list_got_semicolon,
11344         is_global): Likewise.
11345         * method.c (build_overload_nested_name, build_overload_value,
11346         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
11347         * parse.y (typename_sub, typename_sub1): Likewise.
11348         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
11349         process_partial_specialization, convert_template_argument,
11350         template_args_equal, add_pending_template, lookup_template_class,
11351         for_each_template_parm_r, maybe_fold_nontype_arg,
11352         tsubst, instantiate_template, type_unification_real, unify,
11353         instantiate_pending_templates, set_mangled_name_for_template_decl):
11354         Likewise.
11355         * repo.c (repo_get_id, repo_template_used): Likewise.
11356         * search.c (lookup_field_1): Likewise.
11357         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
11358         * xref.c (classname): Likewise.
11359
11360 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
11361
11362         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
11363         (CANONICAL_BINFO): New macro.
11364         (BINFO_NEW_VTABLE_MARKED): Use it.
11365         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
11366         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
11367         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
11368         not TREE_TYPE.
11369         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11370         (build_secondary_vtable): Likewise.
11371         (dfs_finish_vtbls): Likewise.
11372         (dfs_accumulate_vtbl_inits): Likewise.
11373         (accumulate_vtbl_inits): New function.
11374         (finish_vtbls): Make sure that virtual bases come after
11375         non-virtual bases in the vtable group.
11376         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
11377         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11378         * search.c (struct vbase_info): Move definition.
11379         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11380         (unmarked_new_vtable_p): Likewise.
11381         (dfs_mark_vtable_path): Remove.
11382         (dfs_mark_new_vtable): Remove.
11383         (dfs_unmark_new_vtable): Likewise.
11384         (dfs_clear_search_slot): Likewise.
11385         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
11386         (dfs_clear_vbase_slots): Likewise.
11387         (init_vbase_pointers): LIkewise.
11388
11389 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
11390
11391         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
11392         SIZETYPE to a non-SIZETYPE.
11393
11394 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
11395
11396         * class.c (layout_virtual_bases): Adjust names in conditionally
11397         compiled code.
11398
11399         * class.c (record_base_offsets): New function.
11400         (layout_conflict_p): Likewise.
11401         (layout_nonempty_base_or_field): Use it.
11402         (layout_empty_base): New function.
11403         (build_base_field): Use it.
11404         (build_base_fields): Update comment.
11405         (layout_virtual_bases): Fold in a little code form
11406         layout_basetypes.  Use layout_empty_base.
11407         (layout_basetypes): Remove.
11408         (end_of_class): New function.
11409         (layout_class_type): Use it.  Adjust.
11410
11411         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
11412         (fntype_p): Remove.
11413         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
11414         comment.
11415         (dfs_skip_nonprimary_vbases_markedp): Likewise.
11416         * typeck.c (fntype_p): Remove.
11417
11418         * cp-tree.h (TI_SPEC_INFO): Remove.
11419         (CLASSTYPE_TI_SPEC_INFO): Likewise.
11420         * pt.c (process_partial_specialization): Likewise.
11421
11422         * class.c (build_base_field): Fix thinko in computation of binfo
11423         offsets.
11424
11425         * tree.c (mark_local_for_remap_p): Mark variables declared in
11426         TARGET_EXPRs as well.
11427
11428 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11429
11430         * typeck.c (require_complete_type, complete_type,
11431         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
11432         build_array_ref, convert_arguments, pointer_diff,
11433         build_x_unary_op, build_unary_op, build_c_cast,
11434         build_modify_expr): Use COMPLETE_TYPE_P etc.
11435         * call.c (is_complete, convert_like_real,
11436         build_new_method_call): Likewise.
11437         * class.c (build_vbase_pointer_fields, check_bases,
11438         build_base_field, finish_struct_1, pushclass): Likewise.
11439         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
11440         * decl.c (maybe_process_template_type_declaration, pushtag,
11441         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
11442         layout_var_decl, check_initializer, cp_finish_decl,
11443         grokdeclarator, require_complete_types_for_parms,
11444         grok_op_properties, xref_tag, xref_basetypes,
11445         check_function_type): Likewise.
11446         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
11447         * friend.c (do_friend): Likewise.
11448         * init.c (build_offset_ref): Likewise.
11449         * parse.y (structsp): Likewise.
11450         * pt.c (maybe_process_partial_specialization,
11451         tsubst_friend_function, instantiate_class_template, tsubst,
11452         do_type_instantiation, instantiate_pending_templates): Likewise.
11453         * repo.c (repo_get_id): Likewise.
11454         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
11455         synthesize_tinfo_var, emit_support_tinfos): Likewise.
11456         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
11457         * semantics.c (begin_class_definition): Likewise.
11458         * tree.c (build_cplus_method_type): Likewise.
11459         * typeck2.c (digest_init, build_functional_cast,
11460         add_exception_specifier): Likewise.
11461         * parse.h, parse.c: Regenerated.
11462
11463 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11464
11465         * inc/cxxabi.h: New header file. Define new-abi entry points.
11466         (__pointer_type_info::target): Rename member to ...
11467         (__pointer_type_info::type): ... here.
11468         (__base_class_info::type): Rename member to ...
11469         (__base_class_info::base): ... here.
11470         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
11471         * cp-tree.h (CPTI_ABI): New global tree enumeration.
11472         (abi_node): New global tree node.
11473         * decl.c (abi_node): Document.
11474         (init_decl_processing): Initialize abi_node.
11475         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
11476         (get_vmi_pseudo_type_info): Likewise.
11477         (create_tinfo_types): Likewise.
11478         (emit_support_tinfos): Likewise.
11479         * tinfo.h (cxxabi.h): Include for new-abi.
11480         Move rtti class definitions to new header file.
11481         * tinfo.cc (abi): Use the namespace.
11482         (std): Move new abi rtti classes from here ...
11483         (__cxxabiv1): ... to here.
11484         * tinfo2.cc (cxxabi.h): Include for new-abi.
11485         Move rtti class definitions to new header file.
11486         (std): Move new abi rtti classes from here ...
11487         (__cxxabiv1): ... to here.
11488         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
11489         namespace.
11490
11491 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
11492             Jason Merrill  <jason@casey.cygnus.com>
11493
11494         * method.c (build_overload_int): Use host_integerp.
11495
11496 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11497
11498         * init.c (build_offset_ref): Handle the case of a templated member
11499         function.
11500
11501 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11502
11503         * except.c (expand_exception_blocks): Clear catch_clauses_last.
11504
11505 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11506
11507         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
11508         * class.c (check_bitfield_decl): Turn illegal bitfields into
11509         non-bitfields.
11510         (dfs_propagate_binfo_offsets): Adjust for new size_binop
11511         semantics.
11512         (dfs_offset_for_unshared_vbases): Likewise.
11513         * cvt.c (cp_convert_to_pointer): Convert NULL to a
11514         pointer-to-member correctly under the new ABI.
11515         * expr.c (cplus_expand_constant): Don't use cp_convert when
11516         turning an offset into a pointer-to-member.
11517         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
11518         when dereferencing them under the new ABI.
11519         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
11520         of pointers-to-members under the new ABI.
11521
11522         * class.c (check_bitfield_decl): Remove restriction on really long
11523         bitfields.
11524         (layout_class_type): Implement new ABI handling of bitfields
11525         longer than their types.
11526
11527 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11528
11529         * parse.y (extdefs): Call ggc_collect.
11530         * parse.c: Regenerated.
11531
11532 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
11533
11534         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
11535         (note_name_declared_in_class): Use OVL_CURRENT to get at a
11536         potential overload.
11537
11538 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11539
11540         * class.c (build_vbase_path): Use integer_zerop.
11541         (build_vtable_entry): Use tree_low_cst.
11542         (get_vfield_offset): Use bit_position.
11543         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
11544         Use tree_low_cst.
11545         (check_bitfield_decl): Set DECL_SIZE using convert.
11546         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
11547         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
11548         Use tree_low_cst.
11549         (finish_struct_1): Use bit_position.
11550         (dump_class_hierarchy): Use tree_low_cst.
11551         * cp-tree.h (min_precision): Add declaration.
11552         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
11553         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
11554         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
11555         * expr.c (cplus_expand_constant): Use bit_position.
11556         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
11557         * rtti.c (get_base_offset): Use bit_position.
11558         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
11559         host_integerp, and tree_low_cst.
11560         (pointer_int_sum): Use integer_zerop.
11561         (build_component_addr): Use bit_position.
11562
11563 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
11564
11565         * typeck.c (require_complete_type): Don't assume size_zero_node.
11566         (complete_type_or_else): Likewise.
11567
11568 2000-03-16  Steven Grady <grady@digitaldeck.com>
11569             Jason Merrill  <jason@casey.cygnus.com>
11570
11571         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
11572
11573 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
11574
11575         * decl2.c (grokfield): Bail out if type is error_mark_node.
11576
11577 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11578
11579         * tinfo2.cc (__ptr_to_member_data): Rename to ...
11580         (__pointer_to_member_data): ... here. Adjust.
11581         * rtti.c (create_tinfo_types): Adjust.
11582
11583 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11584
11585         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
11586         * decl.c (ref_desc_type_node): Undocument.
11587         * rtti.c (ptr_ref_initializer): Rename to ...
11588         (ptr_initializer): ... here. Adjust comments.
11589         (ptmd_initializer): Fix comment thinko.
11590         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
11591         (create_tinfo_types): Remove ref_desc_type_node init.
11592         * tinfo2.cc (__reference_type_info): Remove.
11593
11594 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11595
11596         * decl.c (cp_finish_decl): Remove obsolete comment.
11597
11598         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
11599
11600 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
11601
11602         * cp-tree.h: Tweak documentation.
11603         * class.c (build_vbase_pointer_fields): Layout the fields, too.
11604         (avoid_overlap): Remove.
11605         (get_binfo_offset_as_int): New function.
11606         (dfs_serach_base_offsets): Likewise.
11607         (layout_nonempty_base_or_field): Likewise.
11608         (build_base_field): Layout fields here.  Avoid placing two objects
11609         of the same type at the same address, under the new ABI.
11610         (build_base_fields): Adjust accordingly.
11611         (create_vtable_ptr): Return the new field, but don't attach it to
11612         TYPE_FIELDS.
11613         (remove_base_field): Remove.
11614         (remove_base_fields): Remove.
11615         (layout_basetypes): Adjust accordingly.
11616         (layout_class_type): Call layout_field for each field, rather than
11617         just making a wholesale call to layout_type.
11618
11619 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
11620
11621         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
11622
11623 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
11624
11625         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
11626
11627         * except.c (dtor_nothrow): New fn.
11628         (do_pop_exception): Use it.  Take type parm.
11629         (push_eh_cleanup): Take type parm.
11630         (expand_start_catch_block): Pass it.
11631         (build_eh_type_type_ref): Accept null type.
11632
11633 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
11634
11635         * cp-tree.h (revert_static_member_fn): Change prototype.
11636         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
11637         (grok_op_properties): Likewise.
11638         (start_function): Likewise.
11639         (revert_static_member_fn): Simplify.
11640         * pt.c (check_explicit_specialization): Adjust call to
11641         revert_static_member_fn.
11642
11643 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
11644
11645         * cp-tree.h (scope_kind): New type.
11646         (tmpl_spec_kind): Likewise.
11647         (declare_pseudo_global_level): Remove.
11648         (pseudo_global_level_p): Rename to template_parm_scope_p.
11649         (pushlevel): Remove declaration.
11650         (begin_scope): New function.
11651         (finish_scope): Likewise.
11652         (current_tmpl_spec_kind): Likewise.
11653         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
11654         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
11655         Add template_spec_p.
11656         (toplevel_bindings_p): Adjust.
11657         (declare_pseudo_global_level): Remove.
11658         (pseudo_global_level_p): Rename to template_parm_scope_p.
11659         (current_tmpl_spec_kind): New function.
11660         (begin_scope): Likewise.
11661         (finish_scope): Likewise.
11662         (maybe_push_to_top_level): Adjust.
11663         (maybe_process_template_type_declaration): Likewise.
11664         (pushtag): Likewise.
11665         (pushdecl_nonclass_level): Likewise.
11666         (lookup_tag): Likewise.
11667         (grokfndecl): Handle member template specializations.  Share
11668         constructor and non-constructor code.
11669         * decl2.c (check_classfn): Handle member template specializations.
11670         * pt.c (begin_template_parm_list): Use begin_scope.
11671         (begin_specialization): Likewise.
11672         (end_specialization): Likewise.
11673         (check_explicit_specialization): Use current_tmpl_spec_kind.
11674         Handle member template specializations.
11675         (end_template_decl): Use finish_scope.  Remove call to
11676         get_pending_sizes.
11677         (push_template_decl_real): Remove bogus error message.
11678         (tsubst_decl): Fix typo in code contained in comment.
11679         (instantiate_template): Handle member template specializations.
11680         (most_general_template): Likewise.
11681
11682 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
11683
11684         * lex.c (whitespace_cr): Compress consecutive calls to warning().
11685         (do_identifier): Ditto for error().
11686
11687         * pt.c (convert_nontype_argument): Ditto for cp_error().
11688         (convert_template_argument): Ditto for cp_pedwarn().
11689
11690 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
11691
11692         * exception.cc (__check_null_eh_spec): New fn.
11693         * except.c (expand_end_eh_spec): Call it if the spec is throw().
11694
11695 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
11696
11697         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
11698         * except.c (expand_end_eh_spec): Add the return type.
11699         * rtti.c (throw_bad_cast): Add the parmtypes.
11700         (throw_bad_typeid): Likewise.
11701
11702         * semantics.c (expand_stmt): Only leave out rtl for unused
11703         artificials, and set DECL_IGNORED_P on them as well.
11704         * decl.c (wrapup_globals_for_namespace): Likewise.
11705
11706 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
11707
11708         * decl.c (maybe_commonize_var): Skip all artificial decls.
11709         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
11710
11711 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
11712
11713         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
11714         * cp-tree.h: Declare flag_enforce_eh_specs.
11715         * decl.c (store_parm_decls, finish_function): Check it.
11716
11717         C library functions don't throw.
11718         * Makefile.in (cfns.h): New target.
11719         (except.o): Depend on it.
11720         * Make-lang.in (cc1plus): Depend on cfns.gperf.
11721         * cfns.gperf: New file.
11722         * cfns.h: Generated.
11723         * except.c: Include it.
11724         (nothrow_libfn_p): New fn.
11725         * decl.c (grokfndecl): Use it.
11726         * cp-tree.h: Declare it.
11727
11728         * decl.c (push_overloaded_decl_1, auto_function,
11729         define_function): Lose.
11730         (build_library_fn_1): New static fn.
11731         (builtin_function): Use it.
11732         (get_atexit_node): Use build_library_fn_ptr.
11733         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
11734         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
11735         push_void_library_fn, push_throw_library_fn): New fns.
11736         * cp-tree.h: Declare them.
11737         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
11738         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
11739         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
11740         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
11741         * rtti.c (build_runtime_decl): Lose.
11742         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
11743         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
11744         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
11745
11746         * call.c (build_call): Remove result_type parm.
11747         Call mark_used on unused artificial fns.
11748         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
11749
11750 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
11751
11752         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
11753         appropriate.
11754         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
11755         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
11756         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
11757         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
11758         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
11759         expand_generic_desc): Likewise.
11760
11761 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11762
11763         * exception.cc (__cp_pop_exception): Cleanup the original object.
11764
11765 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11766
11767         * decl.c (grok_op_properties): Merge conversion to void warning
11768         with other silly op warnings.
11769
11770 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
11771
11772         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
11773         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
11774
11775 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11776
11777         * decl.c (cp_make_fname_decl): New function.
11778         (wrapup_globals_for_namespace): Don't emit unused static vars.
11779         (init_decl_processing): Remove comment about use of
11780         array_domain_type. Set make_fname_decl.
11781         (cp_finish_decl): Remove __FUNCTION__ nadgering.
11782         * semantics.c (begin_compound_stmt): Remove
11783         current_function_name_declared flagging.
11784         (expand_stmt): Don't emit unused local statics.
11785         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
11786         specially.
11787
11788 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11789
11790         * typeck.c (convert_for_assignment): Don't look at array
11791         initializer.
11792         * call.c (convert_like_real): Likewise.
11793
11794 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
11795
11796         Add initial support for '\uNNNN' specifier.
11797         * lex.c (read_ucs): New fn.
11798         (readescape, skip_white_space): Call it.
11799         (is_extended_char, is_extended_char_1): New fns.
11800         (utf8_extend_token): New fn, #if 0'd out.
11801         (real_yylex): Treat extended chars like letters.
11802
11803         * search.c (note_debug_info_needed): Walk the bases even if we
11804         weren't deferring the type itself.
11805
11806 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11807
11808         * decl2.c (finish_objects): Constify a char*.
11809
11810         * method.c (emit_thunk): Likewise.
11811
11812 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
11813
11814         * typeck.c (dubious_conversion_warnings): Look through
11815         REFERENCE_TYPE.
11816
11817 Mon Mar  6 08:46:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11818
11819         * class.c (dfs_modify_vtables): I is now unsigned.
11820         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
11821         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
11822         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
11823         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
11824         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
11825         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
11826         Call integer_all_onesp.
11827         * typeck2.c (process_init_constructor): Use compare_tree_int.
11828
11829         * lang-specs.h (as): Don't call if -syntax-only.
11830
11831 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
11832
11833         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
11834         RTL_EXPR_HAS_NO_SCOPE after all.
11835
11836 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
11837
11838         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
11839         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
11840         RTL_EXPR_HAS_NO_SCOPE.
11841
11842         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
11843         later.
11844
11845         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
11846
11847 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
11848
11849         * call.c (convert_like): Macrofy.
11850         (convert_like_with_context): New macro.
11851         (convert_like_real): Renamed from convert_like.  Add calling
11852         context parameters, for diagnostics. Add recursive flag.  Call
11853         dubious_conversion_warnings for outer conversion.
11854         (build_user_type_conversion): Use convert_like_with_context.
11855         (build_over_call): Likewise. Don't warn about dubious
11856         conversions here. Adjust convert_default_arg calls.
11857         (convert_default_arg): Add context parameters for diagnostics.
11858         Pass through to convert_like_with_context.
11859         * cp-tree.h (convert_default_arg): Add context parameters.
11860         (dubious_conversion_warnings): Prototype new function.
11861         * typeck.c (convert_arguments): Adjust convert_default_arg call.
11862         (dubious_conversion_warnings): New function, broken
11863         out of convert_for_assignment.
11864         (convert_for_assignment): Adjust.
11865
11866 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
11867
11868         * decl2.c (key_method): Break out from...
11869         (import_export_vtable, import_export_class): ...here.
11870
11871         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
11872         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
11873
11874         * search.c (note_debug_info_needed, dfs_debug_mark,
11875         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
11876         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
11877
11878 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
11879
11880         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
11881         typos.
11882
11883 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
11884
11885         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
11886         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
11887         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
11888         (lang_type): Split gets_new into has_new and has_array_new.
11889         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11890         (TYPE_GETS_NEW): Split into ...
11891         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
11892         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
11893         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
11894         (build_op_new_call): Don't declare.
11895         (build_new_1): Likewise.
11896         * call.c (build_op_new_call): Remove.
11897         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
11898         instead of TYPE_NEEDS_DESTRUCTOR.
11899         (finish_struct_bits): Likewise.
11900         (add_implicitly_declared_members): Likewise.
11901         (check_field_decl): Likewise.
11902         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
11903         correctly under the new ABI.
11904         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
11905         instead of TYPE_NEEDS_DESTRUCTOR.
11906         (initialize_local_var): Likewise.
11907         (destroy_local_var): Likewise.
11908         (cp_finish_decl): Likewise.
11909         (register_dtor_fn): Likewise.
11910         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
11911         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
11912         TYPE_VEC_DELETE_TAKES_SIZE here.
11913         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
11914         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
11915         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11916         (finish_destructor_body): Likewise.
11917         (maybe_build_cleanup_1): Likewise.
11918         * decl2.c (do_static_destruction): Likewise.
11919         * init.c (build_new_1): Make it static.
11920         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11921         (expand_cleanup_for_base): Likewise.
11922         (get_cookie_size): New function.
11923         (build_new_1): Handle array-new cookies correctly under the new
11924         ABI.
11925         (build_vec_delete_1): Likewise.
11926         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11927         (build_delete): Likewise.
11928         (build_vec_delete): Handle array-new cookies correctly under the new
11929         ABI.
11930         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11931         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
11932         TYPE_HAS_ARRAY_NEW_OPERATOR.
11933         * ptree.c (print_lang_type): Check them.
11934         * search.c (context_for_name_lookup): Fix typo in comment.
11935         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11936         * tree.c (break_out_cleanups): Likewise.
11937         (build_cplus_array_test_1): Likewise.
11938         (cp_build_qualified_type_real): Likewise.
11939         * typeck.c (complete_type): Likewise.
11940
11941         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
11942         the command-line, not the end.
11943
11944 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
11945
11946         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
11947
11948 2000-03-02  Tom Tromey  <tromey@cygnus.com>
11949
11950         * cp-tree.h (build_java_class_ref): Declare.
11951         * init.c (build_java_class_ref): No longer static.
11952         * except.c (expand_throw): Generate a Java-style `throw' if the
11953         thrown object is a "Java" object.
11954         (initialize_handler_parm): Generate a Java-style lookup of
11955         exception info if the caught object is a "Java" object.
11956         (catch_language, catch_language_init): New globals.
11957         (decl_is_java_type): New function.
11958         (expand_start_catch_block): Don't call push_eh_info() or
11959         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
11960         class reference to build_catch_block.
11961
11962 Thu Mar  2 13:32:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11963
11964         * typeck.c (comptypes): Treat sizetype like its language equivalent.
11965
11966 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
11967
11968         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
11969         to merge reference/pointer code and fix incorrect warnings.
11970
11971 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
11972
11973         * search.c (protected_accessible_p): Use context_for_name_lookup.
11974
11975         * init.c (construct_virtual_bases): Fix thinko.
11976         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
11977
11978 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
11979
11980         * decl.c (current_function_decl): Move to toplev.c.
11981
11982 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
11983
11984         * pt.c (fn_type_unification): Unify return type, whenever
11985         provided.
11986         (get_bindings_real): Only pass return type when necessary.
11987         Remove explicit return type check.
11988         * class.c (resolve_address_of_overloaded_function): Pass desired
11989         return type to fn_type_unification.
11990
11991 Mon Feb 28 08:15:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11992
11993         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
11994         DECL_FIELD_SIZE.
11995         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
11996         DECL_FIELD_SIZE.
11997         * rtti.c (expand_class_desc): Likewise.
11998         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
11999         (THUNK_VCALL_OFFSET): Likewise.
12000         (THUNK_DELTA): Reflect changes in ../tree.h.
12001
12002 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
12003
12004         * search.c (protected_accessible_p): Also allow the access if
12005         the member is public in DERIVED.  Lose TYPE parm.
12006         (friend_accessible_p): Lose TYPE parm.
12007         (accessible_p): Adjust.
12008
12009 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12010
12011         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
12012         on things that are not sizes; ssize_binop deleted.
12013         Call size_diffop when appropriate.
12014         (dfs_build_vcall_offset_vtbl_entries): Likewise.
12015         (build_primary_vtable, build_secondary_vtable): Likewise.
12016         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
12017         Variable I is HOST_WIDE_INT.
12018         (get_vfield_offset): Pass proper types to size_binop.
12019         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
12020         (finish_struct_1): Likewise.
12021         (skip_rtti_stuff): Arg N is now pointer to signed.
12022         (layout_class_type): Use size_zero_node.
12023         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
12024         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
12025         * decl.c (complete_arry_type): Pass proper types to size_binop.
12026         (xref_basetypes): BINFO_OFFSET is sizetype.
12027         * error.c (dump_expr): Don't use size_binop non-sizes.
12028         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
12029         * init.c (construct_virtual_bases): Fix type error.
12030         (build_vec_delete_1): Pass proper type to size_binop and don't
12031         fold result.
12032         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
12033         * rtti.c (get_base_offset): Pass proper type to size_binop.
12034         * search.c (dfs_find_vbases): Fix type error.
12035         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
12036         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
12037         * tree.c (debug_binfo): Variable N is signed.
12038         Use HOST_WIDE_INT_PRINT_DEC.
12039         * typeck.c (comptypes): sizetype is same as equivalent integer type.
12040         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
12041         size_one_node and size_zero_node.
12042         (c_alignof): Use size_one_node.
12043         (build_component_addr): Pass proper types to size_binop.
12044         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
12045
12046 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
12047
12048         Implement class scope using-declarations for functions.
12049         * class.c (handle_using_decl): Call add_method for used functions.
12050         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
12051         (add_method): Used functions are hidden by local functions.
12052         (check_bases_and_members): Handle using-decls before finalizing
12053         CLASSTYPE_METHOD_VEC.
12054         * call.c (add_function_candidate): Add ctype parm; if non-zero,
12055         override the type of 'this' accordingly.
12056         (add_template_candidate, add_template_candidate_real): Add ctype parm.
12057         (convert_class_to_reference, build_user_type_conversion_1,
12058         build_new_function_call, build_object_call, build_new_op,
12059         build_new_method_call): Pass ctype parm.
12060
12061         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
12062         the baselink.
12063         * call.c (convert_class_to_reference, build_user_type_conversion_1,
12064         build_new_function_call, build_object_call, build_new_op,
12065         build_new_method_call, build_op_delete_call): Don't get basetype_path
12066         from a baselink.
12067         * typeck.c (build_component_ref): Likewise.
12068         * init.c (build_offset_ref): Likewise.
12069         (resolve_offset_ref): Don't call enforce_access.
12070         Call build_scoped_ref.
12071         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
12072         would cause an error or if -pedantic.
12073         * class.c (alter_access): Lose binfo parm.
12074
12075 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12076
12077         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
12078         types.
12079
12080 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
12081
12082         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
12083         pseudo_type_info creation into the std namespace
12084
12085 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12086
12087         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
12088         (import_export_class): Remove declaration.
12089         * decl2.c (import_export_class): Make it static.
12090         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
12091         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
12092         EXPR_WITH_FILE_LOCATION.
12093         * lex.c (check_newline): Tweak filename/lineno setting.
12094         * semantics.c (begin_while_stmt): Fix typo in comment.
12095
12096 Sat Feb 26 19:50:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12097
12098         * lang-options.h (-fmessage-length=): Add missing option.
12099
12100         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
12101
12102 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
12103
12104         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
12105
12106 Fri Feb 25 14:52:33 2000  Jim Wilson  <wilson@cygnus.com>
12107
12108         * optimize.c (expand_call_inline): Emit the return label before
12109         evaluating the return value.
12110
12111 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
12112
12113         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
12114         than duplicating functionality here.
12115         * optimize.c: Include input.h.
12116         (expand_call_inline): Use push_srcloc and pop_srcloc.
12117         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
12118         * parse.c: Regenerated.
12119         * Makefile.in (lex.o): Depend on input.h.
12120         (optimize.o): Likewise.
12121
12122 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
12123
12124         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
12125         function type, rather than ICE.
12126
12127 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
12128
12129         * decl.c (grokdeclarator): Call decl_type_access_control.
12130         * parse.y (parse_end_decl): Don't call decl_type_access_control if
12131         decl is null.
12132
12133 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
12134
12135         * decl.c (decls_match): Remove obsolete static member nadgering.
12136
12137 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12138
12139         * decl.c (grokdeclarator): Change ANSI to ISO.
12140         * lex.c (consume_string, readescape, do_identifier): Likewise.
12141         (parse_float, real_yylex): Likewise.
12142         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
12143         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
12144         new_type_id, maybe_label_decls, simple_stmt,
12145         for.init.statement): Likewise.
12146         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
12147         * semantics.c (finish_named_return_value): Likewise.
12148         * parse.c: Regenerate.
12149
12150 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
12151
12152         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
12153         (CPTI_CLASS_STAR_TYPE): Remove.
12154         (vtable_index_type): Likewise.
12155         (class_star_type_node): Remove.
12156         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
12157         (build_binary_op_nodefault): Remove.
12158         * call.c (build_new_op): Use build_binary_op instead of
12159         build_binary_op_nodefault.
12160         * decl.c (init_decl_processing): Remove class_star_type_node
12161         initialization.  Make delta_type_node ptrdiff_type_node under the
12162         new ABI.  Initialize vtable_index_type.
12163         (build_ptrmemfunc_type): Build different structures for the new
12164         ABI.
12165         (build_enumerator): Use build_binary_op instead of
12166         build_binary_op_nodefault.
12167         * method.c (build_overload_value): Mangle pointers-to-members
12168         appropriately under the new ABI.
12169         * typeck.c (build_array_ref): Use build_binary_op instead of
12170         build_binary_op_nodefault.
12171         (get_member_function_from_ptrfunc): Adjust for the new ABI.
12172         (build_binary_op_nodefault): Rename to ...
12173         (build_binary_op): ... this.  Remove old version.  Adjust for
12174         pointer-to-member comparisons under the new ABI.
12175         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
12176         (build_ptrmemfunc): Adjust for the new ABI.
12177         (expand_ptrmemfunc_cst): Likewise.
12178         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
12179         (pfn_from_ptrmemfunc): Adjust for the new ABI.
12180
12181 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
12182
12183         * call.c (build_object_call): Compress consecutive calls to
12184         cp_error.
12185         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
12186         (build_op_delete_call): Adjust message formatting.
12187
12188         * class.c (check_bases): Compress consecutive calls to
12189         cp_pedwarn.
12190         (finish_struct_anon): Say 'ISO C++'.
12191
12192         * decl.c (start_decl): Same here.
12193         (grok_reference_init): Likewise.
12194         (grokfndecl): Correct message formatting.
12195         (grokfndecl): Improve diagnostic.
12196         (check_static_variable_definition): Likewise. Say 'ISO C++'
12197         (compute_array_index_type): Say 'ISO C++'
12198         (create_array_type_for_decl): Compress consecutive calls to
12199         cp_error.
12200         (grokdeclarator): Say 'ISO C++'
12201         (grok_op_properties): Likewise.
12202
12203         * decl2.c (delete_sanity): Clairify diagnostic.
12204         (check_member_template): Same here.
12205         (grok_function_init): Use consistent terminology.
12206
12207         * expr.c (do_case): Say 'ISO C++'
12208
12209         * friend.c (do_friend): Compress consecutive calls to warning.
12210
12211 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
12212
12213         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
12214         * class.c (build_secondary_vtable): Reorganize.  Don't create a
12215         new vtable under the new ABI.
12216         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
12217         computing the size.
12218         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
12219         the initializing elements.
12220         (initialize_vtable): New function.
12221         (dfs_finish_vtbls): Use it.
12222         (dfs_accumulate_vtbl_inits): New function.
12223         (finish_vtbls): Merge primary and secondary vtables under the new
12224         ABI.
12225         (finish_struct_1): Remove redundant call to layout_vtable_decl.
12226         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
12227         aren't VAR_DECLs.
12228
12229         * class.c (build_vtable): New function, split out from ...
12230         (get_vtable_decl): ... here, and ...
12231         (build_secondary_vtable): ... here.
12232
12233         * pt.c (tsubst_decl): Fix formatting.
12234
12235 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12236
12237         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
12238         (avoid_overlap, build_base_field): Likewise.
12239         (build_base_field, build_base_fields, is_empty_class):
12240         Test DECL_SIZE with integer_zero.
12241         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
12242         * cp-tree.h (struct lang_type): New field size_unit.
12243         (CLASSTYPE_SIZE_UNIT): New macro.
12244         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
12245         (cp_finish_decl): Delete -Wlarger-than processing.
12246         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
12247         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
12248         * tree.c (make_binfo): binfo vector is one entry longer.
12249         (walk_tree): Walk DECL_SIZE_UNIT.
12250
12251 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
12252
12253         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
12254         comment.
12255         (build_vtable_entry): Don't assume all vtable entries are
12256         functions.
12257         (build_vtbl_initializer): Adjust accordingly.
12258         (get_vtable_decl): Fix formatting.
12259
12260 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
12261
12262         * semantics.c (deferred_type_access_control): Walk the entire
12263         type_lookups list.
12264         (save_type_access_control): Rename from
12265         initial_deferred_type_access_control.  Just remember the value.
12266         (decl_type_access_control): New fn.
12267         (begin_function_definition): Use deferred_type_access_control, after
12268         we've started the function.  Set type_lookups to error_mark_node.
12269         * parse.y (frob_specs, fn.def1): Adjust.
12270         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
12271         (parse_end_decl, parse_bitfield0, parse_method): New fns.
12272         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
12273         (after_type_component_declarator0): Likewise.
12274         (after_type_component_declarator): Likewise.
12275         (notype_component_declarator): Likewise.
12276         * cp-tree.h: Adjust.
12277
12278         * decl.c (redeclaration_error_message): Allow redeclaration of
12279         namespace-scope decls.
12280
12281 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
12282
12283         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
12284
12285 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
12286
12287         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
12288         * decl2.c (grokclassfn): Likewise.
12289
12290         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
12291
12292         * decl2.c (lang_decode_option): Don't set default message length
12293         here.
12294         * lex.c (lang_init_options): Set it here.
12295
12296 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
12297
12298         Make DECL_CONTEXT mean the class in which a member function was
12299         declared, even for a virtual function.
12300         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
12301         (DECL_FRIEND_CONTEXT): New macro.
12302         (DECL_REAL_CONTEXT): Remove.
12303         (SET_DECL_FRIEND_CONTEXT): Likewise.
12304         (DECL_VIRTUAL_CONTEXT): Adjust.
12305         (DECL_CLASS_SCOPE_P): Use TYPE_P.
12306         (add_friends): Remove.
12307         (hack_decl_function_context): Likewise.
12308         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
12309         CP_DECL_CONTEXT.
12310         (build_over_call): Fix indentation.  Use DECL_CONTEXT
12311         instead of DECL_CLASS_CONTEXT.
12312         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
12313         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
12314         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12315         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
12316         (build_base_field): Likewise.
12317         (finish_struct_1): Likewise.
12318         (build_self_reference): Likewise.
12319         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
12320         DECL_REAL_CONTEXT.
12321         (pushtag): Use decl_function_context, not
12322         hack_decl_function_context.
12323         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12324         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
12325         (pushdecl): Remove bogus code.
12326         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
12327         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12328         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12329         Use decl_function_context, nothack_decl_function_context.
12330         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
12331         (grokdeclarator): Likewise.  Use decl_function_context, not
12332         hack_decl_function_context.
12333         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
12334         (start_function): Use DECL_FRIEND_CONTEXT, not
12335         DECL_CLASS_CONTEXT.  Use decl_function_context, not
12336         hack_decl_function_context.
12337         (finish_function): Use decl_function_context, not
12338         hack_decl_function_context.
12339         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
12340         DECL_CLASS_CONTEXT.
12341         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
12342         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
12343         (grokfield): Likewise.
12344         (finish_builtin_type): Likewise.
12345         (finish_vtable_vardec): Use decl_function_context, not
12346         hack_decl_function_context.
12347         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12348         (start_static_initialization_or_destruction): Likewise.
12349         (finish_static_initialization_or_destruction): Likewise.
12350         (mark_used): Adjust logic for deciding when to synthesize methods.
12351         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
12352         DECL_REAL_CONTEXT.
12353         * error.c (dump_function_decl): Use DECL_CONTEXT, not
12354         DECL_CLASS_CONTEXT.
12355         * friend.c (is_friend): Likewise.
12356         (add_friends): Remove.
12357         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
12358         * lex.c (begin_definition_of_inclass_inline): Use
12359         decl_function_context, not hack_decl_function_context.
12360         (process_next_inline): Likewise.
12361         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12362         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
12363         DECL_CLASSS_CONTEXT.
12364         (hack_identifier): Likewise.
12365         (synthesize_method):  Use decl_function_context, not
12366         hack_decl_function_context.
12367         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
12368         DECL_REAL_CONTEXT.
12369         (is_member_template): Use decl_function_context, not
12370         hack_decl_function_context.  Use DECL_CONTEXT, not
12371         DECL_CLASS_CONTEXT.
12372         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
12373         DECL_CLASS_CONTEXT.
12374         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
12375         DECL_REAL_CONTEXT.
12376         (push_template_decl_real): Likewise.
12377         (instantiate_class_template): Don't call add_friends.
12378         (tsubst_default_argument): Use DECL_CONTEXT, not
12379         DECL_REAL_CONTEXT.
12380         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
12381         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12382         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
12383         DECL_CLASS_CONTEXT.
12384         * repo.c (repo_inline_used): Likewise.
12385         * search.c (current_scope): Adjust for new _CONTEXT macros.
12386         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
12387         DECL_REAL_CONTEXT.
12388         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12389         (lookup_fnfields_here):Likewise.
12390         (check_final_overrider): Likewise.
12391         (init_vbase_pointers): Likewise.
12392         (virtual_context): Likewise.
12393         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
12394         (expand_body): Use decl_function_context, not
12395         hack_decl_function_context.
12396         * tree.c (hack_decl_function_context): Remove.
12397         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
12398         DECL_CLASS_CONTEXT.
12399         * typeck2.c (error_not_base_type): Likewise.
12400
12401 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
12402
12403         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
12404
12405 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12406
12407         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
12408
12409 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
12410
12411         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
12412
12413 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
12414
12415         * decl2.c (lang_decode_option): Enable automatic line wrapping.
12416
12417 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
12418
12419         * parse.y (frob_specs): Split out...
12420         (parse_decl): From here.
12421         (fn.def2): Call initial_deferred_type_access_control.
12422         (after_type_component_declarator0): Call frob_specs.
12423         (notype_component_declarator0): Likewise.
12424         * search.c (friend_accessible_p): Nested classes are friends of their
12425         enclosing classes.
12426
12427 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
12428
12429         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
12430         used to create an implicit temporary.
12431
12432         * class.c (dfs_modify_vtables): Tweak calculation of functions to
12433         override.
12434
12435 2000-02-08  Nathan Sidwell  <nathan@acm.org>
12436
12437         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
12438         strip array element qualifiers too.
12439
12440 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
12441
12442         * decl.c (store_parm_decls): Don't build cleanups for parameters
12443         while processing_template_decl.
12444
12445 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
12446
12447         * cp-tree.h (struct saved_scope): Add incomplete field.
12448         (namespace_scope_incomplete): New macro.
12449         * decl.c (pushdecl): Use it.
12450         (hack_incomplete_structures): Use it.  See through artificial
12451         binding levels.
12452         (mark_saved_scope): Mark it.
12453
12454         Implement access control for nested types.
12455         * search.c (type_access_control): New fn.
12456         (accessible_p): Now we do perform access control for types.
12457         * semantics.c (deferred_type_access_control): New fn.
12458         (initial_deferred_type_access_control): New fn.
12459         (begin_function_definition): Call it.  Add lookups parm.
12460         * decl.c (struct binding_level): Add this_class field.
12461         (pushlevel_class): Set it.
12462         (mark_binding_level): Mark it.
12463         (lookup_name_real): Use it.  Call type_access_control.
12464         (mark_saved_scope): Mark lookups field.
12465         * cp-tree.h (flagged_type_tree): Add lookups field.
12466         (struct saved_scope): Add lookups field.
12467         (type_lookups): New macro.
12468         * parse.y (declmods): Now <ftype>.
12469         (parse_decl): Add lookups parm.  Call
12470         initial_deferred_type_access_control.
12471         (lang_extdef): Clear type_lookups.
12472         (typed_declspecs, declmods, typespec): Set lookups field.
12473         (initdcl): Call deferred_type_access_control.
12474         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
12475         component_decl_1, named_parm): Adjust.
12476         * friend.c (is_friend): Nested classes are friends of their
12477         enclosing classes.
12478
12479         * class.c (currently_open_derived_class): New fn.
12480         * method.c (hack_identifier): Use it.
12481
12482         * lex.c (do_identifier): Remove obsolete code.
12483
12484         * parse.y (typed_typespecs): Propagate new_type_flag properly.
12485
12486 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
12487
12488         * tinfo.h: Remove apostrophes from C++ comment (xgettext
12489         thinks this file is plain C).
12490
12491 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12492
12493         * Makefile.in (call.o): Depend on $(EXPR_H).
12494
12495         * call.c: Include "expr.h".
12496
12497         * class.c (dump_class_hierarchy): Add prototype.
12498
12499         * search.c (dfs_get_pure_virtuals): Likewise.
12500
12501 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
12502
12503         * parse.y (simple_stmt): Allow :: token in asm parameter list.
12504         * parse.c: Rebuilt.
12505
12506 Mon Jan 31 15:35:29 2000  Jim Wilson  <wilson@cygnus.com>
12507
12508         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
12509         Store it in DECL_FCONTEXT.
12510         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
12511
12512 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
12513
12514         * tinfo.h (old abi): #include "tconfig.h".
12515         * tinfo.cc (convert_to_base): Move into old abi section.
12516
12517 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
12518
12519         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
12520         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
12521         (BINFO_PRIMARY_BINFO): New macro.
12522         (BF_DELTA): Rename to ...
12523         (BV_DELTA): ... this.
12524         (BF_VCALL_INDEX): Rename to ...
12525         (BV_VCALL_INDEX): ... this.
12526         (BF_FN): Rename to ...
12527         (BV_FN): ... this.
12528         * class.c (build_vbase_path): Adjust for changes to reverse_path.
12529         (set_rtti_entry): Rename BF_ macros to BV_ variants.
12530         (modify_vtable_entry): Simplify.
12531         (add_virtual_function): Rename BF_ macros to BV_ variants.
12532         (build_vtable_initializer): Likewise.
12533         (get_class_offset_1): Remove.
12534         (dfs_get_class_offset): Likewise.
12535         (get_class_offset): Likewise.
12536         (dfs_find_final_overrider): New function.
12537         (find_final_overrider): Likewise.
12538         (modify_one_vtable): Remove.
12539         (dfs_find_base): New function.
12540         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
12541         find_final_overrider.
12542         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
12543         virtuals.
12544         (dfs_fixup_vtable_deltas): Remove.
12545         (override_one_vtable): Remove.
12546         (merge_overrides): Likewise.
12547         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
12548         unreal chilren of virtual bases.
12549         (finish_struct_1): Don't use merge_overrides.  Don't use
12550         dfs_fixup_vtable_deltas.
12551         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
12552         BINFOs.
12553
12554 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
12555             Jason Merrill  <jason@yorick.cygnus.com>
12556
12557         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
12558
12559 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
12560
12561         * exception.cc (__throw_bad_typeid): Add missing std::.
12562
12563 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12564
12565         * cp-tree.h (make_thunk): PROTO -> PARAMS.
12566
12567 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
12568
12569         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
12570
12571         Runtime support for new-abi rtti.
12572         * inc/typeinfo (type_info::operator!=): Define in class.
12573         (type_info::before, type_info::name, type_info::operator==,
12574         type_info::operator!=): Define new ABI implementations.
12575         (type_info::is_pointer_p, type_info::is_function_p): Declare
12576         new virtual functions.
12577         (type_info::do_catch, type_info::do_upcast): Likewise.
12578
12579         * tinfo.h (__base_class_info): Define new class.
12580         (__class_type_info): Likewise.
12581         (__si_class_type_info): Likewise.
12582         (__vmi_class_type_info): Likewise.
12583         (__dynamic_cast): Prototype.
12584
12585         * tinfo.cc: Conditionalize old and new rtti mechanisms.
12586         (type_info::is_pointer_p): Define new function.
12587         (type_info::is_function_p): Likewise.
12588         (type_info::do_catch): Likewise.
12589         (type_info::do_upcast): Likewise.
12590         (vtable_prefix): New structure for vtable access.
12591         (adjust_pointer): Define new template function.
12592         (contained_p, public_p, virtual_p, contained_public_p,
12593         contained_nonpublic_p, contained_nonvirtual_p): Define new
12594         functions.
12595         (nonvirtual_base_type): New local variable.
12596         (__class_type_info::~__class_type_info): Define.
12597         (__si_class_type_info::~__si_class_type_info): Likewise.
12598         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
12599         (__class_type_info::do_catch): Define new function.
12600         (__class_type_info::do_upcast): Likewise.
12601         (__class_type_info::find_public_src): Likewise.
12602         (__class_type_info::do_find_public_src): Likewise.
12603         (__si_class_type_info::do_find_public_src): Likewise.
12604         (__vmi_class_type_info::do_find_public_src): Likewise.
12605         (__class_type_info::do_dyncast): Likewise.
12606         (__si_class_type_info::do_dyncast): Likewise.
12607         (__vmi_class_type_info::do_dyncast): Likewise.
12608         (__class_type_info::do_upcast): Likewise.
12609         (__si_class_type_info::do_upcast): Likewise.
12610         (__vmi_class_type_info::do_upcast): Likewise.
12611         (__dynamic_cast): Likewise.
12612
12613         * tinfo2.cc (__fundamental_type_info): Define new class.
12614         (__pointer_type_info): Likewise.
12615         (__reference_type_info): Likewise.
12616         (__array_type_info): Likewise.
12617         (__function_type_info): Likewise.
12618         (__enum_type_info): Likewise.
12619         (__ptr_to_member_type_info): Likewise.
12620         (__fundamental_type_info::~__fundamental_type_info): Define.
12621         (__pointer_type_info::~__pointer_type_info): Likewise.
12622         (__reference_type_info::~__reference_type_info): Likewise.
12623         (__array_type_info::~__array_type_info): Likewise.
12624         (__function_type_info::~__function_type_info): Likewise.
12625         (__enum_type_info::~__enum_type_info): Likewise.
12626         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
12627         (__pointer_type_info::do_catch): Define new function.
12628         (__ptr_to_member_type_info::do_catch): Define new function.
12629
12630         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
12631         (__is_pointer): Likewise.
12632
12633         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
12634
12635 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
12636
12637         * cp/class.c (build_vtable): Rename to build_primary_vtable.
12638         (prepare_fresh_vtable): Rename to build_secondary_vtable.
12639         (make_new_vtable): New function.
12640         (modify_vtable_entry): Handle generation of new vtables correctly.
12641         (modify_one_vtable): Remove unused parameter.
12642         (dfs_fixup_vtable_deltas): Likewise.
12643         (override_one_vtable): Use build_secondary_vtable.
12644         (finish_struct_1): Use build_primary_vtable and
12645         build_secondary_vtable.
12646
12647 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
12648
12649         * cp/decl.c: Adjust variable names, comments, help strings.
12650
12651 2000-01-29  Nathan Sidwell  <nathan@acm.org>
12652
12653         * new2.cc (operator delete[]): Use operator delete, don't assume
12654         implementation.
12655
12656 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
12657
12658         * class.c (build_vtbl_initializer): Add argument to
12659         build_vtable_entry call.
12660
12661 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
12662
12663         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
12664         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
12665         (BF_DELTA): New macro.
12666         (BF_VCALL_INDEX): Likewise.
12667         (BF_FN): Likewise.
12668         (THUNK_VCALL_OFFSET): Likewise.
12669         (make_thunk): Change prototype.
12670         * class.c (build_vtable_entry): Integrate
12671         build_vtable_entry_for_fn.  Handle vcall indices.
12672         (build_vtable_entry_for_fn): Remove.
12673         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
12674         BF_VCALL_INDEX, BF_FN.
12675         (modify_vtable_entry): Integrate common code from
12676         modify_one_vtable and dfs_fixup_vtable_deltas.
12677         (add_virtual_function): Set BF_VCALL_INDEX.
12678         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
12679         and BF_FN.
12680         (modify_one_vtable): Simplify.
12681         (dfs_fixup_vtable_deltas): Likewise.
12682         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
12683         * method.c (make_thunk): Handle vcall indices.
12684
12685 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
12686
12687         Compiler side new abi rtti (not enabled).
12688         * cp-tree.h (new_abi_rtti_p): New macro.
12689         (emit_support_tinfos): Prototype new function.
12690         (tinfo_decl_p): Likewise.
12691         (emit_tinfo_decl): Likwise.
12692         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
12693         macros.
12694         (doing_runtime): New local static.
12695         (init_rtti_processing): Add new-abi initializer.
12696         (get_tinfo_decl): Add new-abi logic.
12697         (tinfo_from_decl): Likewise.
12698         (build_dynamic_cast_1): Likewise.
12699         (qualifier_flags): New static function.
12700         (tinfo_base_init): Likewise.
12701         (generic_initializer): Likewise.
12702         (ptr_ref_initializer): Likewise.
12703         (ptmd_initializer): Likewise.
12704         (class_hint_flags): Likewise.
12705         (class_initializer): Likewise.
12706         (synthesize_tinfo_var): Likewise.
12707         (create_real_tinfo_var): Likewise.
12708         (create_pseudo_type_info): Likewise.
12709         (get_vmi_pseudo_type_info): Likewise.
12710         (create_tinfo_types): Likewise.
12711         (emit_support_tinfos): New global function.
12712         (tinfo_decl_p): New global predicate.
12713         (emit_tinfo_decl): New global function.
12714         * class.c (set_rtti_entry): Generalize for old and new rtti.
12715         (build_vtbl_initializer): Likewise.
12716         * decl2.c (finish_file): Likewise.
12717
12718 Thu Jan 27 20:53:36 2000  Jim Wilson  <wilson@cygnus.com>
12719
12720         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
12721         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
12722
12723 Thu Jan 27 13:54:12 2000  Mike Stump  <mrs@wrs.com>
12724
12725         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
12726         for scopes.
12727
12728 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
12729
12730         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
12731
12732 Wed Jan 26 22:19:14 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12733
12734         * optimize.c (calls_setjmp_r): Supply new argument
12735         to special_function_p.
12736
12737 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12738
12739         * call.c: PROTO -> PARAMS.
12740         * class.c: Likewise.
12741         * cp-tree.h: Likewise.
12742         * cvt.c: Likewise.
12743         * decl.c: Likewise.
12744         * decl.h: Likewise.
12745         * decl2.c: Likewise.
12746         * dump.c: Likewise.
12747         * errfn.c: Likewise.
12748         * error.c: Likewise.
12749         * except.c: Likewise.
12750         * expr.c: Likewise.
12751         * init.c: Likewise.
12752         * input.c: Likewise.
12753         * lex.c: Likewise.
12754         * lex.h: Likewise.
12755         * method.c: Likewise.
12756         * optimize.c: Likewise.
12757         * parse.y: Likewise.
12758         * pt.c: Likewise.
12759         * repo.c: Likewise.
12760         * rtti.c: Likewise.
12761         * search.c: Likewise.
12762         * semantics.c: Likewise.
12763         * spew.c: Likewise.
12764         * tree.c: Likewise.
12765         * typeck.c: Likewise.
12766         * typeck2.c: Likewise.
12767         * xref.c: Likewise.
12768
12769 2000-01-25  Richard Henderson  <rth@cygnus.com>
12770
12771         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
12772
12773 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
12774
12775         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
12776         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
12777         (struct vcall_offset_data_s): New type.
12778         (dfs_vcall_offset_queue_p): New function.
12779         (dfs_build_vcall_offset_vtbl_entries): Likewise.
12780         (build_vcall_offset_vtbl_entries): Likewise.
12781         (layout_vtable_decl): Likewise.
12782         (num_vfun_entries): Likewise.
12783         (num_extra_vtbl_entries): Add the entries for vcall offsets.
12784         (build_vtbl_initializer): Likewise.
12785         (dfs_finish_vtabls): Use layout_vtable_decl.
12786         (modify_one_vtables): Always duplicate vtables under the new ABI.
12787         (finish_struct_1): Use layout_vtable_decl.
12788
12789 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12790
12791         * decl.c (member_function_or_else): Change third arg from a format
12792         specifier to an `enum overload_flags'.  Callers changed.
12793
12794 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
12795
12796         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
12797         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
12798         build_const_cast, get_delta_difference, check_return_expr): Avoid
12799         ANSI string concatenation usage.
12800
12801 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
12802
12803         * class.c (layout_class_type): Put the fields required to make a
12804         class non-empty at the end, not the beginning, of the TYPE_FIELDs
12805         list.
12806
12807 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
12808
12809         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
12810         template.
12811
12812         * decl2.c (mark_used): Do instantiate inlines that have been
12813         explicitly instantiated.
12814
12815 2000-01-24  Richard Henderson  <rth@cygnus.com>
12816
12817         * call.c (build_over_call): Use expand_tree_builtin.
12818         * typeck.c (build_function_call_real): Likewise.
12819         (build_binary_op_nodefault): Handle unordered compares.
12820
12821 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
12822
12823         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
12824         cp_tree_index values.
12825         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
12826         New global node #defines for them.
12827         * rtti.c (call_void_fn): Replace with ...
12828         (build_runtime_decl): ... new static function.
12829         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
12830         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
12831         (build_dynamic_cast_1): Always produce correctly typed result.
12832         Explicitly produce type_info addresses. Use dynamic_cast_node.
12833         * exception.cc (__throw_bad_cast): Return `void *'.
12834         (__throw_bad_typeid): Return `const type_info &'.
12835
12836 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
12837
12838         * cp-tree.h (get_vtable_decl): Prototype new function.
12839         * class.c (get_vtable_decl): New function. Broken out from ...
12840         (build_vtable): ... here. Use it.
12841         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
12842         by get_vtable_decl.
12843
12844 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
12845
12846         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
12847         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
12848         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
12849         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
12850         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
12851         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
12852         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
12853         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
12854         (CPTI_TINFO_VAR_ID): New enumeration.
12855         (__tp_desc_type_node, __access_mode_type_node,
12856         __bltn_desc_type_node, __user_desc_type_node,
12857         __class_desc_type_node, __ptr_desc_type_node,
12858         __attr_desc_type_node, __func_desc_type_node,
12859         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
12860         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
12861         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
12862         enum_desc_type_node, class_desc_type_node,
12863         si_class_desc_type_node, vmi_class_desc_type_node,
12864         ptmd_desc_type_node, base_desc_type_node): New #defines.
12865         (tinfo_fn_id, tinfo_fn_type): Rename to ...
12866         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
12867         (tinfo_var_id): New enumeration.
12868         (DECL_TINFO_FN_P): Augment comment.
12869         * decl.c (cp_global_trees): Adjust documentation.
12870         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
12871         tinfo_decl_type and tinfo_var_id.
12872         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
12873         (build_typeid): Remove unused variable.
12874         (get_tinfo_var): Use tinfo_var_id.
12875         (tinfo_name): New static function.
12876         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
12877         (tinfo_from_decl): Likewise.
12878         (get_base_offset): New static function, broken out of
12879         expand_class_desc.
12880         (expand_si_desc): Use tinfo_name.
12881         (expand_class_desc): Likewise. Lose local static variable.
12882         Use base_desc_type_node. Use get_base_offset.
12883         (expand_ptr_desc): Use tinfo_name.
12884         (expand_attr_desc): Likewise.
12885         (expand_generic_desc): Likewise.
12886
12887         * tinfo.cc (__GXX_ABI_VERSION): Test value and existence.
12888         * tinfo.h (__GXX_ABI_VERSION): Test value and existence.
12889
12890 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
12891
12892         * cp-tree.h (__eprintf): Remove declaration.
12893         * tree.c (__eprintf): Remove definition.
12894
12895 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
12896             Mark Mitchell  <mark@codesourcery.com>
12897
12898         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
12899         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
12900
12901 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
12902
12903         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
12904
12905 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
12906
12907         * cp-tree.h (register_dtor_fn): New function.
12908         * decl.c (destroy_local_static): Rename to ...
12909         (register_dtor_fn): ... this.  Give it external linkage.
12910         (expand_static_init): Use it.
12911         * decl2.c (do_static_initialization): Likewise, if using
12912         __cxa_atexit.
12913         (do_static_destruction): Check that __cxa_atexit is not in use.
12914         (finish_file): Don't call do_static_destruction if using
12915         __cxa_atexit.
12916
12917         * typeck.c (convert_arguments): Restore two-message error
12918         reporting.
12919
12920 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
12921
12922         Remap dynamic cast hint values to be consistent across ABIs.
12923         * search.c (dynamic_cast_base_recurse): Remap generated value.
12924         (get_dynamic_cast_base_type): Adjust documentation.
12925         * tinfo.h (__user_type_info::dyncast): Likewise.
12926         (__user_type_info::find_public_subobj): Remap BOFF meaning.
12927         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
12928         (__class_type_info::do_dyncast): Likewise.
12929         (__class_type_info::do_find_public_subobj): Likewise.
12930         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
12931
12932 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
12933
12934         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
12935
12936         * typeck2.c (incomplete_type_error): Restore previous
12937         cp_error and cp_error_at call sequence.
12938
12939 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
12940
12941         * class.c (dump_class_hierarchy): Make format agree with argument;
12942         cast pointer to unsigned long and print with %lx.
12943
12944 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
12945
12946         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
12947
12948         * typeck.c (composite_pointer_type, common_type,
12949         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
12950         build_function_call_real, convert_arguments,
12951         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
12952         build_unary_op, mark_addressable, build_compound_expr,
12953         build_static_cast, build_reinterpret_cast, build_const_cast,
12954         build_c_cast, build_modify_expr, get_delta_difference,
12955         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
12956         'ISO C++'.  Fusion consecutive calls to diagnostic message routines
12957         into a single one.
12958         * typeck2.c (readonly_error, abstract_virtuals_error,
12959         process_init_constructor, check_for_new_type): Likewise.
12960
12961 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
12962
12963         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
12964         VAR_DECLs.
12965
12966 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
12967
12968         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
12969         (build_x_typeid): Likewise.
12970         (get_tinfo_fn): Likewise.
12971         (get_tinfo_fn_unused): Rename to ...
12972         (get_tinfo_decl): ... here.
12973         * rtti.c (build_headof): Replace logic error with assertion.
12974         (get_tinfo_fn_dynamic): Rename to ...
12975         (get_tinfo_decl_dynamic): ... here. Make static. Use
12976         complete_type_or_else.
12977         (build_x_typeid): Move into ...
12978         (build_typeid): ... here. Adjust call to
12979         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
12980         throw_bad_typeid expression.
12981         (get_tinfo_fn_unused): Rename to ...
12982         (get_tinfo_decl): ... here. Adjust comment.
12983         (get_tinfo_fn): Delete.
12984         (tinfo_from_decl): New static function.
12985         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
12986         (get_typeid): Use complete_type_or_else.
12987         (build_dynamic_cast_1): Adjust calls to
12988         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
12989         * parse.y (primary): Adjust call to build_typeid.
12990         * except.c (build_eh_type_type_ref): Adjust call to
12991         get_tinfo_decl. Mark as used.
12992         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
12993         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
12994         * parse.c: Regenerated.
12995
12996 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
12997
12998         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
12999         calling convention.
13000         (resolves_to_fixed_type_p): Document calling convention.
13001         * rtti.c (build_x_typeid): Initialize NONNULL.
13002
13003         * cp-tree.h (build_shared_int_cst): New function.
13004         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
13005         * class.c (modify_vtable_entry): Likewise.
13006         (add_virtual_function): Split out code to generated shared
13007         INTEGER_CSTs to build_share_int_cst.
13008         (modify_all_vtables): Handle all the overridden functions here.
13009         Add overridden functions from non-primary virtual bases to the
13010         primary vtable.
13011         (finish_struct_1): Adjust call to modify_all_vtables.  Add
13012         overridden functions from non-primary bases to the vtable.
13013         * tree.c (build_shared_int_cst): New function.
13014
13015         * cp-tree.h (scratchalloc): Remove.
13016         (build_scratch_list): Likewise.
13017         * call.c (convert_class_to_reference): Replace build_scratch_list
13018         and build_expr_list with build_tree_list.
13019         (add_candidate): Replace scratchalloc with expralloc.  Note memory
13020         leak.
13021         (build_user_type_conversion_1):  Replace build_scratch_list
13022         and build_expr_list with build_tree_list.
13023         (build_new_op): Likewise.
13024         (build_op_delete_call): Likewise.
13025         (convert_like): Likewise.
13026         * cvt.c (ocp_convert): Likewise.
13027         * decl.c (start_decl): Likewise.
13028         (start_function): Likewise.
13029         (finish_destructor_body): Likewise.
13030         (maybe_build_cleanup_1): Likewise.
13031         * decl2.c (reparse_decl_as_expr): Likewise.
13032         * init.c (perform_member_init): Likewise.
13033         (expand_cleanup_for_base): Likewise.
13034         (build_builtin_delete_call): Likewise.
13035         (build_new_1): Likewise.
13036         (build_delete): Likewise.
13037         * method.c (do_build_assign_ref): Likewise.
13038         * parse.y (already_scoped_stmt): Likewise.
13039         (nontrivial_exprlist): Likewise.
13040         (net_initializer): Likewise.
13041         (initlist): Likewise.
13042         * parse.c: Regenerated.
13043         * rtti.c (build_x_typeid): Likewise.
13044         (build_dynamic_cast_1): Likewise.
13045         * typeck.c (build_x_compound_expr): Likewise.
13046         (build_static_cast): Likewise.
13047         (build_modify_expr): Likewise.
13048
13049         * cp-tree.h (DECL_VINDEX): Add documentation.
13050         * class.c (build_vtable_entry): Likewise.
13051         (start_vtable): Add comment.
13052         (add_virtual_function): Replace pending_hard_virtuals with
13053         overridden_virtuals and pending_virtuals with new_virtuals.
13054         Replace redundant assignments with assertions.
13055         (check_for_override): Add comment.
13056         (check_bases_and_members): Replace pending_hard_virtuals with
13057         overridden_virtuals and pending_virtuals with new_virtuals.
13058         (create_vtbl_ptr): Likewise.
13059         (layout_class_type): Likewise.
13060         (finish_struct_1): Likewise.  Add comments.
13061
13062 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
13063
13064         * class.c (finish_struct_1): Replace redundant code with
13065         assertions.
13066
13067         * cp-tree.h (flag_new_abi): Move.
13068         (flag_use_cxa_atexit): Likewise.
13069         (flag_honor_std): Likewise.
13070         (flag_rtti): Likewise.
13071         (vbase_offsets_in_vtable_p): Define.
13072         (vptrs_present_everywhere_p): Likewise.
13073         (TYPE_CONTAINS_VPTR_P): Likewise.
13074         (dfs_walk_real): Declare.
13075         * class.c (build_vbase_pointer_fields): Check
13076         vbase_offsets_in_vtable_p.
13077         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
13078         BINFO_VPTR_FIELD.
13079         (build_vbase_offset_vtbl_entries): Simplify.
13080         (build_vbase_offset_vtbl_entries): Adjust.
13081         (build_vbase_pointer): Add ability to look up vbase offsets in
13082         vtable.
13083         (start_vtable): New function.
13084         (add_virtual_function): Use it.
13085         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
13086         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
13087         (build_vtbl_initializer): Take the type of the complete object as
13088         input.  Use it to correctly calculate vbase offsets.
13089         (dfs_finish_vtbls): Pass the complete type to
13090         build_vtbl_initializer.
13091         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
13092         (create_vtable_ptr): Create a vtable even if there are no
13093         new virtual functions, under the new ABI.
13094         (finish_struct_1): Likewise.
13095         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
13096         * decl.c (exapnd_static_init): Remove call to
13097         preserve_initializer.
13098         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
13099         vtables.
13100         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
13101         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
13102         (construct_virtual_bases): Don't initialize virtual base pointers
13103         under the new ABI.
13104         (build_aggr_init): Clean up comment.
13105         (expand_aggr_init_1): Likewise.
13106         * rtti.c (expand_class_desc): Store the virtual function table
13107         index where the vbase offset lives in the offset field.
13108         * search.c (dfs_walk_real): Make it global.
13109         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
13110         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
13111
13112         * tinfo.h (USItype): Make it signed under the new ABI.
13113         * tinfo.cc (convert_to_base): New function.  Encapsulate base
13114         conversion logic here.
13115         (__class_type_info::do_upcast): Use it.
13116         (__class_type_info::do_dyncast): Likewise.
13117         (__class_type_info::do_find_public_subobj): Likewise.
13118
13119         * init.c (construct_virtual_bases): Don't look up the addresses of
13120         virtual bases at run-time.
13121
13122         * class.c (build_vbase_pointer): Relocate.
13123         (build_vbase_pointer_fields): Likewise.
13124         (dfs_build_vbase_offset_vtbl_entries): Likewise.
13125         (build_vbase_offset_vtbl_entries): Likewise.
13126
13127         * decl.c (init_decl_processing): Complain if -fnew-abi
13128         -fno-vtable-thunks is used.
13129
13130         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
13131         flag_new_abi.
13132
13133 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
13134
13135         * cp-tree.h (num_extra_vtbl_entries): New function.
13136         (size_extra_vtbl_entries): Likewise.
13137         (dfs_vtable_path_unmark): Likewise.
13138         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
13139         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
13140         * class.c (num_extra_vtbl_entries): New function.
13141         (size_extra_vtbl_entries): Likewise.
13142         (dfs_build_vbase_offset_vtbl_entries): New function.
13143         (build_vbase_offset_vtbl_entries): Likewise.
13144         (build_vtbl_initializer): Use it.
13145         (finish_struct_1): Adjust vtable sizes (using
13146         num_extra_vtbl_entries).
13147         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
13148         THUNK_DECL is non-NULL before expanding it.
13149         * init.c (expand_virtual_init): Adjust the vtable pointer by
13150         size_extra_vtbl_entries before storing it.
13151         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
13152         Handle TREE_LIST parameters here, not in the dfs_* functions.
13153         (dfs_unmarked_real_bases_queue_p): Adjust.
13154         (dfs_marked_real_bases_queue_p): Likewise.
13155         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
13156         (dfs_vtable_path_marked_real_bases_queue_p): New function.
13157         (dfs_vtable_path_unmark): Likewise.
13158
13159 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
13160
13161         * optimize.c (copy_body_r): Clear the operand three of a
13162         TARGET_EXPR when copying it.
13163
13164 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13165
13166         * method.c (build_decl_overload_real): Check whether we are in ::
13167         before returning __builtin_new/delete.
13168
13169 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
13170
13171         * pt.c (tsubst_friend_function): Improve comment.
13172         (instantiate_decl): Avoid crashing when a "nested" function is
13173         instantiated from the top level.
13174
13175         * dump.c (dqeueue_and_dump): Dump
13176         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
13177
13178 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13179
13180         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
13181
13182 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
13183
13184         * g++spec.c (lang_specific_driver): Add -fnew-abi if
13185         ENABLE_NEW_GXX_ABI defined.
13186         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
13187         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
13188         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
13189
13190 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
13191
13192         * decl.c (start_cleanup_fn): Call pushdecl.
13193
13194         * call.c (convert_class_to_reference): Fix typos.
13195         (build_conditional_expr): Handle errors gracefully.
13196         * class.c (push_nested_class): Likewise.
13197         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
13198         (DECL_THIS_EXTERN): Use it.
13199         (DECL_THIS_STATIC): Likewise.
13200         * cvt.c (convert_to_void): Handle errors gracefully.
13201         (build_expr_type_conversion): Likewise.
13202         * decl.c (maybe_push_decl): Likewise.
13203         (start_decl_1): Likewise.
13204         (require_complete_types_for_parms): Likewise.
13205         * parse.y (structsp): Likewise.
13206         (base_class): Likewise.
13207         * parse.c: Regenerated.
13208         * pt.c (finish_member_template_decl): Likewise.
13209         * typeck.c (decay_conversion): Likewise.
13210
13211         * cp-tree.h (dfs_skip_vbases): New function.
13212         (find_vbase_instance): Likewise.
13213         * class.c (determine_primary_base): Allow a nearly empty base to
13214         serve as a primary base class under the new ABI.
13215         (get_class_offset_1): Rename to ...
13216         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
13217         messages here.
13218         (get_class_offset): Use it.  Issue error messages here.
13219         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
13220         find the right copies of virtual bases.
13221         (fixup_vtable_deltas1): Rename to ...
13222         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
13223         bases as primary bases.
13224         (fixup_vtable_deltas): Remove.
13225         (override_one_vtable): Handle virtual bases as primary bases.
13226         (merge_overrides): Likewise.
13227         (finish_struct_1): Likewise.
13228         (dump_class_hierarchy): Dump primary-ness of bases as well.
13229         * search.c (mark_primary_bases): Use a pre-order traversal to
13230         handle primary virtual bases.
13231         (dfs_skip_vbases): New fiunction.
13232         (expand_upcast_fixups): Adjust to handle primary virtual bases.
13233         (fixup_virtual_upcast_offsets): Likewise.
13234         (fixup_all_virtual_upcast_offsets): Likewise.
13235         (dfs_find_vbase_instances): New function.
13236         (find_vbase_instance): Likewise.
13237
13238 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
13239
13240         * lex.c (DIR_SEPARATOR): Delete macro.
13241
13242 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
13243
13244        * decl2.c (lang_decode_option): Handle automatic line wrapping
13245        option.
13246
13247 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
13248
13249         * friend.c (do_friend): Don't resolve scopes when processing
13250         template declarations, even if the qualifying scope doesn't
13251         involve template parameters.
13252
13253 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
13254
13255         * class.c (dfs_modify_vtables_queue_p): Remove.
13256         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
13257         and dfs_marked_real_bases_queue_p instead of
13258         dfs_modify_vtables_queue_p.
13259
13260         * class.c (build_vbase_path): Simplify.
13261         (dfs_propagate_binfo_offsets): New function.
13262         (propagate_binfo_offsets): Use it.
13263         (remove_base_field): Simplify.
13264         (dfs_set_offset_for_vbases): Remove.
13265         (dfs_set_offset_for_shared_vbases): New function.
13266         (dfs_set_offset_for_unshared_vbases): Likewise.
13267         (layout_virtual_bases): Use them.
13268         (layout_basetypes): Don't call propagate_binfo_offsets.
13269         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
13270         for the vbases.
13271
13272         * class.c (build_base_field): New function, split out from ...
13273         (build_base_fields): ... here.  Use it.  Allocate primary bases
13274         first, under the new ABI.
13275         (get_vtable_entry): Remove.
13276         (remove_base_field): New function, split out from ...
13277         (remove_base_fields): ... here.  Adjust since primary bases come
13278         first under the new ABI.
13279
13280         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
13281         (initialize_vtbl_ptrs): New function.
13282         (expand_indirect_vtbls_init): Change prototype.
13283         (convert_pointer_to_vbase): Declare.
13284         * init.c (expand_direct_vtbls_init): Remove.
13285         (dfs_initialize_vtbl_ptrs): New function.
13286         (initialize_vtbl_ptrs): Likewise.
13287         (emit_base_init): Use initialize_vtbl_ptrs.
13288         * search.c (convert_pointer_to_vbase): Make it global.
13289         (expand_indirect_vtbls_init): Remove vtable initialization code.
13290         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
13291
13292         * class.c (dfs_finish_vtbls): New function.
13293         (finish_vtbls): Use it.
13294         (dump_class_hierarchy): New function.
13295
13296         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
13297         (BINFO_VBASE_PRIMARY_P): New macro.
13298         (BINFO_VIRTUALS): Add to documentation.
13299         (SET_BINFO_PRIMARY_MARKED_P): Remove.
13300         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13301         (dfs_mark_primary_bases_queue_p): Likewise.
13302         (dfs_unmarked_real_bases_queue_p): New function.
13303         (dfs_marked_real_bases_queue_p): Likewise.
13304         * search.c (dfs_mark_primary_bases): Adjust.
13305         (mark_primary_bases): Likewise.
13306         (get_shared_vbase_if_not_primary): New function.
13307         (dfs_unmarked_real_bases_queue_p): Likewise.
13308         (dfs_marked_real_bases_queue_p): Likewise.
13309         (dfs_get_pure_virtuals): Simplify.
13310         (get_pure_virtuals): Likewise.
13311
13312 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13313
13314         * lex.c: Include tm_p.h.
13315
13316 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
13317
13318         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
13319
13320 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
13321
13322         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
13323         * pt.c (instantiate_decl): Defer comdat templates that might not be
13324         needed.
13325
13326         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
13327         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
13328         (finish_file): Likewise.
13329
13330         * decl2.c (import_export_class): Undo 12/14 change.
13331
13332         * error.c (dump_decl): operator new, not operatornew.
13333
13334         * class.c (field_decl_cmp): A nontype is "greater" than a type.
13335         * search.c (lookup_field_1): Look for the last field with the
13336         desired name.
13337
13338 2000-01-05  Nathan Sidwell  <nathan@acm.org>
13339
13340         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
13341         FUNCTION_DECL.
13342
13343 2000-01-05  Nathan Sidwell  <nathan@acm.org>
13344
13345         * typeck.c (build_static_cast): Don't strip target qualifiers
13346         when casting from a class.
13347
13348 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13349
13350         * class.c (warn_hidden): Initialize variable `fndecl'.
13351
13352 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
13353
13354         * decl.c (flag_isoc9x): New variable to be able to use code in
13355         c-common.c.  For now always zero.
13356
13357 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
13358
13359         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
13360         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
13361         or unshare_base_binfos for virtual bases here.
13362         * search.c (dfs_get_vbase_types): Do it here.
13363         (get_vbase_types): Adjust.
13364
13365 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
13366
13367         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
13368         (BINFO_PRIMARY_MARKED_P): Use flag 5.
13369         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
13370         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13371         (unmark_primary_bases): Remove declaration.
13372         (unmarkedp): Declare.
13373         (dfs_vbase_unmark): Likewise.
13374         * class.c (determine_primary_base): Return immediately if there
13375         are no base classes.  Call mark_primary_bases here.
13376         (modify_all_direct_vtables): Remove.
13377         (modify_all_indirect_vtables): Remove.
13378         (dfs_modify_vtables_queue_p): New function.
13379         (dfs_modify_vtables): New function.
13380         (modify_all_vtables): Use them.
13381         (build_base_fields): Build FIELD_DECLs for primary virtual base
13382         classes.
13383         (create_vtable_ptr): Don't call determine_primary_base here.
13384         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
13385         (dfs_set_offset_for_vbases): ... this.
13386         (layout_virtual_bases): Use it.
13387         (layout_class_type): Call determine_primary_base here.
13388         * search.c (unmarkedp): Make it global.
13389         (shared_marked_p): Simplify.
13390         (shared_unmarked_p): Likewise.
13391         (dfs_primary_bases_queue_p): Remove.
13392         (dfs_unmark_primary_bases): Likewise.
13393         (unmark_primary_bases): Likewise.
13394         (mark_primary_bases): Simplify.
13395         (get_pure_virtuals): Don't call mark_primary_bases here.
13396         (dfs_vbase_unmark): New function.
13397         (get_vbase_types): Simplify.
13398
13399         * class.c (struct base_info): Remove.
13400         (determine_primary_base): Take has_virtual_p rather than a
13401         base_info as input.  Don't calculate max_has_virtual.
13402         (finish_struct_bits): Remove max_has_virtual argument.
13403         (create_vtable_ptr): Remove max_has_virtual_p argument.
13404         (layout_virtual_bases): Remove max argument.
13405         (layout_basetypes): Likewise.
13406         (layout_class_type): Remove max_has_virtual_p argument.
13407         (finish_struct_1): Remove max_has_virtual.
13408
13409         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
13410         (layout_basetypes): Remove.
13411         * class.c (propagate_binfo_offsets): Moved here from tree.c.
13412         Update to handle primary virtual bases.
13413         (remove_base_fields): New function, split out from
13414         layout_basetypes.
13415         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
13416         (layout_virtual_bases): New function, split out from
13417         layout_basetypes.  Update to handle primary virtual bases.
13418         (layout_basetypes): Moved here from tree.c.  Use
13419         remove_base_fields and layout_virtual_bases.
13420         * search.c (dfs_mark_primary_bases_queue_p): New function.
13421         (mark_primary_bases): Use it.
13422         * tree.c (CEIL): Remove.
13423         (propagate_binfo_offsets): Remove.
13424         (layout_basetypes): Remove.
13425
13426 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
13427
13428         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
13429         (BINFO_PRIMARY_MARKED_P): New macro.
13430         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
13431         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13432         (mark_primary_bases): New function.
13433         (unmark_primary_bases): Likewise.
13434         * search.c (get_abstract_virtuals_1): Remove.
13435         (dfs_mark_primary_bases): New function.
13436         (mark_primary_bases): Likewise.
13437         (dfs_unmark_primary_bases): Likewise.
13438         (unmark_primary_bases): Likewise.
13439         (dfs_get_pure_virtuals): Likewise.
13440
13441 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
13442
13443         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
13444         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
13445         (modify_one_vtable): Adjust.
13446         (fixup_vtable_deltas1): Likewise.
13447         (override_one_vtable): Likewise.
13448         * search.c (get_abstract_virtuals_1): Likewise.
13449         (get_pure_virtuals): Likewise.
13450         (expand_upcast_fixups): Likewise.
13451         * tree.c (debug_binfo): Likewise.
13452
13453         * class.c (build_vtable): Don't return a value.  Don't rebuild
13454         vtables for bases that have already been handled.
13455         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
13456         already been handled.
13457         (modify_one_vtable): Adjust accordingly.
13458         (fixup_vtable_deltas1): Likewise.
13459         (finish_struct_1): Likewise.
13460
13461 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13462
13463         * call.c (build_new_method_call): Also check destructors.