OSDN Git Service

* Make-lang.in (cp/parse.o): Depend on decl.h.
[pf3gnuchains/gcc-fork.git] / gcc / cp / ChangeLog
1 2002-07-07  Mark Mitchell  <mark@codesourcery.com>
2
3         * Make-lang.in (cp/parse.o): Depend on decl.h.
4         * cp-tree.h (do_decl_instantiation): Change prototype.
5         * parse.y: Include decl.h.
6         (parse_decl_instantiation): New function.
7         (explicit_instantiation): Use it.
8         * pt.c (do_decl_instantiation): Accept a DECL, not a DECLARATOR
9         and DECLSPECS.
10         
11 2002-07-07  Roger Sayle  <roger@eyesopen.com>
12
13         * error.c (dump_function_name): Use DECL_TEMPLATE_RESULT for
14         constructor and destructor tests when passed a TEMPLATE_DECL.
15
16 2002-07-05  Jason Merrill  <jason@redhat.com>
17
18         * cvt.c (cp_convert_to_pointer): Call force_fit_type for null
19         pointers.
20
21         PR optimization/7145
22         * tree.c (cp_copy_res_decl_for_inlining): Also copy DECL_INITIAL.
23
24 2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
25
26         Repair damage on weak-impared targets caused by my previous patch.
27         * cp-tree.h (import_export_tinfo): Add parameter.
28         * decl2.c (import_export_tinfo): Add parameter, post adjust
29         DECL_COMDAT.
30         * rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
31         import_export_tinfo.
32
33 2002-07-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
34
35         PR c++/6944
36         * init.c (build_aggr_init): Remove qualifiers of init before calling
37         build_vec_init.
38         (build_vec_init): Flatten multi-dimensional array during cleanup.
39         (build_vec_delete_1): Abort if the type of each element is array.
40
41 2002-07-03  Graham Stott  <graham.stott@btinternet.com>
42
43         * pt.c (instantiate_class_template): Fix typo.
44
45 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
46
47         * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
48         by CVS conflict in my last patch.
49
50 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
51
52         PR c++/6716
53         * pt.c (can_complete_type_without_circularity): New function.
54         (instantiate_class_template): Use it.
55         * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
56         message due to incomplete fields.
57
58 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
59
60         PR c++/7112
61         * mangle.c (write_expression): Add mangling for sizeof when
62         applied to a type.
63         * operators.def: Remove stale comment.
64
65 2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
66
67         * cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
68         (CPTI_TYPE_INFO_PTR_TYPE): ... this.
69         (tinfo_decl_type): Replace with ...
70         (type_info_ptr_type): ... this.
71         (import_export_tinfo): Declare.
72         (tinfo_decl_p): Rename to ...
73         (unemitted_tinfo_decl_p): ... this.
74         * decl2.c (import_export_decl): Break out tinfo handling into ...
75         (import_export_tinfo): ... here. New function.
76         (finish_file): Adjust.
77         * rtti.c (TINFO_REAL_NAME): New macro.
78         (init_rtti_processing): Create the tinfo types.
79         (get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
80         (get_tinfo_decl): Adjust.
81         (get_tinfo_ptr): New function.
82         (get_type_id): Use it.
83         (tinfo_base_init): Create vtable decl here, if it doesn't exist.
84         (ptr_initializer): Use get_tinfo_ptr.
85         (ptm_initializer): Likewise.
86         (synthesize_tinfo_var): Break into ...
87         (get_pseudo_ti_init): ... this. Just create the initializer.
88         (get_pseudo_ti_desc): .. and this.
89         (create_real_tinfo_var): Remove.
90         (create_pseudo_type_info): Don't create the vtable decl here.
91         (get_vmi_pseudo_type_info): Remove.
92         (create_tinfo_types): Adjust.
93         (tinfo_decl_p): Rename to ...
94         (unemitted_tinfo_decl_p): ... here. Adjust.
95         (emit_tinfo_decl): Adjust. Create the initializer.
96
97 2002-06-27  Mark Mitchell  <mark@codesourcery.com>
98
99         PR c++/6695
100         * pt.c (tsubst_friend_class): Substitute into the context of the
101         friend before using it.
102
103 2002-06-26  Mark Mitchell  <mark@codesourcery.com>
104
105         * cp-tree.h (xref_tag): Change prototype.
106         (handle_class_head): Likewise.
107         (build_x_component_ref): Likewise.
108         * decl.c (cxx_init_decl_processing): Adjust call to xref_tag.
109         (xref_tag): Take attributes as a separate parameter.
110         (xref_tag_from_type): Adjust call to xref_tag.
111         * decl2.c (build_expr_from_tree): Adjust call to
112         build_x_component_ref.
113         (handle_class_head): Take attributes as a separate parameter.
114         * parse.y (parse_xref_tag): New function.
115         (parse_handle_class_head): Likewise.
116         (primary): Use parse_xref_tag.
117         (class_head_decl): Use parse_handle_class_head.
118         (class_head_defn): Likewise.
119         * rtti.c (init_rtti_processing): Adjust call to xref_tag.
120         (build_dynamic_cast_1): Likewise.
121         (create_pseudo_type_info): Likewise.
122         (emit_support_tinfos): Likewise.
123         * typeck.c (build_object_ref): Adjust call to
124         build_x_component_ref.
125         (build_x_component_ref): Remove protect parameter.
126         
127 2002-06-25  Mark Mitchell  <mark@codesourcery.com>
128
129         * call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
130         * class.c (handle_using_decl): Likewise.
131         (instantiate_type): Likewise.
132         * cp-tree.h (BASELINK_FUNCTIONS): New macro.
133         (xref_basetypes): Change prototype.
134         (begin_mem_initializers): New function.
135         (get_overloaded_fn): Likewise.
136         * decl.c (xref_basetypes): Simplify.
137         * error.c (dump_expr): Use BASELINK_FUNCTIONS.
138         * init.c (build_offset_ref): Likewise.
139         * parse.y (base_init): Use begin_mem_initializers().
140         (structsp): Adjust call to xref_basetypes.
141         * pt.c (determine_specialization): Use BASELINK_FUNCTIONS.
142         (instantiate_class_template): Adjust call to xref_basetypes.
143         * semantics.c (begin_mem_initializers): New function.
144         * tree.c (is_overloaded_fn): Use BASELINK_FUNCTIONS.
145         (really_overlaoded_fn): Likewise.
146         (get_overloaded_fn): New function.'
147         (get_first_fn): USe BASELINK_FUNCTIONS.
148         
149 2002-06-24  Mark Mitchell  <mark@codesourcery.com>
150
151         * cp-tree.h (SCALAR_TYPE_P): New macro.
152         (check_for_out_of_scope_variable): New function.
153         (at_class_scope_p): Likewise.
154         (finish_fname): Likewise.
155         * class.c (finish_struct): Use at_function_scope_p.
156         * decl.c (check_for_out_of_scope_variable): New function, split
157         out from do_identifier.
158         (finish_enum): Use at_function_scope_p.
159         * lex.c (do_identifier): Use check_for_out_of_scope_variable.
160         * parse.y (VAR_FUNC_NAME): Give it <ttype>.  Use finish_fname.
161         (primary): Use at_function_scope_p.
162         * search.c (at_class_scope_p): New function.
163         * semantics.c (finish_fname): Likewise.
164         (check_multiple_declarators): Use at_function_scope_p.
165         
166 2002-06-23  Mark Mitchell  <mark@codesourcery.com>
167
168         * parse.y (parse_scoped_id): New function.
169         (primary): Use it.
170         * cp-tree.h (do_scoped_id): Adjust declaration.
171         * lex.c (do_scoped_id): Remove call to yylex.
172         * decl2.c (build_expr_from_tree): Adjust use of do_scoped_id.
173         * typeck2.c (add_exception_specifier): Use tree_cons, rather than
174         expanding it inline.
175         
176 2002-06-23  Matt Thomas  <matt@3am-software.com>
177
178         * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
179         "#if VMS_TARGET".
180
181 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
182
183         * mangle.c (integer_type_codes): Const-ify.
184
185 2002-06-20  Richard Henderson  <rth@redhat.com>
186
187         PR c++/6747
188         * typeck.c (mark_addressable): Don't test TREE_ADDRESSABLE early.
189         Call put_var_into_stack.
190
191 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
192
193         * spew.c (remove_last_token): Use ARRAY_SIZE in lieu of explicit
194         array size calculation.
195
196 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
197
198         PR c++/6892
199         * pt.c (tsubst_expr): Handle FILE_STMT.
200
201 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
202
203         PR c++/6723
204         * pt.c (lookup_template_class): Don't build complete argument of
205         BOUND_TEMPLATE_TEMPLATE_PARM if appeared as a default template
206         argument.
207
208 2002-06-19  Akim Demaille  <akim@epita.fr>
209
210         * parse.y (TYPENAME): Rename as tTYPENAME to avoid the clash with
211         decl.h's TYPENAME.
212         * spew.c, lex.c: Adjust.
213         * parse.y (explicit_instantiation): Add empty action to override
214         the default $$ = $1 where it introduces a type clash.
215
216 2002-06-14  Jason Merrill  <jason@redhat.com>
217
218         * semantics.c (begin_for_stmt): Push the 'for' scope before
219         adding the FOR_STMT.
220
221         C++ ABI changes.
222         * class.c (build_base_field): Set DECL_PACKED.
223         (layout_class_type): Don't use tail padding of PODs.
224         * mangle.c (write_unqualified_name): Fix template conversion op
225         mangling.
226
227 2002-06-16  Richard Henderson  <rth@redhat.com>
228
229         PR opt/6793
230         * tree.c (cp_cannot_inline_tree_fn): Don't short-circuit test
231         after template instantiation.
232
233 2002-06-16  Richard Henderson  <rth@redhat.com>
234
235         * cp-tree.h, decl2.c (flag_ms_extensions): Move to c-common.
236
237 2002-06-15  Gabriel Dos Reis  <gdr@codesourcery.com>
238
239         * cp-tree.h (compiler_error): Remove declaration.
240         * lex.c (compiler_error): Remove definition.
241
242 2002-06-14  Steve Ellcey  <sje@cup.hp.com>
243
244         * g++spec.c (LIBUNWIND): New.
245         (lang_specific_driver): Add it if USE_UNWIND_EXCEPTIONS is set.
246
247 2002-06-13  Jessica Han  <jessica@cup.hp.com>
248
249         * class.c (build_vtable): Use TARGET_VTABLE_ENTRY_ALIGN.
250         (build_vtbl_initializer): Honor TARGET_VTABLE_DATA_ENTRY_DISTANCE.
251         (build_vbase_offset_vtbl_entries): Likewise.
252         * rtti.c (build_headof): Likewise.
253         (get_tinfo_decl_dynamic): Likewise.
254         (create_pseudo_type_info): Likewise.
255
256 2002-06-12  Stan Shebs  <shebs@apple.com>
257
258         * mpw-config.in: Remove file, no longer used.
259         * mpw-make.sed: Ditto.
260
261 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
262
263         * decl2.c: Update call to cpp_handle_option.
264
265 2002-06-07  H.J. Lu  (hjl@gnu.org)
266
267         * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT.
268
269 2002-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
270
271         * error.c (cp_error_at): Fix typo.
272
273 2002-06-04  Gabriel Dos Reis  <gdr@codesourcery.com>
274
275         * error.c (cp_diagnostic_starter): Adjust call.
276         (maybe_print_instantiation_context): Change prototype to take a
277         'diagnostic_info *'.
278         (print_instantiation_full_context): Likewise.
279         (print_instantiation_partial_context): Likewise.
280         (cp_diagnostic_starter): Likewise.
281         (cp_diagnostic_finalizer): Likewise.
282         (cp_print_error_function): Likewise.
283         (cp_printer): Take a secondary parameter as a 'text_info *'.
284         Remove output_state savings.  Adjust calls.
285
286 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
287
288         * pt.c (inline_parm_levels): Mark for GC.
289
290         * mangle.c (start_mangling): Allocate G.substitutions here...
291         (init_mangle): ... rather than here.
292         (finish_mangling): Clear the varray pointer when done with it.
293         * spew.c (yylexstring): Don't use VARRAY_FREE.
294         * search.c (bfs_walk): Don't use VARRAY_FREE.
295         * decl2.c (pending_statics): Use gengtype to mark.
296         (deferred_fns): Likewise.
297         (ssdf_decls): Likewise.
298         (init_decl2): Delete.
299         * decl.c (pop_from_top_level): Don't use VARRAY_FREE.
300         (cxx_init_decl_processing): Don't call init_decl2.
301         (cxx_pop_function_context): Don't use VARRAY_FREE.
302         * cp-tree.h (struct saved_scope): No need for special marking
303         of varrays.
304         (struct language_function): Likewise.
305         (local_classes): Use gengtype to mark.
306         (init_decl2): Delete prototype.
307         * class.c (init_class_processing): Don't use
308         ggc_add_tree_varray_root.
309         (build_vtbl_initializer): Don't use VARRAY_FREE.
310
311         * decl.c (typename_compare): Don't use same_type_p.
312
313         * decl.c: Include hashtab.h instead of hash.h.
314         (typename_hash): Update to use htab_h.
315         (typename_compare): Likewise.
316         (typename_htab): Use gengtype to mark.
317         (build_typename_type): Update to use htab_h.
318         * Make-lang.in (cp/decl.o): Use HASHTAB_H instead of hash.h.
319
320         * Make-lang.in (gt-cp-tree.h): New rule.
321         (cp/tree.o): Depend on gt-cp-tree.h.
322         * config-lang.in (gtfiles): Add cp/tree.c.
323         * tree.c: Include gt-cp-tree.h.
324         (list_hash_table): Use gengtype to mark.
325         (init_tree): Use gengtype to mark trees.
326
327         * Make-lang.in (cp/decl.o): Add debug.h dependency.
328         * call.c (struct z_candidate): Use gengtype.
329         (USER_CONV_CAND): Use WRAPPER_ZC.
330         (convert_class_to_reference): Use build_zc_wrapper.
331         (build_type_conversion_1): Likewise.
332         (build_over_call): Use WRAPPER_ZC.
333         (add_warning): Use build_zc_wrapper.
334         * cp-lang.c (LANG_HOOKS_MARK_TREE): Delete.
335         * cp-tree.h (struct lang_identifier): Use gengtype.
336         (struct template_parm_index_s): Likewise.
337         (struct ptrmem_cst): Likewise.
338         (struct tree_binding): Likewise.
339         (struct tree_overload): Likewise.
340         (struct tree_srcloc): Likewise.
341         (struct tree_wrapper): Likewise.  Also modify to have a pointer
342         to struct z_candidate rather than void.
343         (enum cp_tree_node_structure_enum): New.
344         (union lang_tree_node): New.
345         (cxx_mark_tree): Delete prototype.
346         (cp_tree_node_structure): New prototype.
347         (build_ptr_wrapper): Delete prototype.
348         (build_int_wrapper): Delete prototype.
349         (build_zc_wrapper): New prototype.
350         * decl.c: Include debug.h
351         (cxx_mark_tree): Delete.
352         (cp_tree_node_structure): New.
353         * tree.c (build_ptr_wrapper): Delete.
354         (build_int_wrapper): Delete.
355         (build_zc_wrapper): New.
356
357         * cp-tree.h [! ENABLE_TREE_CHECKING] (LANG_TYPE_PTRMEM_CHECK):
358         Correct typo.  Patch from k_fukui@highway.ne.jp.
359
360         * semantics.c (current_stmt_tree): Update for change to
361         struct language_function.
362         (finish_mem_initializers): Likewise.
363         * decl.c (cxx_init_decl_processing): Don't set mark_lang_status.
364         * cp-tree.h (struct language_function): Rename from
365         cp_language_function.  Change all uses.
366         (cp_function_chain): Don't need to cast.
367
368         * class.c (duplicate_tag_error): Reset discriminator.
369         (check_bases_and_members): Update for data structure changes.
370         * cp-tree.h (struct lang_id2): Use gengtype.
371         (flagged_type_tree): Likewise.
372         (SET_LANG_ID): Use GGC on struct lang_id2.
373         (struct cp_language_function): Use gengtype.  Remove field
374         'x_vcalls_possible_p'.
375         (current_vcalls_possible_p): Delete.
376         (struct lang_type_header): New.
377         (struct lang_type_class): Rename from struct lang_type.  Include
378         struct lang_type_header.
379         (struct lang_type_ptrmem): New.
380         (struct lang_type): New.
381         (LANG_TYPE_CLASS_CHECK): New.  Use it in all the appropriate macros.
382         (LANG_TYPE_PTRMEM_CHECK): New.  Use it in all the appropriate macros.
383         (TYPE_SET_PTRMEMFUNC_TYPE): Set discriminator, update for changes.
384         (struct lang_decl_flags): Use gengtype.  Add discriminators.
385         (struct lang_decl): Use gengtype.  Add and use discriminators.
386         Update the macros that reference moved fields.
387         (LANG_DECL_U2_CHECK): New function.  Use it when appropriate.
388         (SET_DECL_THUNK_P): Set discriminator too.
389         (clear_inline_text_obstack): Delete prototype.
390         (finish_inline_definitions): Delete prototype.
391         (mark_pending_inlines): Delete prototype.
392         (lang_check_failed): New prototype.
393         * decl.c (struct named_label_use_list): Use gengtype.
394         (struct named_label_list): Likewise.
395         (mark_binding_level): Delete.
396         (mark_named_label_lists): Delete.
397         (push_local_name): Set discriminator on DECL_LANG_SPECIFIC.
398         (cxx_init_decl_processing): Use generated marker routine.
399         (begin_destructor_body): Delete dead set to
400         current_vcalls_possible_p.
401         (mark_lang_function): Delete.
402         (mark_cp_function_context): Delete.
403         (lang_mark_tree): Use generated marker routines.
404         * decl2.c (start_objects): Set discriminator when setting
405         GLOBAL_INIT_PRIORITY.
406         * lex.c (retrofit_lang_decl): Set discriminators.
407         (copy_lang_type): Update for changes to lang_type structure.
408         (cp_make_lang_type): Set discriminator.
409         * parse.y: Use gengtype on YYLVAL.  Don't use dots in identifiers.
410         * search.c: Include ggc.h.
411         * semantics.c (anon_aggr_type_p): Use the macro, don't hand-code it.
412         (finish_inline_definitions): Delete.
413         * spew.c (struct token): Use gengtype.
414         (struct token_chunk): New.
415         (struct unparsed_text): Use gengtype.  Store tokens in chunks.
416         (struct feed): Use gengtype.
417         (feed_obstack): Delete.
418         (feed): Mark as GC root.
419         (pending_inlines): Mark as GC root.
420         (pending_inlines_tail): Likewise.
421         (processing_these_inlines): Likewise.
422         (token_obstack): Make static.
423         (first_token): Likewise.
424         (init_spew): Don't initialise deleted things; use gengtype for roots.
425         (clear_inline_text_obstack): Delete.
426         (feed_input): Use GC for struct feed.  Update for changes to
427         struct unparsed_text.
428         (mark_pending_inlines): Delete.
429         (next_token): Rename from add_token.  Change all callers.  Update
430         for changes to struct unparsed_text.
431         (space_for_token): New.
432         (remove_last_token): New.
433         (alloc_unparsed_text): New.
434         (snarf_block): Take an unparsed_text.  Update for changes to struct
435         unparsed_text.
436         (snarf_method): Update for changes to struct unparsed_text.
437         (snarf_defarg): Update for changes to struct unparsed_text.
438         * tree.c (lang_check_failed): New.
439
440         * Make-lang.in (gt-cp-call.h gt-cp-decl2.h gt-cp-parse.h
441         gt-cp-pt.h gt-cp-repo.h gt-cp-spew.h): New rules.
442         (cp/spew.o): Add dependency on gt-<filename>.h.
443         (cp/decl2.o): Add dependency on gt-<filename>.h.
444         (cp/call.o): Add dependency on gt-<filename>.h.
445         (cp/pt.o): Add dependency on gt-<filename>.h.
446         (cp/repo.o): Add dependency on gt-<filename>.h.
447         (cp/parse.o): Add dependency on gt-<filename>.h.
448         * call.c: Use gengtype for roots.
449         * config-lang.in (gtfiles): Add cp-tree.h decl.h lex.h call.c
450         decl2.c parse.y pt.c repo.c spew.c.
451         * cp-tree.h: Use gengtype for roots.
452         (struct saved_scope): Use GGC, gengtype.
453         (cp_parse_init): Delete prototype.
454         (init_pt): Delete prototype.
455         * decl.c: Use gengtype for roots.
456         (mark_saved_scope): Delete.
457         (cxx_init_decl_processing): Don't call deleted initilisation
458         routines.
459         (signed_size_zero_node): Delete, unused.
460         * decl.h: Use gengtype for roots.
461         * decl2.c: Use gengtype for roots.
462         * lex.h: Use gengtype for roots.
463         * parse.y: Use gengtype for roots.
464         (cp_parse_init): Delete.
465         * pt.c: Use gengtype for roots.
466         (init_pt): Delete.
467         * repo.c: Use gengtype for roots.
468         * spew.c: Use gengtype for roots.
469
470         * Make-lang.in: Allow for filename changes.  Add gtype-cp.h.
471         (cp/decl.o): Add dependency on gtype-cp.h.
472         * decl.c: Remove use of add_deletable_root, use GTY marker instead.
473         Include gtype-cp.h.  Allow for filename changes.
474
475         * Make-lang.in (cp/gt-decl.h): Generate using gengtype.
476         (cp/decl.o): Add cp/gt-decl.h dependency.
477         * config-lang.in (gtfiles): New.
478         * tree.h: Rename struct binding_level to struct cp_binding_level.
479         * decl.c: Rename struct binding_level to struct cp_binding_level.
480         Include cp/gt-decl.h.
481         (struct cp_binding_level): Use gengtype.
482         (make_binding_level): Use GGC on struct cp_binding_level.
483         (mark_binding_level): Use gt_ggc_m_cp_binding_level.
484         (cxx_init_decl_processing): Mark free_binding_level as
485         deletable.
486
487         * decl.c (mark_cp_function_context): Update calling sequence.
488
489         * decl.c (start_function): Don't free 'struct
490         cp_language_function'.
491         (pop_cp_function_context): Likewise.
492         (save_function_data): Allocate it using GC.
493         * semantics.c (genrtl_start_function): Don't free 'struct
494         cp_language_function'.
495
496 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
497
498         * lang-specs.h: Use cpp_debug_options.
499
500 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
501
502         * mangle.c, tree.c: Include real.h.
503         * Make-lang.in: Update dependency lists.
504
505 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
506
507         * lex.c: Don't include c-lex.h.
508         * parse.y, spew.c: Don't include c-lex.h; include c-pragma.h.
509
510 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
511
512         * spew.c (yyungetc, snarf_block): Remove indent_level handling.
513
514 2002-05-22  Richard Henderson  <rth@redhat.com>
515
516         * decl.c (obscure_complex_init): Check for VAR_DECL
517         before using DECL_THREAD_LOCAL.
518
519 2002-05-22  Richard Henderson  <rth@redhat.com>
520
521         * decl.c (check_tag_decl): Handle RID_THREAD.
522         (obscure_complex_init): Reject run-time init of tls.
523         (grokvardecl, grokdeclarator): Handle RID_THREAD.
524         * lex.c (reswords): Add __thread.
525         (rid_to_yy): Map RID_THREAD to SCSPEC.
526
527 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
528
529         * cp-lang.c (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
530         * cp-tree.h (cxx_post_options): Kill.
531         * cp-lex.c (cxx_post_options): Kill.
532
533 2002-05-21  Richard Henderson  <rth@redhat.com>
534
535         * lex.c (rid_to_yy): Add RID_THREAD.
536
537 2002-05-21  Alexandre Oliva  <aoliva@redhat.com>
538
539         * init.c (build_vec_init): Test for trivial copy-assignment when
540         copy-assigning arrays.
541
542 2002-05-20  Andreas Jaeger  <aj@suse.de>
543
544         * init.c (build_default_init): Remove unused variable.
545
546 2002-05-20  Alexandre Oliva  <aoliva@redhat.com>
547
548         * call.c (any_strictly_viable): New.
549         (build_new_op): Use it for COMPOUND_EXPR and ADDR_EXPRs.
550
551 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
552
553         * error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
554
555 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
556
557         PR c++/186, DR 259
558         * pt.c (do_decl_instantiation): Don't complain explicit
559         instantiation after explicit specialization.
560         (do_type_instantiation): Likewise.
561
562 2002-05-19  Alexandre Oliva  <aoliva@redhat.com>
563
564         * cp-tree.h (complete_type_or_diagnostic): Changed prototype,
565         renamed from...
566         (complete_type_or_else): ... this.  Redefined as macro.
567         (cxx_incomplete_type_diagnostic): Declare.
568         (cxx_incomplete_type_error): Define as macro.
569         * init.c (build_delete): Warn about incomplete types other than
570         void, and use the built-in operator delete for them.
571         * typeck.c (complete_type_or_diagnostic): Renamed from
572         complete_type_or_else.  Added warn_only argument, passed to...
573         * typeck2.c (cxx_incomplete_type_diagnostic): ... this.  Print
574         warnings or errors depending on new warn_only argument.  Renamed
575         from...
576         (cxx_incomplete_type_error): ... this.  New implementation in
577         terms of cxx_incomplete_type_diagnostic.
578
579 2002-05-18  Jason Merrill  <jason@redhat.com>
580
581         PR c++/6611
582         * decl2.c (import_export_decl): If we clear
583         DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
584
585 2002-05-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
586
587         PR c++/6620
588         * pt.c (verify_class_unification): Don't check if PARM is template
589         parameter dependent.  Simplify.
590         (unify) [TEMPLATE_PARM_INDEX]: Handle when ARG is a template
591         parameter dependent expression.
592
593 2002-05-14  Jason Merrill  <jason@redhat.com>
594
595         * rtti.c (get_tinfo_decl): Don't call comdat_linkage.
596         Do set DECL_COMDAT.
597         (synthesize_tinfo_var): Take the public decl.
598         (create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
599         (emit_tinfo_decl): Adjust.  Call import_export_decl.
600         * decl2.c (import_export_decl): Simplify tinfo decl handling.
601
602 2002-05-14  Alexandre Oliva  <aoliva@redhat.com>
603
604         * cp-tree.h (struct lang_type): Added non_zero_init.
605         (CLASSTYPE_NON_ZERO_INIT_P): New macro.
606         (zero_init_p, force_store_init_value, build_forced_zero_init): Declare.
607         * class.c (check_field_decls): Test non_zero_init.
608         * cvt.c (convert_to_pointer_force): Use cp_convert_to_pointer for
609         zero-to-NULL conversions.
610         * decl.c (obscure_complex_init): Don't reset DECL_INITIAL of a
611         type that needs zero-initialization without zeros.
612         (check_initializer_decl): Compute zero-initializer for types
613         that require a non-trivial one.
614         * init.c (build_forced_zero_init): New function.
615         (build_default_init): Use it.
616         * tree.c (zero_init_p): New function.
617         * typeck2.c (force_store_init_value): New function.
618         (process_init_constructor): Create non-trivial zero-initializers
619         for array members and class fields.
620
621 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
622
623         * lang-specs.h: Remove redundant -lang-c++.
624
625 2002-05-13  Jason Merrill  <jason@redhat.com>
626
627         * class.c (build_vtbl_ref_1): Use fixed_type_or_null.
628         (fixed_type_or_null): See through reference vars.
629         (build_base_path): Vtable contents are constant.
630         * typeck.c (get_member_function_from_ptrfunc): Likewise.
631
632 2002-05-12  Jason Merrill  <jason@redhat.com>
633
634         * cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
635         structs are safe.
636
637 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
638
639         * cp-tree.h (flag_ansi): Remove.
640         * decl2.c (flag_ansi): Remove.
641         (cxx_decode_option): Set flag_iso and flag_undef.
642
643 2002-05-09  Jason Merrill  <jason@redhat.com>
644
645         * typeck.c (get_member_function_from_ptrfunc): Reorganize.
646         Use subtraction rather than a bitmask to get the index.
647         * cvt.c (cp_convert_to_pointer): Bail on an error_mark_node.
648
649         * pt.c (tsubst_expr) [ASM_STMT]: Copy ASM_INPUT_P.
650
651 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
652
653         * Make-lang.in (decl2.o): Update.
654         * cp-tree.h (warn_multichar): Remove.
655         * decl2.c: Include c-common.h.
656         (warn_multichar): Remove.
657
658 2002-05-03  Jason Merrill  <jason@redhat.com>
659
660         * tree.c (build_cplus_array_type): Only const and volatile get
661         special handling.
662
663         * decl.c (BOOL_TYPE_SIZE): Move default to defaults.h.
664
665 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
666
667         ABI change, returning simple classes from functions.
668         * class.c (finish_struct_bits): Only mark TREE_ADDRESSABLE if
669         TYPE_HAS_TRIVIAL_INIT_REF is false or
670         TYPE_HAS_NONTRIVIAL_DESTRUCTOR is true.
671
672 2002-04-30  Jason Merrill  <jason@redhat.com>
673
674         PR debug/6436
675         * decl.c (grokdeclarator): Don't override TYPE_NAME of an
676         anonymous class with a typedef if there are attributes.
677
678 2002-04-29  Paul Eggert  <eggert@twinsun.com>
679
680         * parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
681
682 2002-04-29  Jakub Jelinek  <jakub@redhat.com>
683
684         PR c++/6477
685         * decl.c (follow_tag_typedef): Check if TYPE_NAME (original) is
686         non-NULL first.
687
688 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
689
690         PR c++/6492
691         * pt.c (tsubst_friend_class): If the friend has an explicit scope,
692         enter that scope before name lookup.
693
694         PR c++/6486
695         * method.c (do_build_copy_constructor): Avoid building
696         cv-qualified reference types.
697
698 2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
699
700         PR c++/5719
701         * decl.c (grok_op_properties): Assignment ops don't have to return
702         by value. operator% should.
703
704 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
705
706         PR c/6343
707         * decl.c (duplicate_decls): Call merge_weak.
708
709 2002-04-26  Richard Henderson  <rth@redhat.com>
710
711         * parse.y (malloced_yyss, malloced_yyvs): New.
712         (yyoverflow): Re-add.  Set them.
713         (free_parser_stacks): New.
714
715 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
716
717         PR c++/6497
718         * method.c (do_build_assign_ref): Pass a derivation to
719         build_method_call when calling base class assignment operators.
720
721 2002-04-26  Richard Henderson  <rth@redhat.com>
722
723         * parse.y (yyoverflow): Revert.
724
725 2002-04-26  Richard Henderson  <rth@redhat.com>
726
727         PR c/3581
728         * parse.y (string): Remove.  Update all uses to use STRING
729         instead, and not call combine_strings.
730         * rtti.c (tinfo_name): Use fix_string_type.
731         * semantics.c (finish_asm_stmt): Don't call combine_strings.
732         * spew.c (yylexstring): New.
733         (read_token): Use it.
734
735 2002-04-25  Richard Henderson  <rth@redhat.com>
736
737         PR c/2161
738         * parse.y (yyoverflow): New.
739
740 2002-04-25  Jason Merrill  <jason@redhat.com>
741
742         PR c++/5607
743         * search.c (check_final_overrider): No longer static.
744         * class.c (update_vtable_entry_for_fn): Call it.
745         * cp-tree.h: Adjust.
746
747 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
748
749         * cp-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
750         * cp-tree.h (cxx_set_yydebug): Die.
751         * lex.c (YYDEBUG): Get from c-lex.h.
752         (cxx_set_yydebug): Remove.
753         * parse.y: Include c-lex.h.
754         (YYDEBUG): Get from c-lex.h.
755
756 2002-04-24  Mark Mitchell  <mark@codesourcery.com>
757
758         PR c++/6438.
759         * cvt.c (convert_to_void): Don't unconditionally make COND_EXPRs
760         void.
761
762 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
763
764         * cp-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
765         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE):
766         Redefine.
767         * cp-tree.h (cp_attribute_table): Rename.
768         * decl.c (lang_attribute_table): Remove declaration.
769         (cxx_init_decl_processing): Don't set it.
770         * tree.c (cp_attribute_table): Rename.
771
772 2002-04-24  Jason Merrill  <jason@redhat.com>
773
774         PR c++/6331
775         * method.c (do_build_copy_constructor): Use cp_build_qualified_type.
776         * typeck.c (build_modify_expr): Allow arrays to differ in cv-quals.
777         The pedwarn for array assignment is now unconditional.
778         * tree.c (build_cplus_array_type_1): Still process simple array types
779         normally in templates.
780
781         PR c++/6395
782         * decl.c (make_rtl_for_nonlocal_decl): Don't mess with #pragma i/i
783         stuff for comdats.
784
785 2002-04-23  Jakub Jelinek  <jakub@redhat.com>
786
787         * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
788         node with attributes.
789
790 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
791
792         * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
793         Use MATH_LIBRARY_PROFILE and LIBSTDCXX_PROFILE if profile flag given.
794
795 2002-04-23  Mark Mitchell  <mark@codesourcery.com>
796
797         PR c++/6256:
798         * pt.c (tsubst_friend_class): Handle templates with explicit
799         nested names.
800
801         PR c++/6331:
802         * typeck.c (merge_types): Remember the cv-qualification of pointer
803         types when merging them.
804
805 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
806
807         * cp-lang.c (LANG_HOOKS_FUNCTION_INIT,
808         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_MARK): Redefine.
809         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context,
810         cxx_mark_function_context): New.
811         * decl.c (push_cp_function_context, pop_cp_function_context,
812         mark_cp_function_context): Rename for consistency.
813         (cxx_init_decl_processing): Don't set old hooks.
814
815 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
816
817         * call.c (convert_type_from_ellipsis): Rename, update.
818         * cp-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
819         * cp-tree.h (convert_type_from_ellipsis): Rename.
820         * decl.c (cxx_init_decl_processing): Don't set hook.
821
822 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
823
824         * call.c (build_new_method_call): Update.
825         * cp-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
826         * cp-tree.h (cxx_incomplete_type_error): New.
827         * decl.c (grokdeclarator, grokparms): Update.
828         * decl2.c (check_classfn): Update.
829         * pt.c (tsubst): Update.
830         * typeck.c (complete_type_or_else, expr_sizeof,
831         decay_conversion): Update.
832         * typeck2.c (incomplete_type_error): Rename.
833         (add_exception_specifier): Update.
834
835 2002-04-18  Jason Merrill  <jason@redhat.com>
836
837         PR c++/5658
838         * search.c (setup_class_bindings): A class template qualifies as a
839         type binding.
840
841 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
842
843         PR c++/6316
844         * decl2.c (finish_file): Clear DECL_EXTERNAL in a separate loop
845         before expanding.
846
847 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
848
849         * init.c (begin_init_stmts): Remove commented out code.
850         (finish_init_stmts): Set STMT_EXPR_NO_SCOPE.
851         * semantics.c (begin_gobal_stmt_expr): Adjust call to
852         expand_start_stmt_expr.
853
854 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
855
856         * decl.c (register_dtor_fn): Pass the address of dso_handle, not
857         dso_handle itself, to __cxa_atexit.
858
859 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
860
861         * error.c (cxx_print_error_function): Adjust call to macros.
862
863 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
864
865         * class.c (layout_virtual_bases): Do all dsize computation on trees.
866
867 2002-04-14  Jason Merrill  <jason@redhat.com>
868
869         * typeck.c (get_member_function_from_ptrfunc): Don't do
870         gratuitious division and multiplication on
871         ptrmemfunc_vbit_in_delta targets.
872
873 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
874
875         PR c++/5373.
876         * semantics.c (finish_expr_stmt): Remember the type of the
877         expression before any conversions are performed.
878
879 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
880
881         PR c++/5189.
882         * call.c (add_template_candidate_real): Do not treat member
883         templates as copy constructors.
884
885 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
886
887         * decl.c (duplicate_decls): Do not copy the RTL for a variable
888         declaration if the old variable had an incomplete type and the new
889         variable does not.
890         (complete_vars): Do not call layout_decl for completed variables.
891
892 2002-04-12  Richard Sandiford  <rsandifo@redhat.com>
893
894         * decl.c (duplicate_decls): Don't try to unify an implicit typedef
895         with an explicit one.
896         (follow_tag_typedef): New.
897         (lookup_tag): Use it to extract the tag of an explicit typedef.
898         (xref_tag): Likewise.
899
900 2002-04-11  Andrew Haley  <aph@redhat.com>
901
902         * typeck.c (type_after_usual_arithmetic_conversions):
903         If two types have the same variant, return immediately.
904         When two floating-point operands are the same precision:
905           convert to float if one of the operands is float;
906           if neither operand is one of the standard types, return the type
907           of the first operand.
908
909 2002-04-10  Nathan Sidwell  <nathan@codesourcery.com>
910
911         PR c++/5507
912         * decl.c (make_typename_type): Remove implicit typenameness.
913
914 2002-04-09  Jason Merrill  <jason@redhat.com>
915
916         PR optimization/6189
917         * semantics.c (genrtl_start_function): Don't free
918         DECL_SAVED_FUNCTION_DATA for inline functions.
919
920         * init.c (build_member_call): For now, don't convert to
921         intermediate base if it would cause an error.
922
923 2002-04-08  Paolo Carlini  <pcarlini@unitus.it>
924
925         * parse.y (namespace_qualifier, maybe_identifier,
926         begin_explicit_instantiation, end_explicit_instantiation,
927         apparent_template_type, .finish_template_type,
928         do_id, maybe_init, defarg_again, component_decl_1):
929         Add ending ';', in accordance with POSIX.
930
931 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
932
933         PR c++/5571
934         * class.c (layout_class_type): Remember incomplete static
935         variables.
936         (finish_struct_1): Call complete_vars, not
937         hack_incomplete_structures.
938         * cp-tree.h (hack_incomplete_structures): Rename to ...
939         (complete_vars): ... this.
940         (struct saved_scope): Remove incomplete.
941         (namespace_scope_incomplete): Remove.
942         * decl.c (struct binding_level): Remove incomplete.
943         (incomplete_vars): New variable.
944         (mark_binding_level): Don't mark incomplete.
945         (print_binding_level): Don't print it.
946         (mark_saved_scope): Don't mark incomplete.
947         (pushdecl): Use maybe_register_incopmlete_var.
948         (cxx_init_decl_processing): Register incomplete_vars for GC.
949         (start_decl_1): Clarify error message.
950         (hack_incomplete_vars): Remove.
951         (maybe_register_incomplete_var): New function.
952         (complete_vars): Likewise.
953
954 2002-04-06  Jason Merrill  <jason@redhat.com>
955
956         PR c++/4934
957         * error.c (dump_expr) [CONVERT_EXPR]: Make sure TREE_TYPE (t) is
958         set before checking it.
959
960         PR c++/525
961         * init.c (build_member_call): Use build_scoped_ref.
962         (resolve_offset_ref): Likewise.
963         * call.c (build_scoped_method_call): Likewise.
964         * tree.c (maybe_dummy_object): Kludge around current_class_type being
965         wrong.
966         * typeck2.c (build_scoped_ref): Return the binfo via binfo_p parm.
967         * cp-tree.h: Adjust.
968
969         * init.c (push_base_cleanups): Just use build_scoped_method_call.
970
971         PR c++/6179
972         * method.c (implicitly_declare_fn): Pass unqualified type to
973         synthesize_exception_spec.
974
975 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
976
977         * cp-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
978         * cvt.c: Update comment.
979         * init.c (expand_cleanup_for_base): Update.
980         * semantics.c (finish_parenthesized_expr): Update.
981         * typeck.c (cp_truthvalue_conversion): Update.
982
983 2002-04-04  Jason Merrill  <jason@redhat.com>
984
985         * semantics.c (finish_eh_cleanup): New fn.
986         * cp-tree.h: Add prototype.
987         * init.c (perform_member_init, expand_cleanup_for_base): Use
988         finish_eh_cleanup.
989         * cp-tree.def (SUBOBJECT, CTOR_STMT): Remove.
990         * cp-tree.h: Remove references.
991         * decl.c (begin_constructor_body, end_constructor_body): Likewise.
992         * dump.c (cp_dump_tree): Likewise.
993         * pt.c (tsubst_expr): Likewise.
994         * semantics.c (genrtl_ctor_stmt, genrtl_subobject): Remove.
995         (cp_expand_stmt): Remove handling of CTOR_STMT and SUBOBJECT.
996         * tree.c (cp_statement_code_p): Likewise.
997
998         * init.c (build_new_1): Set CLEANUP_EH_ONLY on deleting cleanup.
999
1000         PR c++/5636
1001         * semantics.c (nullify_returns_r): Just set CLEANUP_EH_ONLY on
1002         cleanup for nrv.
1003
1004         PR c++/5104
1005         * typeck.c (comptypes) [FUNCTION_TYPE]: Don't compare exception
1006         specifiers.
1007         [METHOD_TYPE]: Use same code as FUNCTION_TYPE.
1008
1009 2002-04-03  Richard Henderson  <rth@redhat.com>
1010
1011         * cp-lang.c (cxx_warn_unused_global_decl): New.
1012         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
1013
1014 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
1015
1016         * cp-lang.c (LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): Redefine.
1017         * tree.c (init_tree): Don't set hook.
1018
1019 2002-04-03  Roger Sayle  <roger@eyesopen.com>
1020
1021         PR c++/5998:
1022         * decl.c (duplicate_decls): Don't mess with assembler names when
1023         redeclaring builtin functions as static.
1024
1025 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1026
1027         * call.c (build_addr_func): Update.
1028         * class.c (resolve_address_of_overloaded_function): Update.
1029         * cp-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
1030         * cp-tree.h (cxx_mark_addressable): New.
1031         * decl.c (register_dtor_fn, cxx_maybe_build_cleanup): Update.
1032         * decl2.c (build_cleanup): Update.
1033         * except.c (build_throw): Update.
1034         * init.c (resolve_offset_ref): Update.
1035         * pt.c (convert_nontype_argument): Update.
1036         * semantics.c (finish_asm_stmt, simplify_affr_init_exprs_r): Update.
1037         * typeck.c (decay_conversion, build_array_ref, build_unary_op,
1038         unary_complex_lvalue): Update.
1039         (mark_addressable): Rename.
1040
1041 2002-04-01  Roger Sayle  <roger@eyesopen.com>
1042
1043         PR c++/5998:
1044         * decl.c (duplicate_decls):  Overwrite the RTL when (and only
1045         when) overwriting a built-in function.  Don't use COPY_DECL_RTL,
1046         but follow the SET_DECL_RTL idiom used elsewhere in the function.
1047
1048 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
1049
1050         * cp-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
1051         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
1052         * decl.c (grokdeclarator): Update.
1053         * mangle.c (write_integer_cst): Update.
1054         * typeck.c (build_binary_op): Update.
1055
1056 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
1057
1058         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
1059         * lex.c (cxx_init): Don't set hook.
1060
1061 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
1062
1063         * Make-lang.in (error.o): Update.
1064         * cp-lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
1065         * cp-tree.h (struct diagnostic_context): Predeclare.
1066         (cxx_print_error_function): New.
1067         * error.c: Include langhooks-def.h.
1068         (lang_print_error_function): Rename.  Update.
1069         (init_error): Don't set hook.
1070
1071 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
1072
1073         * cp-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
1074         Redefine.
1075         * cvt.c (cp_convert_to_pointer, type_promotes_to): Use new hooks.
1076         * decl.c (finish_enum): Similarly.
1077         * error.c (dump_type): Similarly.
1078         * lex.c (cxx_init): Similarly.
1079         * mangle.c (write_builtin_type): Similarly.
1080         * typeck.c (comptypes): Similarly.
1081
1082 2002-03-28  Roger Sayle  <roger@eyesopen.com>
1083
1084         PR c++/5998:
1085         * decl.c (cxx_init_decl_processing): Re-enable built-in functions
1086         in the g++ front-end.
1087         (duplicate_decl): Allow redefinition of anticipated built-ins.
1088         Fix inlining problem by over-writing the old DECL_RTL.
1089         (lookup_namespace_name): Fail to find an identifier in the
1090         specified namespace if its still anticipated.
1091         (builtin_function_1): New function split out from builtin_function
1092         to create a builtin in the current namespace with given context.
1093         (builtin_function): Call builtin_function_1 to define the
1094         appropriate builtins in both the std and global namespaces.
1095         (select_decl): Don't test for anticipated decls here.
1096         (unqualified_namespace_lookup): Instead ignore them whilst
1097         searching through scopes and namespaces.
1098         * decl2.c (do_nonmember_using_decl): If a using declaration
1099         specifies an anticipated built-in function, mark it as no longer
1100         anticipated in that scope.
1101         (ambiguous_decl):  Avoid resolving to an anticipated decl.
1102         * lex.c (do_scoped_id): Fail to find an identifier in the global
1103         namespace if its still anticipated.
1104
1105 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
1106
1107         * cp-lang.c (LANG_HOOKS_MAKE_TYPE): Redefine.
1108         * cp-tree.h (cp_make_lang_type): Rename.
1109         * lex.c (cp_make_lang_type): Rename.
1110         (make_aggr_type): Update.
1111         * tree.c (init_tree): Don't set make_lang_type_fn.
1112
1113 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
1114
1115         PR c++/6073
1116         * class.c (finish_struct_1): Update static field's DECL_MODE even
1117         if its type is a variant of t.
1118
1119 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1120
1121         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
1122         * cp-tree.h (cxx_insert_default_attributes): New.
1123         * decl.c (insert_default_attributes): Rename.
1124
1125 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
1126
1127         PR c++/4884
1128         * call.c (build_op_delete_call): Allow for the fact the placement
1129         may be a COMPOUND_EXPR.
1130
1131 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
1132
1133         * cp-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
1134         * cp-tree.h (init_cplus_expand): Remove.
1135         (cxx_expand_expr): New.
1136         * expr.c (cplus_expand_expr): Rename cxx_expand_expr,
1137         fix prototype.
1138         (init_cplus_expand): Remove.
1139         * lex.c (cxx_init): Don't call init_cplus_expand.
1140
1141 2002-03-26  Mark Mitchell  <mark@codesourcery.com>
1142
1143         PR c++/4884.
1144         * init.c (build_new_1): Allow for the fact the result of
1145         build_function_call may be a COMPOUND_EXPR.
1146
1147 2002-03-26  Nathan Sidwell  <nathan@codesourcery.com>
1148
1149         PR c++/5682
1150         * cp-tree.h (BINFO_PRIMARY_P): Explain meaning better.
1151         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
1152         (dfs_skip_nonprimary_vbases_markedp): Remove.
1153         * search.c (get_shared_vbase_if_not_primary): Remove.
1154         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
1155         (dfs_skip_nonprimary_vbases_markedp): Remove.
1156         (dfs_unmarked_real_bases_queue_p): Just get the canonical binfo.
1157         (dfs_marked_real_bases_queue_p): Likewise.
1158
1159 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
1160
1161         * cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
1162         * cp-tree.h (cxx_mark_tree): New.
1163         * decl.c (lang_mark_tree): Rename cxx_mark_tree.
1164
1165 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
1166
1167         * cp-tree.h (cxx_maybe_build_cleanup): New.
1168         * decl.c (destroy_local_var, hack_incomplete_structures): Update.
1169         (maybe_build_cleanup): Rename cxx_maybe_build_cleanup.
1170         * tree.c (build_target_expr): Update.
1171         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP): Redefine.
1172
1173 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
1174
1175         * decl2.c (cxx_decode_option): Handle -E.
1176         * lang-specs.h (default_compilers): Preprocess with cc1plus.
1177         * lex.c (cxx_init): Exit quickly if c_common_init returns NULL.
1178
1179 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
1180
1181         PR c++/6037
1182         * decl.c (start_enum): Don't set TREE_ADDRESSABLE on TREE_LIST node.
1183
1184 2002-03-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1185
1186         * error.c (dump_type): Be careful about implicit typenames.
1187
1188 2002-03-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
1189
1190         PR C++/3656
1191         * semantics.c (finish_base_specifier): Handle erronous base
1192         classes.
1193
1194 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
1195
1196         * error.c: Always use REAL_VALUE_TO_DECIMAL; don't test
1197         REAL_IS_NOT_DOUBLE.
1198
1199 2002-03-22  Jeff Knaggs  <jknaggs@redhat.com>
1200
1201         * typeck.c (get_member_function_from_ptrfunc): Scale idx down to
1202         an index into the vtable_entry array regardless of
1203         TARGET_PTRMEMFUNC_VBIT_LOCATION.
1204
1205 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
1206
1207         * tree.c (cp_cannot_inline_tree_fn): Same.
1208
1209 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
1210
1211         * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
1212         insert_block, getdecls, global_bindings_p): New.
1213
1214 2002-03-20  Nathan Sidwell  <nathan@codesourcery.com>
1215
1216         PR c++/4361
1217         * mangle.c (struct globals) Add internal_mangling_p member.
1218         (write_template_param): Do internal mangling, if needed.
1219         (mangle_conv_op_name_for_type): Request internal mangling.
1220
1221 2002-03-20  Jason Merrill  <jason@redhat.com>
1222
1223         PR c++/2136
1224         * init.c (build_delete): Check access for a member op delete here.
1225         * decl2.c (delete_sanity): Not here.
1226
1227 2002-03-19  Jason Merrill  <jason@redhat.com>
1228
1229         PR c++/5118
1230         * class.c (get_vfield_name): Use the constructor_name.
1231
1232 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
1233
1234         * cp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
1235         * cp-tree.h (lang_printable_name): Rename.
1236         * error.c (lang_decl_name): Use new hook.
1237         * lex.c (cxx_init): Remove old hook.
1238         * pt.c (tsubst_decl): Use new hook.
1239         * tree.c (lang_printable_name): Rename.
1240
1241 2002-03-18  Eric Botcazou  <ebotcazou@multimania.com>
1242
1243         PR c++/3882
1244         * pt.c (tsubst_decl): Move __PRETTY_FUNCTION__ handling...
1245         (tsubst_expr) [DECL_STMT]: ...here. And substitute the initializer
1246         only after recording the declaration.
1247
1248 2002-03-18  Jason Merrill  <jason@redhat.com>
1249
1250         PR c++/2039
1251         * init.c (resolve_offset_ref): Hand off to build_component_ref.
1252
1253         PR c++/4222, c++/5995
1254         * call.c (build_over_call): Fix empty class logic.
1255
1256         PR c++/3870
1257         * cp-tree.h (struct saved_scope): Add last_parms field.
1258         * decl.c (maybe_push_to_top_level): Save last_function_parms.
1259         (pop_from_top_level): Restore it.
1260
1261         PR c++/4377
1262         * mangle.c (write_expression): Strip NOP_EXPRs sooner.  Also strip
1263         NON_LVALUE_EXPRs.
1264
1265         PR c++/4003
1266         * pt.c (tsubst_friend_function): Use decl_namespace_context.
1267
1268         PR c++/3948 -- C++ ABI change, followup to 2001-12-18 patch.
1269         * class.c (finish_struct_bits): Also set TREE_ADDRESSABLE for a
1270         type with a nontrivial destructor.
1271
1272 2002-03-17  Jason Merrill  <jason@redhat.com>
1273
1274         PR c++/4460
1275         * class.c (build_base_path): Virtual base layout is fixed in
1276         in-charge [cd]tors.
1277
1278 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
1279
1280         * cp-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
1281         * parse.y (yyparse): Remove macro.
1282
1283 2002-03-17  Jason Merrill  <jason@redhat.com>
1284
1285         PR c++/5757
1286         * init.c (build_new_1): Pass the right pointer to op delete.
1287
1288 2002-03-16  Nathan Sidwell  <nathan@codesourcery.com>
1289
1290         PR c++/4361
1291         * cp-tree.h (CLASSTYPE_METHOD_VEC): Document where templated
1292         conversion operators go.
1293         (struct lang_decl_flags): Add template_conv_p and unused
1294         bitfields.
1295         (DECL_TEMPLATE_CONV_FN_P): New macro.
1296         * call.c (build_user_type_conversion_1): Don't check second type
1297         conversion of overload set first.
1298         * class.c (add_method): Make sure templated conversion operators
1299         all end up on slot 2.
1300         * lex.c (do_identifier): A conversion operator token might be
1301         satisfied by a templated conversion operator.
1302         * pt.c (check_explicit_specialization): Use
1303         CLASSTYPE_FIRST_CONVERSION_SLOT.
1304         (template_parm_this_level_p): New function.
1305         (push_template_decl_real): Determine DECL_TEMPLATE_CONV_FN_P.
1306         * search.c (lookup_fnfields_1): Template conversions will be on
1307         the first slot.
1308         * typeck.c (build_component_ref): Preserve the type of an
1309         conversion operator name on the overload type.
1310         (build_x_function_call): Retrieve the conversion operator name.
1311
1312 2002-03-15  Richard Henderson  <rth@redhat.com>
1313
1314         * init.c (build_new_1): Use size_binop instead of cp_build_binary_op.
1315
1316 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
1317
1318         * cp-tree.h (CLEANUP_DECL): Remove.
1319         (CLEANUP_EXPR): Likewise.
1320         * decl.c (destroy_local_var): Simplify.
1321         (maybe_build_cleanup): Tidy.
1322         * dump.c (cp_dump_tree): Remove handling of CLEANUP_STMT.
1323         * semantics.c (cp_expand_stmt): Likewise.
1324         * cp/tree.c (cp_statement_code_p): Likewise.
1325
1326 2002-03-15  Jason Merrill  <jason@redhat.com>
1327
1328         PR c++/5857
1329         * decl.c (duplicate_decls): Use merge_types instead of common_type.
1330         * typeck.c (common_type): Just hand off to
1331         type_after_usual_arithmetic_conversions and
1332         composite_pointer_type.
1333         (merge_types): New fn.
1334         (commonparms): Use it instead of common_type.
1335         (type_after_usual_arithmetic_conversions): Also handle COMPLEX_TYPE.
1336         (composite_pointer_type): Also handle attributes.
1337         * cp-tree.h: Declare merge_types.
1338
1339         * decl.c (make_rtl_for_nonlocal_decl): Also defer COMDAT
1340         variables.
1341         * decl2.c (maybe_make_one_only): Also mark the decl as needed.
1342
1343 2002-03-14  Richard Henderson  <rth@redhat.com>
1344
1345         * decl.c: Include c-pragma.h.
1346         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
1347         * Make-lang.in: Update dependencies.
1348
1349 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
1350
1351         PR c++/5908
1352         * call.c (build_over_call): Set TREE_NO_UNUSED_WARNING too.
1353         * cvt.c (convert_to_void): Preserve TREE_NO_UNUSED_WARNING.
1354
1355 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
1356
1357         * mangle.c (write_builtin_type): Handle 128-bit integers even if
1358         they are not a standard integer type.
1359
1360 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
1361
1362         * cp-tree.h (init_init_processing): Remove declaration.
1363         * init.c (BI_header_type, init_init_processing): Remove old ABI stuff.
1364         * decl.c (cxx_init_decl_processing): Don't call init_init_processing.
1365
1366 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1367
1368         * cp-lang.c (tree_code_type, tree_code_length, tree_code_name):
1369         Define.
1370         * decl.c (duplicate_decls): Use TREE_CODE_LENGTH, not
1371         tree_code_length.
1372         * lex.c (cplus_tree_code_type, cplus_tree_code_length,
1373         cplus_tree_code_name): Delete.
1374         (cxx_init): Don't call add_c_tree_codes, instead set
1375         lang_unsafe_for_reeval.  Don't try to copy into the various
1376         tree_code arrays.
1377
1378 2002-03-12  Nathan Sidwell  <nathan@codesourcery.com>
1379
1380         PR c++/5659
1381         * decl.c (xref_tag): Don't set CLASSTYPE_DECLARED_CLASS here.
1382         * decl2.c (handle_class_head): Set CLASSTYPE_DECLARED_CLASS for
1383         definitions.
1384
1385 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
1386
1387         Revert 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>,
1388         DR209 is now not a defect.
1389         * cp-tree.h (skip_type_access_control): Remove.
1390         * decl.c (grokdeclarator): Do type access control for friend
1391         declarations.
1392         * semantics.c (decl_type_access_control): Don't reset
1393         current_type_lookups.
1394         (save_type_access_control): Always save the lookups.
1395         (skip_type_access_control): Remove.
1396         (finish_class_definition): Don't change type_lookups.
1397
1398 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
1399
1400         Revert 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>,
1401         It is incorrect.
1402         * typeck.c (build_static_cast): Compare non-qualified types
1403         with pointer to member conversions.
1404
1405 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
1406             Daniel Berlin  <dan@dberlin.org>
1407
1408         * cp-lang.c (ok_to_generate_alias_set_for_type): New function.
1409         (cxx_get_alias_set): Use it.
1410
1411 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1412
1413         * cp-tree.h (stabilize_expr): Prototype.
1414
1415 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1416
1417         * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
1418         conditional return void.
1419
1420 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
1421
1422         * cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.
1423         * cp-tree.h (cxx_unsave): New.
1424         * tree.c (cp_unsave): Rename cxx_unsave, update prototype.
1425         (init_tree): Update.
1426
1427 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1428
1429         * decl.c (cxx_init_decl_processing): Use ARRAY_SIZE in lieu of
1430         explicit sizeof/sizeof.
1431         * decl2.c (cxx_decode_option): Likewise.
1432         * lex.c (init_reswords, REDUCE_LENGTH, TOKEN_LENGTH): Likewise.
1433
1434 2002-03-02  Nathan Sidwell  <nathan@codesourcery.com>
1435
1436         PR c++/775
1437         * decl.c (lookup_tag): Only reject enum/class mismatch, not
1438         class/union mismatch.
1439         * parse.y (check_class_key): New function.
1440         (structsp): Call it.
1441
1442 2002-03-01  Michael Matz  <matz@suse.de>
1443
1444         * typeck.c (cp_pointer_int_sum): Complete inner type which is
1445         used later by size_in_bytes().
1446
1447 2002-03-01  Phil Edwards  <pme@gcc.gnu.org>
1448
1449         * cp-tree.h:  Require __GNUC__ to be #defined.
1450         (build_init):  Add missing prototype.
1451
1452 2002-03-01  Jason Merrill  <jason@redhat.com>
1453
1454         * except.c: Don't include decl.h or obstack.h.  Do include
1455         tree-inline.h.
1456         (build_throw): Destroy temporaries from the thrown
1457         expression before calling __cxa_throw.  Construct a thrown
1458         temporary directly into the exception object.
1459         (stabilize_throw_expr): New function.
1460         (wrap_cleanups_r): New function.
1461         * tree.c (stabilize_expr): New function.
1462         * init.c (build_init): New function.
1463         * Make-lang.in (cp/except.o): Adjust .h deps.
1464
1465 2002-02-28  Jason Merrill  <jason@redhat.com>
1466
1467         * search.c (lookup_base_r): Don't clear is_non_public just because
1468         we found a friendly scope.
1469
1470         * decl.c (finish_function): Only warn about missing return
1471         statement with -Wreturn-type.
1472
1473 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
1474
1475         * class.c (build_clone): Update.
1476         * cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
1477         * cp-tree.h (cxx_dup_lang_specific_decl): New.
1478         * lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
1479         (copy_decl): Update.
1480         * method.c (make_thunk): Update.
1481
1482 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
1483
1484         * decl2.c: Delete traditional-mode-related code copied from
1485         the C front end but not used, or used only to permit the
1486         compiler to link.
1487
1488 2002-02-24 Craig Rodrigues  <rodrigc@gcc.gnu.org>
1489
1490         PR c++/4093
1491         * cp-tree.h (SET_BINFO_MARKED): Cast false part of condition
1492         to void.
1493
1494 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
1495
1496         PR other/5746
1497         * semantics.c (finish_switch_cond): Don't call get_unwidened
1498         if error_mark_node.
1499
1500 2002-02-22  Nathan Sidwell  <nathan@codesourcery.com>
1501
1502         PR c++/2645, DR 295
1503         * cp-tree.h (tsubst_flags_t): Add tf_ignore_bad_quals,
1504         tf_keep_type_decl.
1505         (make_typename_type): Use tsubst_flags_t.
1506         * decl.c (make_typename_type): Adjust. Return non-artificial
1507         TYPE_DECLs, if required.
1508         (grokdeclarator): Simplify CVR qualification handling. Allow bad
1509         qualifiers on typedef types.
1510         * decl2.c (handle_class_head): Adjust make_typename_type call.
1511         * parse.y (nested_name_specifier): Likewise.
1512         (typename_sub0): Likewise.
1513         (typename_sub1): Likewise.
1514         * pt.c (convert_template_argument): Adjust make_typename_type
1515         return value.
1516         (tsubst): Adjust cp_build_qualified_type_real calls.
1517         (check_cv_quals_for_unify): Cope with alowing bad qualifications
1518         on template type parms.
1519         (instantiate_decl): Recheck substitutions to give warnings on bad
1520         qualifications.
1521         * tree.c (cp_build_qualified_type_real): Use tf_allow_bad_quals.
1522
1523 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
1524
1525         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
1526
1527         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
1528         unless DECL_ALWAYS_INLINE.
1529
1530 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1531
1532         * typeck.c (cp_pointer_int_sum): Renamed from
1533         pointer_int_sum, call pointer_int_sum.
1534
1535 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1536
1537         * decl.c (duplicate_decls): Return 0 if issued error about
1538         redeclaration.
1539
1540 2002-02-19  Jason Merrill  <jason@redhat.com>
1541
1542         ABI change: Mangle `void (A::*)() const' as
1543         M1AKFvvE, not MK1AFvvE.
1544         * mangle.c (write_function_type): Write cv-quals for member
1545         function type here.
1546         (write_pointer_to_member_type): Not here.
1547
1548 2002-02-18  Jason Merrill  <jason@redhat.com>
1549
1550         * pt.c (do_type_instantiation): Don't pedwarn if in_system_header.
1551         (do_decl_instantiation): Likewise.
1552
1553 2002-02-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1554
1555         PR c++/5685
1556         * decl.c (duplicate_decls): Make warning unconditional
1557         if duplicate default argument declarations are present.
1558
1559 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
1560
1561         * typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
1562         shortening.
1563
1564 2002-02-15  Nathan Sidwell  <nathan@codesourcery.com>
1565
1566         * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
1567         remove incorrect comment. Move #if 0'd code to common path. Use
1568         IMPLICIT_TYPENAME_P. Simplify & reformat ARRAY_TYPE duplication.
1569
1570 2002-02-13  Jason Merrill  <jason@redhat.com>
1571
1572         * decl.c (builtin_function): Set TREE_THIS_VOLATILE on return fns.
1573         (finish_function): Don't warn if current_function_returns_null.
1574
1575         * typeck2.c (digest_init): Do handle values of vector type.
1576
1577         * typeck2.c (digest_init, process_init_constructor): Treat vectors
1578         like arrays.
1579
1580 2002-02-11  Jason Merrill  <jason@redhat.com>
1581
1582         * parse.y (reserved_declspecs): Don't handle attributes.
1583         (reserved_typespecquals): Handle them here.
1584         * Make-lang.in (parse.c): Adjust expected conflicts.
1585
1586 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
1587
1588         * parse.y (primary, primary_no_id): Use compstmt_or_stmtexpr
1589         instead of compstmt.
1590         (compstmt_or_stmtexpr): Renamed from compstmt.
1591         (compstmt): In addition to compstmt_or_stmtexpr clear last_expr_type.
1592
1593 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
1594
1595         Rename instantiate_type_flags to tsubst_flags_t & expand use.
1596         * cp-tree.h (instantiate_type_flags): Rename to ...
1597         (tsubst_flags_t): ... here. Rename itf_complain to tf_error,
1598         add tf_warning flag.
1599         (instantiate_type): Adjust prototype.
1600         (tsubst, tsubst_expr, tsubst_copy, lookup_template_class,
1601         do_type_instantiation, cp_build_qualified_type_real): Likewise.
1602         cp_build_qualified_type: Adjust.
1603         * class.c (instantiate_type): Adjust parameter. Rename itf_* to
1604         tf_*.
1605         * call.c (standard_conversion): Rename itf_* to tf_*.
1606         (reference_binding): Likewise.
1607         (convert_like_real): Likewise.
1608         * cvt.c (cp_convert_to_pointer): Likewise.
1609         (convert_to_reference): Likewise.
1610         * decl.c (lookup_namespace_name): Use tf_* flags.
1611         (make_typename_type): Likewise.
1612         (grokdeclarator): Likewise.
1613         * pt.c (convert_nontype_argument): Adjust COMPLAIN usage.
1614         (coerce_template_template_parms, convert_template_argument,
1615         coerce_template_parms, maybe_get_template_decl_from_type_decl,
1616         lookup_template_class, tsubst_friend_function, tsubst_friend_class,
1617         instantiate_class_template, tsubst_template_arg_vector,
1618         tsubst_template_parms, tsubst_aggr_type, tsubst_default_argument,
1619         tsubst_decl, tsubst_arg_types, tsubst_function_type,
1620         tsubst_call_declarator_parms, tsubst, tsubst_copy, tsubst_expr,
1621         instantiate_template, fn_type_unification,
1622         resolve_overloaded_unification, verify_class_unification,
1623         unify, get_bindings_real, do_type_instantiation,
1624         regenerate_decl_from_template, instantiate_decl,
1625         tsubst_initializer_list, tsubst_enum,
1626         get_mostly_instantiated_function_type,
1627         invalid_nontype_parm_type_p): Likewise.
1628         * tree.c (cp_build_qualified_type_real): Likewise.
1629         * typeck.c (build_binary_op): Rename itf_* to tf_*.
1630         (build_ptrmemfunc): Likewise.
1631         (convert_for_assignment): Likewise.
1632
1633 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
1634
1635         PR c++/109
1636         * decl.c (grokdeclarator): Allow friend declarations from
1637         dependent types.
1638         * decl2.c (handle_class_head): Don't push into template parm contexts.
1639         * pt.c (push_template_decl_real): Template parm contexts are never
1640         being defined.
1641
1642 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
1643
1644         * class.c: Include target.h.
1645         (check_bitfield_decl): Disregard EMPTY_FIELD_BOUNDARY,
1646         BITFIELDS_NBYTES_LIMITED and PCC_BITFIELD_TYPE_MATTERS for MS
1647         bit-field layout.
1648         * Make-lang.in: Adjust deps.
1649
1650 2002-02-05  Jason Merrill  <jason@redhat.com>
1651
1652         * error.c (dump_type): Be more helpful about VECTOR_TYPE.
1653
1654 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
1655
1656         * semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
1657         (finish_switch_cond): Set SWITCH_TYPE.
1658
1659 2002-02-04  Richard Henderson  <rth@redhat.com>
1660
1661         * method.c (use_thunk): Always initialize the block tree.  Reindent.
1662         * semantics.c (expand_body): Emit thunks after function, not before.
1663
1664 2002-02-04  Jason Merrill  <jason@redhat.com>
1665
1666         * decl.c (start_function): Call cplus_decl_attributes immediately
1667         after grokdeclarator.
1668
1669         * decl.c (start_function): Combine DECL_RESULT handling code.
1670
1671 2002-02-03  Jason Merrill  <jason@redhat.com>
1672
1673         * xref.c: Remove.
1674         * Make-lang.in (CXX_OBJS): Remove cp/xref.o
1675         (cp/xref.o): Remove dependencies.
1676         * class.c (finish_struct_1, check_methods): Don't call xref fns.
1677         (finish_struct_1): Likewise.
1678         * friend.c (make_friend_class): Likewise.
1679         * lex.c (cxx_init, cxx_finish, extract_interface_info): Likewise.
1680         * spew.c (read_process_identifier): Likewise.
1681
1682 2002-02-01  Jason Merrill  <jason@redhat.com>
1683
1684         PR c++/4872
1685         * decl.c (finish_function): Warn about a non-void function with
1686         no return statement and no abnormal exit.
1687         * cp-tree.h (struct cp_language_function): Add returns_abnormally.
1688         (current_function_returns_abnormally): New macro.
1689         * call.c (build_call): Set it.
1690
1691         * typeck.c (build_component_ref): Always complain about offsetof
1692         constructs on non-PODs.  Only make it an error for members of
1693         virtual bases.
1694
1695         * error.c (dump_scope): Don't add TFF_DECL_SPECIFIERS.
1696         (dump_function_decl): Always dump parms.
1697
1698         * decl2.c (finish_static_data_member_decl): Complain about a local
1699         class with a static data member.
1700
1701         PR c++/4286
1702         * search.c (lookup_field_1): Don't xref a static data member
1703         just because we looked it up.
1704
1705 2002-01-31  Jason Merrill  <jason@redhat.com>
1706
1707         * Make-lang.in (parse.c): Handle .output file.
1708
1709         PR c++/3395
1710         * decl.c (xref_tag): Remember early attributes in TYPE_ATTRIBUTES,
1711         not TREE_TYPE.
1712         * semantics.c (finish_class_definition): Adjust.
1713
1714         Allow attributes in parms and casts.
1715         * parse.y (named_parm): Don't strip attrs.
1716         (declmods): Remove 'attributes' production.
1717         (nonempty_cv_qualifiers): Accept attributes.
1718         (ATTRIBUTE): Give precedence.
1719         * decl.c (groktypename): Handle attributes.
1720         (grokparms): Likewise.
1721
1722 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
1723
1724         * decl2.c (cxx_decode_option): Pass 0 as last argument to
1725         cpp_handle_option.
1726         * lang-specs.h: Use cpp_unique_options instead of cpp_options
1727         when used together with cc1_options.
1728
1729 2002-01-29  Nathan Sidwell  <nathan@codesourcery.com>
1730
1731         PR c++/5132
1732         * typeck2.c (digest_init): Make sure non-array core type is
1733         instantiated.
1734         * decl2.c (reparse_absdcl_as_casts): Just store the type in the
1735         constructor, rather than build a new one.
1736         (build_expr_from_tree, CONSTRUCTOR case): Be careful with the
1737         PURPOSE of constructor elts.
1738
1739 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
1740
1741         * Make-lang.in (parse.c): Adjust expected number of
1742         shift-reduce conflicts.
1743         (decl.o): Depend on diagnostic.h.
1744         * decl.c: Include diagnostic.h.
1745         (grokdeclarator): Check for null pointer.
1746         (finish_function): Don't abort when
1747         current_binding_level->parm_flag != 1, if errors have
1748         occurred; throw away the statement tree and extra binding
1749         levels, and continue.
1750         * lex.c (note_list_got_semicolon): Check for null pointer.
1751         * method.c (hack_identifier): Just return error_mark_node if
1752         value is error_mark_node.
1753         * parse.y (primary: TYPEID(type_id)): No need to use
1754         TYPE_MAIN_VARIANT here.
1755         (handler_seq): Accept an empty list of catch clauses and
1756         generate a fake handler block to avoid later crashes.
1757         (ansi_raise_identifier): Accept the error token too.
1758         * semantics.c (begin_class_definition,
1759         finish_class_definition): Check for error_mark_node.
1760
1761 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
1762
1763         * typeck2.c (friendly_abort): Delete definition.
1764         * cp-tree.h (friendly_abort): Don't prototype.
1765         (my_friendly_assert): Use fancy_abort.
1766
1767 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1768
1769         * cp-tree.h (my_friendly_abort): Remove.
1770
1771 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
1772
1773         * spew.c (pending_inlines, pending_inlines_tail,
1774         processing_these_inlines): Make static.
1775         (mark_pending_inlines): Remove static.
1776         (begin_parsing_inclass_inline): If in function, save pi
1777         for GC to cp_function_chain->unparsed_inlines instead.
1778         (process_next_inline): Likewise.
1779         * cp-tree.h (struct cp_language_function): Add unparsed_inlines.
1780         (mark_pending_inlines): Add prototype.
1781         * decl.c (spew_debug): Remove unused extern.
1782         (mark_lang_function): Call mark_pending_inlines.
1783
1784 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
1785
1786         * call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
1787         init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
1788         semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
1789         Change my_fancy_abort() to abort().
1790
1791 2002-01-23  Jason Merrill  <jason@redhat.com>
1792
1793         PR c++/5453
1794         * class.c (fixed_type_or_null): Fix thinko.
1795
1796         PR c++/3331
1797         * init.c (resolve_offset_ref): Use build_indirect_ref.
1798
1799         * decl2.c (grokclassfn): Don't set DECL_REGISTER on 'this'.
1800
1801 2002-01-22  Jason Merrill  <jason@redhat.com>
1802
1803         * parse.y (function_body): Suppress the block for the outermost
1804         curly braces.
1805         * decl.c (pushdecl): Don't try to skip it.
1806         (begin_function_body): Keep the block we create, not the next one.
1807         * init.c (emit_base_init): Don't mess with keep_next_level.
1808
1809         * class.c (build_base_path): Tweak formatting.
1810
1811 2002-01-19  Nathan Sidwell  <nathan@codesourcery.com>
1812
1813         Fix regression introduced with patch for c++/775
1814         * parse.y (class_head_defn): Check for template specializations
1815         with a different class-key.
1816
1817 2002-01-17  Jason Merrill  <jason@redhat.com>
1818
1819         * decl.c (begin_constructor_body, begin_destructor_body): New fns.
1820         (begin_function_body): Call them and keep_next_level.
1821         * init.c (emit_base_init): Call keep_next_level.
1822         * semantics.c (setup_vtbl_ptr): Lose.
1823         * cp-tree.h (struct cp_language_function): Remove vtbls_set_up_p.
1824         (vtbls_set_up_p): Lose.
1825         * pt.c (tsubst_expr, CTOR_INITIALIZER): Call emit_base_init.
1826         * method.c (do_build_copy_constructor): Likewise.
1827         (synthesize_method): Call finish_mem_initializers.
1828         * parse.y (nodecls): Likewise.
1829
1830         * error.c (dump_type_suffix): Print the exception specs before
1831         recursing.
1832         (dump_function_decl): Here, too.
1833
1834         * cp-tree.h (TMPL_PARMS_DEPTH): Cast to signed HOST_WIDE_INT.
1835
1836 2002-01-10  Ira Ruben   <ira@apple.com>
1837
1838         PR c++/907
1839         * decl.c (start_method): Handle attrlist.
1840
1841 2002-01-10  Jakub Jelinek  <jakub@redhat.com>
1842
1843         * decl2.c (max_tinst_depth): Increase default limit to 500.
1844
1845 2002-01-10  Graham Stott  <grahams@redhat.com>
1846
1847         * spew.c (YYCHAR): Uppercase macro parameter and add
1848         parenthesis.
1849         (YYCODE): Likewise.
1850         (NAME): Uppercase macro parameter.
1851
1852 2002-01-09  Graham Stott  <grahams@redhat.com>
1853
1854         * decl.h (grokdeclarator): Wrap long line.
1855
1856         * semantics.c (FINISH_COND): Uppercase macro paramaters and
1857         add parenthesis.
1858
1859 2002-01-08  Graham Stott  <grahams@redhat.com>
1860
1861         * xref.c (FILE_NAME_ABSOLUTE_P): Add parenthesis.
1862         (PALLOC): Uppercase macro parameter and whitespace.
1863         (SALLOC): Uppercase macro parameter.
1864         (SFREE): Uppercase macros parameter, add parenthese and
1865         whitespace.
1866         (STREQL): Uppercase macro parameter and whitespace.
1867         (STRNEQ): Likewise.
1868         (STRLSS): Likewise.
1869         (STRLEQ): Likewise.
1870         (STRGTR): Likewise.
1871         (STRGEQ): Likewise.
1872
1873         * call.c (convert_like): Add parenthesis and wrap.
1874         (convert_like_with_context): Likewise.
1875         (ICS_RANK): Whitespace.
1876         (NEED_TEMPORARY_P): Remove parenthesis.
1877
1878         * class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
1879         whitespace.
1880         (VTT_MARKED_BINFO_P): Likewise.
1881
1882         * decl.c (BINDING_LEVEL): Add parenthesis.
1883         (DEF_OPERATOR): Likewise.
1884
1885         * mangle.c (MANGLE_TRACE): Add parenthesis.
1886         (MANGLE_TRACE_TREE): Likewise.
1887         (write_signed_number): Likewise.
1888         (write_unsigned_number): Likewise.
1889
1890         * pt.c (ccat): Uppercase macro parameter.
1891         (cat): Likewise
1892
1893         * search.c (SET_BINFO_ACCESS): Add parenthesis.
1894
1895 2002-01-07  Jason Merrill  <jason@redhat.com>
1896
1897         * decl2.c (coerce_new_type): Downgrade error for size_t mismatch
1898         to pedwarn.
1899
1900         PR c++/3536
1901         * method.c (make_thunk): If !flag_weak, give the thunk the
1902         function's linkage.
1903         (use_thunk): Here, too.
1904
1905 2002-01-07  Graham Stott  <grahams@redhat.com>
1906
1907         * error.c: Update copyright date.
1908         (print_scope_operator): Add parenthesis.
1909         (print_left_paren): Likewise.
1910         (print_right_paren): Likewise.
1911         (print_left_bracket): Likewise.
1912         (print_right_bracket): Likewise.
1913         (print_template_argument_list_start): Likewise.
1914         (print_template_argument_list_end): Likewise.
1915         (print_non_consecutive_character): Likewise.
1916         (print_tree_identifier): Likewise.
1917         (print_identifier): Likewise.
1918         (NEXT_CODE): Uppercase macro parameter.
1919         (ident_fndecl): Delete unused.
1920         (GLOBAL_THING): Likewise.
1921
1922 2002-01-06  Graham Stott  <grahams@redhat.com>
1923
1924         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK): Add parenthesis.
1925         (VAR_FUNCTION_OR_PARM_DECL_CHECK): Likewise.
1926         (VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK) Likewise.
1927         (RECORD_OR_UNION_TYPE_CHECK): Likewise.
1928         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Likewise.
1929         (C_IS_RESERVED_WORD): Uppercase macro parameter.
1930         (C_RID_YYCODE) Likewise.
1931         (ptrmem_cst): Use rtx.
1932         (LOCAL_BINDING_P): Add whitespace.
1933         (INHERITED_VALUE_BINDING_P): Likewise.
1934         (BINDING_SCOPE): Wrap long line.
1935         (BINDING_HAS_LEVEL_P): Remove parenthesis.
1936         (BINDING_VALUE): Wrap long line.
1937         (BINDING_TYPE): Whitespace.
1938         (IDENTIFIER_GLOBAL_VALUE): Add parenthesis.
1939         (SET_IDENTIFIER_GLOBAL_VALUE): Likewise.
1940         (IDENTIFIER_NAMESPACE_VALUE): Likewise.
1941         (SET_IDENTIFIER_NAMESPACE_VALUE: Likewise.
1942         (same_type_p): Uppercase macro parameters.
1943         (same_type_ignoring_top_level_qualifiers_p): Likewise.
1944         (OVL_FUNCTION): Wrap long line.
1945         (OVL_CHAIN): Whitespace.
1946         (OVL_CURRENT): Add parenthesis and whitespace.
1947         (OVL_NEXT): Whitespace.
1948         (OVL_USED): Likewise.
1949         (IDENTIFIER_TYPE_VALUE): Likewise.
1950         (REAL_IDENTIFIER_TYPE_VALUE): Remove parenthesis.
1951         (SET_IDENTIFIER_TYPE_VALUE): Add parenthesis and whitespace.
1952         (LANG_ID_FIELD): Whitespace.
1953         (SET_LANG_ID(NODE,VALUE,NAME): Likewise.
1954         (IDENTIFIER_LABEL_VALUE): Whitespace and wrap.
1955         (SET_IDENTIFIER_LABEL_VALUE): Whitespace.
1956         (IDENTIFIER_IMPLICIT_DECL): Whitespace and wrap.
1957         (SET_IDENTIFIER_IMPLICIT_DECL); Whitespace.
1958         (IDENTIFIER_ERROR_LOCUS): Whitespace and wrap.
1959         (SET_IDENTIFIER_ERROR_LOCUS); Whitespace.
1960         (IDENTIFIER_VIRTUAL_P): Likewise.
1961         (IDENTIFIER_OPNAME_P): Likewise.
1962         (IDENTIFIER_TYPENAME_P): Remove parenthesis.
1963         (C_TYPE_FIELDS_READONLY): Uppercase macro parameters.
1964         (C_SET_EXP_ORIGINAL_CODE): Likewise.
1965         (TYPE_ASSEMBLER_NAME_STRING): Wrap long line.
1966         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
1967         (IS_AGGR_TYPE): Uppercase macro parameter.
1968         (CLASS_TYPE_P): Likewise.
1969         (IS_AGGR_TYPE_CODE): Uppercase macro parameter and parenthesis.
1970         (IS_AGGR_TYPE_2): Whitespace.
1971         (TAGGED_TYPE_P): Uppercase macro parameter.
1972         (TYPE_BUILT_IN): Whitespace.
1973         (TYPE_FOR_JAVA): Likewise.
1974         (FUNCTION_ARG_CHAIN): Remove parenthesis.
1975         (FUNCTION_FIRST_USER_PARMTYPE): Add parenthesis.
1976         (FUNCTION_FIRST_USER_PARAM): Likewise.
1977         (PROMOTES_TO_AGGR_TYPE): Whitespace.
1978         (DERIVED_FROM_P): Add parenthesis and wrap.
1979         (UNIQUELY_DERIVED_FROM_P): Likewise.
1980         (ACCESSIBLY_UNIQUELY_DERIVED_P): Likewise.
1981         (PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
1982         (CLASSTYPE_USE_TEMPLATE): Whitespace.
1983         (CLASSTYPE_INLINE_FRIENDS): Remove parenthesis.
1984         (TYPE_GETS_DELETE): Add parenthesis.
1985         (TYPE_HAS_CONVERSION): Add parenthesis and wrap.
1986         (TYPE_HAS_ASSIGN_REF): Likewise,
1987         (TYPE_HAS_CONST_ASSIGN_REF): Likewise.
1988         (TYPE_HAS_INIT_REF): Likewise.
1989         (TYPE_HAS_CONST_INIT_REF): Likewise.
1990         (TYPE_BEING_DEFINED): Likewise.
1991         (TYPE_LANG_SPECIFIC): Likewise.
1992         (CLASSTYPE_RTTI): Likewise.
1993         (TYPE_OVERLOADS_CALL_EXPR): Likewise.
1994         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
1995         (TYPE_OVERLOADS_ARROW): Likewise.
1996         (TYPE_USES_MULTIPLE_INHERITANCE): Likewise.
1997         (TYPE_USES_VIRTUAL_BASECLASSES): Add parenthesis.
1998         (CLASSTYPE_METHOD_VEC): Likewise.
1999         (CLASSTYPE_MARKED_N): Likewise.
2000         (CLASSTYPE_MARKED): Likewise.
2001         (CLASSTYPE_MARKED2): Likewise.
2002         (CLASSTYPE_MARKED3): Likewise.
2003         (CLASSTYPE_MARKED4): Likewise.
2004         (CLASSTYPE_MARKED5): Likewise.
2005         (CLASSTYPE_MARKED6): Likewise.
2006         (SET_CLASSTYPE_MARKED): Whitespace.
2007         (CLEAR_CLASSTYPE_MARKED): Likewise.
2008         (SET_CLASSTYPE_MARKED2): Likewise.
2009         (CLEAR_CLASSTYPE_MARKED2): Likewise.
2010         (SET_CLASSTYPE_MARKED3): Likewise.
2011         (CLEAR_CLASSTYPE_MARKED3): Likewise.
2012         (SET_CLASSTYPE_MARKED4): Likewise.
2013         (CLEAR_CLASSTYPE_MARKED4): Likewise.
2014         (SET_CLASSTYPE_MARKED5): Likewise.
2015         (CLEAR_CLASSTYPE_MARKED5): Likewise.
2016         (SET_CLASSTYPE_MARKED6): Likewise.
2017         (CLEAR_CLASSTYPE_MARKED6): Likewise.
2018         (CLASSTYPE_TAGS): Likewise.
2019         (CLASSTYPE_VSIZE): Likewise.
2020         (CLASSTYPE_VBASECLASSES): Likewise.
2021         (CANONICAL_BINFO): Add parenthesis.
2022         (CLASSTYPE_SIZE(NODE): Likewise.
2023         (CLASSTYPE_SIZE_UNIT): Likewise.
2024         (CLASSTYPE_ALIGN(NODE): Likewise.
2025         (CLASSTYPE_USER_ALIGN): Likewise.
2026         (TYPE_JAVA_INTERFACE): Likewise.
2027         (CLASSTYPE_PURE_VIRTUALS): Likewise.
2028         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Whitespace and wrap.
2029         (TYPE_HAS_DEFAULT_CONSTRUCTOR): Likewise.
2030         (CLASSTYPE_HAS_MUTABLE): Likewise.
2031         (CLASSTYPE_FRIEND_CLASSES): Likewise. Likewise.
2032         (CLASSTYPE_DECLARED_CLASS): Whitespace and wrap.
2033         (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Likewise.
2034         (CLASSTYPE_REF_FIELDS_NEED_INIT): Likewise.
2035         (CLASSTYPE_INTERFACE_ONLY): Likewise.
2036         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
2037         (CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
2038         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
2039         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
2040         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
2041         (CLASSTYPE_DEBUG_REQUESTED): Whitespace and wrap.
2042         (BINFO_UNSHARED_MARKED): Whitespace.
2043         (BINFO_MARKED): Whitespace and wrap.
2044         (SET_BINFO_MARKED): Likewise.
2045         (CLEAR_BINFO_MARKED): Likewise.
2046         (BINFO_VTABLE_PATH_MARKED): Likewise.
2047         (SET_BINFO_VTABLE_PATH_MARKED): Likewise.
2048         (CLEAR_BINFO_VTABLE_PATH_MARKED): Likewise.
2049         (BINFO_SUBVTT_INDEX): Remove parenthesis.
2050         (BINFO_VPTR_INDEX): Likewise.
2051         (BINFO_PRIMARY_BASE_OF): Likewise,
2052         (CLASSTYPE_VFIELDS): Whitespace.
2053         (VF_DERIVED_VALUE): Wrap long line.
2054         (NAMESPACE_LEVEL): Whitespace.
2055         (CAN_HAVE_FULL_LANG_DECL_P): Remove parenthesis.
2056         (DEFARG_POINTER): Whitespace.
2057         (DECL_NEEDED_P): Remove parenthesis.
2058         (DECL_LANGUAGE): Whitespace.
2059         (SET_DECL_LANGUAGE): Add parenthesis.
2060         (DECL_CONSTRUCTOR_P): Whitespace and wrap.
2061         (DECL_OVERLOADED_OPERATOR_P): Remove parenthesis.
2062         (DECL_IN_AGGR_P): Whitespace.
2063         (DECL_FRIEND_P): Likewise.
2064         (DECL_BEFRIENDING_CLASSES): Likewise.
2065         (DECL_STATIC_FUNCTION_P): Whitespace and wrap.
2066         (DECL_NONCONVERTING_P): Whitespace.
2067         (DECL_PURE_VIRTUAL_P): Likewise.
2068         (DECL_NEEDS_FINAL_OVERRIDER_P): Likewise.
2069         (DECL_PENDING_INLINE_INFO): Whitespace.
2070         (DECL_SORTED_FIELDS): Likewise.
2071         (DECL_DEFERRED_FN): Likewise.
2072         (DECL_TEMPLATE_INFO): Likewise.
2073         (CLASSTYPE_TEMPLATE_INFO): Whitespace and wrap.
2074         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO); Likewise.
2075         (SET_TYPE_TEMPLATE_INFO): Add parenthesis.
2076         (TMPL_ARGS_LEVEL): Likewise.
2077         (SET_TMPL_ARGS_LEVEL): Likewise.
2078         (INNERMOST_TEMPLATE_PARMS): Whitespace.
2079         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter.
2080         (INTEGRAL_CODE_P(CODE): Add parenthesis.
2081         (CP_INTEGRAL_TYPE_P): Remove parenthesis.
2082         (TYPE_HAS_CONSTRUCTOR): Whitespace.
2083         (TREE_HAS_CONSTRUCTOR): Likewise.
2084         (TYPE_HAS_DESTRUCTOR): Likewise.
2085         (TYPE_HAS_REAL_ASSIGN_REF): Likewise.
2086         (TYPE_HAS_COMPLEX_ASSIGN_REF): Likewise.
2087         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
2088         (TYPE_HAS_COMPLEX_INIT_REF): Likewise.
2089         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): Likewise.
2090         (TYPE_PTRMEMFUNC_P): Likewise.
2091         (TYPE_PTRMEMFUNC_FLAG): Likewise.
2092         (TYPE_GET_PTRMEMFUNC_TYPE): Likewise.
2093         (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
2094         (TYPE_PTRMEM_CLASS_TYPE): Remove parenthesis.
2095         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
2096         (DECL_ACCESS): Whitespace.
2097         (DECL_GLOBAL_CTOR_P): Remove parenthesis.
2098         (DECL_GLOBAL_DTOR_P): Likewise.
2099         (GLOBAL_INIT_PRIORITY): Likewise.
2100         (DECL_TEMPLATE_PARMS): Likewise.
2101         (DECL_TEMPLATE_RESULT): Likewise.
2102         (DECL_TEMPLATE_INSTANTIATIONS): Likewise.
2103         (DECL_TEMPLATE_SPECIALIZATIONS): Likewise.
2104         (DECL_IMPLICIT_TYPEDEF_P): Remove parenthesis.
2105         (SET_DECL_IMPLICIT_TYPEDEF_P): Likewise.
2106         (PRIMARY_TEMPLATE_P): Add parenthesis.
2107         (DECL_USE_TEMPLATE): Whitespace.
2108         (CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
2109         (SET_CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
2110         (CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
2111         (SET_CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
2112         (CALL_DECLARATOR_PARMS): Remove parenthesis.
2113         (CALL_DECLARATOR_QUALS): Likewise.
2114         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
2115         (TEMP_NAME_P): Wrap.
2116         (VFIELD_NAME_P): Likewise.
2117         (B_SET): Uppercase macro parameters and add parenthesis.
2118         (B_CLR): Likewise.
2119         (B_TST): Likewise.
2120         (LOOKUP_NAMESPACES_ONLY): Uppercase macro parameters.
2121         (LOOKUP_TYPES_ONLY): Uppercase macro parameters.
2122         (LOOKUP_QUALIFIERS_ONLY): Uppercase macro parameters.
2123         (same_or_base_type_p): Likewise.
2124         (cp_deprecated): Likewise.
2125
2126 2002-01-05  Richard Henderson  <rth@redhat.com>
2127
2128         * semantics.c (expand_body): Revert last change.
2129
2130 2002-01-04  Jason Merrill  <jason@redhat.com>
2131
2132         PR c++/4122
2133         * class.c (update_vtable_entry_for_fn): Set delta to zero for a
2134         lost primary.
2135
2136         * class.c (build_vtbl_initializer): Check for a lost primary
2137         before calculating the vtable entry to throw away.
2138
2139 2002-01-02  Jason Merrill  <jason@redhat.com>
2140
2141         * semantics.c (expand_body): Call outlining_inline_function when
2142         emitting an inline function out of line.
2143
2144 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2145
2146         PR c++/5116, c++/764 reversion
2147         * call.c (build_new_op): Revert the instantiations. They are
2148         incorrect.
2149
2150 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2151
2152         PR c++/5089
2153         * decl2.c (reparse_absdcl_as_casts): Don't warn about casts to void.
2154
2155 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2156
2157         PR c++/3716
2158         * pt.c (tsubst_aggr_type): Move pmf handling into tsubst.
2159         (tsubst, case POINTER_TYPE): Handle pmfs here.
2160         (tsubst, case OFFSET_TYPE): Check it is not an offset to
2161         reference. If it is offset to FUNCTION_TYPE, create a METHOD_TYPE.
2162
2163 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2164
2165         PR c++/35
2166         * cp-tree.h (DECL_LANG_FLAG_0): Used for PARM_DECL too.
2167         (DECL_TEMPLATE_PARM_P): A PARM_DECL might be one too.
2168         * pt.c (process_template_parm): SET_DECL_TEMPLATE_PARM_P on the
2169         PARM_DECL.
2170         (tsubst_template_parms): Break up loop statements.
2171         (tsubst_decl, case PARM_DECL): Copy DECL_TEMPLATE_PARM_P. Template
2172         parm PARM_DECLs don't get promoted.
2173
2174 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2175
2176         PR c++/5123
2177         * typeck.c (build_component_ref): Cope with a TEMPLATE_ID_EXPR.
2178         (build_x_function_call): Cope with a COMPONENT_REF containing a
2179         TEMPLATE_ID_EXPR.
2180
2181 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2182
2183         PR c++/5213
2184         * pt.c (convert_template_argument): Be more careful determining
2185         when RECORD_TYPE templates are or are not templates.
2186
2187 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2188
2189         PR c++/775
2190         * cp-tree.h (handle_class_head): Adjust prototype.
2191         * decl2.c (handle_class_head): Add DEFN_P and NEW_TYPE_P
2192         parameters. Use for all class heads.
2193         * parse.y (named_class_head_sans_basetype, named_class_head,
2194         named_complex_class_head_sans_basetype,
2195         named_class_head_sans_basetype_defn,
2196         unnamed_class_head): Remove.
2197         (class_head, class_head_apparent_template): Recognize class heads
2198         (class_head_decl, class_head_defn): New reductions. Process class
2199         heads.
2200         (structsp): Adjust class definition and class declaration
2201         reductions.
2202         (maybe_base_class_list): Give diagnostic on empty list.
2203
2204 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2205
2206         PR c++/4379
2207         * typeck.c (build_x_unary_op): Don't destroy the OFFSET_REF on a
2208         single non-static member.
2209         (unary_complex_lvalue): If it cannot be a pointer to member, don't
2210         make it so. Check it is not pointer to reference.
2211
2212 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2213
2214         PR c++/5132
2215         * decl2.c (reparse_absdcl_as_casts): Don't digest_init if we
2216         are processing a template decl.
2217
2218 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
2219
2220         PR c++/5116, c++/764
2221         * call.c (build_new_op): Make sure template class operands are
2222         instantiated. Simplify arglist construction.
2223
2224 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2225
2226         * call.c (build_user_type_conversion_1): Use my_friendly_assert
2227         rather than if ... abort.
2228         * cvt.c (convert_to_reference): Likewise.
2229         * semantics.c (setup_vtbl_ptr): Likewise.
2230         * pt.c (lookup_template_class): Comment typo.
2231
2232 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2233
2234         PR c++/5125
2235         * pt.c (push_template_decl_real): Make sure DECL has
2236         DECL_LANG_SPECIFIC.
2237
2238 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
2239
2240         PR c++/335
2241         * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer
2242         for non-reference fields.
2243         * typeck.c (require_complete_type): Use resolve_offset_ref).
2244
2245 2001-12-26  Nathan Sidwell  <nathan@codesourcery.com>
2246
2247         PR c++/196
2248         * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF.
2249
2250 2001-12-24  Nathan Sidwell  <nathan@codesourcery.com>
2251
2252         PR c++/160
2253         * typeck.c (build_modify_expr): Remove old unreachable code & tidy
2254         up. Don't stabilize_references when initializing a reference.
2255
2256 2001-12-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2257
2258         * decl2.c (lang_f_options): Const-ify.
2259
2260 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
2261
2262         * config-lang.in (diff_excludes): Remove.
2263
2264 2001-12-19  Nathan Sidwell  <nathan@codesourcery.com>
2265
2266         PR c++/90
2267         * typeck.c (build_function_call_real): Use original function
2268         expression for errors.
2269
2270 2001-12-18  Jason Merrill  <jason@redhat.com>
2271
2272         PR c++/3242
2273         * class.c (add_method): Do compare 'this' quals when trying to match a
2274         used function.  Don't defer to another used function.
2275
2276 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
2277
2278         * pt.c (instantiate_clone): Remove, fold into ...
2279         (instantiate_template): ... here. Simplify by removing mutual
2280         recursion.
2281         * typeck2.c (build_m_component_ref): Don't cv qualify the function
2282         pointed to by a pointer to function.
2283         * class.c (delete_duplicate_fields_1): Typo.
2284
2285 2001-12-18  Jason Merrill  <jason@redhat.com>
2286
2287         C++ ABI change: destroy value arguments in caller.
2288         * semantics.c (genrtl_start_function, genrtl_finish_function): Don't
2289         create an extra binding level for the parameters.
2290         * decl.c (store_parm_decls): Don't do parameter cleanups.
2291
2292 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
2293
2294         * call.c (build_new_method_call): Use '%#V'.
2295         * error.c (cv_to_string): Use V parameter to determine padding.
2296
2297 2001-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
2298
2299         * call.c, decl2.c, init.c: Use "built-in" and "bit-field"
2300         spellings in messages.
2301
2302 2001-12-17  Zack Weinberg  <zack@codesourcery.com>
2303
2304         * cp-tree.h: Delete #defines for cp_error, cp_warning,
2305         cp_pedwarn, and cp_compiler_error.
2306         * call.c, class.c, cp-tree.h, cvt.c, decl.c, decl2.c, error.c,
2307         except.c, friend.c, init.c, lex.c, method.c, parse.y, pt.c,
2308         rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
2309         typeck2.c: Change calls to the above macros to use their
2310         language-independent equivalents: error, warning, pedwarn, and
2311         internal_error respectively.
2312
2313 2001-12-16  Neil Booth  <neil@daikokuya.demon.co.uk>
2314
2315         * decl2.c (finish_file): Remove back_end_hook.
2316
2317 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
2318
2319         * ChangeLog.1, ChangeLog.2, ChangeLog, NEWS, call.c, class.c,
2320         cp-tree.h, decl.c, decl2.c, except.c, operators.def, optimize.c,
2321         pt.c, rtti.c, semantics.c, typeck.c: Fix spelling errors.
2322
2323 2001-12-15  Joseph S. Myers  <jsm28@cam.ac.uk>
2324
2325         * lang-options.h: Use American spelling in messages.
2326
2327 2001-12-13  Jason Merrill  <jason@redhat.com>
2328
2329         * Make-lang.in (parse.h): Separate rule, just depend on parse.c.
2330
2331         Use cleanups to run base and member destructors.
2332         * init.c (push_base_cleanups): New function, split out from...
2333         (build_delete): ...here.  Lose !TYPE_HAS_DESTRUCTOR code.
2334         * decl.c (finish_destructor_body): Move vbase destruction code to
2335         push_base_cleanups.
2336         (begin_function_body, finish_function_body): New fns.
2337         (finish_function): Move [cd]tor handling and call_poplevel to
2338         finish_function_body.
2339         (pushdecl): Skip the new level.
2340         * semantics.c (genrtl_try_block): Don't call end_protect_partials.
2341         (setup_vtbl_ptr): Call push_base_cleanups.
2342         * method.c (synthesize_method): Call {begin,end}_function_body.
2343         * pt.c (tsubst_expr): Handle COMPOUND_STMT_BODY_BLOCK.
2344         * cp-tree.h: Declare new fns.
2345         * parse.y (function_body, .begin_function_body): New nonterminals.
2346         (fndef, pending_inline, function_try_block): Use function_body.
2347         (ctor_initializer_opt, function_try_block): No longer has a value.
2348         (base_init): Remove .set_base_init token.
2349         (.set_base_init, compstmt_or_error): Remove.
2350         * Make-lang.in (parse.c): Expect two fewer s/r conflicts.
2351
2352         * optimize.c (maybe_clone_body): Fix parameter updating.
2353
2354 2001-12-12  Jason Merrill  <jason@redhat.com>
2355
2356         * decl.c (store_parm_decls): Remove parms_have_cleanups cruft.
2357         * semantics.c (genrtl_start_function): Don't pass
2358         parms_have_cleanups or push an extra binding level.
2359         (genrtl_finish_function): Lose cleanup_label cruft.
2360
2361         * cp-tree.h (struct cp_language_function): Remove x_ctor_label.
2362         (ctor_label): Remove.
2363         * semantics.c (finish_return_stmt): Lose ctor_label support.
2364         * decl.c (finish_constructor_body, mark_lang_function): Likewise.
2365         * typeck.c (check_return_expr): Check DECL_DESTRUCTOR_P, not
2366         dtor_label.
2367
2368         * call.c (build_new_method_call): Let resolves_to_fixed_type_p
2369         check for [cd]tors.
2370         * class.c (fixed_type_or_null, case INDIRECT_REF): Fix.
2371
2372         * decl.c (finish_function): Check VMS_TARGET, not VMS.
2373
2374         * decl.c (start_cleanup_fn): Remove redundant pushlevel.
2375         (end_cleanup_fn): And poplevel.
2376
2377         * semantics.c (setup_vtbl_ptr): Always build a CTOR_INITIALIZER
2378         if we're in a template.
2379
2380 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
2381
2382         * cp-tree.h (DESTRUCTOR_DECL_PREFIX, DESTRUCTOR_NAME_P,
2383         ANON_PARMNAME_FORMAT, ANON_PARMNAME_P, DESTRUCTOR_NAME_FORMAT,
2384         THIS_NAME_P): Delete.
2385         * spew.c (read_process_identifier): Remove DESTRUCTOR_NAME_P,
2386         THIS_NAME_P and ANON_PARMNAME_P tests from warning about clash
2387         with internal naming scheme.
2388         * error.c (dump_decl): Remove DESTRUCTOR_NAME_P use.
2389
2390 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
2391
2392         * decl.c (grokdeclarator): Deprecated implicit typename use.
2393
2394 2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
2395
2396         PR g++/51
2397         * parse.y (frob_specs): Indicate it is a language linkage which
2398         contained the extern.
2399         * decl.c (grokdeclarator): Allow extern language linkage with
2400         other specifiers.
2401
2402 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
2403
2404         PR g++/72
2405         * decl.c (add_binding): Don't reject duplicate typedefs involving
2406         template parameters.
2407
2408 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
2409
2410         * parse.y, semantics.c: Similarly.
2411
2412 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
2413
2414         PR g++/87
2415         * cp-tree.h (DECL_COPY_CONSTRUCTOR_P): Use copy_fn_p.
2416         (copy_args_p): Rename to ...
2417         (copy_fn_p): ... here.
2418         (grok_special_member_properties): New function.
2419         (grok_op_properties): Lose VIRTUALP parameter.
2420         (copy_assignment_arg_p): Remove.
2421         * call.c (build_over_call): Use copy_fn_p.
2422         * decl.c (grokfndecl): Reformat. Adjust call to
2423         grok_op_properties.
2424         (copy_args_p): Rename to ...
2425         (copy_fn_p): ... here. Reject template functions. Check for pass
2426         by value.
2427         (grok_special_member_properties): Remember special functions.
2428         (grok_ctor_properties): Don't remember them here, just check.
2429         (grok_op_properties): Likewise.
2430         (start_method): Call grok_special_member_properties.
2431         * decl2.c (grokfield): Likewise.
2432         (copy_assignment_arg_p): Remove.
2433         (grok_function_init): Don't remember abstract assignment here.
2434         * pt.c (instantiate_class_template): Call
2435         grok_special_member_properties.
2436         (tsubst_decl): Adjust grok_op_properties call.
2437
2438 2001-12-08  Aldy Hernandez  <aldyh@redhat.com>
2439
2440         * lex.c (rid_to_yy): Add RID_CHOOSE_EXPR and
2441         RID_TYPES_COMPATIBLE_P.
2442
2443 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2444
2445         * semantics.c (simplify_aggr_init_exprs_r): Add DIRECT_BIND flag in
2446         call to build_aggr_init.
2447         * cp-tree.h (DIRECT_BIND): Document new use of DIRECT_BIND.
2448
2449 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
2450
2451         * parse.y: Replace uses of the string non-terminal with STRING.
2452         Don't perform string concatentaion here.
2453         (string): Remove non-terminal.
2454         * semantics.c (finish_asm_stmt): Don't concatenate strings here.
2455
2456 2001-12-05  Jason Merrill  <jason@redhat.com>
2457
2458         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
2459         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
2460         * tree.c (cp_start_inlining, cp_end_inlining): New fns.
2461         * pt.c (push_tinst_level): No longer static.
2462         * cp-tree.h: Declare them.
2463
2464         * init.c (resolve_offset_ref): Don't check access for the base
2465         conversion to access a FIELD_DECL.
2466
2467         * cp-tree.h (TYPE_REFFN_P): New macro.
2468         * decl.c (bad_specifiers): Check it, too.
2469
2470         * rtti.c (create_pseudo_type_info): Set CLASSTYPE_INTERFACE_ONLY
2471         on the __*_type_info type if we haven't seen a definition.
2472
2473 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
2474
2475         * decl.c: Include c-common.h.
2476         (shadow_warning): Move to c-common.c.
2477
2478 Wed Dec  5 17:00:49 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2479
2480         * decl.c (duplicate_decls): Don't copy DECL_NO_CHECK_MEMORY_USAGE.
2481
2482 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2483
2484         * pt.c (end_template_parm_list): Clear TREE_CHAIN of each parm.
2485
2486 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
2487
2488         PR g++/164
2489         * init.c (sort_base_init): Allow binfos to be directly specified.
2490         * method.c (do_build_copy_constructor): Explicitly convert to the
2491         base instance.
2492         (do_build_assign_ref): Likewise.
2493
2494 2001-12-03  Hans-Peter Nilsson  <hp@bitrange.com>
2495
2496         * decl.c (xref_basetypes): Don't use C99 construct in tag_code
2497         declaration and initialization.
2498
2499 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
2500
2501         * typeck2.c: Remove leading capital from diagnostic messages, as
2502         per GNU coding standards.
2503
2504 2001-12-03  Mumit Khan  <khan@nanotech.wisc.edu>
2505
2506         PR c++/3394
2507         * decl.c (xref_basetypes): Handle attributes between
2508         'class' and name.
2509
2510 2001-12-03  Nathan Sidwell  <nathan@codesourcery.com>
2511
2512         PR g++/3381
2513         * parse.y (named_complex_class_head_sans_basetype): Add new
2514         reduction.
2515         * Make-lang.in (parse.c): Adjust expected conflict count.
2516
2517 2001-12-03  Jason Merrill  <jason@redhat.com>
2518
2519         * class.c (finish_vtbls): Fill in BINFO_VPTR_FIELD in the
2520         immediate binfos for our virtual bases.
2521
2522 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
2523
2524         * call.c (build_java_interface_fn_ref): Similarly.
2525         * except.c (is_admissible_throw_operand): Similarly.
2526         * init.c (build_java_class_ref): Similarly.
2527         * xref.c (open_xref_file): Similarly.
2528
2529 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
2530
2531         * class.c (finish_struct): Remove trailing periods from messages.
2532         * decl.c (check_tag_decl): Similarly.
2533         * lex.c (cxx_set_yydebug): Similarly.
2534         * typeck2.c (friendly_abort): Similarly.
2535
2536 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
2537
2538         PR c++/3048
2539         * cp-tree.h (ovl_member): Remove.
2540         * decl2.c (merge_functions): Handle extern "C" functions
2541         specially.
2542         * tree.c (ovl_member): Remove.
2543
2544 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
2545
2546         PR c++/4842
2547         * class.c (get_basefndecls): Take an IDENTIFIER_NODE, not a
2548         FUNCTION_DECL, as input.
2549         (mark_overriders): Remove.
2550         (warn_hidden): Rework for the new ABI.
2551
2552 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
2553
2554         PR c++/3471
2555         * call.c (convert_like_real): Do not build additional temporaries
2556         for rvalues of class type.
2557
2558 2001-11-28  Nathan Sidwell  <nathan@codesourcery.com>
2559
2560         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Use lookup base.
2561         (ACCESSIBLY_UNIQUELY_DERIVED_FROM_P): Likewise.
2562         (PUBLICLY_UNIQUELY_DERIVED_FROM_P: Likewise.
2563         (DERIVED_FROM_P): Likewise.
2564         (enum base_access): Renumber, add ba_quiet bit mask.
2565         (get_binfo): Remove.
2566         (get_base_distance): Remove.
2567         (binfo_value): Remove.
2568         (ACCESSIBLY_DERIVED_FROM_P): Remove.
2569         * call.c (standard_conversion): Use lookup_base.
2570         * class.c (strictly_overrides): Likewise.
2571         (layout_virtual_bases): Likewise.
2572         (warn_about_ambiguous_direct_bases): Likewise.
2573         (is_base_of_enclosing_class): Likewise.
2574         (add_vcall_offset_vtbl_entries_1): Likewise.
2575         * cvt.c (build_up_reference): Adjust comment.
2576         * init.c (build_member_call): Reformat.
2577         * search.c (get_binfo): Remove.
2578         (get_base_distance_recursive): Remove.
2579         (get_base_distance): Remove.
2580         (lookup_base_r): Tweak.
2581         (lookup_base): Add ba_quiet control. Complete the types here.
2582         (covariant_return_p): Use lookup_base.
2583         * tree.c (binfo_value): Remove.
2584         (maybe_dummy_object): Use lookup_base.
2585         * typeck.c (build_static_cast): Use lookup_base.
2586         (get_delta_difference): Likewise.
2587         * typeck2.c (binfo_or_else): Use lookup_base.
2588         (build_scoped_ref): Add back error_mark_check.
2589         (build_m_component_ref): Use lookup_base.
2590
2591 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
2592
2593         * Make-lang.in (c++.generated-manpages): New dummy target.
2594
2595 Tue Nov 27 09:03:47 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2596
2597         * Make-lang.in (cp-lang.o): Depends on c-common.h.
2598         * cp-lang.c (c-common.h): Include.
2599         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
2600         * decl.c (cxx_init_decl_processing): Don't set lang_safe_from_p.
2601         * expr.c (init_cplus_expand): Don't set lang_expand_constant.
2602
2603 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
2604
2605         * decl2.c (c_language): Move to c-common.c.
2606         * lex.c (cxx_post_options, cxx_init_options): Use c-common.c
2607         functions.
2608         (cxx_init): Update.
2609
2610 2001-11-26  Jason Merrill  <jason@redhat.com>
2611
2612         * call.c (joust): Remove COND_EXPR hack.
2613
2614 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
2615
2616         * search.c (lookup_base_r): Declare bk in variable declaration
2617         space.
2618
2619 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
2620
2621         PR g++/3145
2622         * class.c (build_vbase_pointer): Remove.
2623         (build_vbase_path): Remove.
2624         (build_base_path): New function.
2625         * cp-tree.h (base_access, base_kind): New enumerations.
2626         (build_base_path): Declare.
2627         (convert_pointer_to_real): Remove.
2628         (convert_pointer_to): Remove.
2629         (lookup_base): Declare.
2630         (convert_pointer_to_vbase): Remove.
2631         * call.c (build_scoped_method_call): Use lookup_base &
2632         build_base_path instead of convert_pointer_to_real,
2633         get_base_distance & get_binfo.
2634         (build_over_call): Likewise.
2635         * cvt.c (cp_convert_to_pointer): Likewise.
2636         (convert_to_pointer_force): Likewise.
2637         (build_up_reference): Likewise.
2638         (convert_pointer_to_real): Remove.
2639         (convert_pointer_to): Remove.
2640         * init.c (dfs_initialize_vtbl_ptrs): Use build_base_path
2641         instead of convert_pointer_to_vbase & build_vbase_path.
2642         (emit_base_init): Use build_base_path instead of
2643         convert_pointer_to_real.
2644         (expand_virtual_init): Lose unrequired conversions.
2645         (resolve_offset_ref): Use lookup_base and build_base_path
2646         instead of convert_pointer_to.
2647         * rtti.c (build_dynamic_cast_1): Use lookup_base &
2648         build_base_path instead of get_base_distance & build_vbase_path.
2649         * search.c (get_vbase_1): Remove.
2650         (get_vbase): Remove.
2651         (convert_pointer_to_vbase): Remove.
2652         (lookup_base_r): New function.
2653         (lookup_base): New function.
2654         * typeck.c (require_complete_type): Use lookup_base &
2655         build_base_path instead of convert_pointer_to.
2656         (build_component_ref): Likewise.
2657         (build_x_function_call): Likewise.
2658         (get_member_function_from_ptrfunc): Likewise.
2659         (build_component_addr): Likewise.
2660         * typeck2.c (build_scoped_ref): Likewise.
2661
2662 2001-11-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
2663
2664         * cp-tree.h (CP_TYPE_QUALS): Removed.
2665         * decl.c (cxx_init_decl_processing): Don't set lang_dump_tree.
2666         * cp-lang.c: Set LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN and
2667         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN.
2668         * dump.c (cp_dump_tree): Use void* dump_info argument to match
2669         lang-hooks prototype.
2670         * call.c, cp-tree.h, cvt.c, decl.c, init.c, mangle.c, method.c, pt.c,
2671         rtti.c, semantics.c, tree.c, typeck.c, typeck2.c: All references to
2672         CP_TYPE_QUALS changed to cp_type_quals.
2673         * Make-lang.in: References to c-dump.h changed to tree-dump.h.
2674         (CXX_C_OBJS): Remove c-dump.o.
2675
2676 2001-11-21  Mark Mitchell  <mark@codesourcery.com>
2677
2678         PR c++/3637
2679         * pt.c (lookup_template_class): Ensure that all specializations
2680         are registered on the list corresponding to the most general
2681         template.
2682
2683 2001-11-20  Mark Mitchell  <mark@codesourcery.com>
2684
2685         * call.c (non_reference): Add documentation.
2686         (convert_class_to_reference): Do not strip reference types
2687         from conversion operators.
2688         (maybe_handle_ref_bind): Simplify.
2689         (compare_ics): Correct handling of references.
2690
2691 2001-11-19  John Wilkinson <johnw@research.att.com>
2692
2693         * dump.c (dump_op): New function.
2694         (cp_dump_tree): Dump CLASSTYPE_TEMPLATE_SPECIALIZATION.  Use
2695         dump_op.  Dump DECL_MUTABLE, access and staticness for VAR_DECLs.
2696         DECL_PURE_VIRTUAL_P, DECL_VIRTUAL_P,
2697
2698 2001-11-19  Mark Mitchell  <mark@codesourcery.com>
2699
2700         PR4629
2701         * semantics.c (finish_sizeof): Make sure that expression created
2702         while processing a template do not have a type.
2703         (finish_alignof): Likewise.
2704         * typeck.c (c_sizeof): Likewise.
2705         (expr_sizeof): Likewise.
2706
2707 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
2708
2709         * lex.c (cxx_finish): Call c_common_finish.
2710         (finish_parse): Remove.
2711
2712 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2713
2714         * decl.c (create_array_type_for_decl): Check if NAME is NULL_TREE
2715         when displaying error message about missing array bounds.
2716
2717 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2718
2719         * mangle.c (write_expression): Handle CAST_EXPR, STATIC_CAST_EXPR,
2720         CONST_CAST_EXPR.
2721         * operators.def: Add CAST_EXPR, STATIC_CAST_EXPR, CONST_CAST_EXPR.
2722
2723 2001-11-16  Neil Booth  <neil@daikokuya.demon.co.uk>
2724
2725         * cp-tree.h (print_class_statistics): Restore.
2726
2727 2001-11-15  Jason Merrill  <jason@redhat.com>
2728
2729         * method.c (use_thunk): Don't emit debugging information for thunks.
2730
2731         * parse.y: Add ... IDENTIFIER SCOPE and ... PTYPENAME SCOPE expansions.
2732         * decl.c (make_typename_type): Handle getting a class template.
2733         * search.c (lookup_field_r): A class template is good enough for
2734         want_type.
2735
2736         * call.c (convert_like_real): Only use cp_convert for the bad part.
2737         (standard_conversion): Also allow bad int->enum.
2738         * typeck.c (ptr_reasonably_similar): Also allow functions to
2739         interconvert.  Pointers to same-size integers are reasonably
2740         similar.
2741
2742         * cvt.c (convert_to_void): If we build a new COND_EXPR, always
2743         give it void type.
2744
2745 2001-11-15  Nathan Sidwell  <nathan@codesourcery.com>
2746
2747         PR g++/3154
2748         * init.c (sort_base_init): Remove unreachable code.
2749         (expand_member_init): Adjust comment to reflect reality. Simplify
2750         and remove unreachable code.
2751
2752 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
2753
2754         * cp-tree.h (init_reswords, cxx_init_decl_processing): New.
2755         (cxx_init): Update prototype.
2756         * decl.c (init_decl_processing): Rename.  Move null node init
2757         to its creation time.
2758         * lex.c (cxx_init_options): Update.
2759         (cxx_init): Combine with old init_parse; also call
2760         cxx_init_decl_processing.
2761
2762 2001-11-14  Richard Sandiford  <rsandifo@redhat.com>
2763
2764         * decl.c (check_initializer): Try to complete the type of an
2765         array element before checking whether it's complete.  Don't
2766         complain about arrays with complete element types but an
2767         unknown size.
2768         (cp_finish_decl): Build the hierarchical constructor before
2769         calling maybe_deduce_size_from_array_init.
2770
2771 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
2772
2773         * Make-lang.in: Change all uses of $(manext) to $(man1ext).
2774
2775 2001-11-13  Nathan Sidwell  <nathan@codesourcery.com>
2776
2777         PR g++/4206
2778         * parse.y (already_scoped_stmt): Remove.
2779         (simple_stmt, WHILE & FOR): Use implicitly_scoped_stmt.
2780
2781 2001-11-12  H.J. Lu <hjl@gnu.org>
2782
2783         * cvt.c (ocp_convert): Don't warn the address of a weak
2784         function is always `true'.
2785
2786 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
2787
2788         * cp-lang.c (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
2789         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
2790         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): Override.
2791         * cp-tree.h (print_class_statistics): Remove.
2792         (cxx_print_statistics, cxx_print_xnode, cxx_print_decl, cxx_print_type,
2793         cxx_print_identifier, cxx_set_yydebug): New.
2794         * lex.c (set_yydebug): Rename c_set_yydebug.
2795         * ptree.c (print_lang_decl, print_lang_type, print_lang_identifier,
2796         lang_print_xnode): Rename.
2797         * tree.c (print_lang_statistics): Rename.
2798
2799 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2800
2801         * class.c (dump_array): Fix format specifier warning.
2802
2803 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
2804
2805         * cp-lang.c (LANG_HOOKS_NAME): Override.
2806         (struct lang_hooks): Constify.
2807         * lex.c (cxx_init_options): Update.
2808         (lang_identify): Remove.
2809         * parse.y (language_string): Remove.
2810
2811 2001-11-08  Andreas Franck  <afranck@gmx.de>
2812
2813         * Make-lang.in (CXX_INSTALL_NAME, GXX_CROSS_NAME,
2814         DEMANGLER_CROSS_NAME): Handle program_transform_name the way
2815         suggested by autoconf.
2816         (GXX_TARGET_INSTALL_NAME, CXX_TARGET_INSTALL_NAME): Define.
2817         (c++.install-common): Use the transformed target alias names.
2818
2819 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
2820
2821         * Make-lang.in: Update.
2822         * cp-lang.c: Include langhooks-def.h.
2823
2824 2001-11-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2825
2826         * pt.c (tsubst_copy): Call tsubst for TYPEOF_EXPR.
2827
2828 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2829
2830         * lex.c (copy_lang_type): Add static prototype.
2831
2832 2001-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2833
2834         * pt.c (unify): Handle SCOPE_REF.
2835
2836 2001-11-01  Jakub Jelinek  <jakub@redhat.com>
2837
2838         * tree.c (cp_copy_res_decl_for_inlining): Adjust
2839         DECL_ABSTRACT_ORIGIN for the return variable.
2840
2841 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
2842
2843         *  Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
2844
2845 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
2846
2847         * ChangeLog.1, ChangeLog.2, ChangeLog, class.c, decl2.c, search.c,
2848         semantics.c, spew.c: Fix spelling errors.
2849
2850 2001-10-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2851
2852         * decl2.c (validate_nonmember_using_decl): Handle NAMESPACE_DECL.
2853
2854 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
2855
2856         * cp-lang.c: Redefine LANG_HOOKS_CLEAR_BINDING_STACK to
2857         pop_everything.
2858
2859 Tue Oct 23 14:00:20 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2860
2861         * cp-lang.c (cxx_get_alias_set): New function.
2862         Point LANG_HOOKS_GET_ALIAS_SET to it.
2863
2864 2001-10-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2865
2866         * cp-tree.def (UNBOUND_CLASS_TEMPLATE): New tree node.
2867         * cp-tree.h (make_unbound_class_template): Prototype new function.
2868         * decl.c (make_unbound_class_template): New function.
2869         * decl2.c (arg_assoc_template_arg): Handle UNBOUND_CLASS_TEMPLATE.
2870         * error.c (dump_type): Likewise.
2871         * mangle.c (write_type): Likewise.
2872         * parse.y (template_parm): Likewise.
2873         (template_argument): Use make_unbound_class_template.
2874         * pt.c (convert_template_argument): Handle UNBOUND_CLASS_TEMPLATE.
2875         (tsubst): Likewise.
2876         (tsubst_copy): Likewise.
2877         (unify): Likewise.
2878         * tree.c (walk_tree): Likewise.
2879         * typeck.c (comptypes): Likewise.
2880
2881 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2882
2883         * xref.c (GNU_xref_member): Use safe-ctype macros and/or fold
2884         extra calls into fewer ones.
2885
2886 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
2887
2888         * decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
2889         Warn when merging inline with attribute noinline.
2890         (start_decl, start_function): Warn if inline and attribute
2891         noinline appear in the same declaration.
2892
2893 2001-10-16  H.J. Lu <hjl@gnu.org>
2894
2895         * cp-tree.h (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Defined
2896         for tree checking disabled.
2897
2898 2001-10-16  Hans-Peter Nilsson  <hp@axis.com>
2899
2900         * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
2901         NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
2902
2903 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
2904
2905         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define.
2906         (unify): Only handle MINUS_EXPR specially if the above flag is set
2907         and the subtracted constant is 1.  Clear the flag on recursive calls.
2908         Set it when unifying the maximum value in an INTEGER_TYPE's range.
2909
2910 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
2911
2912         * decl.c (bad_specifiers): Don't allow exception specifications
2913         on any typedefs.
2914
2915 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
2916
2917         * cp/lex.c (init_cp_pragma): Similarly.
2918
2919 2001-10-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2920
2921         * pt.c (lookup_template_class): Build complete template arguments
2922         for BOUND_TEMPLATE_TEMPLATE_PARM.
2923
2924 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2925
2926         * cp-tree.h (TYPE_BINFO): Update comment.
2927         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): New macro.
2928         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Use template_info.
2929         (TYPENAME_TYPE_FULLNAME): Use TYPE_FIELDS.
2930         (copy_type): Prototype new function.
2931         * lex.c (copy_lang_decl): Gather tree node statistics.
2932         (copy_lang_type): New function.
2933         (copy_type): Likewise.
2934         (cp_make_lang_type): Create lang_type for
2935         BOUND_TEMPLATE_TEMPLATE_PARM.  Set TYPE_BINFO for TYPENAME_TYPE
2936         and BOUND_TEMPLATE_TEMPLATE_PARM.
2937         * pt.c (tsubst): Use copy_type instead of copy_node.
2938         * search.c (lookup_field_1): Ignore TYPENAME_TYPE.
2939
2940 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2941
2942         * pt.c (determine_specialization): Ignore functions without
2943         DECL_TEMPLATE_INFO.
2944
2945 2001-10-12  Nathan Sidwell  <nathan@codesourcery.com>
2946
2947         PR g++/4476
2948         * typeck2.c (abstract_virtuals_error): Ignore incomplete classes.
2949
2950 2001-10-11  Jason Merrill  <jason_merrill@redhat.com>
2951
2952         * typeck2.c (store_init_value): Don't re-digest a bracketed
2953         initializer.
2954
2955         * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
2956         ANON_AGGR_TYPE_P.
2957
2958 2001-10-11  Richard Henderson  <rth@redhat.com>
2959
2960         * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
2961         of an asm statement.
2962         (build_vtbl_ref_1): Split out from build_vtbl_ref.
2963         (build_vfn_ref): Use it to handle vtable descriptors before
2964         calling build_vtable_entry_ref.
2965         * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
2966
2967 2001-10-10  Richard Henderson  <rth@redhat.com>
2968
2969         * parse.y (asm_operand): Allow named operands.
2970         * semantics.c (finish_asm_stmt): Tweek for changed location
2971         of the operand constrant.
2972
2973 2001-10-09  Jason Merrill  <jason_merrill@redhat.com>
2974
2975         * call.c (standard_conversion): Add bad conversion between
2976         integers and pointers.
2977         (convert_like_real): Don't use convert_for_initialization for bad
2978         conversions; complain here and use cp_convert.
2979         (build_over_call): Don't handle bad conversions specially.
2980         (perform_implicit_conversion): Allow bad conversions.
2981         (can_convert_arg_bad): New fn.
2982         * cp-tree.h: Declare it.
2983         * typeck.c (convert_for_assignment): Use it.
2984         (ptr_reasonably_similar): Any target type is similar to void.
2985
2986 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
2987
2988         * Make-lang.in (CXX_OBJS): Added cp-lang.o.
2989         (cp/cp-lang.o): New rule.
2990         * cp-tree.h: Declare hooks.
2991         * tree.c: Make hooks non-static.
2992         (init_tree): Don't initialize hooks here.
2993         * lex.c: Likewise.  Move definition of lang_hooks to...
2994         * cp-lang.c: ... new file.
2995
2996 2001-10-08  Richard Henderson  <rth@redhat.com>
2997
2998         * cp-tree.h (struct lang_decl_flags): Remove declared_inline.
2999         (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl.
3000
3001 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3002
3003         * class.c (build_vtable_entry_ref): Const-ify.
3004         * decl.c (predefined_identifier,
3005         initialize_predefined_identifiers): Likewise.
3006         * init.c (build_new_1): Likewise.
3007         * lex.c (cplus_tree_code_type, cplus_tree_code_length, resword):
3008         Likewise.
3009
3010 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
3011
3012         * optimize.c (struct inline_data): Moved to ../tree-inline.c.
3013         (INSNS_PER_STMT): Likewise.
3014         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
3015         (copy_body, initialize_inlined_parameters): Likewise.
3016         (declare_return_variable, inlinable_function_p): Likewise.
3017         (expand_call_inline, expand_calls_inline): Likewise.
3018         (optimize_inline_calls, clone_body): Likewise.
3019         * tree.c (walk_tree): Moved to ../tree-inline.c.
3020         (walk_tree_without_duplicates): Likewise.
3021         (copy_tree_r, remap_save_expr): Likewise.
3022
3023 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
3024
3025         * Make-lang.in (cp/decl.o, cp/tree.o): Depend on tree-inline.h.
3026         (cp/pt.o, cp/semantics.o, cp/optimize.o): Likewise.
3027         * cp-tree.h (lang_decl): Moved inlined_fns to tree_decl.
3028         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved to ../tree.h.
3029         (flag_inline_trees): Moved declaration to ../tree-inline.h.
3030         (walk_tree): Moved declaration to ../tree-inline.h.
3031         (walk_tree_without_duplicates, copy_tree_r): Likewise.
3032         (remap_save_expr): Likewise.
3033         * decl.c: Include tree-inline.h.
3034         (lang_mark_tree): Don't mark inlined_fns.
3035         * decl2.c (flag_inline_trees): Moved defn to ../tree-inline.c.
3036         * optimize.c: Include tree-inline.h.
3037         (optimize_inline_calls): Move declaration to ../tree.h, as
3038         non-static.
3039         (remap_decl): Use language-independent constructs and hooks.
3040         (remap_block, copy_body_r, declare_return_variable): Likewise.
3041         (inlinable_function_p): Likewise.  Don't test for
3042         DECL_LANG_SPECIFIC before DECL_INLINED_FNS as inlined_fns is
3043         no longer language-specific.
3044         (optimize_inline_calls): Likewise.  Make it non-static.  Moved
3045         call of dump_function to...
3046         (optimize_function): Here...
3047         (clone_body): New function, extracted from...
3048         (maybe_clone_body): ... here.  Build decl_map locally and pass
3049         it on to clone_body.
3050         * pt.c, semantics.c: Include tree-inline.h.
3051         * tree.c: Likewise.
3052         (cp_walk_subtrees): New language-specific hook for tree inlining.
3053         (cp_cannot_inline_tree_fn, cp_add_pending_fn_decls,
3054         cp_is_overload_p, cp_auto_var_in_fn_p,
3055         cp_copy_res_decl_for_inlining): Likewise.
3056         (walk_tree): Move language-specific constructs into...
3057         (cp_walk_subtrees): this new function.
3058         (copy_tree_r): Use language-independent constructs and hooks.
3059         (init_tree): Initialize tree inlining hooks.
3060         (remap_save_expr): Adjust prototype so that the declaration
3061         does not require the definition of splay_tree.
3062
3063 2001-10-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3064
3065         * rtti.c (get_tinfo_decl): Call typeinfo_in_lib_p with the type used
3066         to build the declaration instead of the declaration itself.
3067
3068 2001-10-02  Jason Merrill  <jason_merrill@redhat.com>
3069
3070         * decl2.c (cxx_decode_option): Add 'else'.
3071
3072         * spew.c (end_input): No longer static.
3073         * cp-tree.h: Declare it.
3074         * parse.y (datadef): Add "error END_OF_SAVED_INPUT" expansion.
3075
3076 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
3077
3078         * call.c (build_over_call), typeck.c (build_function_call_real):
3079         Pass type attributes to check_function_format rather than name or
3080         assembler name.  Don't require there to be a name or assembler
3081         name to check formats.
3082
3083 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
3084
3085         * decl.c (init_decl_processing): Don't call
3086         init_function_format_info.  Initialize lang_attribute_table
3087         earlier.
3088         (builtin_function): Call decl_attributes.
3089         (insert_default_attributes): New.
3090
3091 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
3092
3093         * decl.c (grokdeclarator): Copy array typedef handling from C
3094         frontend.
3095
3096         * decl.c (grokdeclarator): Copy too-large array handling from C
3097         frontend.
3098
3099 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
3100
3101         * config-lang.in (target_libs): Added target-gperf, so that we
3102         don't try to build it if C++ is disabled.
3103
3104 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
3105
3106         * Make-lang.in (CXX_OBJS): Take out cp/errfn.o.
3107         (cp/errfn.o): Delete rule.
3108         (cp/error.o): Depend on flags.h.
3109         * errfn.c: Delete file.
3110         * cp-tree.h: Declare warn_deprecated.  Remove definitions of
3111         TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS,
3112         and TFF_TEMPLATE_DEFAULT_ARGUMENTS. #define cp_error, cp_warning,
3113         cp_pedwarn, and cp_compiler_error to error, warning, pedwarn, and
3114         internal_error respectively.  Make cp_deprecated into a macro.
3115         Don't define cp_printer typedef or declare cp_printers.
3116         * error.c: Include flags.h.
3117         Delete: struct tree_formatting_info, print_function_argument_list,
3118         print_declaration, print_expression, print_function_declaration,
3119         print_function_parameter, print_type_id, print_cv_qualifier_seq,
3120         print_type_specifier_seq, print_simple_type_specifier,
3121         print_elaborated_type_specifier, print_rest_of_abstract_declarator,
3122         print_parameter_declaration_clause, print_exception_specification,
3123         print_nested_name_specifier, and definition of cp_printers.
3124         (locate_error): New function.
3125         (cp_error_at, cp_warning_at, cp_pedwarn_at): Moved here and
3126         rewritten in terms of locate_error and diagnostic.c.
3127         (cp_tree_printer): Rename cp_printer; wire up to *_to_string
3128         instead of deleted print_* routines.  Handle %C, %L, %O, %Q also.
3129         (init_error): Adjust to match.
3130
3131 Sat Sep 22 09:15:31 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3132
3133         * Make-lang.in (CXX_C_OBJS): Add attribs.o.
3134
3135 2001-09-21  Richard Henderson  <rth@redhat.com>
3136
3137         * class.c (set_vindex): Mind TARGET_VTABLE_USES_DESCRIPTORS.
3138         (build_vtbl_initializer): Likewise.
3139         (build_vfn_ref): New.
3140         * cp-tree.h: Declare it.
3141         * call.c (build_over_call): Use it.
3142         * decl2.c (mark_vtable_entries): Mark FDESC_EXPR.
3143         * typeck.c (get_member_function_from_ptrfunc): Mind descriptors.
3144
3145 Fri Sep 21 08:16:19 2001  J"orn Rennecke <amylaar@redhat.com>
3146
3147         * decl.c (grokdeclarator): Use C syntax for attr_flags declaration.
3148
3149 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3150
3151         Table-driven attributes.
3152         * decl.c: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
3153         * decl2.c (cplus_decl_attributes): Only take one attributes
3154         parameter.
3155         * cp-tree.c (cplus_decl_attributes): Update prototype.
3156         * class.c (finish_struct), decl.c (start_decl, start_function),
3157         decl2.c (grokfield), friend.c (do_friend), parse.y
3158         (parse_bitfield): Update calls to cplus_decl_attributes.
3159         * decl.c (grokdeclarator): Take a pointer to a single ordinary
3160         attribute list.
3161         * decl.h (grokdeclarator): Update prototype.
3162         * decl2.c (grokfield): Take a single ordinary attribute list.
3163         * friend.c (do_friend): Likewise.
3164         * decl.c (shadow_tag, groktypename, start_decl,
3165         start_handler_parms, grokdeclarator, grokparms, start_function,
3166         start_method), decl2.c (grokfield, grokbitfield, grokoptypename),
3167         parse.y (parse_field, parse_bitfield, component_decl_1), pt.c
3168         (process_template_parm, do_decl_instantiation): Pass single
3169         ordinary attribute lists around.
3170         * decl.c (grokdeclarator): Correct handling of nested attributes.
3171         Revert the patch
3172         1998-10-18  Jason Merrill  <jason@yorick.cygnus.com>
3173                 * decl.c (grokdeclarator): Embedded attrs bind to the right,
3174                 not the left.
3175         .
3176         * cp-tree.h (cp_valid_lang_attribute): Remove declaration
3177         (cp_attribute_table): Declare.
3178         * decl.c (valid_lang_attribute): Don't define.
3179         (lang_attribute_table): Define.
3180         (init_decl_processing): Initialize lang_attribute_table instead of
3181         valid_lang_attribute.
3182         * tree.c (cp_valid_lang_attribute): Remove.
3183         (handle_java_interface_attribute, handle_com_interface_attribute,
3184         handle_init_priority_attribute): New functions.
3185         (cp_attribute_table): New array.
3186         * decl2.c (import_export_class): Don't use
3187         targetm.valid_type_attribute.
3188
3189 2001-09-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3190
3191         * Make-lang.in (cp/error.o): Depend on real.h
3192         * error.c: #include "real.h"
3193
3194 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3195
3196         * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of
3197         xmalloc/strcpy/strcat.
3198
3199 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3200
3201         * decl.c (warn_extern_redeclared_static, cp_make_fname_decl):
3202         Const-ification.
3203         * pt.c (tsubst_decl): Likewise.
3204
3205 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3206
3207         * decl2.c (lang_f_options): Const-ification.
3208         * lex.c (cplus_tree_code_name): Likewise.
3209         * spew.c (yyerror): Likewise.
3210
3211 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3212
3213         PR c++/3986
3214         * class.c (force_canonical_binfo_r): Check & move an indirect
3215         primary base first.
3216         (force_canonical_binfo): Check that it's not already
3217         canonical.
3218         (mark_primary_virtual_base): Remove BINFO parameter.
3219         (mark_primary_bases): Adjust, set BINFO_LOST_PRIMARY_P here.
3220
3221 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
3222
3223         Remove TYPE_NONCOPIED_PARTS.
3224         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Map onto
3225         CLASSTYPE_PURE_VIRTUALS.
3226         (TYPE_RAISES_EXCEPTIONS): Map onto TYPE_BINFO.
3227         * class.c (duplicate_tag_error): Remove TYPE_NONCOPIED_PARTS.
3228         (layout_class_type): Don't call fixup_inline_methods here ...
3229         (finish_struct_1): ... call it here.
3230
3231 2001-09-04  Mark Mitchell  <mark@codesourcery.com>
3232
3233         * decl.c (duplicate_decls): Remove code deadling with
3234         DECL_SAVED_INSNS.
3235         * decl2.c (finish_file): Likewise.
3236         * pt.c (instantiate_decl): Likewise.
3237         * semantics.c (expand_body): Don't defer local functions if
3238         they wouldn't be deferred for some other reason.  Don't
3239         generate RTL for functions that will not be emitted.
3240         (genrtl_start_function): Remove code deadling with
3241         DECL_SAVED_INSNS.
3242         (genrtl_finish_function): Likewise.
3243
3244 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
3245
3246         PR c++/4203
3247         * call.c (build_over_call): Do not optimize any empty base
3248         construction.
3249
3250 2001-08-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3251
3252         * error.c (dump_template_decl): Output template parameters
3253         together with their specifiers.
3254         Output `class' prefix for template template parameter.
3255         (dump_decl): Fix formatting.
3256
3257 2001-08-30  Kurt Garloff  <garloff@suse.de>
3258
3259         * optimize.c (inlinable_function_p): Allow only smaller single
3260         functions. Halve inline limit after reaching recursive limit.
3261
3262 2001-08-30  Joern Rennecke <amylaar@redhat.com>
3263             Jason Merrill  <jason_merrill@redhat.com>
3264
3265         * class.c (build_vtable_entry_ref): Subtract in char*, not
3266         ptrdiff_t.
3267
3268 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
3269
3270         * tree.c (cp_build_qualified_type_real): Use get_qualified_type.
3271         (build_cplus_array_type): Use cp_build_qualified_type, not
3272         TYPE_MAIN_VARIANT, to get an unqualified version.
3273
3274         * decl2.c (grok_alignof): Lose.
3275         (build_expr_from_tree): Use expr_sizeof and c_alignof_expr.
3276         * typeck.c (c_alignof): Lose.
3277         * semantics.c (finish_sizeof, finish_alignof): New.
3278         * parse.y: Use them.
3279         * cp-tree.h: Declare them.
3280
3281 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
3282
3283         * pt.c (tsubst_expr): Hand off to the TREE_CHAIN of a statement.
3284         Don't loop in COMPOUND_STMT, FOR_STMT or TRY_BLOCK.
3285         * tree.c (cp_statement_code_p): A TAG_DEFN is a statement.
3286
3287 2001-08-19  Jakub Jelinek  <jakub@redhat.com>
3288
3289         * typeck2.c (add_exception_specifier): Only require complete type if
3290         not in processing template declaration.
3291
3292 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3293
3294         * decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
3295         GNU_xref_start_scope and GNU_xref_end_scope.
3296
3297         * tree.c (TYPE_HASH): Moved to ../tree.h.
3298
3299 2001-08-16  Mark Mitchell  <mark@codesourcery.com>
3300
3301         * cvt.c (convert_to_void): Preserve TREE_SIDE_EFFECTS
3302         on COMPOUND_EXPRs.
3303
3304 2001-08-14  Richard Henderson  <rth@redhat.com>
3305
3306         * class.c, cp-tree.h (build_vfn_ref): Remove.
3307         * call.c, rtti.c: Replace all refernces with build_vtbl_ref.
3308
3309 2001-08-13  Mark Mitchell  <mark@codesourcery.com>
3310
3311         * call.c (build_over_call): Mark COMPOUND_EXPRs generated for
3312         empty class assignment as having side-effects to avoid
3313         spurious warnings.
3314
3315 2001-08-13  Zack Weinberg  <zackw@panix.com>
3316
3317         * Make-lang.in (cp/except.o): Add libfuncs.h to dependencies.
3318         * except.c: Include libfuncs.h.
3319
3320 2001-08-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3321
3322         * decl.c (grokdeclarator): Clarify diagnostic message.
3323
3324 2001-08-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3325
3326         * decl2.c (do_nonmember_using_decl): Replace using directive
3327         with using declaration in the error message.
3328
3329 2001-08-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3330
3331         * pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
3332         criterion to avoid rebuilding expression tree instead of
3333         processing_template_decl.
3334
3335 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
3336
3337         Support named return value optimization for inlines, too.
3338         * decl.c (finish_function): Nullify returns here.
3339         * semantics.c (genrtl_start_function): Not here.
3340         (cp_expand_stmt): Don't mess with CLEANUP_STMTs.
3341         (nullify_returns_r): No longer static.  Just clear RETURN_EXPR.
3342         Also nullify the CLEANUP_STMT for the nrv.
3343         * cp-tree.h: Declare it.
3344         * optimize.c (declare_return_variable): Replace the nrv with the
3345         return variable.
3346         * typeck.c (check_return_expr): Be more flexible on alignment check.
3347         Ignore cv-quals when checking for a matching type.
3348
3349 2001-08-09  Richard Henderson  <rth@redhat.com>
3350
3351         * decl2.c (finish_objects): Use target hooks instead of
3352         assemble_constructor and assemble_destructor.
3353
3354 2001-08-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3355
3356         * g++spec.c (lang_specific_driver): Quote argument after `-Xlinker'.
3357
3358 2001-08-07  Nathan Sidwell  <nathan@codesourcery.com>
3359
3360         PR c++/3820
3361         Stop using TYPE_NONCOPIED_PARTS.
3362         * call.c (build_over_call): Be careful when copy constructing
3363         or assigning to an empty class.
3364         * class.c (check_bases_and_members): It has a
3365         COMPLEX_ASSIGN_REF if it has a vptr.
3366         (layout_class_type): Don't add empty class padding to
3367         TYPE_NONCOPIED_PARTS.
3368         (finish_struct_1): Don't add the VFIELD either.
3369         * cp-tree.h (TYPE_HAS_TRIVIAL_INIT_REF): Mention _copy_
3370         initialization.
3371
3372 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
3373
3374         * tree.c (walk_tree): Walk siblings even if !walk_subtrees.
3375
3376 2001-08-06  Richard Henderson  <rth@redhat.com>
3377
3378         * decl2.c (finish_objects): Pass a symbol_ref and priority to
3379         assemble_{constructor,destructor}.  Remove priority handling.
3380
3381 2001-08-05  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3382
3383         Don't allow template-id in using-declaration.
3384         * decl2.c (validate_nonmember_using_decl): Handle template-ids.
3385         (do_class_using_decl): Likewise.
3386
3387 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
3388
3389         * cp/spew.c (read_token): No need to pop buffers.
3390
3391 2001-08-02  Stan Shebs  <shebs@apple.com>
3392
3393         * cp-tree.h (FNADDR_FROM_VTABLE_ENTRY): Remove, no longer used.
3394         (fnaddr_from_vtable_entry): Remove decl.
3395         * method.c (use_thunk): Update comment.
3396
3397 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
3398
3399         * repo.c (get_base_filename): Change return value to const char
3400         pointer.
3401
3402 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
3403
3404         Kill -fhonor-std.
3405         * NEWS: Document.
3406         * cp-tree.h (flag_honor_std): Remove.
3407         (CPTI_FAKE_STD): Remove.
3408         (std_node): Remove comment about it being NULL.
3409         (fake_std_node): Remove.
3410         * decl.c (in_fake_std): Remove.
3411         (walk_namespaces_r): Remove fake_std_node check.
3412         (push_namespace): Remove in_fake_std code.
3413         (pop_namespace): Likewise.
3414         (lookup_name_real): Remove fake_std_node check.
3415         (init_decl_processing): Always create std_node. Always add
3416         std:: things there.
3417         (builtin_function): Always put non '_' fns in std.
3418         * decl2.c (flag_honor_std): Remove.
3419         (lang_f_options): Remove honor-std.
3420         (unsupported_options): Add honor-std.
3421         (set_decl_namespace): Remove fake_std_node check.
3422         (validate_nonmember_using_decl): Likewise.
3423         (do_using_directive): Likewise.
3424         (handle_class_head): Likewise.
3425         * dump.c (cp_dump_tree): Likewise.
3426         * except.c (init_exception_processing): Adjust.
3427         * init.c (build_member_call): Remove fake_std_node check.
3428         (build_offset_ref): Likewise.
3429         * lang-options.h: Remove -fhonor-std, -fno-honor-std.
3430         * rtti.c (init_rtti_processing): Adjust.
3431
3432 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
3433
3434         * tree.c (cp_tree_equal): WITH_CLEANUP_EXPR node to use its second
3435         operand while calling cp_tree_equal.
3436
3437 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3438
3439         The 3.0 ABI no longer has vbase pointer fields.
3440         * cp-tree.h (VBASE_NAME, VBASE_NAME_FORMAT, VBASE_NAME_P,
3441         FORMAT_VBASE_NAME): Remove.
3442         * method.c (do_build_copy_constructor): Adjust.
3443         (do_build_assign_ref): Adjust.
3444         * search.c (lookup_field_r): Adjust.
3445         * typeck.c (build_component_ref): Adjust.
3446
3447         The 3.0 ABI always has a vtable pointer at the start of every
3448         polymorphic class.
3449         * rtti.c (build_headof_sub): Remove.
3450         (build_headof): Adjust.
3451         (get_tinfo_decl_dynamic): No need to check flag_rtti
3452         here. Adjust.
3453         (create_real_tinfo_var): Explain why we need a hidden name.
3454
3455 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3456
3457         PR c++/3631
3458         * class.c (update_vtable_entry_for_fn): The fixed adjustment
3459         of a virtual thunk should be from declaring base.
3460
3461 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
3462
3463         * class.c (dfs_ctor_vtable_bases_queue_p): Always walk into
3464         the shared virtual base, so preserving inheritance graph order.
3465
3466 2001-07-30  Andreas Jaeger  <aj@suse.de>
3467
3468         * decl2.c: Remove unused var global_temp_name_counter.
3469
3470 2001-07-28  Richard Henderson  <rth@redhat.com>
3471
3472         * method.c (pending_inlines): Remove.
3473
3474 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
3475
3476         * class.c (mark_primary_virtual_base): Don't adjust base
3477         offsets here.
3478         (dfs_unshared_virtual_bases): Adjust them here.
3479         (mark_primary_bases): Explain why we adjust at the end.
3480
3481 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
3482
3483         * class.c (finish_struct_1): When copying the primary base's
3484         VFIELD, make sure we find it is at offset zero.
3485
3486 2001-07-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3487
3488         * pt.c (tsubst_template_parms): Call maybe_fold_nontype_arg and
3489         tsubst_expr for default template arguments.
3490
3491 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3492
3493         PR c++/3621
3494         * spew.c (yylex): Only copy the token's lineno, if it is
3495         non-zero.
3496
3497 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3498
3499         PR c++/3624
3500         * call.c (resolve_args): Simplify, call
3501         convert_from_reference.
3502         (build_new_op): Resolve and convert from reference ARG1
3503         earlier. Adjust ARG2 & ARG3 resolve and conversion.
3504
3505 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
3506
3507         * decl.c (last_function_parm_tags): Remove.
3508         (current_function_parm_tags): Remove.
3509         (init_decl_processing): Adjust.
3510         (start_function): Adjust.
3511         (store_parm_decls): Adjust.
3512
3513         PR c++/3152
3514         * decl.c (grokdeclarator): Detect when a function typedef is
3515         declaring a function, and create last_function_parms correctly.
3516
3517 2001-07-25  Jason Merrill  <jason_merrill@redhat.com>
3518
3519         * call.c (joust): Only prefer a non-builtin candidate to a builtin
3520         one if they have the same signature.
3521
3522         * cvt.c (build_up_reference): Take DECL parm.  Check TREE_STATIC on
3523         it rather than toplevel_bindings_p.  Give it a mangled name if static.
3524         (convert_to_reference): Adjust.
3525         * decl2.c (get_temp_name): Lose.
3526         * mangle.c (mangle_ref_init_variable): New fn.
3527         (mangle_guard_variable): Strip the ref-init header.
3528         * cp-tree.h: Adjust.
3529         * decl.c (cp_finish_decl): Add the DECL_STMT after processing the
3530         initializer.
3531         (grok_reference_init): Always use DECL_INITIAL.
3532
3533 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3534
3535         PR c++/3416
3536         * call.c (build_conditional_expr): Recheck args after
3537         conversions.
3538         * cp-tree.h (build_conditional_expr): Move to correct file.
3539         * typeck.c (decay_conversion): Diagnose any unknown types
3540         reaching here.
3541         (build_binary_op): Don't do initial decay or default
3542         conversions on overloaded functions.
3543         (build_static_cast): Don't do a decay conversion here.
3544
3545 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3546
3547         PR c++/3543
3548         * typeck.c (condition_conversion): Resolve an OFFSET_REF.
3549         * expr.c (cplus_expand_expr): An OFFSET_REF should never get here.
3550
3551 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3552
3553         * class.c (build_vtbl_or_vbase_field): Remove, move into ...
3554         (create_vtbl_ptr): ... here.
3555
3556 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
3557
3558         * class.c (build_vbase_offset_vbtl_entries): Look for
3559         non-primary base of which we are a sub vtable.
3560
3561 2001-07-24  Phil Edwards  <pme@sources.redhat.com>
3562
3563         * semantics.c (finish_this_expr):  Remove unused code.
3564
3565 2001-07-24  Nathan Sidwell  <nathan@codesourcery.com>
3566
3567         Simplify rtti, now we've only one ABI.
3568         * cp-tree.h (cp_tree_index): Remove CPTI_TINFO_DECL_ID,
3569         CPTI_TINFO_VAR_ID.
3570         (tinfo_decl_id, tinfo_var_id): Remove.
3571         (get_typeid_1): Remove.
3572         * rtti.c
3573         (init_rtti_processing): Remove tinfo_decl_id & tinfo_var_id.
3574         (typeid_ok_p): New function.
3575         (build_type_id): Call typeid_ok_p. Don't call tinfo_from_decl.
3576         (get_tinfo_decl): Remove old abi documentation.
3577         (tinfo_from_decl): Remove.
3578         (get_type_id): Call typeid_ok_p. Absorb get_typeid_1.
3579         (get_typeid_1): Remove.
3580         (get_base_offset): Remove.
3581         (synthesize_tinfo_var): Absorb get_base_offset.
3582         (create_real_tinfo_var): Don't use tinfo_decl_id.
3583
3584 2001-07-23  Graham Stott  <grahams@redhat.com>
3585
3586         * cp/class.c (type_requires_array_cookie): Fix use of uninitialised
3587         variable has_two_argument_delete_p.
3588
3589 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
3590
3591         Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
3592         * cp-tree.h (CPTI_DELTA2_IDENTIFIER): Remove.
3593         (CPTI_INDEX_IDENTIFIER): Remove.
3594         (CPT_PFN_OR_DELTA2_IDENTIFIER): Remove.
3595         (delta2_identifier): Remove.
3596         (index_identifier): Remove.
3597         (pfn_or_delta2_identifier): Remove.
3598         (flag_vtable_thunks): Remove.
3599         (VTABLE_DELTA2_NAME): Remove.
3600         (VTABLE_INDEX_NAME): Remove.
3601         (FNADDR_FROM_VTABLE_ENTRY): Adjust.
3602         (vfunc_ptr_type_node): Adjust.
3603         (VTABLE_NAME_PREFIX): Adjust.
3604         (build_vfn_ref): Lose first parameter.
3605         (fixup_all_virtual_upcast_offsets): Remove.
3606         * decl.c (initialize_predefined_identifiers): Remove
3607         delta2_identifier, index_identifier, pfn_or_delta2_identifier.
3608         (init_decl_processing): Remove no-vtable-thunk code.
3609         * decl2.c (flag_vtable_thunks): Remove.
3610         (mark_vtable_entries): Remove no-vtable-thunk code.
3611         * error.c (dump_decl): Remove no-vtable-thunk code.
3612         (dump_expr): Adjust ptr to member function code.
3613         * init.c (initialize_vtable_ptrs): Remove no-vtable-thunk
3614         code.
3615         * rtti.c (build_headof): Remove no-vtable-thunk code.
3616         (get_tinfo_decl_dynamic): Adjust build_vfn_ref call.
3617         * search.c (get_base_distance): Remove expand_upcast_fixups case.
3618         (virtual_context) Remove.
3619         (expand_upcast_fixups): Remove.
3620         (fixup_virtual_upcast_offsets): Remove.
3621         (fixup_all_virtual_upcast_offsets): Remove.
3622         * typeck.c (get_member_function_from_ptrfunc): Remove
3623         no-vtable-thunk code.
3624         * call.c (build_over_call): Adjust call to build_vfn_ref.
3625         * class.c (build_vfn_ref): Lose first parameter. Remove
3626         no-vtable-thunk code.
3627         (build_rtti_vtbl_entries): Remove no-vtable-thunk code.
3628         (build_vtable_entry): Remove no-vtable-thunk code.
3629
3630 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
3631
3632         Remove old-abi remnants. Remove comments about old abi
3633         behaviour. Remove references to 'new-abi' in comments.
3634         * cp-tree.h: Adjust comments.
3635         (vbase_offsets_in_vtable_p): Delete.
3636         (vcall_offsets_in_vtable_p): Delete.
3637         (vptrs_present_everywhere_p): Delete.
3638         (all_overridden_vfuns_in_vtables_p): Delete.
3639         (merge_primary_and_secondary_vtables_p): Delete.
3640         (TYPE_CONTAINS_VPTR_P): Adjust.
3641         (VTT_NAME_PREFIX): Remove.
3642         (CTOR_VTBL_NAME_PREFIX): Remove.
3643         (init_vbase_pointers): Remove.
3644         * class.c: Adjust coments.
3645         (build_vbase_pointer_fields): Delete.
3646         (build_vbase_pointer): Remove old-abi code.
3647         (build_secondary_vtable): Likewise.
3648         (modify_all_vtables): Likewise.
3649         (create_vtable_ptr): Likewise.
3650         (layout_class_type): Likewise.
3651         (finish_struct_1): Likewise.
3652         (finish_vtbls): Likewise.
3653         (dfs_finish_vtbls): Delete.
3654         (build_vbase_offset_vtbl_entries): Remove old-abi code.
3655         * cvt.c: Adjust comments.
3656         * decl.c: Adjust comments.
3657         * decl2.c: Adjust comments.
3658         * init.c: Adjust comments.
3659         (construct_virtual_bases): Remove old-abi code.
3660         * lang-specs.h: Remove -fno-new-abi.
3661         * mangle.c: Adjust comments.
3662         * rtti.c: Adjust comments.
3663         (get_base_offset): Remove old-abi-code.
3664         * search.c: Adjust comments.
3665         (dfs_init_vbase_pointers): Remove.
3666         (dfs_vtable_path_unmark): Remove.
3667         (init_vbase_pointers): Remove.
3668         * semantics.c: Adjust comments.
3669         (emit_associated_thunks): Remove old-abi code.
3670         * typeck.c: Adjust comments.
3671
3672 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
3673
3674         * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not
3675         params.h.
3676
3677 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
3678
3679         * class.c (finish_struct_anon): Forbid nested classes.
3680
3681 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
3682
3683         * decl2.c: Don't include dwarfout.h and dwarf2out.h.
3684         * optimize.c: Include debug.h.
3685         (maybe_clone_body): Use debug hook.
3686         * semantics.c: Include debug.h.
3687         (expand_body): Use debug hook.
3688
3689 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
3690
3691         * spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
3692
3693 2001-07-18  Mark Mitchell  <mark@codesourcery.com>
3694
3695         * class.c (type_requires_array_cookie): New function.
3696         (check_methods): Don't try to figure out whether the type needs a
3697         cookie here.
3698         (check_bases_and_members): Set TYPE_VEC_NEW_USES_COOKIE here.
3699         * cp-tree.h (TYPE_VEC_DELETE_TAKES_SIZE): Remove.
3700         (TYPE_VEC_NEW_USES_COOKIE): Reimplement.
3701         * pt.c (instantiate_class_template): Don't set
3702         TYPE_VEC_DELETE_TAKES_SIZE.
3703         * NEWS: Document ABI changes from GCC 3.0.
3704
3705 2001-07-18  Xavier Delacour <xavier@fmaudio.net>,
3706             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
3707
3708         * NEWS (Changes in GCC 3.0): Fix typo.
3709
3710 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
3711
3712         * decl2.c (cplus_decl_attributes): Take a pointer to the node to
3713         which attributes are to be attached, and a flags argument.  Update
3714         call to decl_attributes.
3715         (grokfield): Update call to decl_attributes.
3716         * class.c (finish_struct): Update call to cplus_decl_attributes.
3717         * cp-tree.h (cplus_decl_attributes): Update prototype.
3718         * decl.c (start_decl, grokdeclarator, start_function): Update
3719         calls to decl_attributes and cplus_decl_attributes.
3720         * friend.c (do_friend): Update call to cplus_decl_attributes.
3721         * parse.y (parse_bitfield): Update call to cplus_decl_attributes.
3722
3723 2001-07-12  Mark Mitchell  <mark@codesourcery.com>
3724
3725         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_C_HARD_REGISTER
3726         for `register' variables with an asm-specification.
3727
3728 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
3729
3730         * semantics.c (finish_asm_stmt): Mark the output operands
3731         to an asm addressable, if necessary.
3732
3733 2001-07-11  Ben Elliston  <bje@redhat.com>
3734
3735         * Revert this change -- there is a subtle bug.
3736
3737         PR c++/80
3738         * decl.c (finish_enum): New "attributes" argument; pass it to
3739         cplus_decl_attributes.  Use a narrower type if the enum is packed.
3740         * cp-tree.h (finish_enum): Adjust prototype.
3741         * parse.y (enum_head): New non-terminal.
3742         (structsp): Use it. Enums now may be preceded or followed by
3743         optional attributes -- pass their chained tree to finish_enum().
3744         * pt.c (tsubst_enum): Pass NULL_TREE for the new argument.
3745
3746 2001-07-10  Mark Mitchell  <mark@codesourcery.com>
3747
3748         * pt.c (tsubst_decl): Set DECL_CONTEXT for namespace-scope
3749         variables.
3750
3751 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
3752
3753         * semantics.c (cp_expand_stmt): Fix for null
3754         current_function_return_value.
3755
3756 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
3757
3758         * call.c (build_op_delete_call): Initialize fn.
3759         (convert_like_real): Delete conditional.
3760         (joust): Initialize *w and *l.
3761         * class.c: Add prototype for binfo_ctor_vtable.
3762         (get_primary_binfo): Initialize result.
3763         * init.c (build_java_class_ref): Initialize name.
3764
3765 2001-07-09  Erik Rozendaal  <dlr@acm.org>
3766
3767         * typeck.c (unary_complex_lvalue): Do not duplicate the
3768         argument to modify, pre-, or post-increment when used as an
3769         lvalue and when the argument has side-effects.
3770
3771 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
3772
3773         * decl.c (start_decl): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
3774         (start_function): Don't call SET_DEFAULT_DECL_ATTRIBUTES.  Call
3775         cplus_decl_attributes even if attrs is NULL.
3776         * friend.c (do_friend): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
3777
3778 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
3779
3780         * decl.c (grokdeclarator), decl2.c (cplus_decl_attributes): Update
3781         calls to decl_attributes.
3782
3783 2001-07-06  Ira Ruben   <ira@apple.com>
3784
3785         * cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
3786         be DECL_TEMPLATE_RESULT.
3787
3788 2001-07-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3789
3790         * cp-tree.h (copy_template_template_parm): Rename to ...
3791         (bind_template_template_parm): ... here.
3792         * tree.c (copy_template_template_parm): Rename to ...
3793         (bind_template_template_parm): ... here.  Remove the case when
3794         NEWARGS is NULL_TREE.
3795         (copy_tree_r): Don't copy TEMPLATE_TEMPLATE_PARM and
3796         BOUND_TEMPLATE_TEMPLATE_PARM.
3797         * pt.c (lookup_template_class): Adjust.
3798
3799 2001-07-05  Jason Merrill  <jason_merrill@redhat.com>
3800
3801         * cvt.c (convert_lvalue): New fn.
3802         * cp-tree.h: Declare it.
3803         * method.c (do_build_assign_ref): Use it.
3804         (do_build_copy_constructor): Convert parm to base types
3805         before calling base constructors.
3806
3807         * typeck.c (check_return_expr): Check DECL_ALIGN instead of
3808         DECL_USER_ALIGN.  Check flag_elide_constructors instead of
3809         optimize.
3810         * semantics.c (cp_expand_stmt): Don't destroy the named return value.
3811
3812 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
3813
3814         * optimize.c (optimize_inline_calls): New function, broken out
3815         of ...
3816         (optimize_function): ... here. Call it. Don't inline if it is
3817         a thunk.
3818         (dump_function): Print name of dump flag causing this dump.
3819         * semantics.c (expand_body): Move thunk inline check to
3820         optimize_function.
3821
3822 2001-06-29  Joseph S. Myers  <jsm28@cam.ac.uk>
3823
3824         * typeck.c (COMP_TYPE_ATTRIBUTES): Don't define.
3825         (comptypes): Use target.comp_type_attributes.
3826
3827 2001-06-29  Nathan Sidwell  <nathan@codesourcery.com>
3828
3829         * cp-tree.h (flag_dump_class_layout): Remove unneeded declaration.
3830
3831 2001-06-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
3832
3833         * error.c (lang_print_error_function): Add a `diagnostic_context *'
3834         parameter. Tweak.
3835
3836 2001-06-27  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
3837
3838         * decl2.c (import_export_class): Update.
3839
3840 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
3841
3842         * error.c (init_error): Adjust settings.
3843
3844 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
3845
3846         * error.c (init_error): Adjust settings.
3847
3848 2001-06-19  Richard Sandiford  <rsandifo@redhat.com>
3849
3850         * except.c (initialize_handler_parm): Expect __cxa_begin_catch to
3851         return pointers to data members by reference rather than by value.
3852
3853 2001-06-18  Jason Merrill  <jason_merrill@redhat.com>
3854
3855         Implement the Named Return Value optimization.
3856         * cp-tree.h (struct cp_language_function): Add x_return_value.
3857         (current_function_return_value): Now a macro.
3858         * decl.c: Don't define it.
3859         (define_label, finish_case_label): Don't clear it.
3860         (init_decl_processing): Don't register it with GC.
3861         * semantics.c (genrtl_finish_function): Don't check it for
3862         no_return_label.  Copy the RTL from the return value to
3863         current_function_return_value and walk, calling...
3864         (nullify_returns_r): ...this new fn.
3865         * typeck.c (check_return_expr): Set current_function_return_value.
3866
3867 2001-06-15  Jason Merrill  <jason_merrill@redhat.com>
3868
3869         * class.c (dfs_accumulate_vtbl_inits): Just point to the base we're
3870         sharing a ctor vtable with.  Merge code for cases 1 and 2.
3871         (binfo_ctor_vtable): New fn.
3872         (build_vtt_inits, dfs_build_secondary_vptr_vtt_inits): Use it.
3873
3874 2001-06-14  Jason Merrill  <jason_merrill@redhat.com>
3875
3876         * class.c (dfs_find_final_overrider): Fix logic.
3877
3878         * class.c (update_vtable_entry_for_fn): Uncomment optimization to use
3879         virtual thunk instead of non-virtual.
3880         (get_matching_virtual): Uncomment.
3881
3882         * pt.c (unify): Don't recurse between the POINTER_TYPE and the
3883         OFFSET_TYPE.  If we're adding cv-quals, the extra ones would be on
3884         PARM, not ARG.
3885
3886 2001-06-14  Nathan Sidwell  <nathan@codesourcery.com>
3887
3888         * class.c (dfs_accumulate_vtbl_inits): For case 2 & 3, make sure
3889         we've not emerged from the hierarchy of RTTI_BINFO on reaching
3890         a non-virtual base.
3891
3892 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
3893
3894         * NEWS: Update release number.
3895
3896 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
3897
3898         PR c++/3130, c++/3131, c++/3132
3899         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
3900         * class.c (force_canonical_binfo_r): Move
3901         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
3902         virtual bases unless they're primary and what they're primary
3903         too has been moved.
3904         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
3905         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
3906         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
3907         derived binfo.
3908         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
3909         (layout_nonempty_base_or_field): Add most derived type
3910         parameter. Adjust.
3911         (layout_empty_base): Likewise.
3912         (build_base_field): Likewise.
3913         (build_base_fields): Likewise.
3914         (propagate_binfo_offsets): Add most derived type
3915         parameter. Skip non canonical virtual bases too.
3916         (dfs_set_offset_for_unshared_vbases): Don't skip primary
3917         bases. Do skip canonical bases.
3918         (layout_virtual_bases): Adjust.
3919         (layout_class_type): Adjust.
3920         (dfs_get_primary_binfo): Build list of virtual primary base
3921         candidates.
3922         (get_primary_binfo): Check that the shared virtual primary
3923         base candidate was found first.
3924         (accumulate_vtbl_inits): Don't do anything for non-vptr
3925         containing binfos. For case 1 primary virtual bases, keep
3926         checking that we've not emerged from the hierarchy of RTTI_BINFO.
3927
3928 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
3929
3930         PR c++/3089
3931         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
3932         hierarchy looking for primary bases for a ctor
3933         vtable. Recursively call oneself, if we meet our primary via
3934         this route and haven't met it yet via inheritance graph order.
3935
3936 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
3937
3938         * lang-options.h: Emit documentation for -fno-honor-std, not
3939         -fhonor-std.
3940
3941 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
3942
3943         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
3944         Don't clobber delta.
3945         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
3946
3947 2001-06-10  Mark Mitchell <mark@codesourcery.com>
3948             Gabriel Dos Reis  <gdr@codesourcery.com>
3949
3950         * Make-lang.in (cp/call.o): Depend on diagnostic.h
3951         (cp/typeck.o): Depend on diagnostic.h
3952         (cp/typeck2.o): Depend on diagnostic.h
3953         (cp/repo.o): Depend on dignostic.h
3954         * typeck.c: #include diagnostic.h
3955         (convert_for_initialization): Remove extern declaration for
3956         warningcount and errorcount.
3957
3958         * call.c: #include diagnostic.h
3959         (convert_like_real): Remove extern declaration for warnincount and
3960         errorcount.
3961
3962         * repo.c: #include diagnostic.h
3963         * typeck2.c: #include diagnostic.h
3964
3965 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
3966
3967         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
3968         in previous change.
3969
3970 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
3971
3972         PR c++/2929
3973         * friend.c (do_friend): Use push_decl_namespace for classes at
3974         namespace scope.
3975
3976 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
3977             Jason Merrill <jason_merrill@redhat.com>
3978
3979         PR c++/3061
3980         * class.c (build_secondary_vtable): Use assert, rather than an error
3981         message.
3982         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
3983         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
3984         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
3985         Don't set BINFO_VTABLE for a primary virtual base.
3986
3987 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
3988
3989         * decl.c (duplicate_decls): Update source position information
3990         when a template function is defined.
3991
3992 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
3993
3994         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
3995
3996 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
3997
3998         PR c++/2914
3999         * decl.c (pushtag): Don't push into a complete type's scope.
4000
4001 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
4002
4003         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
4004         (struct lang_decl_flags): Lose generate_with_vtable_p.
4005         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
4006         * class.c (copy_virtuals): Adjust.
4007         * decl2.c (mark_vtable_entries): Adjust.
4008         * method.c (make_thunk, build_vtable_entry): Adjust.
4009         * class.c (update_vtable_entry_for_fn): Only look as far as the
4010         first defining class.
4011         (build_vtbl_initializer): Put nothing in the slot for a function only
4012         defined in a lost primary virtual base.
4013         (add_vcall_offset_vtbl_entries_1): Use the same code for
4014         the lost primary case and the normal case.
4015         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
4016         (get_vfield_offset, get_derived_offset): Lose.
4017         (dfs_find_final_overrider): Use look_for_overrides_here.
4018         (get_matching_virtual): New fn.
4019         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
4020         not BV_VCALL_INDEX.
4021         * search.c (look_for_overrides_here): Split out from...
4022         (look_for_overrides_r): Here.
4023
4024         * class.c (find_final_overrider): Return error_mark_node on error.
4025
4026         * decl2.c (key_method): #if 0 accidental change.
4027
4028 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4029
4030         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
4031         (build_over_call): Likewise.
4032         * decl.c (grokparms): Likewise.
4033         * pt.c (tsubst_decl): Likewise.
4034         * typeck.c (convert_arguments): Likewise.
4035
4036 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
4037
4038         * semantics.c (begin_class_definition): Robustify.
4039
4040         * pt.c (instantiate_decl): Tell the repository code about the
4041         clones, not the cloned functions.
4042         * repo.c (repo_template_used): Explicitly instantiate the cloned
4043         function, not the clones.
4044
4045 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4046
4047         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
4048         ICS_BAD_FLAG on created conversion.
4049         (compare_ics): Break out rank.
4050
4051 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4052
4053         * decl.c (xref_tag): Remove extraneous %s on dependent name
4054         lookup warning.
4055
4056 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4057
4058         * class.c (layout_vtable_decl): Fix off by one error on
4059         build_index_type.
4060         (build_vtt): Likewise.
4061         (build_ctor_vtbl_group): Likewise.
4062
4063 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
4064
4065         * class.c (maybe_indent_hierarchy): New function.
4066         (dump_class_hierarchy_r): Add flags. Dump extra binfo
4067         information, if enabled. Use maybe_indent_hierarchy. Adjust
4068         output format.
4069         (dump_class_hierarchy): Adjust prototype. Adjust output format.
4070         (dump_array, dump_vtable, dump_vtt): New functions.
4071         (finish_struct_1): Adjust hierarchy dumping.
4072         (initialize_vtable): Call dump_vtable.
4073         (build_vtt): Call dump_vtt.
4074         (build_ctor_vtbl_group): Call dump_vtable.
4075         * decl2.c (flag_dump_class_layout): Remove.
4076         (cxx_decode_option): Remove dump translation unit
4077         and dump class hierarchy check. Call dump_switch_p.
4078         (finish_file): Adjust dumping.
4079         (dump.c): Only dump base classes if not TDF_SLIM.
4080         Only dump namespace members if not TDF_SLIM.
4081         * optimize.c (dump_function): New function.
4082         (optimize_function): Call dump_function.
4083         * semantics.c (expand_body): Use dump_enabled_p.
4084
4085 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
4086
4087         PR g++/2936
4088         Part missed from first commit
4089         * decl2.c (finish_anon_union): Copy context.
4090
4091 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
4092
4093         PR g++/2936
4094         * optimize.c (remap_decl): Remap anonymous aggregate members too.
4095
4096 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
4097
4098         PR g++/2823
4099         * semantics.c (expand_body): Don't optimize thunks.
4100
4101 2001-05-25  Sam TH  <sam@uchicago.edu>
4102
4103         * cp-tree.h lex.h: Fix header include guards.
4104
4105 2001-05-25  Mark Mitchell <mark@codesourcery.com>
4106
4107         * decl.c (init_decl_processing): Tweak.
4108
4109 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
4110
4111         * decl.c (duplicate_decls): Tidy.
4112         (init_decl_processing): Always set flag_no_builtin.
4113
4114 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
4115
4116         PR c++/2184
4117         * decl2.c (do_local_using_decl): Push the decls, even in a
4118         template.
4119
4120 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
4121
4122         * optimize.c (initialize_inlined_parameters): Don't set
4123         TREE_READONLY for a VAR_DECL taking the place of an inlined
4124         PARM_DECL.
4125
4126 2001-05-22  Jason Merrill  <jason_merrill@redhat.com>
4127
4128         * class.c, cp-tree.h, rtti.c: Remove com_interface attribute support.
4129         * tree.c (cp_valid_lang_attribute): Warn about use of com_interface
4130         attribute.
4131
4132 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
4133
4134         * parse.y: Refer to compound literals as such, not as
4135         constructor-expressions.
4136
4137 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
4138
4139         * call.c (build_op_delete_call): Ignore exception-specifications
4140         when looking for matching delete operators.
4141         * init.c (build_new_1): Compute whether or not the allocation
4142         function used is a placement allocation function or not, and
4143         communicate this information to build_op_delete_call.
4144
4145 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
4146
4147         * class.c (build_vtable_entry_ref): Lose vtbl parm.  Fix for new abi.
4148         (build_vtbl_ref): Adjust.
4149         (dfs_accumulate_vtbl_inits): Set TREE_CONSTANT on the vtable address.
4150         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
4151         Re-add vtable-gc.
4152         (unsupported_options): Correspondingly.
4153
4154         * decl2.c (maybe_make_one_only): Check flag_weak, not
4155         supports_one_only().
4156
4157         * cp-tree.def (START_CATCH_STMT): Lose.
4158         * dump.c (cp_dump_tree): Don't dump it.  Do dump HANDLER_PARMS.
4159         * tree.c (cp_statement_code_p): Don't case it.
4160         * semantics.c (cp_expand_stmt): Likewise.
4161         * cp-tree.h (START_CATCH_TYPE): Lose.
4162         (HANDLER_TYPE): New.
4163         * except.c (expand_start_catch_block): Don't start any blocks.
4164         Return the type.
4165         (expand_end_catch_block): Don't end any blocks.
4166         * parse.y (handler): Don't pass anything from finish_handler_parms
4167         to finish_handler.
4168         * pt.c (tsubst_expr): Likewise.
4169         * semantics.c (begin_handler): Call note_level_for_catch here.
4170         (finish_handler_parms): Don't return anything.
4171         (genrtl_catch_block, begin_catch_block): Lose.
4172         (genrtl_handler): Call expand_start_catch here.
4173
4174 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
4175
4176         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
4177         (get_vtable_decl, build_vtt): Not here.
4178
4179 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
4180
4181         PR c++/2781
4182         * optimize.c (update_cloned_parm): Copy addressability and other
4183         flags.
4184
4185 2001-05-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4186
4187         * pt.c (determine_specialization): Ignore artificial functions.
4188
4189 2001-05-20  Neil Booth  <neil@daikokuya.demon.co.uk>
4190
4191         * cp-tree.h (struct lang_identifier, C_RID_YYCODE): Update.
4192         (C_RID_CODE): Remove.
4193         * lex.c (cxx_init_options): Call set_identifier_size.  Update.
4194         (init_parse): Don't do it here.
4195
4196 2001-05-18  Diego Novillo  <dnovillo@redhat.com>
4197
4198         * decl2.c (finish_objects): Use the original SYMBOL_REF from the
4199         function declaration to avoid stripping the symbol's attributes.
4200
4201 2001-05-18  Nathan Sidwell  <nathan@codesourcery.com>
4202
4203         * decl.c (pushdecl): Adjust error string.
4204         (xref_tag): Adjust friend class injection warning. Remove the
4205         inherited name from the class shadowed scope.
4206
4207 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
4208
4209         * except.c (cp_protect_cleanup_actions): New function.
4210         (init_exception_processing): Don't set protect_cleanup_actions
4211         here.  Do set lang_protect_cleanup_actions.
4212
4213 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
4214
4215         * spew.c (read_token): Call yyerror on all unexpected tokens.
4216
4217 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
4218
4219         * init.c (member_init_ok_or_else): Take a tree rather than
4220         string for name.
4221         (expand_member_init): Adjust.
4222
4223 2001-05-14  Nick Clifton  <nickc@cambridge.redhat.com>
4224
4225         * decl.c (duplicate_decls): Suppress warning about duplicate
4226         decls if the first decl is a friend.
4227
4228 2001-05-12  Zack Weinberg  <zackw@stanford.edu>
4229
4230         * except.c (choose_personality_routine): Export.  Add
4231         explanatory comment.  Take an enum languages, not a boolean.
4232         (initialize_handler_parm): Adjust to match.
4233         * cp-tree.h: Prototype choose_personality_routine.
4234         * lex.c (handle_pragma_java_exceptions): New function.
4235         (init_cp_pragma): Register #pragma GCC java_exceptions.
4236
4237 2001-05-12  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
4238
4239         * method.c (build_mangled_C99_name): Remove unused prototype.
4240
4241 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
4242
4243         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
4244         * typeck.c (get_member_function_from_ptrfunc,
4245         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
4246         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
4247
4248         Reverted Geoff Keating's 2001-05-03's patch.
4249
4250 2001-05-11  Ira Ruben   <ira@apple.com>
4251
4252         * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
4253
4254 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
4255
4256         * cp-tree.h (finish_label_expr, lookup_label): Delete.
4257         * parse.y: Update for '&&'; don't issue warning here.
4258         * semantics.c (finish_label_expr): Delete.
4259
4260 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
4261
4262         * splay-tree.h (splay_tree_max): New function.
4263         (splay_tree_min): Likewise.
4264
4265 2001-05-03  Geoffrey Keating  <geoffk@redhat.com>
4266
4267         * cp-tree.h (enum cp_tree_index): Add CPTI_PFN_VFLAG_IDENTIFIER.
4268         (pfn_vflag_identifier): Define.
4269         Update comment about layout of pointer functions.
4270         (build_ptrmemfunc1): Update prototype.
4271         (expand_ptrmemfunc_cst): Update prototype.
4272         * decl.c (initialize_predefined_identifiers): Initialize
4273         pfn_vflag_identifier.
4274         (build_ptrmemfunc_type): When FUNCTION_BOUNDARY < 16, add
4275         an extra field to the type.
4276         * expr.c (cplus_expand_constant): Pass 'flag' between
4277         expand_ptrmemfunc_cst and build_ptrmemfunc1.
4278         * typeck.c (get_member_function_from_ptrfunc): When
4279         FUNCTION_BOUNDARY < 16, look at additional field to determine
4280         if a pointer-to-member is a real pointer or a vtable offset.
4281         (build_ptrmemfunc1): Add new parameter to contain extra field.
4282         (build_ptrmemfunc): Pass the extra field around.
4283         (expand_ptrmemfunc_cst): Add new parameter to return extra field.
4284         (pfn_from_ptrmemfunc): Ignore the extra field.
4285
4286 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
4287
4288         * cp-tree.h (flag_inline_trees): Update documentation.
4289         * decl.c (init_decl_processing): Adjust handling of
4290         flag_inline_functions and flag_inline_trees to support -O3.
4291         (grokfndecl): Set DECL_INLINE on all functions if that's what
4292         the user requested.
4293         (save_function_data): Clear DECL_INLINE in
4294         current_function_cannot_inline is non-NULL.
4295         * decl2.c (flag_inline_trees): Update documentation.
4296
4297 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
4298
4299         * dump.c (cp_dump_tree, USING_STMT case): New case.
4300         * tree.c (cp_statement_code_p): Add USING_STMT.
4301         * decl2.c (do_using_directive): Add the using directive statement.
4302
4303         * tree.c (walk_tree): Reformat an if block.
4304
4305 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
4306
4307         * decl.c (compute_array_index_type): Don't try to do anything with
4308         the indices when processing a template.
4309
4310 2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4311
4312         * call.c: NULL_PTR -> NULL.
4313         * class.c: Likewise.
4314         * cvt.c: Likewise.
4315         * decl.c: Likewise.
4316         * decl2.c: Likewise.
4317         * except.c: Likewise.
4318         * init.c: Likewise.
4319         * rtti.c: Likewise.
4320         * search.c: Likewise.
4321         * tree.c: Likewise.
4322         * typeck.c: Likewise.
4323         * typeck2.c: Likewise.
4324
4325 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
4326
4327         * decl2.c (do_using_directive): Revert previous patch.
4328
4329 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4330
4331         * cp-tree.def (USING_STMT): New statement node.
4332         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
4333         * decl2.c (do_using_directive): Add USING_STMT to statement
4334         tree. Don't emit errors when processing template decl.
4335         * pt.c (tsubst_expr, USING_STMT case): New case.
4336         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
4337
4338 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4339
4340         * call.c (build_new_op): Convert args from reference here.
4341         (build_conditional_expr): Don't convert here.
4342
4343 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
4344
4345         * spew.c (last_token_id): New static variable.
4346         (read_token): Set it here.
4347         (yyerror): Use it here.
4348
4349 2001-04-30  Richard Henderson  <rth@redhat.com>
4350
4351         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
4352         * decl.c: Likewise.
4353
4354 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
4355
4356         * gxxint.texi: Remove.
4357         * Make-lang.in: Remove all traces of gxxint.texi.
4358
4359 Mon Apr 30 16:14:10 2001  Mark P Mitchell  <mark@codesourcery.com>
4360
4361         * decl2.c (start_static_initialization_or_destruction): Correct
4362         logic to handle the -fno-use-cxa-atexit case.
4363
4364 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
4365
4366         * optimize.c (update_cloned_parm): New function.
4367         (maybe_clone_body): Use it.  Update the `this' parameter too.
4368
4369 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
4370
4371         * decl2.c (unsupported_options): Add new-abi.
4372         * lang-options.h: Remove no longer supported options.
4373
4374 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4375
4376         * except.c (can_convert_eh): Don't check template parms,
4377         typename types etc.
4378
4379 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4380
4381         * optimize.c (maybe_clone_body): Copy parameter names and locations.
4382
4383 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
4384
4385         * cp-tree.h (adjust_clone_args): Prototype new function.
4386         * class.c (adjust_clone_args): New function.
4387         * decl.c (start_function): Call it for in charge ctors.
4388
4389 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
4390
4391         * method.c (use_thunk): Make sure that thunks really are emitted
4392         when requested.
4393
4394 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
4395
4396         * mangle.c (write_chars): New macro.
4397         (hwint_to_ascii): New function
4398         (write_number): Use it.
4399         (write_integer_cst): Deal with really big numbers.
4400
4401 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
4402
4403         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
4404         the clone.
4405
4406 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
4407
4408         * decl.c (grokdeclarator): Set context of namespace scope
4409         TYPE_DECLS.
4410
4411 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
4412
4413         * cp/optimize.c: Include hashtab.h.
4414         (struct inline_data): Add tree_pruner.
4415         (expand_call_inline, expand_calls_inline): Use it when calling
4416         walk_tree.
4417         (optimize_function): Initialize and free tree_pruner.
4418
4419 2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
4420
4421         Lazy __FUNCTION__ generation.
4422         * cp-tree.def (FUNCTION_NAME): Remove.
4423         * cp-tree.h (function_name_declared_p): Remove.
4424         (cp_fname_init): Prototype.
4425         * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
4426         don't call declare_function_name. Call start_fname_decls.
4427         (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
4428         clobber the line number.
4429         (cp_fname_init): New function.
4430         (start_function): Call start_fname_decls.
4431         (finish_function): Call finish_fname_decls.
4432         * lex.c (reswords): Add slots for __FUNCTION__ et al.
4433         (rid_to_yy): Add mappings for __FUNCTION__ et al.
4434         * optimize.c (maybe_clone_body): Remove function_name_declared_p.
4435         * parse.y (VAR_FUNC_NAME): New token.
4436         (primary): Add VAR_FUNC_NAME.
4437         * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
4438         generation.
4439         (tsubst, FUNCTION_NAME case): Remove.
4440         (tsubst_copy, FUNCTION_NAME case): Remove.
4441         (tsubst_expr, DECL_STMT case): Be careful with a
4442         DECL_PRETTY_FUNCTION_P.
4443         (instantiate_decl): Remove function_name_declared_p.
4444         * semantics.c (begin_compound_statement): Don't call
4445         declare_function_name here.
4446         (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
4447         (finish_translation_unit): Call finish_fname_decls.
4448         (expand_body): Remove function_name_declared_p.
4449         * typeck2.c (digest_init): Allow any ERROR_MARK.
4450
4451 2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
4452
4453         * pt.c (tsubst_decl): Use VOID_TYPE_P.
4454         * semantics.c: Fix some typos.
4455
4456 2001-04-23  Phil Edwards  <pme@sources.redhat.com>
4457
4458         * cp/decl2.c (flag_honor_std):  Always initialize to 1.
4459
4460 2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4461
4462         * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
4463
4464 2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
4465
4466         * except.c (build_throw): Wrap the initialization of the exception
4467         object in a MUST_NOT_THROW_EXPR.
4468         (do_free_exception): #if 0.
4469
4470 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
4471
4472         * cp-tree.h (finish_enum): Change prototype.
4473         * decl.c (finish_enum): Reorganize.
4474         * parse.y (structsp): Adjust calls to finish_enum.
4475
4476 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4477
4478         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
4479         't' case.
4480
4481 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
4482
4483         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
4484         (layout_empty_base): Return at end flag.
4485         (build_base_field): Likewise.
4486         (build_base_fields): Likewise.
4487         (layout_virtual_bases): Don't add 1 to eoc value.
4488         (end_of_class): Use full size for empty bases.
4489         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
4490         empty bases. Don't add 1 to eoc value. Only add trailing padding
4491         if we're an empty class with no empty bases.
4492         (dump_class_hierarchy): Dump size and alignment.
4493
4494 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
4495
4496         * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
4497         ICS_BAD_FLAG.
4498
4499 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
4500
4501         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
4502         is found, look first if name does not match the structure name.
4503
4504 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
4505
4506         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
4507         set.
4508         (SET_DECL_LANGUAGE): New macro.
4509         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
4510         (pushdecl): Likewise.
4511         (build_library_fn_1): Likewise.
4512         (build_cp_library_fn): Likewise.
4513         (grokfndecl): Likewise.
4514         (grokvardecl): Mark `extern "C"' variables as having C linkage.
4515         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
4516         * lex.c (retrofit_lang_decl): Likewise.
4517         * mangle.c (mangle_decl_string): Don't mangle the names of
4518         variables declared with C language linkage.
4519         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
4520
4521 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4522
4523         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
4524         flag_access_control from uninitialized storage.
4525
4526 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
4527
4528         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
4529         * mangle.c (write_pointer_to_member_type): Fix mangling of
4530         pointers to cv-qualified member function types.
4531
4532         * init.c (build_delete): Create a SAVE_EXPR for the address if
4533         we're going to use it more than once.
4534
4535 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
4536
4537         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
4538         (expand_ptremfunc_cst): Change prototype.
4539         (delta2_from_ptrmemfunc): Remove.
4540         * expr.c (cplus_expand_constant): Adjust call to
4541         expand_ptrmemfunc_cst.
4542         * typeck.c (build_ptrmemfunc1): Simplify.
4543         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
4544         results in a constant.
4545         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
4546         (delta2_from_ptrmemfunc): Remove.
4547         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
4548
4549 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
4550
4551         * cp-tree.h (decl_namespace_list): New macro.
4552         (struct saved_scope): Add decl_ns_list.
4553         * decl.c (mark_saved_scope): Mark it.
4554         * decl2.c: Lose static decl_namespace_list.
4555         (init_decl2): Don't save it.
4556
4557 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4558
4559         * cp-tree.h (warn_return_type, yylex): Delete redundant
4560         declarations.
4561
4562         * decl.c (current_class_depth, global_namespace): Likewise.
4563
4564         * decl2.c (current_class_depth, flag_gnu_xref): Likewise
4565
4566         * repo.c (flag_use_repository): Likewise.
4567
4568 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4569
4570         * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
4571         set_block, pushdecl, getdecls, gettags, init_decl_processing,
4572         maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
4573         lvalue_or_else, print_lang_statistics, comp_target_types,
4574         unsigned_type, signed_type, signed_or_unsigned_type,
4575         build_function_call, mark_addressable, incomplete_type_error):
4576         Delete redundant declarations.
4577
4578 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
4579
4580         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
4581         (TYPE_ANONYMOUS_P): New macro.
4582         (TAGGED_TYPE_P): New macro.
4583         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
4584         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
4585         * tree.c (no_linkage_helper): Likewise.
4586         * semantics.c (begin_class_definition): Likewise.
4587         * pt.c (convert_template_argument): Likewise.
4588         * lex.c (check_for_missing_semicolon): Likewise.
4589
4590 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
4591
4592         * class.c (dfs_unshared_virtual_bases): New function.
4593         (mark_primary_bases): Call it.
4594         (check_bases): Ignore virtual bases when determining
4595         nearly-emptiness.
4596
4597 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
4598
4599         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
4600
4601 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
4602
4603         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
4604         cloned function to the clone.
4605
4606 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4607
4608         * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
4609
4610         * semantics.c: Include expr.h.
4611
4612 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
4613
4614         * method.c (implicitly_declare_fn): Commonize code for copy ctor
4615         and assignment op. Set TREE_USED for parameter.
4616
4617 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
4618
4619         * class.c (find_final_overrider_data): Add `candidates'.
4620         (dfs_find_final_overrider): Don't issue error messages
4621         prematurely.
4622         (find_final_overrider): Issue error messages here.
4623         (build_base_field): Don't warn about amgibuous direct bases here.
4624         (warn_about_ambiguous_direct_bases): New function.
4625         (layout_class_type): Use it.
4626
4627 2001-04-10  Richard Henderson  <rth@redhat.com>
4628
4629         * typeck.c (build_array_ref): Push the array reference inside
4630         COMPOUND_EXPR and COND_EXPR.
4631
4632 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
4633
4634         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
4635         * decl.c (duplicate_decls): Adjust accordingly.
4636         (maybe_commonize_var): Likewise.
4637         (grokfndecl): Likewise.
4638         (start_function): Likewise.
4639         (start_method): Likewise.
4640         * decl2.c (key_method): Likewise.
4641         (import_export_decl): Likewise.
4642         * method.c (implicitly_declare_fn): Likewise.
4643         * optimize.c (maybe_clone_body): Likewise.
4644
4645 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
4646
4647         * lang-specs.h: Add __DEPRECATED.
4648
4649 Thu Apr  5 16:54:29 2001  J"orn Rennecke <amylaar@redhat.com>
4650
4651         * search.c (get_dynamic_cast_base_type): When building a new
4652         constant, set its type to ssizetype.
4653
4654 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
4655
4656         * optimize.c (expand_call_inline): Only add newly inlined statements
4657         into inlined_stmts.
4658
4659 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
4660
4661         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
4662         (OPERATOR_FORMAT): Likewise.
4663         (OPERATOR_TYPENAME_FORMAT): Likewise.
4664         * operators.def: Remove old name-mangling information.
4665         * decl.c (grok_op_properties): Adjust accordingly.
4666         * lex.c (init_operators): Likewise.
4667         * rtti.c (get_tinfo_decl): Issue error messages about types that
4668         have variable size.
4669
4670 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
4671
4672         * decl2.c (import_export_decl): Don't call import_export_class
4673         when processing an inline member function.
4674         * semantics.c (expand_body): Call import_export_decl before
4675         emitting inline functions.
4676
4677 2001-03-28  Richard Henderson  <rth@redhat.com>
4678
4679         IA-64 ABI Exception Handling:
4680         * cp-tree.def (EH_SPEC_BLOCK): New.
4681         (MUST_NOT_THROW_EXPR): New.
4682         * cp-tree.h: Update changed function declarations.
4683         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
4684         (CPTI_CALL_UNEXPECTED): New.
4685         (struct cp_language_function): Rename x_eh_spec_try_block
4686         to x_eh_spec_block.
4687         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
4688         * decl.c (current_binding_level): If no current function
4689         bindings, revert to scope_chain.
4690         (initialize_predefined_identifiers): Remove __cp_push_exception.
4691         (store_parm_decls): Use begin_eh_spec_block.
4692         (finish_function): Use finish_eh_spec_block.
4693         (mark_lang_function): Update for name changes.
4694         * decl2.c (finish_file): No mark_all_runtime_matches.
4695         * dump.c (cp_dump_tree): Handle new tree codes.
4696         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
4697         * except.c (catch_language_init, catch_language): Remove.
4698         (init_exception_processing): Don't set language code.
4699         Initialize call_unexpected_node, protect_cleanup_actions,
4700         eh_personality_libfunc, lang_eh_runtime_type.
4701         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
4702         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
4703         (prepare_eh_type): Split out type canonicalizations ...
4704         (build_eh_type_type): ... from here.
4705         (build_eh_type_type_ref): Remove.
4706         (mark_all_runtime_matches): Remove.
4707         (build_exc_ptr): New.
4708         (do_begin_catch, do_end_catch): New.
4709         (do_pop_exception): Remove.
4710         (build_terminate_handler): Remove.
4711         (choose_personality_routine): Split out language choice from ...
4712         (initialize_handler_parm): ... here.
4713         Use MUST_NOT_THROW_EXPR.
4714         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
4715         exception object handling.
4716         (expand_start_eh_spec, expand_end_eh_spec): Remove.
4717         (expand_exception_blocks, alloc_eh_object): Remove.
4718         (begin_eh_spec_block, finish_eh_spec_block): New.
4719         (do_allocate_exception, do_free_exception): New.
4720         (expand_throw): Merge into ...
4721         (build_throw): ... here.  Update for abi.
4722         * expr.c (cplus_expand_expr): No expand_internal_throw.
4723         Handle MUST_NOT_THROW_EXPR.
4724         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
4725         * semantics.c (*) Update for except.h name changes.
4726         (genrtl_try_block): No protect_with_terminate.
4727         (genrtl_eh_spec_block): New.
4728         (genrtl_handler): Don't emit the goto here.
4729         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
4730         (genrtl_finish_function): Don't expand_exception_blocks.
4731         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
4732
4733 2001-03-28  Richard Henderson  <rth@redhat.com>
4734
4735         * decl.c (struct named_label_list): Rename eh_region to
4736         in_try_scope, add in_catch_scope.
4737         (struct binding_level): Rename eh_region to is_try_scope,
4738         add is_catch_scope.
4739         (note_level_for_try): Rename from note_level_for_eh.
4740         (note_level_for_catch): New.
4741         (poplevel): Copy both is_try_scope and is_catch_scope to
4742         the named_label_list struct.
4743         (check_previous_goto_1): Don't check for catch block via
4744         DECL_ARTIFICIAL; use in_try_scope instead.
4745         (check_goto): Likewise.
4746         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
4747         * except.c (expand_start_catch_block): Call note_level_for_catch.
4748         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
4749
4750 2001-03-27  Richard Henderson  <rth@redhat.com>
4751
4752         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
4753         exceptions_via_longjmp.
4754
4755 2001-03-27  Phil Edwards  <pme@sources.redhat.com>
4756
4757         * pt.c (check_default_tmpl_args):  Make error messages clearer.
4758
4759 2001-03-26  Phil Edwards  <pme@sources.redhat.com>
4760
4761         * error.c:  Also undefine 'A' macro used for cp_printers definition.
4762
4763 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4764
4765         * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
4766
4767 2001-03-26  Mike Yang <yang@research.att.com>
4768             Mark Mitchell  <mark@codesourcery.com>
4769
4770         * dump.c (dump_access): New function.
4771         (cp_dump_tree): Use it.  Dump basetype information for class
4772         types.
4773
4774 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
4775
4776         * Makefile.in (optimize.o): Depend on params.h.
4777         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
4778         (init_decl_processing): Set flag_no_inline when doing
4779         inlining-on-trees.
4780         * optimize.c: Include params.h.
4781         (struct inline_data): Improve documentation of FNS.  Add
4782         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
4783         (INSNS_PER_STMT): New macro.
4784         (remap_block): Use CLONING_P.
4785         (inlinable_function_p): Don't inline big functions.
4786         (expand_call_inline): Keep track of how much inlining we've done.
4787         (optimize_function): Set FIRST_INLINED_FN.
4788         (maybe_clone_body): Set CLONING_P.
4789         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
4790         tree nodes.
4791         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
4792         rest_of_compilation.  Clear DECL_RTL for local variables
4793         afterwards.
4794         (clear_decl_rtl): New function.
4795
4796 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
4797
4798         Implement DR 209
4799         * cp-tree.h (skip_type_access_control,
4800         reset_type_access_control): Prototype.
4801         * decl.c (grokdeclarator): Access of friends is not checked.
4802         * parse.y (component_decl_list): Reset type access control.
4803         * semantics.c (decl_type_access_control): Clear
4804         current_type_lookups.
4805         (save_type_access_control): Don't save if not deferring.
4806         (skip_type_access_control, reset_type_access_control): New
4807         functions.
4808         (begin_class_definition): Do type access control for basetypes.
4809         Start deferred access control.
4810         (finish_class_definition): Resume immediate access control if
4811         this is a local class.
4812
4813 2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4814
4815         * class.c (add_method): Use memcpy/memmove, not bcopy.
4816
4817         * decl.c (duplicate_decls): Likewise.
4818
4819 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
4820
4821         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
4822         not `_'.
4823
4824 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
4825
4826         * decl.c (local_names): Define.
4827         (push_local_name): New.
4828         (grok_reference_init): Return init if initializing static reference
4829         variable with non-constant instead of emitting it.
4830         Move expand_static_init call to cp_finish_decl.
4831         (layout_var_decl): Call push_local_name.
4832         (maybe_commonize_var): Allow inlining functions even if they have
4833         static local variables, use comdat_linkage for them if flag_weak.
4834         (check_initializer): Call obscure_complex_init if
4835         grok_reference_init returned non-zero.
4836         (save_function_data): Clear x_local_names.
4837         (pop_cp_function_context): Free x_local_names.
4838         (mark_inlined_fns): Remove.
4839         (mark_lang_function): Mark x_local_names.
4840         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
4841         Mark inlined_fns as tree, remove call to mark_inlined_fns.
4842         * class.c (alter_access): Ensure DECL_ACCESS is never set if
4843         DECL_DISCRIMINATOR_P.
4844         * cp-tree.h (cp_language_function): Add x_local_names.
4845         (lang_decl_flags): Add discriminator into u2.
4846         (lang_decl_inlined_fns): Remove.
4847         (lang_decl): inlined_fns is now a TREE_VEC.
4848         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
4849         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
4850         TREE_VEC, not a custom structure.
4851         (optimize_function): Likewise.
4852         * mangle.c (discriminator_for_local_entity): Discriminate among
4853         VAR_DECL local entities.
4854         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
4855         is not valid.
4856
4857 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
4858
4859         Add support for Java interface method calls.
4860         * cp-tree.h (struct lang_type): Add java_interface flag.
4861         (TYPE_JAVA_INTERFACE): New macro.
4862         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
4863         by setting TYPE_JAVA_INTERFACE.
4864         * call.c (java_iface_lookup_fn): New static.
4865         (build_over_call): If calling a method declared in a
4866         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
4867         expression which resolves the function address.
4868         (build_java_interface_fn_ref): New function.
4869
4870 2001-03-22  Richard Henderson  <rth@redhat.com>
4871
4872         * Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
4873         * except.c: Don't include it.
4874
4875 2001-03-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
4876             based on an idea from Joe Buck <jbuck@synopsys.com>
4877
4878         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
4879         New nonterminals.
4880         (data_def, component_decl): Add reductions to bad_decl.
4881
4882 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
4883
4884         * method.c (do_build_assign_ref): Don't use build_modify_expr for
4885         anonymous aggregates, since they don't have assignment operator
4886         method.
4887         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
4888         assignment operators for anonymous structure fields.
4889
4890 2001-03-21  Jason Merrill  <jason@redhat.com>
4891
4892         * pt.c (instantiate_decl): Abort if we see a member constant
4893         instantiation that doesn't already have its initializer.
4894         Downgrade explicit instantiation without definition to pedwarn.
4895
4896         * cp-tree.h (DECL_TINFO_FN_P, SET_DECL_TINFO_FN_P): Remove.
4897         * class.c (build_vtable_entry): Don't check DECL_TINFO_FN_P.
4898         (import_export_decl): Check tinfo_decl_p, not DECL_TINFO_FN_P.
4899
4900         * cp-tree.h (CLASSTYPE_VTABLE_NEEDS_WRITING): Remove.
4901         (pending_vtables): Remove.
4902         * decl2.c (pending_vtables): Remove.
4903         (import_export_vtable): Use CLASSTYPE_INTERFACE_ONLY, not
4904         CLASSTYPE_VTABLE_NEEDS_WRITING.
4905         (import_export_class): Likewise.
4906         (init_decl2): Don't mark pending_vtables.
4907         * lex.c (handle_pragma_vtable): Just sorry.
4908         * pt.c (instantiate_class_template): Don't mess with
4909         CLASSTYPE_VTABLE_NEEDS_WRITING.
4910         (mark_class_instantiated): Likewise.
4911         * ptree.c (print_lang_type): Don't print it.
4912         * semantics.c (begin_class_definition): Don't set it.
4913
4914         * pt.c (template_tail): Replace with last_pending_template.
4915         (maybe_templates, maybe_template_tail): Remove.
4916         (add_pending_template): Adjust.
4917         (instantiate_pending_templates): Adjust.
4918
4919         * cp-tree.h (struct saved_scope): Remove lang_stack field.
4920         (current_lang_stack): Remove.
4921         * decl.c (maybe_push_to_top_level): Don't initialize it.
4922         (duplicate_decls): Use current_lang_depth.
4923         (xref_basetypes): Likewise.
4924         * class.c (current_lang_depth): New fn.
4925         (push_lang_context): Use more varray functionality.
4926         (pop_lang_context): Likewise.
4927
4928         * error.c (GLOBAL_THING): Always use '__'.
4929
4930 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
4931
4932         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
4933
4934         * mangle.c (mangle_decl_string): Mangle the names of overloaded
4935         operators, even when they have `extern "C"' linkage.
4936
4937 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
4938
4939         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
4940         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
4941         where it's not necessary.
4942         (add_method): Remove optimization involving comparison of
4943         DECL_ASSEMBLER_NAME.
4944         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
4945         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
4946         where it's not necessary.
4947         (check_methods): Likewise.
4948         (build_clone): Likewise.
4949         (built_vtt): Likewise.
4950         * cp-tree.h (DECL_NEEDED_P): Likewise.
4951         * decl.c (pushtag): Likewise.
4952         (duplicate_decls): Likewise.
4953         (pushdecl): Likewise.
4954         (builtin_function): Likewise.
4955         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
4956         (build_cp_library_fn): Likewise.
4957         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
4958         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
4959         where it's not necessary.
4960         (make_rtl_for_nonlocal_decl): Likewise.
4961         (cp_finish_decl): Likewise.
4962         (grokfndecl): Likewise.
4963         (grokvardecl): Likewise.
4964         (grokdeclarator): Likewise.
4965         (start_function): Likewise.
4966         (cp_missing_return_ok_p): Likewise.
4967         * decl2.c (grokclassfn): Likewise.
4968         (check_classfn): Likewise.
4969         (finish_static_data_member_decl): Likewise.
4970         (grokfield): Likewise.
4971         * error.c (GLOBAL_IORD_P): Remove.
4972         (dump_global_iord): Improve output.
4973         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
4974         * except.c (nothrow_libfn_p): Summarily reject any function not in
4975         namespace-scope.
4976         * init.c (build_java_class_ref): Don't explicitly set
4977         DECL_ASSEMBLER_NAME after calling mangle_decl.
4978         * mangle.c (mangle_decl_string): Handle extern "C" functions.
4979         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
4980         * method.c (set_mangled_name_for_decl): Don't explicitly set
4981         DECL_ASSEMBLER_NAME after calling mangle_decl.
4982         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
4983         IDENTIFIER_GLOBAL_VALUE for the thunk.
4984         * pt.c (set_mangled_name_for_template_decl): Remove.
4985         (check_explicit_specialization): Don't use it.
4986         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
4987         (tsubst_friend_function): Likewise.
4988         (tsubst_decl): Likewise.
4989         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
4990         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
4991         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
4992         where it's not necessary.
4993         (tinfo_base_init): Likewise.
4994         (create_real_tinfo_var): Likewise.
4995         * search.c (looup_field_1): Likewise.
4996         * semantics.c (finish_named_return_value): Likewise.
4997         * tree.c (init_tree): Set lang_set_decl_assembler_name.
4998
4999 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
5000
5001         Correct semantics restrictions checking in throw-expression.
5002         * except.c (is_admissible_throw_operand): New function.
5003         (build_throw): Use it.
5004
5005 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
5006
5007         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
5008         and its ilk.
5009
5010 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
5011
5012         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5013         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
5014         * decl.c (duplicate_decls): Likewise.
5015         (builtin_function): Likewise.
5016         (build_library_fn): Likewise.
5017         (build_cp_library_fn): Likewise.
5018         (check_initializer): Likewise.
5019         (cp_finish_decl): Likewise.
5020         * decl2.c (grokfield): Likewise.
5021         (grok_function_init): Remove #if 0'd code.
5022         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
5023         * friend.c (do_friend): Likewise.
5024         * init.c (get_temp_regvar): Likewise.
5025         * method.c (make_thunk): Likewise.
5026         * pt.c (tsubst_friend_function): Likewise.
5027         (tsubst_decl): Likewise.
5028         (regenerate_decl_from_template): Likewise.
5029         * semantics.c (genrtl_named_return_value): Likewise.
5030         (expand_body): Likewise.
5031         (genrtl_finish_function): Likewise.
5032         * tree.c (cp_tree_equal): Likewise.
5033
5034 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
5035
5036         * call.c (convert_like_real): Add extra semantics to INNER
5037         parameter. Don't convert to temporary if a user conversion
5038         gives us an lvalue that we're about to bind to a reference.
5039         Set INNER to indicate pending reference binding on recursive
5040         calls.
5041
5042 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5043
5044         * cp/lex.c: Delete duplicate pending_lang_change.
5045
5046 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
5047
5048         * cp/lex.c (handle_pragma_interface, handle_pragma_implementation):
5049         Similarly.
5050         * cp/repo.c (get_base_filename, open_repo_file): Similarly.
5051         * cp/cp-tree.h: Remove file_name_nondirectory prototype.
5052
5053 2001-03-09  Zack Weinberg  <zackw@stanford.edu>
5054
5055         * Make-lang.in: Add dependencies on $(TM_P_H) as appropriate.
5056
5057 2001-03-08  Stan Shebs  <shebs@apple.com>
5058
5059         * cp-tree.h (set_identifier_local_value): Remove unused decl.
5060
5061 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
5062
5063         * spew.c: Remove references to CPP_OSTRING.
5064
5065 2001-03-06  Andrew Haley  <aph@redhat.com>
5066
5067         * typeck.c (convert_arguments): Check that we have an fndecl.
5068
5069 2001-03-05  Andrew Haley  <aph@redhat.com>
5070
5071         * typeck.c (convert_arguments): Don't do ellipsis conversion for
5072         __built_in_constant_p.
5073
5074 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5075
5076         * typeck.c (build_static_cast): Allow enum to enum conversions
5077         as per DR 128.
5078
5079 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5080
5081         * class.c (check_field_decls): Pointers to member do not a
5082         non-pod struct make, as per DR 148.
5083
5084 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
5085
5086         * call.c (joust): cp_pedwarn when using gnu extension concerning
5087         worst conversion sequences.
5088
5089 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
5090
5091         * decl.c: Replace all uses of 'boolean' with 'bool'.
5092
5093 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
5094
5095         * lang-specs.h: Add zero initializer for cpp_spec field to
5096         all array elements that need one.  Don't put an #ifdef inside
5097         the initializer list; set a default for CPLUSPLUS_CPP_SPEC and
5098         use it.
5099
5100 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5101
5102         Implement using decls inside template functions.
5103         * decl2.c (validate_nonmember_using_decl): Don't special case
5104         fake_std_node in the global namespace. Don't reject early when
5105         processing a template.
5106         (do_local_using_decl): Add to statement tree. Don't do further
5107         processing when building a template.
5108         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
5109
5110 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
5111
5112         * decl2.c (do_nonmember_using_decl): Don't complain if we find
5113         same function. Do complain about ambiguating extern "C"
5114         declarations.
5115
5116 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
5117
5118         Remove floating point and complex type template constant parms.
5119         * pt.c (convert_nontype_argument): Remove REAL_TYPE and
5120         COMPLEX_TYPE extensions.
5121         (invalid_nontype_parm_type_p): Likewise.
5122
5123 2001-02-27  Jeffrey Oldham  <oldham@codesourcery.com>
5124
5125         * except.c (call_eh_info): Revert "match_function"'s type.
5126
5127 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
5128
5129         Fix ctor vtable vcall offsets.
5130         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
5131         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
5132         (get_matching_base): Remove.
5133         (get_original_base): New function.
5134         (build_vtbl_initializer): Initialize vid.rtti_binfo.
5135         Use a virtual thunk for a ctor vtable with an index
5136         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
5137         primary base within a constructor vtable. Only set
5138         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
5139         when primary base has been lost.
5140         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
5141
5142 2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>
5143
5144         * call.c (joust): Ensure more_specialized()'s argument length
5145         parameter has correct value for constructors.
5146
5147 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
5148
5149         * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
5150
5151         * decl.c (mark_inlined_fns): Prototype.
5152
5153 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
5154
5155         * spew.c (yylex): Correct handling of friends.
5156
5157 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
5158
5159         * mangle.c (write_encoding): Pass write_function_type the
5160         FUNCTION_DECL for the function being encoded.
5161         (write_function_type): Pass it along to write_bare_function_type.
5162         (write_bare_function_type): Pass it along to write_method_parms.
5163         (write_method_parms): Don't mangle the compiler-generated
5164         parameters to a constructor or destructor.
5165
5166 2001-02-22  Andreas Jaeger  <aj@suse.de>
5167
5168         * optimize.c: Include toplev.h for
5169         note_deferral_of_defined_inline_function prototype.
5170
5171 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
5172
5173         * cp-tree.h (struct lang_decl_inlined_fns): New.
5174         (struct lang_decls): Add inlined_fns.
5175         (DECL_INLINED_FNS): New macro.
5176         * optimize.c (struct inline_data): Add inlined_fns.
5177         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
5178         (inlinable_function_p): Likewise, fix typo in comment,
5179         function is not inlinable if it already inlined function currently
5180         being optimized.
5181         (expand_call_inline): Add fn to inlined_fns if necessary.
5182         (optimize_function): Initialize inlined_fns.
5183         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
5184         * decl.c (mark_inlined_fns): New function.
5185         (lang_mark_tree): Call it.
5186
5187 2001-02-21  Jason Merrill  <jason@redhat.com>
5188
5189         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
5190         (DECL_UNINLINABLE): Move to middle-end.
5191
5192         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
5193         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
5194         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
5195         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
5196         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
5197
5198         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
5199         second parm of op=.
5200
5201 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
5202
5203         * decl2.c (set_decl_namespace): Allow explicit instantiations in
5204         any namespace.
5205
5206 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5207
5208         * optimize.c (expand_call_inline): Don't walk subtrees of type
5209         nodes.
5210
5211 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
5212
5213         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
5214         for a destructor.
5215
5216 2001-02-18  Jason Merrill  <jason@redhat.com>
5217
5218         Do put the VTT parameter in DECL_ARGUMENTS.
5219         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
5220         (current_vtt_parm): New macro.
5221         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
5222         (DECL_HAS_VTT_PARM_P): New macro.
5223         (DECL_VTT_PARM): Remove.
5224         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
5225         * decl.c (duplicate_decls): Only copy the operator code if
5226         appropriate.
5227         (start_function): Set current_vtt_parm.
5228         (lang_mark_tree): Don't mark vtt_parm.
5229         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
5230         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
5231         * class.c (build_clone): Maybe remove the VTT parm.
5232         * optimize.c (maybe_clone_body): Set up the VTT parm.
5233         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
5234         * call.c (build_over_call): Just allow the VTT arg.
5235         * method.c (make_thunk): Don't set DECL_VTT_PARM.
5236         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
5237         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
5238         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
5239         * error.c (dump_function_decl): Likewise.
5240         * call.c (build_user_type_conversion_1, convert_like_real): Abort
5241         if we try to call a constructor with in-charge or VTT parms.
5242         * method.c (skip_artificial_parms_for): New fn.
5243         * call.c (add_function_candidate, build_over_call): Call it.
5244         * call.c (build_new_method_call): Use current_vtt_parm.
5245         * init.c (expand_virtual_init): Likewise.
5246         * class.c (same_signature_p): No longer static.
5247         * cp-tree.h: Declare it.
5248         * search.c (look_for_overrides_r): Use it.
5249
5250 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
5251
5252         * cp-tree.h (new_abi_rtti_p): Remove.
5253         (name_mangling_version): Likewise.
5254         (flag_do_squangling): Likewise.
5255         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
5256         * decl.c (grokfndecl): Likewise.
5257         * decl2.c (name_mangling_version): Remove.
5258         (flag_do_squangling): Likewise.
5259         (lang_f_options): Remove `squangle'.
5260         (unsupported_options): Add `squangle'.
5261         (cxx_decode_option): Issue a warning about uses of
5262         -fname-mangling-version.
5263         (finish_file): Remove old ABI support.
5264         * pt.c (check_explicit_specialization): Likewise.
5265         (tsubst_decl): Likewise.
5266         * rtti.c (init_rtti_processing): Likewise.
5267         (build_headof): Likewise.
5268         (get_tinfo_decl_dynamic): Likewise.
5269         (tinfo_from_decl): Likewise.
5270         (build_dynamic_cast_1): Likewise.
5271         (synthesize_tinfo_var): Likewise.
5272         * init.c (build_new): Allow enumeration types for the array-bounds
5273         in a direct-new-declarator.
5274
5275         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
5276
5277         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
5278         TREE_PROTECTED from the template being specialized.
5279
5280 2001-02-17  Jason Merrill  <jason@redhat.com>
5281
5282         * decl2.c (build_artificial_parm): Set TREE_READONLY.
5283
5284         * decl.c (bad_specifiers): Allow throw specs on things with
5285         pointer-to-function or -member-function type.
5286         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
5287         a pmf.
5288
5289 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
5290
5291         * call.c (check_dtor_name): Handle template names correctly.
5292
5293 2001-02-16  Jason Merrill  <jason@redhat.com>
5294
5295         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
5296         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
5297         * optimize.c (maybe_clone_body): Don't substitute it.
5298         * call.c (build_new_method_call): Check in_chrg instead.
5299         * init.c (expand_virtual_init): Likewise.
5300
5301 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
5302
5303         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
5304         class-type introduces at least a type-name.
5305
5306 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
5307
5308         * call.c (convert_like_real): Create a temporary for non-lvalue.
5309
5310 2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>
5311
5312         * cp-tree.h: Fix typos in comments.
5313
5314 2001-02-16  Jason Merrill  <jason@redhat.com>
5315
5316         * optimize.c (remap_block): If we're compiling a clone, pass the
5317         new block to insert_block.
5318
5319 2001-02-16  Mark Mitchell  <mark@codesourcery.com>
5320
5321         * semantics.c (finish_asm_stmt): Robustify.
5322
5323 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
5324
5325         * pt.c (push_template_decl_real): Don't remangle the name of a
5326         class template.
5327
5328 2001-02-15  Jim Meyering  <meyering@lucent.com>
5329
5330         * Make-lang.in (c++.install-common): Depend on installdirs.
5331         (c++.install-info): Likewise.
5332         (c++.install-man): Likewise.
5333
5334 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
5335
5336         * typeck2.c (build_m_component_ref): Robustify.
5337
5338 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
5339
5340         * friend.c (do_friend): Don't take the nested [template] class
5341         into account when deciding whether to warn about the friend
5342         function not referring to a template function.
5343
5344 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
5345
5346         * typeck.c (build_unary_op): Clarify error message.
5347
5348 2001-02-08  Aldy Hernandez  <aldyh@redhat.com>
5349
5350         * parse.y (component_constructor_declarator): allow optional
5351         parentheses around constructor class name.
5352
5353 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5354
5355         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
5356         section.
5357         * init.c (emit_base_init): Remove incorrect comment about
5358         virtual bases.
5359         * method.c (make_thunk): Fix comment alignment.
5360
5361 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5362
5363         Kill remnants of this is variable.
5364         * cp-tree.h (flag_this_is_variable): Remove.
5365         * decl2.c (flag_this_is_variable): Remove.
5366         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
5367         (build_vbase_path): The path is non-static, even in a cdtor.
5368         (resolves_to_fixed_type_p): Add additional return value.
5369         * search.c (init_vbase_pointers): Adjust.
5370         * tree.c (lvalue_p_1): Adjust.
5371         * typeck.c (mark_addressable): Adjust.
5372
5373 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5374
5375         * pt.c (unify): Don't check cv quals of array types.
5376
5377 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
5378
5379         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
5380         check whether we already have the type.
5381
5382 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
5383
5384         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
5385         * call.c (build_op_delete_call): Simplify to remove duplicate
5386         code.
5387         * class.c (clone_function_decl): Don't build the deleting variant
5388         of a non-virtual destructor.
5389         * decl.c (finish_destructor_body): Don't call delete if this is a
5390         non-virtual destructor.
5391         * init.c (build_delete): Explicitly call `operator delete' when
5392         deleting an object with a non-virtual destructor.
5393
5394 2001-02-13  Jason Merrill  <jason@redhat.com>
5395
5396         * lang-specs.h: Add more __EXCEPTIONS.
5397
5398 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5399
5400         * typeck2.c (process_init_constructor): Check
5401         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
5402
5403 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5404
5405         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
5406         Remove spurious information in comment. Allow further
5407         adjustments of REFERENCE_TYPE args.
5408
5409 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
5410
5411         * errfn.c (cp_deprecated): Tweak diagnostic text.
5412         * parse.y (new_initializer): Deprecate initializer lists
5413         extension.
5414
5415 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
5416
5417         Remove old ABI support.
5418
5419 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
5420
5421         * decl2.c (flag_vtable_thunks): Always set it to 1.
5422         (flag_new_abi): Likewise.
5423         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
5424
5425         * Makefile.in (g++spec.o): Fix typo.
5426
5427 2001-02-09  Jason Merrill  <jason@redhat.com>
5428
5429         * lang-specs.h: Restore definition of __EXCEPTIONS.
5430
5431 2001-02-08  Jason Merrill  <jason@redhat.com>
5432
5433         * search.c (shared_member_p): New function.
5434         (lookup_field_r): Use it.
5435         * cp-tree.h (SHARED_MEMBER_P): Remove.
5436
5437         * method.c (process_overload_item): Handle template-dependent array
5438         bounds.
5439         * pt.c (type_unification_real): If we end up with undeduced nontype
5440         parms, try again.
5441
5442         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
5443         types.
5444
5445         * typeck2.c (friendly_abort): Don't say anything if we have
5446         earlier errors or sorries.
5447
5448         * decl.c (check_tag_decl): Notice attempts to redefine bool and
5449         wchar_t.  Ignore if in_system_header.
5450
5451         * decl.c (maybe_push_cleanup_level): New fn...
5452         (start_decl_1): ...split out from here.
5453         * cvt.c (build_up_reference): Use it.
5454         * cp-tree.h: Declare it.
5455
5456 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
5457
5458         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
5459         spec.
5460
5461 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
5462
5463         * pt.c (lookup_template_class): Make sure it's a primary
5464         template or template_template_parm when called from the parser.
5465         (instantiate_template_class): Add assertion.
5466
5467 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
5468
5469         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
5470         from error_mark_node.
5471
5472 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
5473
5474         Fix specification and implementation bugs in V3 ABI
5475         construction vtables.
5476         * cp-tree.h (flag_dump_class_layout): New flag.
5477         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
5478         (BINFO_LOST_PRIMARY_P): New flag.
5479         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
5480         (BINFO_PRIMARY_MARKED_P): Rename to ...
5481         (BINFO_PRIMARY_P): ... here.
5482         (binfo_via_virtual): New prototype.
5483         * decl2.c (flag_dump_class_layout): New flag.
5484         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
5485         use `=' as a file name separator.
5486         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
5487         bases.
5488         (build_vtbl_address): If this is a virtual primary base, then
5489         get the vtbl of what it is ultimately primary for.
5490         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
5491         for BINFO_PRIMARY_P.
5492         (dfs_skip_nonprimary_vbases_markedp): Likewise.
5493         (get_shared_vbase_if_not_primary): Likewise.
5494         (dfs_get_pure_virtuals): Likewise.
5495         (expand_upcast_fixups): Likewise.
5496         (fixup_virtual_upcast_offsets): Likewise.
5497         (dfs_find_vbase_instance): Likewise.
5498         (find_vbase_instance): Likewise.
5499         (binfo_from_vbase): Adjust comment to reflect reality.
5500         (binfo_via_virtual): New function.
5501         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
5502         for binfo walking during VTT construction.
5503         (dfs_mark_primary_bases): Remove.
5504         (force_canonical_binfo_r): New function.
5505         (force_canonical_binfo): New function.
5506         (mark_primary_virtual_base): New function.
5507         (mark_primary_bases): Walk in inheritance graph order, use
5508         mark_primary_virtual_base.
5509         (determine_primary_base): Use some more intermediate variables.
5510         (dfs_find_final_overrider): Don't check for overriding along a
5511         virtual path.
5512         (dfs_modify_vtables): Walk into primary virtual bases too.
5513         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
5514         (build_base_fields): Likewise.
5515         (dfs_set_offset_for_unshared_vbases): Likewise.
5516         (layout_virtual_bases): Likewise.
5517         (end_of_class): Likewise.
5518         (finish_struct_1): Call dump_class_hierarchy, if requested.
5519         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
5520         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
5521         (dump_class_hierarchy): Add file parameter. Append to file, if
5522         required.
5523         (finish_vtbls): Adjust accumulate_vtbl_inits call.
5524         Use canonical base for virtual bases.
5525         (build_vtt): Add more comments. Adjust build_vtt_inits call.
5526         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
5527         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
5528         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
5529         virtual VTTs.
5530         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
5531         from DATA.  We want virtual primary bases and all bases via virtual.
5532         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
5533         virtual base when not a construction vtable.
5534         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
5535         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
5536         Use canonical bases when processing virtual bases.
5537         (accumulate_vtbl_inits): We're interested in any base via a
5538         virtual path.
5539         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
5540         within a construction vtable, determine what is being overridden.
5541         (build_vtbl_initializer): Add more comments
5542         (add_vcall_offset_vtbl_entries_1): Adjust comment.
5543         (build_rtti_vtbl_entries): Check if the base has lost its
5544         primary.
5545
5546 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
5547
5548         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
5549
5550 Sun Feb  4 15:52:44 2001  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5551
5552         * decl.c (pushdecl): Call abort instead of fatal.
5553         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
5554         * init.c (build_new_1): Likewise.
5555         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
5556         * decl.c (build_typename_type): hash_table_init now returns void.
5557         decl.c (init_decl_processing): Make an error non-fatal.
5558
5559 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
5560
5561         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
5562         Document.
5563         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
5564         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
5565         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
5566         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
5567         * decl.c (maybe_commonize_var): Use the new name-mangling where
5568         appropriate.
5569         * decl2.c (comdat_linkage): Enhance comments.  Make all
5570         compiler-generated things static, if COMDAT is not available.
5571         (get_tinfo_decl): Do not make typeinfo objects that belong in the
5572         library COMDAT.
5573         (tinfo_base_init): Use the correct mangled name for typeinfo
5574         strings, and push them into the global scope.
5575         (typeinfo_in_lib_p): New function.
5576         (synthesize_tinfo_var): Use it.
5577         (create_real_tinfo_var): Likewise.
5578
5579 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
5580
5581         * decl.c (push_class_binding): Use context_for_name_lookup instead
5582         of CP_DECL_CONTEXT.
5583         * search.c (context_for_name_lookup): Remove static.  Check for NULL
5584         context in the loop.
5585         * cp-tree.h (context_for_name_lookup): Add prototype.
5586
5587 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
5588
5589         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
5590         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
5591         Remove.
5592         * call.c (convert_class_to_reference, build_user_type_conversion_1,
5593         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
5594
5595 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
5596
5597         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
5598         of macros used when compiling g++spec.c.
5599         * g++spec.c (lang_specific_driver): Link with the shared
5600         libgcc by default.
5601
5602 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
5603
5604         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
5605         make_reference_declarator, make_call_declarator), method.c
5606         (implicitly_declare_fn), parse.y (namespace_using_decl,
5607         notype_unqualified_id, expr_or_declarator, new_type_id,
5608         after_type_declarator, direct_after_type_declarator,
5609         notype_declarator, complex_notype_declarator,
5610         complex_direct_notype_declarator, qualified_id,
5611         notype_qualified_id, overqualified_id, direct_new_declarator,
5612         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
5613         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
5614         instead of build_parse_node.
5615
5616 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5617
5618         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
5619         (minus_one_node): Moved to top level gcc directory.  Renamed
5620         to integer_minus_one_node.
5621
5622         * init.c (init_init_processing): Don't set minus_one_node.
5623         (build_vec_init): Use integer_minus_one_node.
5624
5625         * rtti.c (get_tinfo_decl_dynamic): Likewise.
5626
5627 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
5628
5629         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
5630         identical and they would be replaced with constant, remove
5631         MODIFY_EXPR from the tree.
5632
5633 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5634
5635         * Make-lang.in: Remove all dependencies on defaults.h.
5636         * call.c: Don't include defaults.h.
5637         * decl.c: Likewise.
5638         * decl2.c: Likewise.
5639         * except.c: Likewise.
5640         * pt.c: Likewise.
5641         * rtti.c: Likewise.
5642         * tree.c: Likewise.
5643         * typeck.c: Likewise.
5644
5645 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
5646
5647         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
5648         operators even in "C" linkage.
5649         * method.c (set_mangled_name_for_decl): Likewise.
5650         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
5651         overloaded operators in "C" linkage.
5652
5653 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
5654
5655         * pt.c (tsubst_decl): Remove IN_DECL parameter.
5656         (tsubst_arg_types): Check parameter is not void.
5657         (tsubst): Adjust tsubst_decl call.
5658
5659 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
5660
5661         * call.c (add_builtin_candidate): Quote std properly, from
5662         previous change.
5663
5664 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5665
5666         * pt.c (check_explicit_specialization): Clone constructors and
5667         destructors.
5668
5669 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
5670
5671         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
5672         indicates anything special about template depth. Make sure we
5673         only count the user visible template classes.
5674
5675 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
5676
5677         * call.c (build_conv): Typo in comment.
5678         (add_builtin_candidate): Add more explanation.
5679         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
5680         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
5681         when we have enumeral types.
5682         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
5683         candidates for relops and eqops.
5684         (joust): Simplify control flow. Allow a non-template user
5685         function to hide a builtin.
5686
5687 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
5688
5689         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
5690         (more_specialized): Add deduction parameter.
5691         * call.c (joust): Adjust more_specialized call.
5692         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
5693         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
5694         (get_bindings_order): Remove.
5695         (get_bindings_real): Add DEDUCE parameter.
5696         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
5697         REFERENCE_TYPE jig for DEDUCE_ORDER.
5698         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
5699         maybe_adjust_types_for_deduction.
5700         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
5701         directly.
5702         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
5703         (check_cv_quals_for_unify): Use new unify qualifier flags.
5704         (unify): Clear new unify qualifier flags.
5705         (get_bindings_real): Add DEDUCE parameter.
5706         (get_bindings): Adjust call to get_bindings_real.
5707         (get_bindings_overload): Likewise.
5708         (most_specialized_instantiation): Adjust call to
5709         more_specialized.
5710
5711 2001-01-19  Jason Merrill  <jason@redhat.com>
5712
5713         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
5714
5715         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
5716         -fnew-abi.
5717
5718 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
5719
5720         * decl2.c (arg_assoc_class): Fix double iteration logic.
5721
5722 2001-01-19  Jason Merrill  <jason@redhat.com>
5723
5724         * init.c (build_delete): Always call convert_force to strip cv-quals.
5725
5726         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
5727         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
5728         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
5729
5730 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5731
5732         * search.c (get_vbase_1): Count only virtual bases.
5733
5734 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5735
5736         * class.c (duplicate_tag_error): Robustify flag clearing.
5737
5738 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5739
5740         * cp-tree.h (lookup_template_class): Add complain parm.
5741         * decl.c (lookup_namespace_name): Adjust call to
5742         lookup_template_class.
5743         (make_typename_type): Likewise.
5744         * semantics.c (finish_template_type): Likewise.
5745         * pt.c (lookup_template_class): Add complain parm. Adjust.
5746         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
5747         (tsubst): Likewise.
5748
5749 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
5750
5751         * pt.c (copy_default_args_to_explicit_spec): Preserve
5752         object's CV quals. Reorganize.
5753
5754 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5755
5756         * typeck.c (build_modify_expr): Say `initialization' for
5757         INIT_EXPRs.
5758         * init.c (build_default_init): Convert to enumeral type, if
5759         needed.
5760
5761 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
5762
5763         * parse.y (nomods_initdcl0): Properly set things up for
5764         initdcl0_innards.
5765
5766 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5767
5768         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
5769         (type_unification_real): Set it.
5770         (unify): Use it.
5771
5772 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5773
5774         * decl.c (finish_destructor_body): Convert to vbase pointer here.
5775
5776 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5777
5778         * semantics.c (begin_class_definition): Check we're not inside a
5779         template parm list.
5780
5781 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
5782
5783         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
5784         BASELINK_P.
5785
5786 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5787
5788         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
5789         * call.c (build_over_call): Add comment.
5790
5791 2001-01-16 Daniel Berlin <dberlin@redhat.com>
5792
5793         * cvt.c (ocp_convert): Handle vector type conversion
5794         * typeck2.c (digest_init): Handle vector type initializations
5795
5796 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
5797
5798         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
5799           was given.
5800
5801 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
5802
5803         * pt.c (check_nontype_parm): Rename to ...
5804         (invalid_nontype_parm_type_p): ... here.
5805         (process_template_parm): Adjust.
5806         (convert_template_argument): Adjust.
5807
5808 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
5809
5810         * pt.c (check_nontype_parm): New function.
5811         (process_template_parm): Use it.
5812         (convert_template_argument): Use it.
5813         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
5814         member.
5815
5816 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
5817
5818         * tree.c: Add defaults.h
5819         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
5820         * Make-lang.in (cp/tree.o): Add defaults.h.
5821
5822 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
5823
5824         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
5825
5826 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
5827
5828         * g++.1: Change to be ".so man1/gcc.1".
5829
5830 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
5831
5832         * Make-lang.in (c++.info, c++.install-info): Build and install g++
5833         internals info.
5834         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
5835         ($(srcdir)/cp/g++int.info): New target.
5836         * gxxint.texi: Add info directory entry.  Use @@ in email address.
5837         * .cvsignore: Update.
5838
5839 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
5840
5841         * typeck.c (build_c_cast): Do template processing earlier.
5842         Always pedwarn on array casts.
5843
5844 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
5845
5846         * friend.c (make_friend_class): Make sure a templated class is
5847         actually a template.
5848
5849 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5850
5851         * decl2.c (get_guard): Set linkage from guarded decl.
5852
5853 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5854
5855         * call.c (convert_default_arg): Check for unprocessed
5856         DEFAULT_ARG.
5857         * cp-tree.h (replace_defarg): Move to spew.c.
5858         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
5859         spew.c, which is where they really are.
5860         (done_pending_defargs): Declare.
5861         (unprocessed_defarg_fn): Declare.
5862         * decl.c (replace_defarg): Move to spew.c
5863         * parse.y (structsp): Call done_pending_defargs.
5864         * spew.c (defarg_fns): Rearrange list structure.
5865         (defarg_fnsdone): New static variable.
5866         (defarg_depfns): New static variable.
5867         (init_spew): Adjust.
5868         (add_defarg_fn): Store the type in TREE_TYPE.
5869         (do_pending_defargs): Detect and deal with ordering constraints
5870         and circularity.
5871         (done_pending_defargs): New function.
5872         (unprocessed_defarg_fn): New function.
5873         (replace_defarg): Moved from decl.c. Robustify. Don't save
5874         if circularity detected.
5875
5876 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5877
5878         * pt.c (unify): Check array has a domain, before checking
5879         whether it is variable sized.
5880
5881 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5882
5883         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
5884         parameters with pointers to arrays of unknown bound.
5885
5886 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
5887
5888         * parse.y (template_parm_header, template_spec_header): New
5889         reductions. Split out from ...
5890         (template_header): ... here. Use them.
5891         (template_template_parm): Use template_parm_header.
5892         * semantics.c (finish_template_template_parm): Add assert.
5893
5894 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
5895
5896         * mangle.c (write_builtin_type): Fix thinko.
5897
5898         * pt.c (copy_default_args_to_explicit_spec_1): New function.
5899         (copy_default_args_to_explicit_spec): Likewise.
5900         (check_explicit_specialization): Use it.
5901
5902         * class.c (finish_struct_1):  Remove last argument in call to
5903         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
5904         * decl.c (builtin_function): Likewise.
5905         (build_cp_library_fn): Likewise.
5906         (check_initializer): Likewise.
5907         (make_rtl_for_nonlocal_decl): Likewise.
5908         (cp_finish_decl): Likewise.
5909         (start_function): Likewise.
5910         * decl2.c (finish_anon_union): Likewise.
5911         * friend.c (do_friend): Likewise.
5912         * init.c (build_java_class_ref): Likewise.
5913         * method.c (make_thunk): Likewise.
5914         * pt.c (tsubst_friend_function): Likewise.
5915         * semantics.c (expand_body): Likewise.
5916
5917 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
5918
5919         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
5920         looking at DECL_CLONED_FUNCTION for non-functions.
5921
5922 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
5923
5924         * error.c (dump_template_parameter): Use parm to determine how
5925         to print default value.
5926
5927 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
5928
5929         * class.c (duplicate_tag_error): Clear more flags.
5930
5931 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
5932
5933         * call.c (build_new_method_call): Use binfo_for_vbase.
5934
5935 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
5936
5937         * cp-tree.h (flag_cond_mismatch): Don't declare.
5938         * decl2.c (flag_cond_mismatch): Don't define.
5939         (lang_f_options): Remove cond-mismatch.
5940         (unsupported_options): Add cond-mismatch.
5941
5942 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
5943
5944         * class.c (handle_using_decl): Reject using of constructor name
5945         of sourcing class. Allow injecting of a method with same name as
5946         nested class. Fixup error messages.
5947
5948 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
5949
5950         * decl2.c (lang_decode_option): Handle -Wformat=2.
5951
5952 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
5953
5954         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
5955         initialized_in_class.
5956         (DECL_DEFINED_IN_CLASS_P): Rename to ...
5957         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
5958         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
5959         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
5960         * pt.c (check_default_tmpl_args): Adjust for
5961         DECL_INITIALIZED_IN_CLASS_P.
5962         (instantiate_class_template): Likewise.
5963         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
5964
5965         * class.c (finish_struct): Constify saved_filename.
5966
5967 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
5968
5969         * class.c (duplicate_tag_error): Adjust diagnostic.
5970         (finish_struct): Locally set location to start of struct.
5971         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
5972
5973 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
5974
5975         * decl.c (struct binding_level): Adjust class_shadowed comments
5976         to reflect reality.
5977         (push_class_level_binding): Adjust comments to reflect reality.
5978         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
5979         Don't set TREE_VALUE on the class_shadowed list.
5980
5981 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
5982
5983         * decl2.c (acceptable_java_type): Allow references too.
5984         * init.c (build_java_class_ref): When using the new ABI, search
5985         `class$' and have it mangled with `mangle_decl.'
5986         * mangle.c (write_java_integer_type_codes): New function.
5987         (write_builtin_type): Detect and mangle Java integer and real
5988         types.
5989
5990 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
5991
5992         * decl2.c (grokfield): Don't accept `asm' specifiers for
5993         non-static data members.
5994
5995 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5996
5997         * expr.c (cplus_expand_expr): Don't reset `target'.
5998
5999 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
6000
6001         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
6002
6003 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
6004
6005         * parse.y (template_datadef): Check for error_mark_node.
6006
6007 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
6008
6009         * cp-tree.def (DEFAULT_ARG): Make `x' class.
6010
6011 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
6012
6013         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
6014         (record_builtin_type): Make non-static.
6015         (flag_short_double): Don't declare.
6016         (init_decl_processing): Remove the creation of many tree nodes now
6017         in c_common_nodes_and_builtins.
6018         (build_void_list_node): New function.
6019         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
6020         * cp-tree.h (flag_short_wchar): Don't declare.
6021
6022 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
6023
6024         * call.c (build_conv): Don't use build1 for USER_CONV.
6025         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
6026
6027 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
6028
6029         * lex.c (lang_init): Call c_common_lang_init.
6030
6031 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6032
6033         * search.c (lookup_fnfields_here): Remove.
6034         (look_for_overrides_r): Use lookup_fnfields_1.
6035         Ignore functions from using declarations.
6036
6037 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
6038
6039         Implement exceptions specifiers for implicit member functions.
6040         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
6041         * method.c (synthesize_exception_spec): New function.
6042         (locate_dtor, locate_ctor, locate_copy): New functions.
6043         (implicitly_declare_fn): Generate the exception spec too.
6044         * search.c (check_final_overrider): Check artificial functions
6045         too.
6046         * typeck2.c (merge_exception_specifiers): New function.
6047
6048 2001-01-03  Jason Merrill  <jason@redhat.com>
6049
6050         * init.c (build_default_init): New fn.
6051         (perform_member_init): Split out from here.
6052         (build_new_1): Use it.  Simplify initialization logic.
6053         (build_vec_init): Take an array, rather than a pointer and maxindex.
6054         Speed up simple initializations.  Don't clean up if we're assigning.
6055         * cp-tree.h: Adjust.
6056         * decl2.c (do_static_initialization): Remove TREE_VEC case.
6057         * parse.y (new_initializer): Return void_zero_node for ().
6058         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
6059         * typeck2.c (digest_init): Only complain about user-written
6060         CONSTRUCTORs.
6061
6062 2000-12-22  Mike Stump  <mrs@wrs.com>
6063
6064         * decl2.c: (max_tinst_depth): Increase to 50.
6065
6066 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
6067
6068         * class.c (invalidate_class_lookup_cache): Zero the
6069         previous_class_values.
6070         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
6071         TREE_INT_CST_HIGH.
6072         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
6073         * decl.c (free_bindings): New variable.
6074         (push_binding): Don't create a new binding if we have one on the
6075         free list.
6076         (pop_binding): Put old bindings on the free list.
6077         (init_decl_processing): Use size_int, not build_int_2.
6078         Register free_bindings as a GC root.
6079         (cp_make_fname_decl): Use size_int, not build_int_2.
6080         (push_inline_template_parms_recursive): Likewise.
6081         (end_template_parm_list): Likewise.
6082         (for_each_tempalte_parm): Do not use walk_tree_without_duplicates.
6083         (tsubst_template_parms): Use size_int, not build_int_2.
6084         (tsubst): Likewise.
6085         * rtti.c (get_vmi_pseudo_type_info): Likewise.
6086
6087 2001-01-02  Richard Henderson  <rth@redhat.com>
6088
6089         * parse.y (asm): Set ASM_INPUT_P.
6090
6091 2001-01-02  Jason Merrill  <jason@redhat.com>
6092
6093         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
6094         for v3 ABI.
6095
6096         * typeck.c (cp_truthvalue_conversion): New fn.
6097         * cvt.c (ocp_convert): Use it.
6098
6099         * cp-tree.h: Lose c-common.c decls.
6100
6101         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
6102         * cvt.c (convert_to_void): Use type_unknown_p.
6103
6104         * typeck.c (strip_all_pointer_quals): Also strip quals from
6105         pointer-to-member types.
6106
6107         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
6108         parse.y as C.
6109
6110         * call.c (build_new_method_call): Do evaluate the object parameter
6111         when accessing a static member.
6112         * typeck.c (build_component_ref): Likewise.
6113
6114 2001-01-02  Andreas Jaeger  <aj@suse.de>
6115
6116         * decl.c (cp_missing_noreturn_ok_p): New.
6117         (init_decl_processing): Set lang_missing_noreturn_ok_p.
6118
6119 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
6120
6121         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
6122
6123 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
6124
6125         * class.c (pushclass): Remove #if 0'd code.
6126         * cp-tree.h (overload_template_name): Remove.
6127         * decl.c (store_bindings): Simplify.
6128         (pop_from_top_level): Likewise.
6129         * pt.c (overload_template_name): Remove.
6130         (instantiate_decl): Don't call push_to_top_level if it's not
6131         needed.
6132
6133 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
6134
6135         * pt.c (register_local_specialization): Don't return a value.
6136         (lookup_template_class): Use move-to-front heuristic when looking
6137         up template instantiations.
6138         (instantiate_decl): Only push_to_top_level when we're actually
6139         going to instantiate the template.
6140
6141 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
6142
6143         * search.c (binfo_for_vtable): Return least derived class, not
6144         most.  Handle secondary vtables.
6145
6146 2000-12-22  Jason Merrill  <jason@redhat.com>
6147
6148         * pt.c (more_specialized): Don't optimize len==0.
6149         (fn_type_unification): If we're adding the return type, increase len.
6150
6151         * typeck.c (build_binary_op): Fix pmf comparison logic.
6152
6153         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
6154         DECL_STATIC_FUNCTION_P.
6155
6156         * semantics.c (genrtl_finish_function): Don't try to jump to
6157         return_label unless it exists.
6158
6159         In partial ordering for a call, ignore parms for which we don't have
6160         a real argument.
6161         * call.c (joust): Pass len to more_specialized.
6162         (add_template_candidate_real): Strip 'this', pass len.
6163         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
6164         (get_bindings_order): New fn.  Pass len down.
6165         (get_bindings_real): Strip 'this', pass len.
6166         (fn_type_unification): Likewise.
6167         (type_unification_real): Succeed after checking 'len' args.
6168         (most_specialized_instantiation): Lose explicit_args parm.
6169         * class.c (resolve_address_of_overloaded_function): Strip 'this',
6170         pass len.
6171
6172 2000-12-21  Jason Merrill  <jason@redhat.com>
6173
6174         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
6175         DECL_TEMPLATE_RESULT.
6176
6177         * search.c (lookup_field_r): Call lookup_fnfields_1, not
6178         lookup_fnfields_here.
6179
6180         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
6181
6182         * call.c (build_object_call): Also allow conversions that return
6183         reference to pointer to function.
6184         (add_conv_candidate): Handle totype being ref to ptr to fn.
6185         (build_field_call): Also allow members of type reference to function.
6186         Lose support for calling pointer to METHOD_TYPE fields.
6187
6188         * error.c (dump_expr): Handle *_CAST_EXPR.
6189
6190         * typeck2.c (build_scoped_ref): Always convert to the naming class.
6191
6192         * tree.c (break_out_cleanups): Lose.
6193         * cp-tree.h: Remove prototype.
6194         * typeck.c (build_component_ref): Don't break_out_cleanups.
6195         (build_compound_expr): Likewise.
6196         * semantics.c (finish_expr_stmt): Likewise.
6197
6198 2000-12-20  Richard Henderson  <rth@redhat.com>
6199
6200         * cp-tree.h: Update declarations.
6201         * decl.c (finish_case_label): Return the new stmt node.
6202         * semantics.c (finish_goto_stmt): Likewise.
6203         (finish_expr_stmt, finish_return_stmt): Likewise.
6204         (finish_break_stmt, finish_continue_stmt): Likewise.
6205         (finish_asm_stmt): Likewise.
6206         * parse.y (already_scoped_stmt): Set STMT_LINENO.
6207         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
6208         (simple_if, simple_stmt): Return the new stmt node.
6209         (save_lineno): New.
6210
6211 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
6212
6213         * cp-tree.h: Don't declare warn_long_long.
6214
6215 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6216
6217         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
6218         IS_AGGR_TYPE.
6219
6220 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6221
6222         * pt.c (unify): Handle when both ARG and PARM are
6223         BOUND_TEMPLATE_TEMPLATE_PARM.
6224
6225 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6226
6227         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
6228         DECL_TEMPLATE_PARM_P.
6229
6230 2000-12-15  Jason Merrill  <jason@redhat.com>
6231
6232         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
6233
6234         * init.c (build_new_1): Don't strip quals from type.
6235
6236         * decl.c (pushdecl): Don't check for linkage on a non-decl.
6237
6238         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
6239
6240         * call.c (build_new_function_call): Lose space before paren in
6241         error message.
6242         (build_new_method_call): Likewise.
6243
6244         * typeck2.c (build_m_component_ref): Propagate quals from datum.
6245
6246 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6247
6248         * pt.c (check_explicit_specialization): Propagate default
6249         function arguments to explicit specializations.
6250
6251 2000-12-13  DJ Delorie  <dj@redhat.com>
6252
6253         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
6254         and <? operators.
6255
6256 2000-12-08  Jason Merrill  <jason@redhat.com>
6257
6258         * error.c (dump_function_name): Don't let the user see __comp_ctor.
6259
6260         Clean up copy-initialization in overloading code.
6261         * call.c (build_user_type_conversion_1): Die if we are asked to
6262         convert to the same or a base type.
6263         (implicit_conversion): Avoid doing so.  Lose reference binding code.
6264         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
6265         direct-initialization.  Also do direct-init part of copy-init.
6266         (build_user_type_conversion): Don't provide context to convert_like.
6267         * cvt.c (ocp_convert): build_user_type_conversion will now provide
6268         the constructor call for copy-init.
6269
6270         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
6271         instantiation of a member template.
6272         (do_decl_instantiation): Not here.
6273
6274 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
6275
6276         * class.c (check_field_decls): Don't special case anonymous
6277         fields in error messages.
6278         (note_name_declared_in_class): Use %D on diagnostic.
6279
6280         * tree.c (pod_type_p): Use strip_array_types.
6281         (cp_valid_lang_attribute): Likewise.
6282         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
6283         multiple evaluations.
6284         (cp_has_mutable_p): Use strip_array_types.
6285
6286 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
6287
6288         * cp-tree.h (sufficient_parms_p): Declare new function.
6289         * call.c (sufficient_parms_p): New function, broken out of ...
6290         (add_function_candidate): ... here. Use it.
6291         (add_conv_candidate): Use it.
6292         * decl.c (grok_ctor_properties): Use it.
6293
6294 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
6295
6296         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
6297
6298 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
6299
6300         * decl2.c (lang_decode_option): Handle -Wformat-security.
6301
6302 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6303
6304         * pt.c (verify_class_unification): New function.
6305         (get_class_bindings): Use it.
6306         (try_class_unification): Tidy.
6307         (unify): Handle when argument of a template-id is not
6308         template parameter dependent.
6309         (template_args_equal): Handle when TREE_CODE's do not match.
6310
6311 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
6312
6313         * lang-specs.h (c++): When invoking the stand-alone preprocessor
6314         for -save-temps, pass all relevant -Defines to it, and then don't
6315         pass them to cc1plus.
6316
6317 2000-12-05  Will Cohen  <wcohen@redhat.com>
6318
6319         * decl.c (finish_case_label): Cleared
6320         more_cleanups_ok in surrounding function scopes.
6321         (define_label): Likewise.
6322
6323 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
6324
6325         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
6326         (get_matching_virtual): Remove.
6327         (look_for_overrides): Declare new function.
6328         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
6329         DECL_VINDEX here.
6330         * class.c (check_for_override): Move base class iteration code
6331         to look_for_overrides.
6332         * search.c (next_baselink): Remove.
6333         (get_virtuals_named_this): Remove.
6334         (get_virtual_destructor): Remove.
6335         (tree_has_any_destructors_p): Remove.
6336         (struct gvnt_info): Remove.
6337         (check_final_overrider): Remove `virtual' from error messages.
6338         (get_matching_virtuals): Remove. Move functionality to ...
6339         (look_for_overrides): ... here, and ...
6340         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
6341         to be overriding.
6342
6343 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
6344
6345         * typeck.c (get_delta_difference): If via a virtual base,
6346         return zero.
6347         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
6348         adjustment.
6349
6350 2000-12-04  Richard Henderson  <rth@redhat.com>
6351
6352         * error.c (dump_tree): Use output_add_string not OB_PUTS.
6353
6354 2000-12-04  Jason Merrill  <jason@redhat.com>
6355
6356         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
6357         (write_builtin_type): Pass intSI_type_node and the like through
6358         type_for_mode.
6359         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
6360         Pass intSI_type_node and the like through type_for_mode.
6361         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
6362         * pt.c (tsubst, unify): Likewise.
6363         * tree.c (walk_tree): Likewise.
6364         * error.c (dump_type): Likewise.
6365         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
6366
6367         * Make-lang.in: Tweak top comment for emacs.
6368         (cp/TAGS): Restore.
6369
6370         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
6371
6372         * class.c (clone_function_decl): Robustify.
6373
6374 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
6375
6376         * decl.c (store_bindings): Only search in the non modified
6377         old_bindings for duplicates.
6378
6379 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
6380
6381         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
6382         TYPE_POLYMORPHIC_P.
6383
6384         * typeck.c (build_static_cast): Remove unused variable.
6385
6386 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6387
6388         * pt.c: Fix typo in comment.
6389
6390 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6391
6392         * decl2.c (warn_format): Remove definition.
6393         (lang_decode_option): Handle -Wformat-nonliteral,
6394         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
6395
6396 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6397
6398         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
6399         (init_decl_processing): Don't create string_type_node,
6400         const_string_type_node, wint_type_node, intmax_type_node,
6401         uintmax_type_node, default_function_type, ptrdiff_type_node and
6402         unsigned_ptrdiff_type_node.  Adjust position of call to
6403         c_common_nodes_and_builtins.
6404         (identifier_global_value): New function.
6405
6406 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
6407
6408         * call.c (standard_conversion): Reject pointer to member
6409         conversions from ambiguous, inaccessible or virtual bases.
6410         * typeck.c (build_static_cast): Don't check pointers to members
6411         specially.
6412
6413 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6414
6415         * method.c (do_build_copy_constructor): Preserve cv
6416         qualifications when accessing source object members.
6417         (do_build_assign_ref): Likewise. Remove separate diagnostics for
6418         unnamed fields.
6419
6420 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6421
6422         * method.c (do_build_assign_ref): Construct appropriately
6423         CV-qualified base reference. Don't allow const casts in base
6424         conversion.
6425
6426 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
6427
6428         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
6429         incomplete return type.
6430
6431 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6432
6433         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
6434         * semantics.c (finish_base_specifier): Accept a _TYPE not a
6435         _DECL.
6436
6437 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6438
6439         * spew.c (yyerror): Cope if yylval.ttype is NULL.
6440
6441 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6442
6443         * decl.c (grokdeclarator): Diagnose undefined template contexts.
6444
6445 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
6446
6447         * decl.c (grokdeclarator): Do type access control on friend
6448         class.
6449
6450 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
6451
6452         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
6453         bison parser ickiness.
6454         * pt.c (tsubst_friend_function): Enter namespace scope when
6455         tsubsting the function name.
6456         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
6457
6458 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
6459
6460         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
6461         * cvt.c (cp_convert_to_pointer): Add force parameter.
6462         Allow conversions via virtual base if forced.
6463         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
6464         (ocp_convert): Likewise.
6465         * search.c (binfo_from_vbase): Return the virtual base's binfo.
6466         * typeck.c (get_delta_difference): Adjust handling of virtual
6467         bases.
6468
6469 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
6470
6471         * tree.c (struct list_hash): Remove.
6472         (list_hash_table): Make it be an htab.
6473         (struct list_proxy): New type.
6474         (list_hash_eq): New function.
6475         (list_hash_pieces): Renamed from ...
6476         (list_hash): ... this.
6477         (list_hash_lookup): Remove.
6478         (list_hash_add): Remove.
6479         (hash_tree_cons): Use the generic hashtable.
6480         (mark_list_hash): Remove.
6481         (init_tree): Create the hashtable.
6482
6483 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
6484
6485         * method.c (build_mangled_C9x_name): Rename to
6486         build_mangled_C99_name.  Change C9X references in comments to
6487         refer to C99.
6488
6489 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
6490
6491         * parse.y (unary_expr): Move VA_ARG from here ...
6492         (primary): ... to here.
6493
6494 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
6495
6496         * semantics.c (finish_id_expr): If type is error_mark, return
6497         error_mark.
6498
6499 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
6500
6501         * pt.c (lookup_template_class): Simplify loop exit constructs.
6502         Cope when there is no partial instantiation of a template
6503         template member.
6504
6505 Thu Nov 23 02:16:47 2000  J"orn Rennecke <amylaar@redhat.com>
6506
6507         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
6508
6509 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
6510
6511         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
6512         prefix.
6513
6514         * pt.c (do_decl_instantiate): Explicitly clone constructors and
6515         destructors that haven't already been cloned.
6516
6517 2000-11-20  Richard Henderson  <rth@redhat.com>
6518
6519         * parse.y (yyparse_1): Rename the parser entry point.
6520
6521 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
6522
6523         * mangle.c (write_name): Use <unscoped-name> for names directly in
6524         function scope.
6525         (write_unscoped_name): Accept names directly in function scope.
6526
6527 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
6528
6529         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
6530         * parse.y (extdef): Add EXPORT reduction.
6531         * spew.c (yylex): Don't skip export here.
6532
6533 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
6534
6535         * decl.c (init_decl_processing): Correct name of pure virtual
6536         function under the new ABI.
6537         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
6538         (throw_bad_typeid): Likewise for bad typeid function.
6539
6540 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
6541
6542         * decl.c (grokparms): Don't even function types of `void' type,
6543         either.
6544         * mangle.c (write_type): Don't crash when confronted with the
6545         error_mark_node.
6546
6547         * decl.c (grokparms): Don't create parameters of `void' type.
6548
6549 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
6550
6551         * lex.c (mark_impl_file_chain): Delete.
6552         (init_parse): Remove call to ggc_add_string_root.  No need to
6553         ggc_strdup a string constant.  Do not add impl_file_chain to GC
6554         roots.
6555         (handle_pragma_implementation): No need to ggc_strdup main_filename.
6556
6557 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
6558
6559         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
6560
6561 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
6562
6563         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
6564         * decl.c (grokdeclarator): Don't reject void parms here.
6565         (require_complete_types_for_parms): Simplify, use
6566         complete_type_or_else.
6567         (grokparms): Remove bitrot. Remove funcdef parm.
6568         Deal with ellipsis parm lists here.
6569         * semantics.c (finish_parmlist): Don't append void_list_node
6570         here. Set PARMLIST_ELLIPSIS_P.
6571
6572 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
6573
6574         * typeck2.c (incomplete_type_error): Reorganise to avoid
6575         excessive diagnostics.
6576
6577 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
6578
6579         * lex.c (struct impl_files, internal_filename): Constify a char *.
6580
6581 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
6582
6583         * mangle.c (write_special_name_constructor): Don't generate
6584         assembler junk when confronted with an old-style constructor.
6585         (write_special_name_destructor): Likewise.
6586         (mangle_decl_string): Do it here instead.
6587
6588 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
6589
6590         * call.c (op_error): Make error messages clearer.
6591
6592 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
6593
6594         * decl.c (wrapup_globals_for_namespace): Don't mark things
6595         TREE_ASM_WRITTEN when they're not.
6596
6597 2000-11-15  Jason Merrill  <jason@redhat.com>
6598
6599         * typeck2.c (friendly_abort): Uncount the error before handing
6600         off to fancy_abort.
6601
6602 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
6603
6604         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
6605
6606 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
6607
6608         * class.c (build_vtbl_initializer): Fix typo in comment.
6609         * typeck.c (expr_sizeof): Don't crash on errors.
6610
6611 2000-11-14  Jim Wilson  <wilson@redhat.com>
6612
6613         * lang-specs.h: Add %2 after %(cc1_options).
6614
6615 2000-11-14  Richard Henderson  <rth@redhat.com>
6616
6617         * typeck.c (c_sizeof): Be strict about casting result value
6618         back to c_size_type_node.
6619         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
6620
6621 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
6622
6623         * typeck.c (build_unary_op): Use boolean_increment from
6624         c-common.c, moving the relevant code there.
6625
6626 2000-11-11  Jason Merrill  <jason@redhat.com>
6627
6628         * typeck.c (mark_addressable): Don't call put_var_into_stack.
6629
6630         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
6631         in inlines.
6632
6633 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6634
6635         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
6636         * lex.c (copy_lang_decl): Likewise.
6637
6638 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
6639
6640         * dump.c (cp_dump_tree): Don't dump function bodies here.
6641
6642         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
6643         (dump.o): Update dependency list.
6644         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
6645         (flag_dump_translation_unit): Likewise.
6646         (CP_TYPE_QUALS): Adjust definition.
6647         (DECL_C_BIT_FIELD): Remove.
6648         (SET_DECL_C_BIT_FIELD): Likewise.
6649         (CLEAR_DECL_C_BIT_FIELD): Likewise.
6650         (add_maybe_template): Likewise.
6651         (strip_array_types): Likewise.
6652         (dump_node_to_file): Likewise.
6653         (cp_dump_tree): New function.
6654         * decl.c (init_decl_processing): Set lang_dump_tree.
6655         * decl2.c (flag_dump_translation_unit): Remove.
6656         * dump.c: Move most of it to ../c-dump.c.
6657         (cp_dump_tree): New function.
6658         * pt.c (add_maybe_template): Remove.
6659         * typeck.c (strip_array_types): Likewise.
6660
6661 2000-11-07  Eric Christopher  <echristo@redhat.com>
6662
6663         * decl.c (init_decl_processing): Change definition of
6664         __wchar_t to wchar_t.  Remove artificial declaration of
6665         wchar_t.
6666         * lex.c: Change instances of __wchar_t to wchar_t.
6667
6668 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
6669
6670         * lex.c (do_identifier): Don't lookup_name for operators.
6671         * parse.y (operator): Save looking_for_typename.
6672         (unoperator): Restore it.
6673         * spew.c (frob_opname): Use nth_token for lookahead.
6674
6675 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
6676
6677         * decl.c (grok_op_properties): Always use coerce_new_type and
6678         coerce_delete_type.
6679         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
6680         exception specification. Tidy up.
6681         (coerce_delete_type): Preserve exception specification. Tidy up.
6682
6683 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
6684
6685         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
6686         (push_binding_level), error.c (cp_tree_printer), pt.c
6687         (process_partial_specialization, tsubst_template_arg_vector),
6688         search.c (lookup_member): Use memset () instead of bzero ().
6689
6690 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
6691
6692         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
6693
6694 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
6695
6696         * Make-lang.in (c++.distdir): Remove.
6697
6698 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
6699
6700         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
6701         declarations from different namespaces to be combined.
6702
6703 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
6704
6705         * decl.c: Include tm_p.h.
6706
6707 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
6708
6709         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
6710
6711 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
6712
6713         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
6714         (build_overload_value), repo.c (open_repo_file), xref.c
6715         (open_xref_file): Use strchr () and strrchr () instead of index ()
6716         and rindex ().
6717
6718 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
6719
6720         * call.c (build_over_call): Call fold on the CALL_EXPR.
6721
6722 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
6723
6724         * error.c (dump_template_decl): Separate template hearders with
6725         space not comma.
6726
6727 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
6728
6729         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
6730         TS_* flags with corresponding TFF_*.  Adjust prototypes of
6731         functions (which used to take a tree_string_flags) to take an int.
6732
6733         * cp-tree.h (enum tree_string_flags): Remove
6734         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
6735         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
6736         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
6737         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
6738         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
6739         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
6740         (type_as_string, decl_as_string, expr_as_string,
6741         context_as_string): Adjust prototype.
6742
6743         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
6744         instead of TS_PLAIN.
6745
6746         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
6747         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
6748         plain `0'.
6749
6750 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
6751
6752         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
6753         (linkage_kind): New enumeration.
6754         (decl_linkage): New function.
6755         * decl2.c (comdat_linkage): Extend comment.
6756         * error.c (dump_function_decl): Print the arguments used to
6757         instantiate a template, even when not printing the type of the
6758         function.
6759         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
6760         not TREE_PUBLIC, to test for external linkage.
6761         * tree.c (decl_linkage): New function.
6762
6763 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
6764
6765         * pt.c (instantiate_decl): Always instantiate static data members
6766         initialized in-class.
6767
6768 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
6769
6770         * Make-lang.in: Move all build rules here from Makefile.in,
6771         adapt to new context.  Wrap all rules that change the current
6772         directory in parentheses.  Expunge all references to $(P).
6773         When one command depends on another and they're run all at
6774         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
6775         all object-file generation rules.  Delete obsolete variables.
6776
6777         * Makefile.in: Delete.
6778         * config-lang.in: Delete outputs= line.
6779
6780 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
6781
6782         * error.c (dump_function_decl): Print no space between
6783         `ptr-operator' the `type-specifier' of the return type.
6784         (dump_type_prefix): Make sure we put space at the appropriate
6785         place.
6786
6787 2000-10-23  Jason Merrill  <jason@redhat.com>
6788
6789         * call.c (equal_functions): Also call decls_match for extern "C" fns.
6790
6791 2000-10-22  Jason Merrill  <jason@redhat.com>
6792
6793         * call.c (build_conditional_expr): Use ocp_convert to force
6794         rvalue conversion.
6795
6796 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
6797
6798         * call.c (standard_conversion): Use RVALUE_CONVs for all
6799         expressions that satisfy lvalue_p, not just those that satisfy
6800         real_lvalue_p.
6801
6802         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
6803
6804         * typeck.c (c_sizeof): Return an expression of `size_t' type,
6805         not one with TYPE_IS_SIZETYPE set.
6806         (dubious_conversion_warnings): Remove special-case code.
6807
6808 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
6809
6810         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
6811         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
6812         (dump_type_prefix): Print vector-of-int as 'int vector'.
6813         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
6814         * tree.c (walk_tree): Handle VECTOR_TYPE.
6815
6816         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
6817
6818 2000-10-21  Jason Merrill  <jason@redhat.com>
6819
6820         * parse.y (operator): Set got_object from got_scope.
6821         Set looking_for_typename.
6822         * decl.c (lookup_name_real): Clear val after setting from_obj.
6823         Reorganize diagnostic.
6824
6825 2000-10-20  Jason Merrill  <jason@redhat.com>
6826
6827         * tree.c (walk_tree): Don't walk into default args.
6828
6829         * error.c (dump_expr): Use host_integerp.
6830
6831 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
6832
6833         * typeck2.c (abstract_virtuals_error): Use "because" instead of
6834         "since" in error message.
6835
6836 Fri Oct 20 13:54:59 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6837
6838         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
6839
6840 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
6841
6842         * decl.c (revert_static_member_fn): Fixed typo.
6843
6844 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
6845
6846         * class.c (subobject_offset_fn): New type.
6847         (dfs_record_base_offsets): Remove.
6848         (record_base_offsets): Likewise.
6849         (dfs_search_base_offsets): Likewise.
6850         (record_subobject_offset): New function.
6851         (check_subobject_offset): Likewise.
6852         (walk_subobject_offsets): Likewise.
6853         (record_subobject_offsets): Likewise.
6854         (layout_conflict_p): Reimplement.
6855         (layout_nonempty_base_or_field): Correct handling of type
6856         conflicts during layout.
6857         (layout_empty_base): Likewise.
6858         (build_base_field): Adjust to handle new representation of empty
6859         base offset table.
6860         (build_base_fields): Likewise.
6861         (layout_virtual_bases): Likewise.
6862         (splay_tree_compare_integer_csts): New function.
6863         (layout_class_type): Use a splay_tree, rather than a varray, to
6864         represent the offsets of empty bases.
6865
6866         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
6867         * decl.c (select_decl): Don't return declarations that are
6868         DECL_ANTICIPATED.
6869
6870 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
6871
6872         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
6873         (fake_std_node): New macro.
6874         * decl.c (in_std): Rename to ...
6875         (in_fake_std): ... this.
6876         (flag_no_builtin): Remove.
6877         (flag_no_nonansi_builtin): Likewise.
6878         (walk_namespaces_r): Use fake_std_node.
6879         (push_namespace): Use std_identifier.
6880         (pop_namespace): Use in_fake_std.
6881         (lookup_name_real): Use fake_std_node.
6882         (init_decl_processing): When -fhonor-std, create the `std'
6883         namespace.  Don't create a dummy fake_std_node in that case.
6884         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
6885         (builtin_function): Put builtins whose names don't begin
6886         with `_' in the std namespace.
6887         * decl2.c (flag_no_builtin): Remove.
6888         (flag_no_nonansi_builtin): Likewise.
6889         (set_decl_namespace): Use fake_std_node.
6890         (validate_nonmember_using_decl): Likewise.
6891         (do_using_directive): Likewise.
6892         (handle_class_head): Likewise.
6893         * dump.c (dequeue_and_dump): Likewise.
6894         * except.c (init_exception_processing): Use std_identifier.
6895         * init.c (build_member_call): Use fake_std_node.
6896         * rtti.c (init_rtti_processing): Use std_identifier.
6897
6898 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
6899
6900         * cp-tree.h (back_end_hook): Remove declaration.
6901         * decl2.c (back_end_hook): Remove definition.
6902
6903         * dump.c (dequeue_and_dump): Dump TREE_USED.
6904
6905 Tue Oct 17 20:19:06 2000  Brad Lucier <lucier@math.purdue.edu>
6906
6907         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
6908
6909 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
6910
6911         * decl.c (WINT_TYPE): Define.
6912         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
6913         c_size_type_node, signed_size_type_node and wint_type_node.
6914
6915 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
6916
6917         * decl2.c (warn_missing_format_attribute): New variable.
6918         (lang_decode_option): Decode -Wmissing-format-attribute.
6919
6920 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
6921
6922         * typeck.c (qualify_type): Remove.
6923         (composite_pointer_type): Fix handling of conversions to `cv void*'.
6924
6925 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6926
6927         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
6928
6929 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6930
6931         * Makefile.in (parse.c, parse.h): Create atomically.
6932
6933 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
6934
6935         * class.c (current_obstack): Remove.
6936         * decl.c (ggc_p): Remove.
6937         (start_decl): Don't use decl_tree_cons.
6938         (grokdeclarator): Don't use build_decl_list.
6939         (start_function): Don't use decl_tree_cons.
6940         (finish_function): Don't mess with obstacks.
6941         * decl2.c (grok_x_components): Don't use build_decl_list.
6942         * lex.c (make_call_declarator): Don't call decl_tree_cons.
6943         (implicitly_declare_fn): Don't call build_decl_list.
6944         * parse.y (frob_specs): Don't call build_decl_list or
6945         decl_tree_cons.
6946         (expr_or_declarator_intern): Don't call decl_tree_cons.
6947         (primary): Don't call build_decl_list.
6948         (fcast_or_absdcl): Likewise.
6949         (typed_declspecs): Don't call decl_tree_cons.
6950         (reserved_declspecs): Don't call build_decl_list.
6951         (declmods): Likewise.
6952         (reserved_typespecquals): Likewise.
6953         (aggr): Likewise.
6954         (new_type_id): Likewise.
6955         (cv_qualifiers): Likewise.
6956         (after_type_declarator_intern): Likewise.
6957         (notype_declarator_intern): Likewise.
6958         (absdcl_intern): Likewise.
6959         (named_parm): Likewise.
6960         * pt.c (most_specialized_class): Likewise.
6961         * repo.c (temporary_obstack): Make it a structure, not a pointer.
6962         (init_repo): Initialize it.
6963         * search.c (current_obstack): Remove.
6964         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
6965
6966 2000-10-09  Richard Henderson  <rth@cygnus.com>
6967
6968         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
6969         (c++ language support bits for libgcc): Remove.
6970         (c++.clean): Remove cplib2.txt cleanup.
6971         * config-lang.in (headers, lib2funcs): Remove.
6972
6973         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
6974         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
6975         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
6976         * inc/new.h, inc/typeinfo: Remove files.
6977
6978 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
6979
6980         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
6981         defined.
6982         (init_decl_processing): Initialize intmax_type_node and
6983         uintmax_type_node.
6984
6985 2000-10-06  Richard Henderson  <rth@cygnus.com>
6986
6987         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
6988         (original_result_rtx): Remove.
6989         * decl.c (save_function_data): Don't clear x_result_rtx.
6990         (mark_lang_function): Don't mark it either.
6991         * expr.c (fixup_result_decl): Remove.
6992         * semantics.c (genrtl_named_return_value): Frob the return decl
6993         before calling emit_local_var.
6994         (genrtl_finish_function): Don't call fixup_result_decl.
6995         Always emit the jump to return_label.
6996
6997 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
6998
6999         * pt.c (lookup_template_class): Set current access for enum.
7000         (tsubst_enum): Set file & line for enum decl.
7001
7002         * spew.c (yylex): Remove unused variable.
7003
7004 2000-10-05  Richard Henderson  <rth@cygnus.com>
7005
7006         * semantics.c (genrtl_finish_function): Don't init or check
7007         can_reach_end; remove noreturn and return value checks.
7008
7009 2000-10-05  Tom Tromey  <tromey@cygnus.com>
7010
7011         * init.c (build_java_class_ref): Use `build_static_name' with a
7012         suffix, not a prefix, to build the class object's name.
7013
7014 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7015
7016         * cp-tree.h (access_kind): Fix comment typo.
7017         * decl2.c (grokfield): Fix diagnostic typo.
7018         * semantics.c (finish_template_type): Fix comment typo.
7019         (finish_qualified_object_call_expr): Likewise.
7020
7021 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7022
7023         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
7024         tsubsting fails.
7025
7026 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
7027
7028         * spew.c (frob_id): New static function.
7029         (frob_opname): Use it.
7030         (yylex): Use it.
7031
7032 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
7033
7034         * decl.c (lang_mark_false_label_stack): Remove.
7035         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
7036
7037 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
7038
7039         * gxxint.texi: Use @email for formatting email addresses.
7040
7041 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
7042
7043         * error.c: Remove direct obstack manipulation.  Replace with
7044         output_buffer-based formatting.  Adjust calls to removed macros.
7045         (obstack_chunk_alloc, obstack_chunk_free): Remove.
7046         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
7047         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
7048
7049 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
7050
7051         * ir.texi: Move to ../c-tree.texi.
7052
7053 2000-09-20  Jason Merrill  <jason@redhat.com>
7054
7055         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
7056
7057 2000-09-21  Andreas Jaeger  <aj@suse.de>
7058
7059         * errfn.c: Move declaration of cp_printer and cp_printers to ...
7060         * cp-tree.h: ... here.
7061
7062         * error.c: Remove declaration of cp_printer.
7063
7064 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
7065
7066         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
7067
7068 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
7069
7070         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
7071         users.
7072
7073 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
7074
7075         * decl.c (start_function): Robustify.
7076
7077 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7078
7079         * cp-tree.h (check_function_format): Accept a `status' parameter.
7080
7081         * call.c, typeck.c: Updates calls to `check_function_format'.
7082
7083 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
7084
7085         * decl2.c (handle_class_head): Always push some scope even
7086         in the error case.
7087
7088 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
7089
7090         * cp-tree.h (struct cp_language_function): Remove
7091         x_scope_stmt_stack and name_declared.
7092         (current_scope_stmt_stack): Remove.
7093         (function_name_declared_p): New macro.
7094         (struct lang_decl_flags): Use c_lang_decl as a base class.
7095         (context): Remove.
7096         (struct lang_decl): Replace saved_tree with context.
7097         (DECL_FRIEND_CONTEXT): Adjust accordingly.
7098         (SET_DECL_FRIEND_CONTEXT): Likewise.
7099         (DECL_VIRTUAL_CONTEXT): Likewise.
7100         (DECL_SAVED_TREE): Remove.
7101         (C_DECLARED_LABEL_FLAG): Likewise.
7102         (cplus_expand_expr_stmt): Don't declare.
7103         (add_decl_stmt): Likewise.
7104         (add_scope_stmt): Likewise.
7105         * decl.c (mark_stmt_tree): Remove.
7106         (case_compare): Likewise.
7107         (finish_case_label): Use c_add_case_label.
7108         (init_decl_processing): Set more language-specific hooks.
7109         (build_enumerator): Fix typo in comment.
7110         (cplus_expand_expr_stmt): Remove.
7111         (mark_lang_function): Use mark_c_language_function.
7112         (lang_mark_tree): Use c_mark_lang_decl.
7113         * decl2.c: Change order of inclusion.
7114         * except.c: Likewise.
7115         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
7116         back on c_expand_expr.
7117         * friend.c: Include expr.h.
7118         * init.c: Change order of inclusion.
7119         * Makefile.in: Update dependencies.
7120         * lex.h (free_lang_decl_chain): Remove.
7121         * optimize.c (maybe_clone_body): Use function_name_declared_p.
7122         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
7123         it doesn't exist.
7124         (instantiate_decl): Use function_name_declared_p.
7125         * semantics.c (lang_expand_expr_stmt): Remove.
7126         (set_current_function_name_declared): Likewise.
7127         (current_function_name_declared): Likewise.
7128         (begin_compound_stmt): Use function_name_declared_p.
7129         (add_decl_stmt): Remove.
7130         (setup_vtbl_ptr): Use function_name_declared_p.
7131         (add_scope_stmt): Remove.
7132         (current_scope_stmt_stack): New function.
7133         (cp_expand_stmt): Don't handle SCOPE_STMTs.
7134         (expand_body): Use function_name_declared_p.
7135         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
7136         * typeck.c: Change order of includes.
7137         (convert_sequence): Remove.
7138
7139 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
7140
7141         * lex.c (reswords): Add _Complex.
7142
7143 Thu Sep 14 12:10:45 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7144
7145         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
7146
7147 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
7148
7149         * init.c (begin_init_stmts): Don't use // comments.
7150
7151 2000-09-12  Jason Merrill  <jason@redhat.com>
7152
7153         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
7154         all non-extern arrays.
7155
7156         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
7157         typenames, too.  Downgrade complaint to pedwarn.
7158         (xref_tag): Warn about surprising behavior of 'friend struct T'.
7159         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
7160         'class This::Inherited'.
7161
7162 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
7163
7164         * decl.c (finish_case_label): Given the LABEL_DECL a
7165         DECL_CONTEXT.
7166
7167 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
7168
7169         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
7170         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
7171         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
7172         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
7173         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
7174         New macros.
7175         (sorry_for_unsupported_tree, print_scope_operator,
7176         print_left_paren, print_right_paren, print_left_bracket,
7177         print_right_bracket, print_whitespace): Likewise.
7178         (aggr_variety): Rename to class_key_or_enum.
7179         (print_type): Rename to print_type_id.
7180         (print_type_specifier_seq, print_simple_type_specifier,
7181         print_elaborated_type_specifier,
7182         print_rest_of_abstract_declarator,
7183         print_parameter_declaration_clause, print_exception_specification,
7184         print_nested_name_specifier, print_template_id,
7185         typedef_original_name,  print_template_argument_list_start,
7186         print_template_argument_list_end): New functions.
7187
7188 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
7189
7190         * ir.texi: Add more documentation.
7191
7192 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
7193
7194         * cp-tree.h (struct saved_scope): Remove x_function_parms.
7195         (current_function_parms): Don't define.
7196         (struct cp_language_function): Remove parms_stored.
7197         (current_function_just_assigned_this): Don't define.
7198         (current_function_parms_stored): Likewise.
7199         (static_ctors): Declare.
7200         (static_dtors): Likewise.
7201         (SF_EXPAND): Don't define.
7202         (expand_start_early_try_stmts): Remove declaration.
7203         (store_parm_decls): Likewise.
7204         * decl.c (static_ctors): Don't declare.
7205         (static_dtors): Likewise.
7206         (struct binding_level): Remove this_block.
7207         (poplevel): Remove dead code.
7208         (set_block): Likewise.
7209         (mark_binding_level): Don't mark this_block.
7210         (mark_saved_scope): Don't mark x_function_parms.
7211         (init_decl_processing): Don't add current_function_parms as a GC
7212         root.
7213         (check_function_type): Change prototype.
7214         (start_function): Remove RTL-generation code.
7215         (expand_start_early_try_stmts): Remove.
7216         (store_parm_decls): Give it internal linkage.  Remove
7217         RTL-generation code.
7218         (finish_function): Remove RTL-generation code.
7219         * decl2.c (static_ctors): Fix formatting.
7220         (static_dtors): Likewise.
7221         * method.c (use_thunk): Don't call store_parm_decls.
7222         (synthesize_method): Likewise.
7223         * optimize.c (maybe_clone_body): Likewise.
7224         * parse.y (fn.def2): Likewise.
7225         (.set_base_init): Likewise.
7226         (nodecls): Likewise.
7227         * pt.c (instantiate_decl): Likewise.
7228         * rtti.c (synthesize_tinfo_fn): Likewise.
7229         * semantics.c (genrtl_try_block): Simplify.
7230         (expand_body): Use genrtl_start_function and
7231         genrtl_finish_function.
7232         (genrtl_start_function): New function.
7233         (genrtl_finish_function): Likewise.
7234
7235 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
7236
7237         * error.c (cp_tree_printer, case 'P'): Append break.
7238
7239 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
7240
7241         * cp-tree.h (frob_opname): Declare.
7242         * parse.y (saved_scopes): New static variable.
7243         (cp_parse_init): Adjust.
7244         (do_id): If lastiddecl is NULL, do do_identifier.
7245         (operator): Save scope information.
7246         (unoperator): New reduction. Restore scope information.
7247         (operator_name): Append unoperator. Call frob_opname.
7248         * spew.c (frob_opname): Define.
7249
7250 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
7251
7252         * decl.c, rtti.c: Include defaults.h if not already included.
7253         Don't define the *_TYPE_SIZE macros.
7254
7255 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
7256
7257         * cp-tree.h (push_switch): Change prototype.
7258         (check_cp_case_value): Remove declaration.
7259         (decl_constant_value): Likewise.
7260         * decl.c (struct cp_switch): Add switch_stmt and cases.
7261         (case_compare): New function.
7262         (push_switch): Set switch_stmt.  Initialize cases.
7263         (pop_switch): Clean up cases.
7264         (define_case_label): Rename to ...
7265         (finish_case_label): ... this.  Do semantic analysis for case
7266         labels here.
7267         (start_function): Correct comment.
7268         * decl2.c (check_cp_case_value): Remove.
7269         * expr.c (do_case): Remove.
7270         * pt.c (tsubst_expr): Adjust call to finish_case_label.
7271         * semantics.c (genrtl_do_poplevel): Remove declaration.
7272         (RECHAIN_STMTS): Remove.
7273         (finish_break_stmt): Use build_break_stmt.
7274         (finish_continue_stmt): Use build_continue_stmt.
7275         (finish_switch_cond): Adjust condition here, rater than in
7276         c_expand_start_case.
7277         (finish_case_label): Remove.
7278         * typeck.c (c_expand_return): Remove.
7279         (c_expand_start_case): Likewise.
7280
7281 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
7282
7283         * ir.texi: Document type nodes.
7284
7285 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
7286
7287         * cp-tree.h (init_cp_semantics): Declare.
7288         (genrtl_try_block): Don't declare.
7289         (genrtl_handler): Likewise.
7290         (genrtl_catch_block): Likewise.
7291         (genrtl_ctor_stmt): Likewise.
7292         (genrtl_subobject): Likewise.
7293         (genrtl_do_poplevel): Likewise.
7294         (genrtl_named_return_value): Likewise.
7295         * lex.c (init_parse): Call init_cp_semantics.
7296         * semantics.c (genrtl_try_block): Give it internal linkage.
7297         (genrtl_handler): Likewise.
7298         (genrtl_catch_block): Likewise.
7299         (genrtl_ctor_stmt): Likewise.
7300         (genrtl_subobject): Likewise.
7301         (genrtl_do_poplevel): Likewise.
7302         (genrtl_named_return_value): Likewise.
7303         (lang_expand_stmt): Rename to ...
7304         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
7305         (init_cp_semantics): Define.
7306
7307         * decl.c (initialize_local_var): Remove RTL-generating code.
7308         * semantics.c (genrtl_try_block): Fix formatting.
7309
7310         Move statement-tree facilities from C++ to C front-end.
7311         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
7312         (void_zero_node): Remove.
7313         (stmt_tree): Likewise.
7314         (scope_chain): Adjust.
7315         (language_function): Rename to cp_language_function.
7316         (cp_function_chain): Adjust.
7317         (current_stmt_tree): Remove.
7318         (last_tree): Likewise.
7319         (last_expr_type): Likewise.
7320         (struct lang_decl): Adjust.
7321         (STMT_IS_FULL_EXPR_P): Remove.
7322         (add_tree): Remove.
7323         (begin_stmt_tree): Likewise.
7324         (finish_stmt_tree): Likewise.
7325         (walk_tree_fn): Likewise.
7326         (walk_stmt_tree): Likewise.
7327         * class.c (finish_struct): Replace use of add_tree with add_stmt.
7328         * decl.c (mark_stmt_tree): Adjust type.
7329         (init_decl_processing): Don't build void_zero_node.
7330         (initialize_local_var): Adjust usage of current_stmt_tree.
7331         (finish_enum): Use add_stmt, not add_tree.
7332         (save_function_data): Adjust use of language_function.
7333         (finish_constructor_body): Use add_stmt, not add_tree.
7334         (finish_destructor_body): Likewise.
7335         (push_cp_function_context): Adjust use of language_function.
7336         (pop_cp_function_context): Likewise.
7337         (mark_lang_function): Likewise.
7338         (mark_cp_function_context): Likewise.
7339         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
7340         (build_vec_init): Likewise.
7341         * semantics.c (SET_LAST_STMT): Remove.
7342         (RECHAIN_STMTS): Don't use it.
7343         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
7344         (current_stmt_tree): Define.
7345         (add_tree): Remove.
7346         (finish_goto_stmt): Use add_stmt, not add_tree.
7347         (finish_expr_stmt): Likewise.
7348         (begin_if_stmt): Likewise.
7349         (finish_then_clause): Likewise.
7350         (begin_while_stmt): Likewise.
7351         (begin_do_stmt): Likewise.
7352         (finish_return_stmt): Likewise.
7353         (begin_for_stmt): Likewise.
7354         (finish_break_stmt): Likewise.
7355         (finish_continue_stmt): Likewise.
7356         (begin_switch_stmt): Likewise.
7357         (finish_case_label): Likewise.
7358         (begin_try_block): Likewise.
7359         (begin_function_try_block): Likewise.
7360         (begin_handler): Likewise.
7361         (begin_catch_block): Likewise.
7362         (begin_compound_stmt): Likewise.
7363         (begin_asm_stmt): Likewise.
7364         (finish_asm_stmt): Likewise.
7365         (finish_label_stmt): Likewise.
7366         (add_decl_stmt): Likewise.
7367         (finish_subobject): Likewise.
7368         (finish_decl_cleanup): Likewise.
7369         (finish_named_return_value): Likewise.
7370         (setup_vtbl_ptr): Likewise.
7371         (add_scope_stmt): Likewise.
7372         (finish_stmt_expr): Likewise.
7373         (prune_unused_decls): Remove.
7374         (begin_stmt_tree): Likewise.
7375         (finish_stmt_tree): Likewise.
7376         (prep_stmt): Adjust use of current_stmt_tree.
7377         (lang_expand_stmt): Likewise.
7378         * tree.c (statement_code_p): Remove.
7379         (cp_statement_code_p): New function.
7380         (walk_stmt_tree): Remove.
7381         (init_tree): Set lang_statement_code_p.
7382
7383 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
7384
7385         Integrated preprocessor.
7386
7387         * Make-lang.in, Makefile.in: Remove all references to input.c,
7388         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
7389         * gxx.gperf, hash.h, input.c: Delete.
7390         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
7391         initialized properly.
7392
7393         * class.c (fixup_pending_inline): Take a tree, not a
7394         struct pending_inline *.  All callers changed.
7395         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
7396         RID_PROTECTED entries in ridpointers[] array here.
7397         * decl.c (duplicate_decls): Do not refer to struct
7398         pending_inline.
7399         (record_builtin_type, init_decl_processing): Use RID_MAX not
7400         CP_RID_MAX.
7401         (grokdeclarator): Use C_IS_RESERVED_WORD.
7402         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
7403         cpplib.
7404         (grok_x_components): Do not inspect pending_inlines chain.
7405
7406         * cp-tree.h (struct lang_identifier): Add rid_code entry.
7407         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
7408         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
7409         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
7410         TIME_IDENTIFIER_FILEINFO): Kill.
7411         Update prototypes.
7412         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
7413         single 32-bit word.
7414         * parse.y: Call do_pending_inlines unconditionally.
7415         reinit_parse_for_method is now snarf_method.  fn.defpen is no
7416         longer necessary.  Remove unnecessary <itype> annotation on
7417         SCOPE.  Do not refer to end_of_file or struct pending_inline.
7418         * semantics.c (begin_inline_definitions): Call
7419         do_pending_inlines unconditionally.
7420
7421         * lex.c: Remove all code now shared with C front end.
7422         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
7423         into the get_identifier table.  Rewrite pragma handling to
7424         work with the registry.  Move code to save tokens for later
7425         processing to spew.c.
7426
7427         * spew.c: Rewrite everything in terms of token streams instead
7428         of text.  Move routines here from lex.c / input.c as
7429         appropriate.  GC-mark trees hanging off the pending inlines
7430         chain.
7431
7432 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
7433
7434         * NEWS: Mention that the named return value extension has been
7435         deprecated.
7436         * cp-tree.h (original_result_rtx): Define.
7437         (TREE_REFERENCE_EXPR): Remove.
7438         (DECL_VPARENT): Likewise.
7439         (pushdecl_nonclass_level): Likewise.
7440         (store_return_init): Likewise.
7441         (reinit_lang_specific): Likewise.
7442         (genrtl_named_return_value): Change prototype.
7443         * decl.c (original_result_rtx): Remove.
7444         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
7445         Do not generate RTL for local variables here.
7446         (store_return_init): Remove.
7447         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
7448         store_return_init.
7449         (finish_named_return_value): Adjust accordingly.  Warn that this
7450         extension is deprecated.
7451         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
7452
7453 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7454
7455         * pt.c (type_unification_real): Replace switch with if.
7456         (unify): Tsubst non-type parms before comparing.
7457
7458 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7459
7460         * error.c (dump_typename): New function, broken out of ...
7461         (dump_type): ... here. Use it.
7462         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
7463
7464 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7465
7466         * init.c (build_offset_ref): Deal with namespace scoped
7467         TEMPLATE_ID_EXPRs.
7468
7469 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
7470
7471         * class.c (resolve_address_of_overloaded_function): Add
7472         explanation message.
7473         * decl.c (define_case_label): Reformat explanation.
7474         * decl2.c (finish_static_data_member_decl): Likewise.
7475         (grokfield): Likewise.
7476         * friend.c (do_friend): Likewise.
7477
7478 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
7479
7480         * tree.c (walk_tree): Expose tail recursion.
7481         (walk_stmt_tree): New function.
7482         * cp-tree.h: Prototype walk_stmt_tree.
7483         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
7484         the BLOCKs directly.  If a BLOCK has no variables after
7485         pruning, discard it.
7486         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
7487         restore the line number.
7488
7489 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
7490
7491         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
7492         (pt.o): Remove dependency on HTAB_H.
7493         * cp-tree.h: Include hashtab.h.
7494         (walk_tree): Change prototype.
7495         (walk_tree_without_duplicates): New function.
7496         * decl.c (check_default_argument): Use it.
7497         * optimize.c (remap_decl): Adjust calls to walk_tree.
7498         (copy_body): Likewise.
7499         (expand_calls_inline): Likewise.
7500         (calls_setjmp_p): Use walk_tree_without_duplicates.
7501         * pt.c: Don't include hashtab.h.
7502         (for_each_template_parm): Use walk_tree_without_duplicates.
7503         * semantics.c (finish-stmt_tree): Likewise.
7504         (expand_body): Likewise.
7505         * tree.c (walk_tree): Add additional parameter.
7506         (walk_tree_without_duplicates): New function.
7507         (count_trees): Use it.
7508         (verify_stmt_tree): Adjust call to walk_tree.
7509         (find_tree): Use walk_tree_without_duplicates.
7510         (no_linkage_check): Likewise.
7511         (break_out_target_exprs): Adjust call to walk_tree.
7512         (cp_unsave): Likewise.
7513
7514 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7515
7516         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
7517         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
7518         * cp-tree.h (TYPE_BINFO): Adjust comment.
7519         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
7520         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
7521         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
7522         (TYPE_TEMPLATE_INFO): Likewise.
7523         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
7524         * class.c (push_nested_class): Likewise.
7525         * decl.c (lookup_name_real): Likewise.
7526         (grokdeclarator): Likewise.
7527         (grok_op_properties): Likewise.
7528         (xref_tag): Likewise.
7529         (xref_basetypes): Likewise.
7530         * decl2.c (constructor_name_full): Likewise.
7531         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
7532         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
7533         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
7534         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7535         (dump_type_suffix): Likewise.
7536         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
7537         instead.
7538         (get_aggr_from_typedef): Likewise.
7539         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
7540         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7541         (write_template_parm): Likewise.
7542         (write_template_template_parm): Check tree code instead of
7543         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
7544         * method.c (build_overload_nested_name): Add
7545         BOUND_TEMPLATE_TEMPLATE_PARM.
7546         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
7547         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7548         * pt.c (convert_template_argument): Check tree code instead of
7549         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
7550         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
7551         (for_each_template_parm): Adjust comment.
7552         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
7553         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7554         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
7555         template_args_equal to compare template template parameter cases.
7556         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7557         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
7558         instead.
7559         * tree.c (copy_template_template_parm): Decide whether to create
7560         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
7561         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
7562         (copy_tree_r): Likewise.
7563         * typeck.c (comptypes): Likewise.  Check tree code instead of
7564         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
7565
7566 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
7567
7568         * decl.c (finish_function): Move the code for handling functions
7569         marked with the constructor and destructor attributes inside the
7570         expand_p block.
7571
7572 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
7573
7574         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
7575
7576 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
7577
7578         * pt.c (lookup_template_class): Remove abort.
7579         * tree.c (get_type_decl): Allow error_mark_node.
7580
7581 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
7582
7583         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
7584         TEMPLATE_ID_EXPRs.
7585
7586 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
7587
7588         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
7589         new ABI mangling.
7590
7591 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
7592
7593         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
7594         union tag mismatch error reporting.
7595
7596 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
7597
7598         * call.c (build_scoped_method_call): Check it is not a namespace.
7599
7600 2000-08-30  Jason Merrill  <jason@redhat.com>
7601
7602         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
7603
7604         * tree.c (bot_manip): Check TREE_CONSTANT rather than
7605         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
7606         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
7607
7608         * decl.c (start_function): Always call make_function_rtl.
7609
7610 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
7611
7612         * semantics.c (prune_unused_decls): New function.
7613         (finish_stmt_tree): Call it via walk_tree.
7614
7615 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
7616
7617         * class.c (build_secondary_vtable): Constify a char *.
7618         * decl.c (init_decl_processing): Initialize function_id_node,
7619         pretty_function_id_node, and func_id_node.
7620         * input.c (struct input_source): Constify 'str'.
7621         (feed_input): Constify first argument.
7622         * mangle.c (write_identifier): Constify argument.
7623         * pt.c (mangle_class_name_for_template): Constify argument.
7624
7625 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
7626
7627         * typeck.c (mark_addressable): Remove code that pokes around in
7628         RTL.
7629
7630 2000-08-28  Jason Merrill  <jason@redhat.com>
7631
7632         * lex.c (file_name_nondirectory): Move to toplev.c.
7633
7634         * cp-tree.h (LOCAL_CLASS_P): New macro.
7635         * class.c (finish_struct_1): Use it.
7636
7637 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
7638
7639         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
7640         (write_encoding): Pass another argument to write_name.
7641         (write_name): Add ignore_local_scope parameter.  Fix handling of
7642         local names.
7643         (write_nested_name): Use write_unqualified_name.
7644         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
7645         (write_template_prefix): Use write_unqualified_name.
7646         (write_component): Remove.
7647         (write_local_name): Add parameter.  Use direct local entity to
7648         discriminator calculation.
7649         (write_class_enum_type): Pass another argument to write_name.
7650         (write_template_template_arg): Likewise.
7651         (make_guard_variable): Likewise.
7652
7653 2000-08-27  Jason Merrill  <jason@redhat.com>
7654
7655         * decl.c (pushdecl): Matching decls for local externs are found in
7656         the current level.  Propagate linkage information from previous
7657         declarations.
7658
7659 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
7660
7661         * ir.texi (Expressions): Fix typo.
7662
7663 2000-08-25  Greg McGary  <greg@mcgary.org>
7664
7665         * tree.c (init_tree): Use ARRAY_SIZE.
7666
7667 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
7668
7669         * error.c (cp_tree_printer): Rework.
7670
7671 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
7672
7673         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
7674         dyn-string.o.
7675         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
7676         (cp-demangle.o): Remove target.
7677         (dyn-string.o): Likewise.
7678
7679         * decl.c (grokfndecl): Require that `main' return an `int'.
7680         * mangle.c (write_encoding): Don't mangle return types for
7681         conversion functions.
7682
7683 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
7684
7685         * error.c (tree_formatting_info): New data type.
7686         (tree_being_formatted): New macro.
7687         (tree_formatting_flags): Likewise.
7688         (put_whitespace): Likewise.
7689         (print_tree_identifier): Likewise.
7690         (print_identifier): Likewise.
7691         (cp_tree_printer, print_function_argument_list, print_declaration,
7692         print_expression, print_function_declaration,
7693         print_function_parameter, print_type, print_cv_qualifier): New
7694         functions.
7695         (init_error): Initialize lang_printer.
7696
7697 2000-08-24  Jason Merrill  <jason@redhat.com>
7698
7699         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
7700         adjustment necessary.
7701
7702 2000-08-24  Greg McGary  <greg@mcgary.org>
7703
7704         * cp-tree.h (MAIN_NAME_P): Remove macro.
7705
7706 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
7707
7708         * error.c (print_instantiation_context): Don't forget to flush the
7709         buffer.
7710
7711 2000-08-23  Jason Merrill  <jason@redhat.com>
7712
7713         * typeck.c (build_ptrmemfunc): Save the input pmf.
7714
7715         * method.c (process_modifiers): Use same_type_p.
7716
7717 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
7718
7719         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
7720         * mangle.c (write_function_type): Change prototype.
7721         (write_encoding): Don't mangle return types for
7722         constructors or destructors.
7723         (write_type): Adjust call to write_function_type.
7724         * pt.c (instantiate_template): Instantiate alternate entry points
7725         when instantiating the main function.
7726
7727 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
7728
7729         * error.c (cp_print_error_function): Don't use embedded '\n' in
7730         output_printf.
7731
7732 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
7733
7734         * decl.c (init_decl_processing): Remove bogus initialization.
7735         * error.c (lang_print_error_function): Restore here.
7736         (init_error): Initialize print_error_function.
7737
7738 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
7739
7740         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
7741
7742 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
7743
7744         * Makefile.in (error.o): Depends on diagnostic.h
7745
7746         * cp-tree.h (problematic_instantiation_changed,
7747         record_last_problematic_instantiation, current_instantiation,
7748         print_instantiation_context): Declare.
7749         (maybe_print_template_context): Remove.
7750
7751         * decl.c (init_decl_processing): Set print_error_function to NULL.
7752         (lang_print_error_function): Remove, since we're using a new
7753         machinery.
7754
7755         * error.c: #include diagnostic.h
7756         (function_category): New function.
7757         (cp_diagnostic_starter): Likewise.
7758         (cp_diagnostic_finalizer): Likewise.
7759         (cp_print_error_function): Likewise.
7760         (maybe_print_instantiation_context): Likewise.
7761         (print_instantiation_full_context): Likewise.
7762         (print_instantiation_partial_context): Likewise.
7763         (print_instantiation_context): Define.
7764         (init_error): Initialize diagnostic pager and finalizer.
7765
7766         * pt.c (problematic_instantiation_changed): Define.
7767         (record_last_problematic_instantiation): Likewise.
7768         (current_instantiation): Likewise.
7769         (maybe_print_template_context): Remove.
7770         (print_template_context): Likewise.
7771         (current_tinst_level): Make static to reflect Brendan Kehoe's
7772         change of 1995-04-13.
7773         (push_tinst_level): Call print_instantiation_context.
7774
7775 2000-08-21  Nix  <nix@esperi.demon.co.uk>
7776
7777         * lang-specs.h: Do not process -o or run the assembler if
7778         -fsyntax-only.
7779
7780 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
7781
7782         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
7783         variables.
7784         * decl2.c (lang_decode_option): Disable gettext attributes for
7785         -ansi.
7786
7787 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
7788
7789         * lex.c (lang_init_options): Default diagnostic message maximum
7790         length to 80, when line-wrapping.
7791
7792 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
7793
7794         * class.c (build_vtbl_initializer): Clear the entire
7795         vtbl_init_data.  Start keeping track of the functions for which we
7796         have created vcall offsets here.
7797         (dfs_build_vcall_offset_vtbl_entries): Remove.
7798         (build_vcall_offset_vtbl_entries): Reimplement.
7799         (add_vcall_offset_vtbl_entries_r): New function.
7800         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
7801         computing when vcall offsets are necessary.
7802
7803 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7804
7805         * decl.c (member_function_or_else): Use cp_error ... %T.
7806         (grokdeclarator): Likewise.
7807         (start_method): Likewise.
7808         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
7809
7810 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7811
7812         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
7813         TYPE_DECLs.
7814
7815 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7816
7817         * cp-tree.h (PTRMEM_OK_P): New macro.
7818         (itf_ptrmem_ok): New enumeration value.
7819         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
7820         argument. Diagnose implicit pointer to member.
7821         (instantiate_type): Don't diagnose implicit pointer to member
7822         here. Pass itf_ptrmem_ok if ok. Adjust calls to
7823         resolve_address_of_overloaded_function.
7824         * init.c (build_offset_ref): Set PTRMEM_OK_P.
7825         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
7826         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
7827         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
7828         (build_unary_op): Deal with single non-static member in
7829         microsoft-land.
7830
7831 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7832
7833         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
7834
7835 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
7836
7837         * cp-tree.h (enum_name_string): Remove prototype.
7838         (report_case_error): Remove prototype.
7839         * cp/typeck2.c (enum_name_string): Remove.
7840         (report_case_error): Remove.
7841         * error.c (dump_expr): Deal with enum values directly.
7842         Correctly negate integer constant.
7843
7844 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7845
7846         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
7847         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
7848         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
7849         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
7850         (__cxa_vec_new): Use __cxa_vec_new2.
7851         (__cxa_vec_delete): Use __cxa_vec_delete2.
7852
7853 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7854
7855         * vec.cc (__cxa_vec_new): Set "C" linkage.
7856         (__cxa_vec_ctor): Likewise.
7857         (__cxa_vec_cctor): Likewise.
7858         (__cxa_vec_dtor): Likewise.
7859         (__cxa_vec_delete): Likewise.
7860         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
7861         (__cxa_vec_ctor): Likewise.
7862         (__cxa_vec_cctor): Likewise.
7863         (__cxa_vec_dtor): Likewise.
7864         (__cxa_vec_delete): Likewise.
7865
7866 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7867
7868         * class.c (instantiate_type): Reinstate local variable
7869         deleted in previous change.
7870
7871         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
7872         itf_no_attributes.
7873
7874 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7875
7876         * cp-tree.h (instantiate_type_flags): New enumeration.
7877         (instantiate_type): Change parameter.
7878         * class.c (instantiate_type): Adjust prototype. Adjust.
7879         * call.c (standard_conversion): Adjust instantiate_type call.
7880         (reference_binding): Likewise.
7881         (build_op_delete_call): Likewise.
7882         (convert_like_real): Likewise.
7883         * cvt.c (cp_convert_to_pointer): Likewise.
7884         (convert_to_reference): Likewise.
7885         * pt.c (convert_nontype_argument): Likewise.
7886         * typeck.c (build_binary_op): Likewise.
7887         (build_ptrmemfunc): Likewise.
7888         (convert_for_assignment): Likewise.
7889
7890 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
7891
7892         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
7893         (current_aggr): Define.
7894         * decl.c (grokdeclarator): Make sure a friend class is an
7895         elaborated type specifier.
7896         * parse.y (current_aggr): Remove static definition.
7897         (cp_parse_init): Adjust.
7898         (structsp): Clear and restore current_aggr.
7899         (component_decl_list): Clear current_aggr.
7900
7901         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
7902         aggregate tag on the typename's context.
7903
7904         * pt.c (tsubst_friend_class): Return error_mark_node, if
7905         parms becomes NULL.
7906         (instantiate_class_template): Ignore error_mark_node friend types.
7907
7908 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
7909
7910         * cvt.c (warn_ref_binding): New static function, broken out of ...
7911         (convert_to_reference): ... here. Use it.
7912
7913 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
7914
7915         * parse.y (template_arg): Add rule for template qualified with
7916         global scope.
7917
7918 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
7919
7920         * decl2.c (add_function): Reorganize.
7921         (arg_assoc): Do not consider function template decls.
7922
7923 2000-08-11  Jason Merrill  <jason@redhat.com>
7924
7925         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
7926         looking inside.
7927
7928 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
7929
7930         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
7931         (lookup_nested_tag): Likewise.
7932
7933         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
7934         can be produced.
7935
7936 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
7937
7938         * parse.y (named_complex_class_head_sans_basetype): Remove
7939         always true if.
7940
7941 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
7942
7943         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
7944         explicit TEMPLATE_ID_EXPR args.
7945         (build_expr_from_tree, case CALL_EXPR): Likewise.
7946
7947 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
7948
7949         * decl.c (check_tag_decl): Diagnose typename's which don't
7950         declare anything.
7951
7952 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
7953
7954         * init.c (build_aggr_init): Reject bogus array initializers
7955         early.
7956
7957 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
7958
7959         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
7960         runtime.
7961         * cp/tinfo.cc (__dynamic_cast): Likewise.
7962         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
7963
7964 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
7965
7966         * cvt.c (convert_to_pointer_force): Fix error message when
7967         attempting to cast from ambiguous base.
7968
7969 2000-08-08  Jason Merrill  <jason@redhat.com>
7970
7971         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
7972         (tsubst_template_arg_vector): Likewise.
7973
7974         * decl2.c (build_anon_union_vars): Choose the largest field; don't
7975         assume that one will be as large as the union.
7976
7977 2000-08-07  Kazu Hirata  <kazu@hxi.com>
7978
7979         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
7980         * decl.c (pop_labels): Likewise.
7981
7982 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
7983
7984         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
7985         specifications.
7986         (__pointer_to_member_type_info): Likewise.
7987         (__base_class_info): Likewise.
7988         (__class_type_info): Likewise.
7989         (__si_class_type_info): Likewise.
7990         (__vmi_class_type_info): Likewise.
7991         * tinfo.cc (__si_class_type_info::__do_find_public_src):
7992         Changed member names to match specifications.
7993         (__vmi_class_type_info::__do_find_public_src): Likewise.
7994         (__si_class_type_info::__do_dyncast): Likewise.
7995         (__vmi_class_type_info::__do_dyncast): Likewise.
7996         (__si_class_type_info::__do_upcast): Likewise.
7997         (__vmi_class_type_info::__do_upcast): Likewise.
7998         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
7999         (__pbase_type_info::__pointer_catch): Likewise.
8000         (__pointer_type_info::__pointer_catch): Likewise.
8001         (__pointer_to_member_type_info::__pointer_catch): Likewise.
8002
8003 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
8004
8005         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
8006         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
8007         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
8008
8009 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
8010
8011         * cp-tree.h (add_method): Change prototype.
8012         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
8013         Don't double the size of the method vector in the error case.
8014         (handle_using_decl): Adjust call to add_method.
8015         (add_implicitly_declared_members): Likewise.
8016         (clone_function_decl): Likewise.
8017         * decl2.c (check_classfn): Likewise.
8018         * semantics.c (finish_member_declaration): Likewise.
8019
8020 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
8021
8022         * decl.c (flag_isoc94): New variable.
8023
8024 2000-08-02  Jason Merrill  <jason@redhat.com>
8025
8026         * pt.c (do_type_instantiation): Add complain parm; don't complain
8027         if called recursively.
8028         * cp-tree.h, parse.y: Adjust.
8029
8030 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
8031
8032         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
8033         -Wno-strict-prototypes.
8034
8035         * g++spec.c: Adjust type of second argument to
8036         lang_specific_driver, and update code as necessary.
8037
8038         * cp-tree.h: Don't prototype min_precision here.
8039         (my_friendly_assert): Cast expression to void.
8040         * semantics.c (do_poplevel): Initialize scope_stmts.
8041
8042 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
8043
8044         * cp-tree.h (DECL_NEEDED_P): Tweak.
8045
8046 2000-07-28  Jason Merrill  <jason@redhat.com>
8047
8048         * lang-specs.h: Use %i in rule for .ii files.
8049
8050 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
8051
8052         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
8053
8054 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
8055
8056         Allow indirect primary bases.
8057         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
8058         primary_base.
8059         (CLASSTYPE_VFIELD_PARENT): Remove.
8060         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
8061         (BINFO_PRIMARY_BINFO): Remove.
8062         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
8063         (BINFO_VBASE_PRIMARY_P): Likewise.
8064         (BINFO_PRIMARY_BASE_OF): New macro.
8065         (BINFO_INDIRECT_PRIMARY_P): Likewise.
8066         (get_primary_binfo): New function.
8067         * decl.c (lang_mark_tree): Make lang_type::primary_base.
8068         * class.c (vcall_offset_data_s): Rename to ...
8069         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
8070         and add ctor_vtbl_p.
8071         (get_derived_offset): Use get_primary_binfo.
8072         (dfs_mark_primary_bases): Adjust handling of virtual primary
8073         bases.
8074         (mark_primary_bases): Likewise.
8075         (set_primary_base): Take a binfo, not an integer, as a
8076         representation of the primary base.
8077         (indirect_primary_base_p): Remove.
8078         (determine_primary_base): Adjust for indirect primary bases.
8079         (dfs_find_final_overrider): Fix typo in coment.
8080         (update_vtable_entry_for_fn): Use get_primary_binfo.
8081         (layout_nonempty_base_or_field): Tweak.
8082         (build_base_fields): Adjust for new primary base semantics.
8083         (dfs_propagate_binfo_offsets): Remove.
8084         (propagate_binfo_offsets): Rewrite.
8085         (dfs_set_offset_for_shared_vbases): Remove.
8086         (layout_virtual_bases): Don't use it.
8087         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
8088         ABI.
8089         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
8090         CLASSTYPE_VFIELD_PARENT.
8091         (dfs_get_primary_binfo): New function.
8092         (get_primary_binfo): Likewise.
8093         (dump_class_hierarchy_r): Tweak printing of primary bases.
8094         (build_vtbl_initializer): Fix typo in comments.  Use
8095         vtbl_init_data.
8096         (build_vcall_and_vbase_vtbl_entries): Likewise.
8097         (build_vbaes_offset_vtbl_entries): Likewise.
8098         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
8099         BV_VCALL_INDEX to handle indirect primary bases.
8100         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
8101         (build_rtti_vtbl_entries): Likewise.
8102         * search.c (get_shared_vbase_if_not_primary): Tweak.
8103         (find_vbase_instance): Likewise.
8104         (binfo_for_vtable): Simplify.
8105         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
8106         (make_binfo): Make it have 11 entries.
8107
8108 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
8109
8110         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
8111         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
8112         ascertaining primaryness.
8113         (G): Remove template_args.
8114         (decl_is_template_id): New function.
8115         (write_encoding): Use decl_is_template_id.
8116         (write_name): Likewise.  Handle type_decls.  Get main variant of
8117         type decls.
8118         (write_nested_name): Likewise.
8119         (write_prefix): Likewise.
8120         (write_template_prefix): Likewise.
8121         (write_special_name_constructor): Remove defunct production from
8122         comment.
8123         (write_bare_function_type): Remove comment about absent parameter.
8124         (write_template_template_arg): Add missing grammar production to
8125         comment.
8126
8127 2000-07-27  Jason Merrill  <jason@redhat.com>
8128
8129         * decl.c (duplicate_decls): If common_type produces a non-typedef
8130         type for a typedef, just use the old type.
8131
8132 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
8133
8134         * cp-tree.h (function_depth): Declare.
8135         (verify_stmt_tree): Likewise.
8136         (find_tree): Likewise.
8137         * decl.c (function_depth): Give it external linkage.
8138         * optimize.c (optimize_function): Increment and decrement it.
8139         * tree.c (verify_stmt_tree_r): New function.
8140         (verify_stmt_tree): Likewise.
8141         (find_tree_r): Likewise.
8142         (find_tree): Likewise.
8143
8144 2000-07-27  Jason Merrill  <jason@redhat.com>
8145
8146         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
8147         TYPE_PTRMEMFUNC_P.
8148         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
8149
8150 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
8151
8152         * decl.c (start_cleanup_fn): Mark the function as `inline'.
8153         * decl2.c (get_guard): Call cp_finish_decl, not
8154         rest_of_decl_compilation, for local guards.
8155         * lex.c (do_identifier): Remove unused variable.
8156
8157 Wed Jul 26 15:05:51 CEST 2000   Marc Espie <espie@cvs.openbsd.org>
8158
8159         * parse.y:  Add missing ';'.
8160
8161 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
8162
8163         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
8164         of `extern "C++"'.
8165
8166 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
8167
8168         Kill strict_prototype. Backwards compatibility only for
8169         non NO_IMPLICIT_EXTERN_C systems.
8170         * cp-tree.h (flag_strict_prototype): Remove.
8171         (strict_prototype): Remove.
8172         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
8173         * decl.c (maybe_push_to_top_level): Adjust.
8174         (pop_from_top_level): Adjust.
8175         (decls_match): Only allow sloppy parm matching for ancient
8176         system headers.
8177         (init_decl_processing): Adjust.
8178         (grokdeclarator): Adjust.
8179         * decl2.c (flag_strict_prototype): Remove.
8180         (strict_prototype): Remove.
8181         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
8182         (lang_f_options): Remove "strict-prototype".
8183         (unsupported-options): Add "strict-prototype".
8184         * lex.c (do_identifier): Adjust.
8185         (do_scoped_id): Adjust.
8186         * parse.y (empty_parms): Adjust.
8187         * class.c (push_lang_context): Adjust.
8188         (pop_lang_context): Adjust.
8189         * typeck.c (comp_target_parms): Adjust.
8190
8191 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
8192
8193         * decl.c (poplevel): Deal with anonymous variables at for scope.
8194         (maybe_inject_for_scope_var): Likewise.
8195
8196 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
8197
8198         * decl.c: Remove all signal handling code, now done in toplev.c.
8199
8200 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
8201
8202         * decl.c (make_rtl_for_nonlocal_decl): Rework.
8203
8204         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
8205         correctly.
8206
8207 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
8208
8209         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
8210         Define my_friendly_assert and my_friendly_abort as macros
8211         which may call friendly_abort.  Prototype friendly abort, not
8212         my_friendly_abort or my_friendly_assert.
8213         * decl.c (signal_catch): Report the signal caught in the error
8214         message.  Call fatal directly.
8215         * typeck2.c (ack, my_friendly_assert): Delete.
8216         (my_friendly_abort): Rename to friendly_abort.  Expect file,
8217         line, and function parameters.  Report the abort code, then
8218         call fancy_abort.  Do not mask an abort if errors have
8219         already occurred.
8220
8221 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
8222
8223         * typeck.c (comp_target_parms): Remove obsolete parameter.
8224         (comp_target_types): Adjust.
8225
8226 2000-07-17  Jason Merrill  <jason@redhat.com>
8227
8228         * typeck.c (mark_addressable): Never set TREE_USED.
8229         * call.c (build_call): Don't abort on calls to library functions
8230         that have been declared normally.
8231
8232         * typeck.c (build_binary_op): Fix grammar in warning.
8233
8234         * exception.cc (__eh_free): Fix prototype.
8235
8236         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
8237
8238         * decl.c (pushdecl): Handle seeing an OVERLOAD in
8239         IDENTIFIER_NAMESPACE_VALUE.
8240
8241 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
8242
8243         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
8244         * method.c (use_thunk): Correct handling of vcall offsets.
8245
8246 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
8247
8248         * .cvsignore: parse.h and parse.c have no cp- prefix.
8249
8250 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
8251
8252         * .cvsignore: New file.
8253
8254 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
8255
8256         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
8257
8258 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
8259
8260         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
8261         * parse.c: Remove.
8262         * parse.h: Likewise.
8263
8264 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
8265
8266         * class.c (layout_class_type): Add pointers to virtual bases after
8267         base classes under the old ABI.
8268
8269 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
8270
8271         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
8272         (finish_continue_stmt): Likewise.
8273         (begin_for_stmt): Remove call to note_level_for_for.
8274         (finish_goto_stmt): Change call from build_min_nt
8275         to build_stmt.
8276         (finish_expr_stmt): Likewise.
8277         (begin_if_stmt): Likewise.
8278         (begin_while_stmt): Likewise.
8279         (finish_while_stmt): Likewise.
8280         (finish_return_stmt): Likewise.
8281         (begin_for_stmt): Likewise.
8282         (finish_for_stmt): Likewise.
8283         (finish_break_stmt): Likewise.
8284         (begin_switch_stmt): Likewise.
8285         (finish_case_label): Likewise.
8286         (genrtl_try_block): Likewise.
8287         (begin_try_block): Likewise.
8288         (begin_handler): Likewise.
8289         (begin_compound_stmt): Likewise.
8290         (finish_asm_stmt): Likewise.
8291         (finish_label_stmt): Likewise.
8292         (add_decl_stmt): Likewise.
8293         (finish_subobject): Likewise.
8294         (finish_decl_cleanup): Likewise.
8295         (finish_named_return_value): Likewise.
8296         (setup_vtbl_ptr): Likewise.
8297         (add_scope_stmt): Likewise.
8298         * decl.c (finish_constructor_body): Likewise.
8299         (finish_destructor_body): Likewise.
8300         * optimize.c (copy_body_r): Likewise.
8301         (initialize_inlined_parameters): Likewise.
8302         (declare_return_variable): Likewise.
8303         (expand_call_inline): Likewise.
8304
8305 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
8306
8307         * semantics.c (expand_body): Sync interface information
8308         at the end of function body expansion.
8309
8310 2000-07-09  Jason Merrill  <jason@redhat.com>
8311
8312         * init.c (build_new_1): Bail early if the call to new fails.
8313
8314         * decl.c (compute_array_index_type): Check specifically for
8315         an INTEGER_CST, not just TREE_CONSTANT.
8316
8317         * decl.c (duplicate_decls): Don't call duplicate_decls on
8318         the DECL_TEMPLATE_RESULT.
8319         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
8320         codes.
8321
8322         * error.c (dump_template_bindings): Don't crash if we had an
8323         invalid argument list.
8324
8325         * typeck.c (c_expand_start_case): Do narrowing here.
8326         * semantics.c (finish_switch_cond): Not here.
8327
8328 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
8329
8330         * parse.y (asm_clobbers): Do string concatenation.
8331
8332 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
8333
8334         * decl.c (pushtag): Don't put local classes in template functions
8335         on the local_classes list.
8336
8337 2000-07-04  Scott Snyder  <snyder@fnal.gov>
8338
8339         * decl2.c (get_guard): Add missing return for old ABI local
8340         variable case.
8341
8342 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
8343
8344         * cp-tree.h (char_type_p): New function.
8345         * decl.c (init_decl_processing): Don't initialize
8346         signed_wchar_type_node or unsigned_wchar_type_node.
8347         (complete_array_type): Handle brace-enclosed string-constants.
8348         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
8349         * tree.c (char_type_p): New function.
8350         * typeck2.c (digest_init): Use char_type_p.
8351
8352 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
8353
8354         * pt.c (tsubst): Don't layout type, if it's error_mark.
8355
8356 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
8357
8358         * pt.c (instantiate_pending_templates): Reset template level.
8359
8360 2000-07-05  Jason Merrill  <jason@redhat.com>
8361
8362         * call.c (joust): Don't complain about `operator char *()' beating
8363         `operator const char *() const'.
8364
8365 2000-07-04  scott snyder  <snyder@fnal.gov>
8366             Jason Merrill  <jason@redhat.com>
8367
8368         * repo.c (repo_get_id): Handle the case where a class with virtual
8369         bases has a null TYPE_BINFO_VTABLE.
8370
8371 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
8372             Jason Merrill  <jason@redhat.com>
8373
8374         * parse.y (member_init): Just pass in the type.
8375         * init.c (expand_member_init): Handle getting a type.
8376
8377 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8378             Jason Merrill  <jason@redhat.com>
8379
8380         * decl.c (finish_function): Warn if a function has no return
8381         statement.
8382         Suggested by Andrew Koenig.
8383         * typeck.c (check_return_expr): Do set current_function_returns_value
8384         if we got an error_mark_node.
8385
8386 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
8387
8388         * decl2.c (push_decl_namespace): Push the original namespace.
8389
8390 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
8391
8392         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
8393         * semantics.c (begin_class_definition): Clear it.
8394
8395 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
8396
8397         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
8398         (genrtl_expr_stmt): Likewise.
8399         (genrtl_decl_stmt): Likewise.
8400         (genrtl_if_stmt): Likewise.
8401         (genrtl_while_stmt): Likewise.
8402         (genrtl_do_stmt): Likewise.
8403         (genrtl_return_stmt): Likewise.
8404         (genrtl_for_stmt): Likewise.
8405         (genrtl_break_stmt): Likewise.
8406         (genrtl_continue_stmt): Likewise.
8407         (genrtl_scope_stmt): Likewise.
8408         (genrtl_switch_stmt): Likewise.
8409         (genrtl_case_label): Likewise.
8410         (genrtl_begin_compound_stmt): Likewise.
8411         (genrtl_finish_compound_stmt): Likewise.
8412         (genrtl_compound_stmt): Likewise.
8413         (genrtl_asm_stmt): Likewise.
8414
8415         * init.c (begin_init_stmts): Remove call to
8416         genrtl_begin_compound_stmt.
8417         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
8418
8419         * semantics.c (lang_expand_stmt): Changed call to
8420         genrtl_compound_stmt to ignore return value.
8421
8422 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
8423
8424         * mangle.c (canonicalize_for_substitution): Return the canonical
8425         variant of a type.
8426
8427         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
8428         TYPE_DECL.
8429         * typeck.c (commonparms): Remove obstack manipulations.
8430
8431 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
8432
8433         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
8434
8435         * Makefile.in (OBJS): Added ../c-semantics.o.
8436         (OBJDEPS): Likewise.
8437
8438         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
8439         ../c-common.h.
8440         (struct stmt_tree): Added comment.
8441         (current_function_name_declared): Removed.
8442         (stmts_are_full_exprs_p): Likewise.
8443         (genrtl_do_pushlevel): Likewise.
8444         (genrtl_clear_out_block): Likewise.
8445         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
8446         (DECL_ANON_UNION_ELEMS): Likewise.
8447         (emit_local_var): Likewise.
8448         (make_rtl_for_local_static): Likewise.
8449         (do_case): Likewise.
8450         (expand_stmt): Likewise.
8451         (genrtl_decl_cleanup): Likewise.
8452         (c_expand_asm_operands): Likewise.
8453         (c_expand_return): Likewise.
8454         (c_expand_start_case): Likewise.
8455
8456         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
8457         (emit_local_var): Likewise.
8458         (initialize_local_var): Change reference to
8459         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
8460         Change reference to stmts_are_full_exprs_p to
8461         current_stmt_tree->stmts_are_full_exprs_p.
8462         (push_cp_function_context): Likewise.
8463
8464         * expect.c (expand_throw): Change reference to
8465         stmts_are_full_exprs_p.
8466
8467         * init.c (build_aggr_init): Change reference to
8468         stmts_are_full_exprs_p.
8469         (build_vec_init): Likewise.
8470
8471         * optimize.c (maybe_clone_body): Change reference to
8472         current_function_name_declared to
8473         cp_function_chain->name_declared.
8474
8475         * pt.c (instantiate_decl): Change reference to
8476         current_function_name_declared to
8477         cp_function_chain->name_declared.
8478
8479         * semantics.c (expand_cond): Moved declaration to c-common.h.
8480         (genrtl_do_pushlevel): Moved to c-semantics.c.
8481         (genrtl_clear_out_block): Likewise.
8482         (genrtl_goto_stmt): Likewise.
8483         (genrtl_expr_stmt): Likewise.
8484         (genrtl_decl_stmt): Likewise.
8485         (gerntl_if_stmt): Likewise.
8486         (genrtl_while_stmt): Likewise.
8487         (genrtl_do_stmt): Likewise.
8488         (genrtl_return_stmt): Likewise.
8489         (genrtl_for_stmt): Likewise.
8490         (genrtl_break_stmt): Likewise.
8491         (genrtl_continue_stmt): Likewise.
8492         (genrtl_scope_stmt): Likewise.
8493         (genrtl_switch_stmt): Likewise.
8494         (genrtl_case_label): Likewise.
8495         (genrtl_begin_compound_stmt): Likewise.
8496         (genrtl_finish_compound_stmt): Likewise.
8497         (genrtl_compound_stmt): Likewise.
8498         (genrtl_asm_stmt): Likewise.
8499         (genrtl_decl_cleanup): Likewise.
8500         (expand_cond): Likewise.
8501         (expand_stmt): Renamed to ...
8502         (lang_expand_stmt): ... this.
8503         (lang_expand_expr_stmt): Initialize.
8504         (set_current_function_name_declared): Likewise.
8505         (stmts_are_full_exprs_p): Likewise.
8506         (current_function_name_declared): Likewise.
8507         (anon_aggr_type_p): Likewise.
8508         (do_poplevel): Change reference to
8509         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
8510         Change reference to stmts_are_full_exprs_p to
8511         current_stmt_tree->stmts_are_full_exprs_p.
8512         (add_tree): Likewise.
8513         (finish_expr_stmt): Likewise.
8514         (prep_stmt): Likewise.
8515         (lang_expand_stmt): Likewise.
8516         (begin_compound_stmt): Change reference to
8517         current_function_name_declared to
8518         cp_function_chain->name_declared and call to
8519         current_function_name_declared().
8520         (setup_vtbl_ptr): Likewise.
8521         (genrtl_do_poplevel): Removed.
8522
8523 2000-06-30  Jason Merrill  <jason@redhat.com>
8524
8525         * init.c (init_init_processing): Go back to aligning like
8526         double_type_node for old ABI.
8527         (get_cookie_size): Make cookie larger if we get a type that needs
8528         more alignment.
8529         (build_vec_delete): Call it.
8530
8531         * typeck.c (qualify_type_recursive): New fn.
8532         (composite_pointer_type): Use it.
8533         (build_binary_op): Use composite_pointer_type.
8534
8535 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
8536             Jason Merrill  <jason@redhat.com>
8537
8538         * typeck.c (check_return_expr): Don't complain about returning
8539         NULL from operator new if -fcheck-new.
8540         * cp-tree.h: Declare flag_check_new here.
8541         * init.c: Not here.
8542
8543 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
8544
8545         * mangle.c (find_substitution): Use same_type_p.
8546         (write_encoding): Don't check for substitutions.
8547
8548 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
8549
8550         * parse.y (expr_no_comma_rangle): New non-terminal.
8551         (template_parm): Use it for default parameter case.
8552         (template_arg): Use it.
8553         (expr_no_commas): Remove commented out undefined extensions.
8554         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
8555         * parse.h, parse.c: Rebuilt.
8556
8557 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
8558
8559         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
8560         (finish_asm_stmt): Do it here, instead.
8561
8562         * cp-tree.h (ridpointers): Don't declare.
8563         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
8564         (record_builtin_java_type): Likewise.
8565         (init_decl_processing): Likewise.
8566         * lex.c: Move inclusion of lex.h.
8567         (ridpointers): Don't define.
8568         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
8569         RID_MAX.
8570         * lex.h (enum rid): Rename to ...
8571         (enum cp_rid): ... this.
8572         (ridpointers): Don't declare.
8573         * parse.y: Move inclusion of lex.h.
8574         * parse.c: Regenerated.
8575         * spew.c: Move inclusion of lex.h.
8576
8577         * cp-tree.h (struct language_function): Remove temp_name_counter.
8578         (temp_name_counter): Remove.
8579         (get_temp_name): Change prototype.
8580         (get_guard): New function.
8581         (get_guard_cond): Likewise.
8582         (set_guard): Likewise.
8583         * cvt.c (build_up_reference): Adjust call to get_temp_name.
8584         * decl.c (expand_static_init): Use get_guard and friends to
8585         implement guard variables.
8586         * decl2.c (get_temp_name): Assume that the variables created are
8587         always static.
8588         (get_sentry): Rename to ...
8589         (get_guard): ... this.  Implement new ABI guard variables.
8590         (get_guard_bits): New function.
8591         (get_guard_cond): Likewise.
8592         (set_guard): Likewise.
8593         (start_static_initialization_or_destruction): Use them.
8594         (do_static_initialization): Replace sentry with guard throughout.
8595         (do_static_destruction): Likewise.
8596         * init.c (create_temporary_var): Add comment.
8597
8598 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
8599
8600         * mangle.c (find_substitution): Use same_type_p.
8601         (write_encoding): Don't check for substitutions.
8602
8603 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
8604
8605         * parse.y (expr_no_comma_rangle): New non-terminal.
8606         (template_parm): Use it for default parameter case.
8607         (template_arg): Use it.
8608         (expr_no_commas): Remove commented out undefined extensions.
8609         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
8610         * parse.h, parse.c: Rebuilt.
8611
8612 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
8613
8614         * cp-tree.h (flag_const_strings): Remove.
8615         (warn_parentheses): Likewise.
8616         (warn_format): Likewise.
8617         (common_type): Likewise.
8618         (default_conversion): Likewise.
8619         (build_binary_op): Likewise.
8620         (cp_build_binary_op): New macro.
8621         * call.c (build_new_op): Use cp_build_binary_op instead of
8622         build_binary_op.
8623         * class.c (build_vtable_entry_ref): Likewise.
8624         * decl.c (expand_static_init): Likewise.
8625         (compute_array_index_type): Likewise.
8626         (build_enumerator): Likewise.
8627         * decl2.c (delete_sanity): Likewise.
8628         (start_static_initialization_or_destruction): Likewise.
8629         * error.c (dump_type_suffix): Likewise.
8630         * init.c (resolve_offset_ref): Likewise.
8631         (build_new): Likewise.
8632         (build_new_1): Likewise.
8633         (build_vec_delete_1): Likewise.
8634         (build_vec_init): Likewise.
8635         (build_delete): Likewise.
8636         * rtti.c (synthesize_tinfo_fn): Likewise.
8637         (synthesize_tinfo_var): Likewise.
8638         * search.c (expand_upcast_fixups): Likewise.
8639         (fixup_all_virtual_upcast_offsets): Likewise.
8640         * typeck.c (build_array_ref): Likewise.
8641         (get_member_function_from_ptrfunc): Likewise.
8642         (build_binary_op): Add parameter.
8643         (pointer_int_sum): Use cp_build_binary_op.
8644         (pointer_diff): Likewise.
8645         (build_modify_expr): Likewise.
8646         (get_delta_difference): Likewise.
8647         (build_ptrmemfunc): Likewise.
8648
8649 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
8650
8651         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
8652         * decl.c (create_implicit_typedef): Adjust.
8653         * decl2.c (build_artificial_parm): Adjust.
8654         * method.c (implicitly_declare_fn): Adjust.
8655         * pt.c (push_inline_template_parms_recursive): Adjust.
8656         (process_template_parm): Adjust.
8657         (overloaded_template_name): Adjust.
8658         * semantics.c (finish_template_template_parm): Adjust.
8659
8660 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
8661
8662         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
8663         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
8664         where to emit thunks.
8665         (build_vtt): Adjust call to build_vtt_inits.
8666         (build_vtt_inits): Add parameter to indicate whether or not
8667         sub-VTTs for virtual bases should be included.  Adjust handling of
8668         construction vtables.
8669         (get_matching_base): New function.
8670         (dfs_build_vtt_inits): Rename to ...
8671         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
8672         construction vtables.
8673         (dfs_fixup_binfo_vtbls): Likewise.
8674         (build_ctor_vtbl_groups): Build construction vtables for virtual
8675         bases, too.
8676         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
8677         to build construction vtbls.
8678         (dfs_accumulate_vtbl_inits): Adjust handling of
8679         construction vtables.
8680
8681         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
8682         types correctly.
8683
8684 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
8685
8686         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
8687
8688 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
8689
8690         * search.c (hides): Remove.
8691         (is_subobject_of_p): Add most_derived parameter. Use
8692         CANONICAL_BINFO.
8693         (lookup_field_queue_p): Adjust.
8694         (lookup_field_r): Adjust.
8695
8696 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
8697
8698         * decl2.c (handle_class_head): Bash typedefs to the type's main
8699         decl.
8700
8701 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
8702
8703         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
8704         (begin_global_stmt_expr): ... this.
8705         (genrtl_finish_stmt_expr): Rename to ...
8706         (finish_global_stmt_expr): ... this.
8707         * init.c (begin_init_stmts): Adjust calls.
8708         (finish_init_stmts): Likewise.
8709         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
8710         (begin_global_stmt_expr): ... this.
8711         (genrtl_finish_stmt_expr): Rename to ...
8712         (finish_global_stmt_expr): ... this.
8713
8714 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
8715
8716         * search.c (lookup_member): Fix typo in comment.
8717
8718 2000-06-24  Jason Merrill  <jason@redhat.com>
8719
8720         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
8721         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
8722
8723 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
8724
8725         * parse.y (complex_direct_notype_declarator): Support global_scope.
8726         * Makefile.in: Adjust conflict count.
8727
8728 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
8729
8730         * parse.y (template_arg): Convert TEMPLATE_DECL
8731         that is a template template parameter to
8732         TEMPLATE_TEMPLATE_PARM here.
8733
8734         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
8735         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
8736         (copy_template_template_parm): Adjust prototype.
8737         * decl.c (grokdeclarator): Remove dead code.
8738         * pt.c (process_template_parm): Tidy.
8739         (lookup_template_class): Construct nodes in
8740         copy_template_template_parm.
8741         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
8742         lookup_template_class.  Use TYPE_TI_TEMPLATE.
8743         * tree.c (copy_template_template_parm): Add NEWARGS
8744         parameter.
8745         (mapcar): Adjust call to copy_template_template_parm.
8746         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
8747         * method.c (build_template_template_parm_names): Change error
8748         code to avoid compilation warning.
8749
8750         * gxxint.texi: Document template template parameter
8751         name mangling.
8752
8753 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
8754
8755         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
8756         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
8757         (cp-demangle.o): New rule.
8758         (dyn-string.o): Likewise.
8759         * inc/cxxabi.h (__cxa_demangle): New declaration.
8760
8761 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
8762
8763         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
8764         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
8765         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
8766         a tree, not an int.
8767         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
8768         (make_thunk): Change prototype.
8769         (emit_thunk): Rename to use_thunk.
8770         (mangle_thunk): Change prototype.
8771         * class.c (get_derived_offset): Simplify.
8772         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
8773         BV_GENERATE_THUNK_WITH_VTABLE_P.
8774         (build_primary_vtable): Simplify.
8775         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
8776         (dfs_find_base): Remove.
8777         (update_vtable_entry_for_fn): Correct bug in finding the base
8778         where a virtual function was first declared.  Figure out whether
8779         or not to emit a vcall-thunk with the vtables in which it appears.
8780         Correct logic for deciding whether to use an ordinary thunk, or a
8781         vcall thunk.
8782         (finish_struct_1): Remove unnecssary code.
8783         (build_vtbl_initializer): Use ssize_int for the running counter of
8784         negative indices.
8785         (build_vtbl_initializer): Only use vcall thunks where necessary.
8786         Mark thunks as needing to be emitted with their vtables, or not.
8787         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
8788         indices.  Use size_binop.
8789         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
8790         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
8791         size_binop.
8792         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
8793         (build_vtable_entry): Mark thunks as needing to be emitted with
8794         their vtables, or not.
8795         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
8796         * decl2.c (mark_vtable_entries): Use use_thunk instead of
8797         emit_thunk.
8798         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
8799         information.
8800         * error.c (dump_expr): Use BV_FN.
8801         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
8802         not an int.
8803         * method.c (make_thunk): Likewise.
8804         (emit_thunk): Rename to use_thunk.  Allow callers to decide
8805         whether or not to actually emit the thunk.  Adjust for changes in
8806         representation of vcall offsets.
8807         * search.c (dfs_get_pure_virtuals): Use BV_FN.
8808         * semantics.c (emit_associated_thunks): New function.
8809         (expand_body): Use it.
8810         * ir.texi: Adjust decriptions of thunks.
8811
8812 2000-06-22  Jason Merrill  <jason@redhat.com>
8813
8814         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
8815         (tsubst_friend_function): Copy it here.
8816
8817         * decl.c (grok_op_properties): Fix typo.
8818
8819         * decl2.c (delete_sanity): Clarify warning, avoid failure on
8820         deleting void*.
8821
8822         * pt.c (check_explicit_specialization): Clarify error.
8823
8824         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
8825         an old OVERLOAD when we're declaring a non-function.
8826         (pushdecl, destroy_local_var): Check for error_mark_node.
8827         (warn_extern_redeclared_static): Also bail early if
8828         we're a CONST_DECL.
8829         (push_overloaded_decl): Ignore an old error_mark_node.
8830
8831 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
8832
8833         * call.c (build_x_va_arg): Check if in a template decl.
8834         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
8835
8836 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
8837
8838         * class.c (push_lang_context): TYPE_NAME gets you to the Java
8839         types DECLs.
8840         * decl.c (check_goto): Computed gotos assumed OK.
8841
8842 2000-06-20  Jason Merrill  <jason@redhat.com>
8843
8844         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
8845         for which we don't need to look for instantiations.
8846
8847 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
8848
8849         * parse.y (program): Always call finish_translation_unit.
8850         * parse.c, parse.h: Rebuilt.
8851
8852 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
8853
8854         * method.c: Don't include hard-reg-set.h.
8855
8856 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
8857
8858         * rtti.c (get_base_offset): Cope when vbase field is in a base.
8859
8860 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
8861
8862         * call.c (build_conditional_expr): Use VOID_TYPE_P.
8863         * cvt.c (cp_convert_to_pointer): Likewise.
8864         (convert_to_void): Likewise.
8865         * error.c (dump_expr): Likewise.
8866         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
8867         * init.c (build_delete): Likewise.
8868         * method.c (emit_thunk): Likewise.
8869         * optmize.c (declare_return_variable): Likewise.
8870         * rtti.c (get_tinfo_decl_dynamic): Likewise.
8871         (get_typeid): Likewise.
8872         (build_dynamic_cast_1): Likewise.
8873         * typeck.c (composite_pointer_type): Likewise.
8874         (common_type): Likewise.
8875         (build_indirect_ref): Likewise.
8876         (build_binary_op): Likewise.
8877         (build_x_compound_expr): Likewise.
8878         (check_return_expr): Likewise.
8879         * typeck2.c (add_exception_specifier): Likewise.
8880
8881         * mangle.c (write_method_parms): Use direct comparison for end
8882         of parmlist.
8883
8884 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
8885
8886         * cp-tree.h (genrtl_try_block): Declare function.
8887         (genrtl_handler): Likewise.
8888         (genrtl_catch_block): Likewise.
8889         (genrtl_ctor_stmt): Likewise.
8890         (genrtl_subobject): Likewise.
8891         (genrtl_decl_cleanup): Likewise.
8892         (genrtl_do_poplevel): Likewise.
8893         (genrtl_do_pushlevel): Likewise.
8894         (genrtl_clear_out_block): Likewise.
8895         (genrtl_goto_stmt): Likewise.
8896         (genrtl_expr_stmt): Likewise.
8897         (genrtl_decl_stmt): Likewise.
8898         (genrtl_if_stmt): Likewise.
8899         (genrtl_while_stmt): Likewise.
8900         (genrtl_do_stmt): Likewise.
8901         (genrtl_return_stmt): Likewise.
8902         (genrtl_for_stmt): Likewise.
8903         (genrtl_break_stmt): Likewise.
8904         (genrtl_continue_stmt): Likewise.
8905         (genrtl_scope_stmt): Likewise.
8906         (genrtl_switch_stmt): Likewise.
8907         (genrtl_case_label): Likewise.
8908         (genrtl_begin_compound_stmt): Likewise.
8909         (genrtl_finish_compound_stmt): Likewise.
8910         (genrtl_compound_stmt): Likewise.
8911         (genrtl_asm_stmt): Likewise.
8912         (genrtl_named_return_value): Likewise.
8913         (genrtl_begin_stmt_expr): Likewise.
8914         (genrtl_finish_stmt_expr): Likewise.
8915         (finish_for_stmt): Removed first argument.
8916         (finish_switch_stmt): Likewise.
8917
8918         * semantics.c (genrtl_try_block): Define function.
8919         (genrtl_handler): Likewise.
8920         (genrtl_catch_block): Likewise.
8921         (genrtl_ctor_stmt): Likewise.
8922         (genrtl_subobject): Likewise.
8923         (genrtl_decl_cleanup): Likewise.
8924         (genrtl_do_poplevel): Likewise.
8925         (genrtl_do_pushlevel): Likewise.
8926         (genrtl_clear_out_block): Likewise.
8927         (genrtl_goto_stmt): Likewise.
8928         (genrtl_expr_stmt): Likewise.
8929         (genrtl_decl_stmt): Likewise.
8930         (genrtl_if_stmt): Likewise.
8931         (genrtl_while_stmt): Likewise.
8932         (genrtl_do_stmt): Likewise.
8933         (genrtl_return_stmt): Likewise.
8934         (genrtl_for_stmt): Likewise.
8935         (genrtl_break_stmt): Likewise.
8936         (genrtl_continue_stmt): Likewise.
8937         (genrtl_scope_stmt): Likewise.
8938         (genrtl_switch_stmt): Likewise.
8939         (genrtl_case_label): Likewise.
8940         (genrtl_begin_compound_stmt): Likewise.
8941         (genrtl_finish_compound_stmt): Likewise.
8942         (genrtl_compound_stmt): Likewise.
8943         (genrtl_asm_stmt): Likewise.
8944         (genrtl_named_return_value): Likewise.
8945         (genrtl_begin_stmt_expr): Likewise.
8946         (genrtl_finish_stmt_expr): Likewise.
8947         (finish_for_stmt): Removed first argument and generate rtl
8948         specific code.
8949         (finish_switch_stmt): Likewise.
8950         (do_poplevel): Removed generate rtl specific code.
8951         (do_pushlevel): Likewise.
8952         (add_tree): Likewise.
8953         (finish_goto_stmt): Likewise.
8954         (finish_expr_stmt): Likewise.
8955         (begin_if_stmt): Likewise.
8956         (finish_if_stmt_cond): Likewise.
8957         (finish_then_clause): Likewise.
8958         (begin_else_clause): Likewise.
8959         (finish_else_clause): Likewise.
8960         (finish_if_stmt): Likewise.
8961         (clear_out_block): Likewise.
8962         (begin_while_stmt): Likewise.
8963         (finish_while_stmt_cond): Likewise.
8964         (finish_while_stmt): Likewise.
8965         (begin_do_stmt): Likewise.
8966         (finish_do_body): Likewise.
8967         (finish_do_stmt): Likewise.
8968         (finish_return_stmt): Likewise.
8969         (begin_for_stmt): Likewise.
8970         (finish_for_init_stmt): Likewise.
8971         (finish_for_cond): Likewise.
8972         (finish_for_expr): Likewise.
8973         (finish_break_stmt): Likewise.
8974         (finish_continue_stmt): Likewise.
8975         (begin_switch_stmt): Likewise.
8976         (finish_switch_cond): Likewise.
8977         (finish_case_label): Likewise.
8978         (begin_try_block): Likewise.
8979         (begin_function_try_block): Likewise.
8980         (finish_try_block): Likewise.
8981         (finish_cleanup_try_block): Likewise.
8982         (finish_cleanup): Likewise.
8983         (finish_function_try_block): Likewise.
8984         (finish_handler_sequence): Likewise.
8985         (finish_function_handler_sequence): Likewise.
8986         (begin_handler): Likewise.
8987         (finish_handler_parms): Likewise.
8988         (begin_catch_block): Likewise.
8989         (finish_handler): Likewise.
8990         (begin_compound_stmt): Likewise.
8991         (finish_compound_stmt): Likewise.
8992         (finish_asm_stmt): Likewise.
8993         (finish_label_stmt): Likewise.
8994         (finish_label_decl): Likewise.
8995         (finish_subobject): Likewise.
8996         (finish_decl_cleanup): Likewise.
8997         (finish_named_return_value): Likewise.
8998         (begin_stmt_expr): Likewise.
8999         (finish_stmt_expr): Likewise.
9000
9001         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
9002         to call genrtl_expr_stmt when appropriate.
9003
9004         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
9005         begin_compound_expr to call genrtl_begin_stmt_expr and
9006         genrtl_begin_compound_expr when appropriate.
9007         (finish_init_stmts): Changed calls to finish_compound_expr and
9008         finish_stmt_expr to call genrtl_finish_compound_expr and
9009         genrtl_finish_stmt_expr when appropriate.
9010         (expand_default_init): Changed call to finish_expr_stmt to call
9011         genrtl_expr_stmt when appropriate.
9012         (build_vec_init): Likewise.
9013
9014         * parse.y (simple_stmt): Removed first argument from call to
9015         finish_for_stmt. Removed first argument from call to
9016         finish_switch_stmt.
9017
9018         * parse.c: Regenerated.
9019
9020         * pt.c (tsubst_expr): Removed first argument from call to
9021         finish_for_stmt. Removed first argument from call to
9022         finish_switch_stmt.
9023
9024 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
9025
9026         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
9027         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
9028
9029         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
9030         (cplus_tree_code_length[]): Likewise.
9031         (cplus_tree_code_name[]): Likewise.
9032         (init_parse): Added call to add_c_tree_codes. Changed
9033         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
9034
9035 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
9036
9037         * cp-tree.h (finish_mem_initializers): Declare.
9038         (count_trees): Likewise.
9039         * parse.y (base_init): Use finish_mem_initializers.
9040         * semantics.c (finish_mem_initializers): New function.
9041
9042         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
9043         the number of trees.
9044         (n_trees): Remove.
9045         (count_trees): Don't use it.
9046
9047 2000-06-15  Jason Merrill  <jason@redhat.com>
9048
9049         * tree.c (count_trees): New debugging function.
9050
9051         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
9052         * init.c (build_member_call): Pull out the name of a DECL.
9053
9054         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
9055         * semantics.c (expand_body): Push to TV_INTEGRATION here.
9056         * optimize.c (optimize_function): Not here.
9057         * pt.c (instantiate_decl): Push to TV_PARSE.
9058
9059 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
9060
9061         * cp-tree.h (struct language_function): Remove x_base_init_list
9062         and x_member_init_list.
9063         (current_base_init_list): Remove.
9064         (current_member_init_list): Likewise.
9065         (setup_vtbl_ptr): Change prototype.
9066         (emit_base_init): Likewise.
9067         (expand_member_init): Likewise.
9068         (reinit_parse_for_function): Remove.
9069         * decl.c (save_function_data): Don't clear x_base_init_list and
9070         x_member_init_list.
9071         (mark_language_function): Don't mark them.
9072         * init.c (perform_member_init): Tweak comment.
9073         (sort_member_init): Take the list of initializers as an argument.
9074         (sort_base_init): Likewise.
9075         (emit_base_init): Likewise.
9076         (expand_member_init): Return the initializer.  Don't use global
9077         variables.
9078         * lex.c (reinit_parse_for_function): Remove.
9079         * method.c (build_template_parm_names): Correct substitution.
9080         (do_build_copy_constructor): Don't use current_member_init_list
9081         and current_base_init_list.
9082         (synthesize_method): Likewise.
9083         * parse.y (base_init): Split mem-initializers into
9084         base-initializers and field-initializers.
9085         (member_init_list): Build up the list here.
9086         (member_init): Return the initializer.
9087         (fn.depfn): Don't use reinit_parse_for_function.
9088         * parse.c: Regenerated.
9089         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
9090         ERROR_MARK.
9091         (tsubst_expr): Don't use current_member_init_list
9092         and current_base_init_list.
9093         (tsubst_expr_values): Rename to ...
9094         (tsubst_initializer_list): ... this.  Use convert_from_reference.
9095         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
9096         and current_base_init_list.
9097         (begin_function_definition): Don't call reinit_parse_for_function.
9098
9099         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
9100
9101         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
9102         correctly.
9103
9104         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
9105
9106 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
9107
9108         * cp-tree.h (IF_COND): Move to c-common.h.
9109         (THEN_CLAUSE): Likewise.
9110         (ELSE_CLAUSE): Likewise.
9111         (WHILE_COND): Likewise.
9112         (WHILE_BODY): Likewise.
9113         (DO_COND): Likewise.
9114         (DO_BODY): Likewise.
9115         (RETURN_EXPR): Likewise.
9116         (EXPR_STMT_EXPR): Likewise.
9117         (FOR_INIT_STMT): Likewise.
9118         (FOR_COND): Likewise.
9119         (FOR_EXPR): Likewise.
9120         (FOR_BODY): Likewise.
9121         (SWITCH_COND): Likewise.
9122         (SWITCH_BODY): Likewise.
9123         (CASE_LOW): Likewise.
9124         (CASE_HIGH): Likewise.
9125         (GOTO_DESTINATION): Likewise.
9126         (COMPOUND_BODY): Likewise.
9127         (ASM_CV_QUAL): Likewise.
9128         (ASM_STRING): Likewise.
9129         (ASM_OUTPUTS): Likewise.
9130         (ASM_INPUTS): Likewise.
9131         (ASM_CLOBBERS): Likewise.
9132         (DECL_STMT_DECL): Likewise.
9133         (STMT_EXPR_STMT): Likewise.
9134         (LABEL_STMT_LABEL): Likewise.
9135         (SCOPE_BEGIN_P): Likewise.
9136         (SCOPE_END_P): Likewise.
9137         (SCOPE_STMT_BLOCK): Likewise.
9138         (SCOPE_NULLIFIED_P): Likewise.
9139         (SCOPE_NO_CLEANUPS_P): Likewise.
9140         (SCOPE_PARTIAL_P): Likewise.
9141         (ASM_VOLATILE_P): Likewise.
9142         (STMT_LINENO): Likewise.
9143         (STMT_LINENO_FOR_FN_P): Likewise.
9144
9145         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
9146         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
9147         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
9148         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
9149         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
9150
9151         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
9152
9153         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
9154         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
9155
9156         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
9157         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
9158         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
9159
9160 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
9161
9162         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
9163         * class.c (dfs_find_final_overrider): Set it appropriately.
9164         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
9165         avoid unneeded secondary vptrs.
9166
9167 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
9168
9169         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
9170         (check_bitfield_decl, check_field_decl): Likewise.
9171         (build_vtbl_or_vbase_field, build_base_field): Likewise.
9172         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
9173         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
9174         (xfer_tag, finish_enum): Likewise.
9175         * decl2.c (finish_builtin_type): Likewise.
9176         * init.c (init_init_processing): Likewise.
9177         * pt.c (instantiate_class_template): Likewise.
9178         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
9179         * cp-tree.h (struct lang_type): Add user_align member.
9180         (CLASSTYPE_USER_ALIGN): Define.
9181
9182 Tue Jun 13 15:48:03 2000  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
9183
9184         * Make-lang.in (c++.install-common): Install g++-cross in
9185         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
9186         $(target_alias)-g++ and $(target_alias)-c++.
9187
9188 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
9189
9190         * class.c (vcall_offset_data_s): Add last_init and fns.
9191         (overrides): Rename to same_signature_p.
9192         (dfs_find_final_overrider): Adjust accordingly.
9193         (mark_overriders): Likewise.
9194         (warn_hidden): Likewise.
9195         (build_vtbl_initializer): Reorganize machinery for building things
9196         at negative offsets.
9197         (build_vcall_and_vbase_vtbl_entries): Likewise.
9198         (build_vbase_offset_vtbl_entries): Likewise.
9199         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
9200         offset entries.  Do not create two entries for functions with the
9201         same signature.
9202         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
9203         (build_rtti_vtbl_entries): Reorganize machinery for building things
9204         at negative offsets.
9205
9206         * optimize.c (expand_call_inline): Don't recurse into the code
9207         used to initialize the parameters more than once.
9208
9209 2000-06-11  Mark Mitchell <mark@codesourcery.com>
9210
9211         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
9212         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
9213         (find_substitution): Only use the `Sa' substitution for
9214         std::allocator, not instantiations of it.
9215         (write_template_prefix): Move comment.  Only use a TREE_LIST to
9216         represent substitutions for a member template.
9217         (write_array_type): Mangle array dimensions correctly.
9218         * optimize.c (maybe_clone_body): Copy more information from the
9219         cloned function.
9220         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
9221         on the regenerated declaration.
9222
9223 2000-06-11  Chip Salzenberg  <chip@valinux.com>
9224             Mark Mitchell <mark@codesourcery.com>
9225
9226         * class.c (build_vtable): Clarify comment.
9227         (build_ctor_vtbl_group): Pass the most derived type to
9228         build_vtable.
9229
9230 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9231
9232         * decl2.c (compare_options): Don't needlessly cast away const-ness.
9233
9234 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
9235
9236         * decl.c (add_binding): Handle duplicate declarations of external
9237         variables.
9238
9239 2000-06-09  Chip Salzenberg  <chip@valinux.com>
9240             Mark Mitchell <mark@codesourcery.com>
9241
9242         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
9243         argument.
9244         (write_signed_number): New macro.
9245         (write_unsigned_number): Likewise.
9246         (write_source_name): Use them.
9247         (write_number): Handle signed and unsigned values.
9248         (write_integer_cst): Use tree_int_cst_sgn, and use
9249         write_unsigned_number or write_signed_number as appropriate.
9250         (write_discriminator): Use write_unsigned_number or
9251         write_signed_number as appropriate.
9252         (write_template_arg_literal): Likewise.
9253         (write_array_type): Use tree_low_cst.
9254         (write_template_parm):  Use write_unsigned_number or
9255         write_signed_number as appropriate.
9256         (write_substitution): Adjust call to write_number.
9257         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
9258         (write_expression): Handle non-type template arguments of
9259         reference type correctly.
9260         (mangle_thunk): Use write_signed_number.
9261
9262 2000-06-09  Chip Salzenberg  <chip@valinux.com>
9263
9264         * mangle.c (find_substition): Don't mangle objects with typename
9265         substitutions (e.g. "cin" as "Si").
9266
9267 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
9268
9269         * call.c (add_candidate): Use ggc_alloc_cleared.
9270         * decl.c (lookup_label): Likewise.
9271         * lex.c (retrofit_lang_decl): Likewise.
9272
9273 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
9274
9275         * semantics.c (expand_body): Push to TV_EXPAND.
9276         * optimize.c (optimize_function): Push to TV_INTEGRATION.
9277         * decl.c (start_function): Always call announce_function.
9278
9279         * tinfo2.cc: Just declare abort.
9280
9281 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
9282
9283         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
9284         whenever @ is a symbolic name.
9285
9286 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
9287
9288         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
9289
9290 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
9291
9292         * decl.c (pushdecl): Look up functions by DECL_NAME, not
9293         DECL_ASSEMBLER_NAME.
9294
9295 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
9296
9297         * decl2.c (c_language): Define.
9298
9299 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
9300
9301         * lex.c (lang_init_options): Tweak.
9302
9303         * decl2.c: Remove #inclusion of diagnostic.h
9304         (lang_decode_option): Move diagnostic formatting options to
9305         toplevel.
9306
9307         * lang-options.h: Remove documentation for diagnostic options.
9308
9309         * Makefile.in (lex.o): Depends upon diagnostic.h
9310
9311 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
9312
9313         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
9314         the same DECL_RESULT, it's not a redefinition.
9315         * pt.c (tsubst_decl): Remove code to handle illegal
9316         specializations.
9317
9318 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
9319
9320         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
9321
9322 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
9323
9324         * search.c (maybe_suppress_debug_info): Don't check
9325         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
9326
9327         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
9328         here if extern_p.
9329
9330         Remember instantiation context in deferred instantiations.
9331         * cp-tree.h (struct tinst_level): Remove.
9332         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
9333         * pt.c (current_tinst_level): Now a tree.
9334         (print_template_context, push_tinst_level, pop_tinst_level,
9335         tinst_for_decl): Adjust.
9336         (reopen_tinst_level): New fn.
9337         (init_pt): Register current_tinst_level as a root.
9338         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
9339         of the pending templates list.
9340         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
9341         * lex.c (extract_interface_info): Adjust.
9342         * decl2.c (warn_if_unknown_interface): Adjust.
9343
9344 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
9345
9346         * class.c (indirect_primary_base_p): New function.
9347         (determine_primary_base): Use it.
9348
9349 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
9350
9351         Update new-abi dynamic cast algorithm.
9352         * tinfo.cc (__class_type_info::__dyncast_result): Add
9353         whole_details. Adjust constructor.
9354         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
9355         Avoid unnecessary searching.
9356         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
9357
9358 Mon Jun  5 06:48:55 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9359
9360         * decl.c (init_decl_processing): Don't call record_component_aliases.
9361         * tree.c (build_cplus_array_type_1): Likewise.
9362
9363 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
9364
9365         * ir.texi: Correct typo.
9366         * mangle.c (write_expression): Handle non-type template arguments
9367         with reference type.
9368         * method.c (build_overload_value): Likewise.
9369         * pt.c (convert_nontype_argument): Explicitly represent conversion
9370         to a reference with an ADDR_EXPR.
9371         (unify): Always unify arguments in left-to-right order.
9372
9373 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
9374             Mark Mitchell  <mark@codesourcery.com>
9375
9376         * Make-lang.in (CXX_SRCS): Add mangle.c.
9377         * Makefile.in (CXX_OBJS): Add mangle.o.
9378         (mangle.o): New rule.
9379
9380         * class.c (local_classes): New variable.
9381         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
9382         (get_vtt_name): Use mangle_vtt_name for new ABI.
9383         (init_class_processing): Initialize local_classes.
9384         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
9385         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
9386         (std_identifier): New macro.
9387         (DECL_VOLATILE_MEMFUNC_P): New macro.
9388         (DECL_NAMESPACE_STD_P): Likewise.
9389         (local_classes): Declare.
9390         (get_mostly_instantiated_function_type): Declare.
9391         (init_mangle): Declare.
9392         (mangle_decl): Likewise.
9393         (mangle_type_string): Likewise.
9394         (mangle_type): Likewise.
9395         (mangle_typeinfo_for_type): Likewise.
9396         (mangle_typeinfo_string_for_type): Likewise.
9397         (mangle_vtbl_for_type): Likewise.
9398         (mangle_vtt_for_type): Likewise.
9399         (mangle_ctor_vtbl_for_type): Likewise.
9400         (mangle_thunk): Likewise.
9401         (mangle_conv_op_name_for_type): Likewise.
9402         (mangle_guard_variable): Likewise.
9403         * decl.c (pushtag): Keep track of local classes.
9404         (initialize_predefined_identifiers): Initialize std_identifier.
9405         (init_decl_processing): Use std_identifier.
9406         (start_decl): Don't treat instantiations as specializations.
9407         (grokdeclarator): Likewise.
9408         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
9409         name for fully-instantiated templates.
9410         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
9411         destructors with the new ABI.
9412         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
9413         (grokfield): Use mangle_type for new ABI.
9414         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
9415         (get_sentry): Use mangle_guard_variable for new ABI.
9416         (start_static_initialization_or_destruction): Likewise.
9417         * expr.c (extract_aggr_init): Remove.
9418         (extract_scalar_init): Likewise.
9419         (extract_init): Remove #if 0'd code.
9420         * mangle.c: New function.
9421         * method.c (build_mangled_name): Assert not flag_new_abi.
9422         (build_static_name): Likewise.
9423         (build_decl_overload_real): Likewise.
9424         (build_typename_overload): Likewise.
9425         (build_overload_with_type): Likewise.
9426         (build_overload_name): Likewise.
9427         (get_ctor_vtbl_name): Likewise.
9428         (start_squangling): Likewise.
9429         (get_id_2): Likewise.
9430         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
9431         (init_method): Call init_mangle for new ABI.
9432         (make_thunk): Call mangle_thunk for new ABI.
9433         * operators.def: Correct new ABI manglings for the `%' operator.
9434         Add `::' operator.
9435         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
9436         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
9437         (lookup_template_class): Call mangle_decl for new ABI.
9438         (get_mostly_instantiated_function_type): New function.
9439         (set_mangled_name_for_template_decl): Use it.
9440         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
9441         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
9442         conversion op names.
9443         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
9444         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
9445         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
9446         mangle_typeinfo_string_for_type.
9447
9448 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
9449
9450         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
9451         (INNERMOST_TEMPLATE_ARGS): New macro.
9452         (innermost_args): Remove.
9453         (get_innermost_template_args): New function.
9454         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
9455         * error.c (dump_function_decl): Be caution when using
9456         most_general_template.
9457         * method.c (build_template_parm_names):  Use
9458         INNERMOST_TEMPLATE_ARGS.
9459         * pt.c (add_to_template_args): Tidy comment
9460         (get_innermost_template_args): New function.
9461         (check_explicit_specialization): Clear DECL_INITIAL for a new
9462         specialization.
9463         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
9464         Tidy.
9465         (push_template_decl): Always register specializations of the most
9466         general template.
9467         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
9468         (coerce_template_parms): Likewise.
9469         (lookup_template_class): Likewise.
9470         (innermost_args): Remove.
9471         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
9472         (tsubst_decl): Handle tricky specializations.  Use
9473         get_innermost_template_args.
9474         (instantiate_template): Simplify handling of partial
9475         instantiations.
9476         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
9477         (most_general_template): Reimplement, in a more straightforward
9478         manner.
9479         (regenerate_decl_from_template): Tweak formatting.  Use
9480         TMPL_ARGS_DEPTH for clarity.
9481         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
9482
9483         * dump.c (dequeue_and_dump): Dump information about thunks.
9484
9485 2000-06-01  Richard Henderson  <rth@cygnus.com>
9486
9487         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
9488
9489 2000-06-01  Richard Henderson  <rth@cygnus.com>
9490
9491         * decl2.c (unsupported_options): Fix typo, make const.
9492         (lang_decode_option): Fix bsearch argument order.
9493
9494 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
9495
9496         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
9497         on FIELD_DECLs.
9498
9499 Wed May 31 14:09:00 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9500
9501         * cp-tree.h (c_get_alias_set): Deleted.
9502         * Makefile.in (decl.o): Include ../expr.h.
9503         * decl.c (expr.h): Include.
9504         (init_decl_processing): Call record_component_aliases for arrays.
9505         (grokdeclarator): Likewise.
9506         Set TREE_ADDRESSABLE for fields that aren't bitfields.
9507         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
9508
9509 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
9510
9511         Remove guiding declaration support.
9512         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
9513         (flag_guiding_decls): Remove.
9514         * call.c (build_user_type_conversion_1): Remove support for
9515         guiding decls.
9516         (build_new_function_call): Likewise.
9517         (build_new_op): Likewise.
9518         (build_new_method_call): Likewise.
9519         * decl.c (start_function): Likewise.
9520         * friend.c (is_friend): Likewise.
9521         (do_friend): Likewise.
9522         * decl2.c ((flag_dump_translation_unit): Make it const.
9523         (flag_guiding_decls): Remove.
9524         (unsupported_options): New variable
9525         (compare_options): New function.
9526         (lang_decode_option): Use them.
9527
9528         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
9529
9530         * method.c (mangle_expression): Adjust test for legal expression
9531         operators.
9532
9533         * pt.c (instantiate_decl): Save and restore the local
9534         specializations list.
9535
9536 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
9537
9538         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
9539
9540 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
9541
9542         * call.c (add_template_candidate_real): Handle member template
9543         constructors for classes with virtual bases.
9544         (build_user_type_conversion_1): Use in_charge_arg_for_name.
9545         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
9546
9547         * ir.texi: Update thunk documentation.
9548
9549         * call.c (joust): Fix handling of overloaded builtin operators.
9550
9551 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
9552
9553         * cp-tree.h (DECL_ANTICIPATED): New macro.
9554         Document new use of DECL_LANG_FLAG_7.
9555         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
9556         in the user namespace.
9557         * lex.c (do_identifier): If the identifier's declaration has
9558         DECL_ANTICIPATED on, it has not yet been declared.  But do not
9559         replace it with an ordinary implicit declaration.
9560
9561         * tinfo2.cc: Include stdlib.h.
9562
9563 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
9564
9565         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
9566         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
9567         CLASSTYPE_ALIGN.
9568
9569 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
9570
9571         * decl2.c (lang_decode_option): Use skip_leading_substring instead
9572         of plain strncmp.
9573
9574 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
9575
9576         * operators.def (<?): Duplicated, should have been...
9577         (>?): this.  Fixed.
9578
9579 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
9580             Mark Mitchell  <mark@codesourcery.com>
9581
9582         * cp-tree.h (ansi_opname): Make it a macro.
9583         (ansi_assopname): Likewise.
9584         (struct lang_decl_flags): Add assignment_operator_p.
9585         (struct lang_decl): Add operator_code.
9586         (DECL_VTT_PARM): Adjust.
9587         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
9588         overloaded operator.
9589         (SET_OVERLOADED_OPERATOR_CODE): New macro.
9590         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
9591         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
9592         (opname_tab): Remove.
9593         (assignop_tab): Likewise.
9594         (operator_name_info_t): New type.
9595         (operator_name_info): New variable.
9596         (assignment_operator_name_info): Likewise.
9597         (build_cp_library_fn): Remove declaration.
9598         (push_cp_library_fn): Likewise.
9599         (operator_name_string): Likewise.
9600         (build_decl_overload): Likewise.
9601         * call.c (print_z_candidates): Simplify.
9602         (build_object_call): Adjust usage of ansi_opname.  Use
9603         DECL_OVERLOADED_OPERATOR_P.
9604         (op_error): Adjust operator name lookup.
9605         (build_conditional_expr): Adjust usage of ansi_opname.
9606         (build_new_op): Likewise.
9607         (build_op_delete_call): Likewise.
9608         (build_over_call): Likewise.
9609         (joust): Use DECL_OVERLOADED_OPERATOR_P.
9610         * decl.c (duplicate_decls): Copy operator_code.
9611         (init_decl_processing): Adjust parameters to push_cp_library_fn.
9612         (builtin_function): Adjust parameters to build_library_fn_1.
9613         (build_library_fn_1): Accept an overloaded operator code.
9614         (build_library_fn): Pass ERROR_MARK.
9615         (build_cp_library_fn): Accept an overloaded operator code.
9616         (push_cp_library_fn): Likewise.
9617         (grokfndecl): Tweak.
9618         (grokdeclarator): Simplify code to compute names of overloaded
9619         operators.  Adjust use of ansi_opname.
9620         (ambi_op_p): Work on tree_codes, not identifiers.
9621         (unary_op_p): Likewise.
9622         (grok_op_properties): Likewise.
9623         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
9624         (lang_mark_tree): Don't try to mark the operator_code.
9625         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
9626         * error.c (dump_decl): Remove special handling for operator
9627         names.
9628         (dump_function_name): Likewise.
9629         (dump_expr): Adjust name lookup of operators.
9630         (op_to_string): Simplify.
9631         (assop_to_string): Likewise.
9632         * init.c (build_new_1): Adjust use of ansi_opname.
9633         * lex.c (opname_tab): Remove.
9634         (assignop_tab): Likewise.
9635         (ansi_opname): Likewise.
9636         (ansi_assopname): Likewise.
9637         (operator_name_string): Likewise.
9638         (reinit_lang_specific): Likewise.
9639         (operator_name_info): New variable.
9640         (assignment_operator_name_info): Likewise.
9641         (init_operators): New function.
9642         (init_parse): Use it.
9643         (do_identifier): Adjust use of ansi_opname.
9644         * method.c (mangle_expression): Don't use ansi_opname for
9645         mangling.
9646         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
9647         (build_decl_overload): Remove.
9648         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
9649         (do_build_assign_ref): Adjust use of ansi_opname.
9650         (synthesize_method): Likewise.
9651         (implicitly_declare_fn): Likewise.
9652         * operators.def: New file.
9653         * parse.y (operator): Adjust use of ansi_opname.
9654         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
9655         (set_mangled_name_for_template_decl): Don't play games with
9656         current_namespace.
9657         (special_function_p): Adjust use of ansi_opname.
9658         * typeck.c (check_return_expr): Likewise.
9659         * Make-lang.in (cc1plus): Depend on operators.def.
9660         * Makefile.in (lex.o): Likewise.
9661         (decl.o): Likewise.
9662
9663 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
9664
9665         * Make-lang.in (cplib2.ready): Eradicate.
9666
9667 Sat May 27 11:25:46 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9668
9669         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
9670         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
9671         (built_min, cp_tree_equal): Likewise.
9672
9673 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
9674
9675         * class.c (layout_nonempty_base_or_field): Replace
9676         `record_layout_info' with `record_layout_info_s'.
9677
9678 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
9679
9680         Fix goto checking.
9681         * cp-tree.h (struct language_function): x_named_labels is now
9682         a struct named_label_list*.
9683         * decl.c (struct named_label_use_list): Renamed from...
9684         (struct named_label_list): ...this.  New struct.
9685         (push_binding_level): Don't set eh_region.
9686         (note_level_for_eh): New fn.
9687         (pop_label): Take label and old value directly.
9688         (pop_labels): Adjust for new named_labels format.
9689         (lookup_label): Likewise.
9690         (poplevel): Note characteristics of a binding level containing a
9691         named label.  Mess with named label lists earlier.
9692         (mark_named_label_lists): New fn.
9693         (mark_lang_function): Call it.
9694         (use_label): New fn, split out from...
9695         (make_label_decl): ...here.  Don't call it.
9696         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
9697         check_previous_gotos): New fns, split out from...
9698         (define_label): ...here.
9699         (check_switch_goto): New fn.
9700         (define_case_label): Call it.
9701         (check_goto): New fn.
9702         * semantics.c (finish_goto_stmt): Call it and use_label.
9703         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
9704         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
9705
9706 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
9707
9708         * class.c (build_vtable_entry_ref): Correct usage of
9709         get_vtbl_decl_for_binfo.
9710
9711         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
9712         * method.c (implicitly_declare_fn): Not here.
9713
9714 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
9715
9716         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
9717         (CPTI_PTMD_DESC_TYPE): ... here.
9718         (ptmd_desc_type_node): Rename to ...
9719         (ptm_desc_type_node): ... here.
9720         * decl.c: Likewise.
9721         * rtti.c (ptmd_initializer): Rename to ...
9722         (ptm_initializer): ... here.
9723         (sythesize_tinfo_var): Adjust. Deal with pointer to member
9724         function.
9725         (create_tinfo_types): Adjust.
9726
9727 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
9728
9729         Finish implementation of VTTs.
9730         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
9731         CPTI_VTT_PARM_IDENTIFIER.
9732         (vtt_parm_identifier): New macro.
9733         (vtt_parm_type): Likewise.
9734         (BINFO_SUBVTT_INDEX): Likewise.
9735         (BINFO_VPTR_INDEX): Likewise.
9736         (struct lang_decl): Add vtt_parm.
9737         (DECL_VTT_PARM): New macro.
9738         (DECL_USE_VTT_PARM): Likewise.
9739         (DECL_NEEDS_VTT_PARM_P): Likewise.
9740         (get_vtt_name): Declare.
9741         (build_artificial_parm): Likewise.
9742         (fixup_all_virtual_upcast_offsets): Likewise.
9743         (expand_indirect_vtbls_init): Remove.
9744         * call.c (build_new_method_call): Pass the vtt to subobject
9745         constructors and destructors.
9746         * class.c (get_vtt_name): Give it external linkage.
9747         (build_clone): Handle the magic VTT parameters for clones.
9748         (clone_function_decl): Fix typo in comment.
9749         (build_vtt): Keep track of the indices in the VTTs where various
9750         entities are stored.
9751         (build_vtt_inits): Likewise.
9752         (dfs_build_vtt_inits): Likewise.
9753         (build_ctor_vtbl_group): Tweak type of construction vtables.
9754         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
9755         primary bases, when building construction vtables.
9756         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
9757         (initialize_predefined_identifiers): Add vtt_parm_identifier.
9758         (init_decl_processing): Initialize vtt_parm_type.
9759         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
9760         (lang_mark_tree): Make vtt_parm.
9761         * decl2.c (build_artificial_parm): New function.
9762         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
9763         (grokclassfn): Use build_artificial_parm.
9764         * init.c (initialize_vtbl_ptrs): Call
9765         fixup_all_virtual_upcast_offsets directly.
9766         (perform_member_init): Use the complete subobject destructor for
9767         member cleanups.
9768         (build_vtbl_address): New function.
9769         (expand_virtual_init): Handle VTTs.
9770         * optimize (maybe_clone_body): Likewise.
9771         * search.c (fixup_all_virtual_upcast_offsets): Give it external
9772         linkage.
9773         (expand_indirect_vtbls_init): Remove.
9774         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
9775         * tree.c (make_binfo): Make them bigger.
9776
9777 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
9778
9779         * inc/cxxabi.h (__pbase_type_info): Define, based on
9780         __pointer_type_info.
9781         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
9782         (__pointer_to_member_type_info): Likewise.
9783         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
9784         (__pointer_to_member_type_info::__is_pointer_p): Remove.
9785         (__pointer_type_info::__do_catch): Rename to ...
9786         (__pbase_type_info::__do_catch): ... here. Adjust.
9787         (__pbase_type_info::__pointer_catch): Implement.
9788         (__pointer_type_info::__pointer_catch): Adjust.
9789         (__pointer_to_member_type_info::__pointer_catch): Adjust.
9790
9791 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
9792
9793         * tinfo.h (__user_type_info::contained_virtual_p): New
9794         predicate.
9795         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
9796         shaped hierarchy.
9797         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
9798         diamond shaped hierarchy. Add early out for mixed diamond and
9799         duplicate shaped hierarchy.
9800
9801 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
9802
9803         * cp-tree.h (build_delete): Change prototype.
9804         (build_vec_delete): Likewise.
9805         * call.c (build_scoped_method_call): Use special_function_kind
9806         values to indicate the kind of destruction to be done.
9807         (build_method_call): Likewise.
9808         * decl.c (finish_destructor_body): Likewise.
9809         (maybe_build_cleanup_1): Likewise.  Rename to ...
9810         (maybe_build_cleanup): ... this.
9811         * decl2.c (delete_sanity): Use special_function_kind
9812         values to indicate the kind of destruction to be done.
9813         (build_cleanup): Likewise.
9814         * init.c (perform_member_init): Likewise.
9815         (build_vec_delete_1): Likewise.
9816         (build_dtor_call): Simplify.
9817         (build_delete): Use special_function_kind
9818         values to indicate the kind of destruction to be done.
9819         (build_vbase_delete): Likewise.
9820         (build_vec_delete): Likewise.
9821
9822         * init.c (sort_member_init): Fix typo in error message generation
9823         code.
9824
9825 Mon May 15 11:46:29 2000  Donald Lindsay  <dlindsay@cygnus.com>
9826
9827         * semantics.c (begin_class_definition): make the packed
9828         attribute be sensitive to the "-fpack-struct" command line flag
9829
9830 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
9831
9832         Update new-abi upcast algorithm.
9833         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
9834         prototype and meaning of return value.
9835         (__si_class_type_info::__do_upcast): Likewise.
9836         (__vmi_class_type_info::__do_upcast): Likewise.
9837         * tinfo.cc (__class_type_info::__upcast_result): Replace
9838         whole2dst with part2dst. Adjust ctor.
9839         (__class_type_info::__do_upcast): Adjust call of worker function.
9840         (__class_type_info::__do_upcast): Adjust.
9841         (__si_class_type_info::__do_upcast): Adjust. Use parent's
9842         __do_upcast.
9843         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
9844         virtual base in diamond hierarchy bug.
9845
9846 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
9847
9848         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
9849         and bitfield to tinfo_fn_p.
9850         (DECL_TINFO_FN_P): Adjust.
9851         (SET_DECL_TINFO_FN_P): Likewise.
9852         (DECL_MUTABLE_P): Likewise.
9853         (DECL_C_BIT_FIELD): Likewise.
9854         (SET_DECL_C_BIT_FIELD): Likewise.
9855         (CLEAR_DECL_C_BIT_FIELD): Likewise.
9856         (DECL_UNINLINABLE): Likewise.
9857         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
9858         (handle_using_decl): Remove assertion.
9859         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
9860         to build FIELD_DECLs.
9861         (build_base_field): Likewise.
9862         (layout_class_type): Likewise.
9863         * decl.c (init_decl_processing): Likewise.
9864         (build_ptrmemfunc_type): Likewise.
9865         (grokdeclarator): Likewise.
9866         * decl2.c (grok_x_components): Likewise.
9867         * except.c (call_eh_info): Likewise.
9868         * init.c (init_init_processing): Likewise.
9869         * rtti.c (expand_class_desc): Likewise.
9870         (create_pseudo_type_info): Likewise.
9871         (get_vmi_pseudo_type_info): Likewise.
9872         (create_tinfo_types): Likewise.
9873         * ptree.c (print_lang_decl): Adjust.
9874         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
9875         before checking DECL_MUTABLE_P.
9876
9877         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
9878         parameters for template functions.
9879         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
9880         destructors as well as constructors.
9881
9882 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
9883
9884         * class.c (build_ctor_vtbl_group): Set inits.
9885         * optimize.c (maybe_clone_body): Set DECL_INLINE and
9886         DECL_THIS_INLINE appropriately for clones.
9887
9888         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
9889         (DECL_CONV_FN_P): Simplify.
9890         (DECL_OPERATOR): Remove.
9891         (language_to_string): Declare.
9892         * decl.c (duplicate_decls): Fix typo in comment.
9893         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
9894         (grok_op_properties): Use DECL_CONV_FN_P instead of
9895         IDENTIFIER_TYPENAME_P.
9896         * dump.c (dequeue_and_dump): Dump the language linkage of
9897         declarations.
9898         * error.c (language_to_string): Give it external linkage.
9899         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
9900         (implicitly_declare_fn): Set DECL_LANGUAGE.
9901         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
9902         IDENTIFIER_TYPENAME_P.
9903         (tsubst_decl): Likewise.
9904         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
9905         * semantics.c (finish_member_declaration): Don't mark members of
9906         classes declared in an extern "C" region as extern "C".
9907
9908 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
9909
9910         * decl2.c (qualified_lookup_using_namespace): Look through
9911         namespace aliases.
9912
9913         * decl.c (push_using_decl): Return the old decl on namespace level.
9914
9915 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
9916
9917         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
9918         (VTT_NAME_PREFIX): New macro.
9919         (CTOR_VTBL_NAME_PREFIX): Likewise.
9920         (get_ctor_vtbl_name): New function.
9921         * class.c (get_vtable_name): Simplify.
9922         (get_vtt_name): New function.
9923         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
9924         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
9925         when a virtual base becomes primary.
9926         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
9927         VTTs.
9928         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
9929         additional parameters.
9930         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
9931         (initialize_array): New function.
9932         (build_vtt): Likewise.
9933         (build_vtt_inits): Likewise.
9934         (dfs_build_vtt_inits): Likewise.
9935         (dfs_fixup_binfo_vtbls): Likewise.
9936         (build_ctor_vtbl_group): Likewise.
9937         (initialize_vtable): Use initialize_array.
9938         (accumulate_vtbl_inits): Reimplement to handle construction
9939         vtables.
9940         (dfs_accumulate_vtbl_inits): Likewise.
9941         (bulid_vtbl_initializer): Adjust parameter name.
9942         * method.c (build_typename_overload): Remove #if 0'd code.
9943         (get_ctor_vtbl_name): New function.
9944         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
9945         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
9946
9947         * cp-tree.h (struct lang_type): Remove search_slot.
9948         (CLASSTYPE_SEARCH_SLOT): Remove.
9949         (emit_base_init): Change prototype.
9950         (initialize_vtbl_ptrs): Likewise.
9951         (expand_indirect_vtbls_init): Likewise.
9952         (clear_search_slots): Remove.
9953         * decl.c (lang_mark_tree): Don't mark search_slot.
9954         * init.c (initialize_vtbl_ptrs): Simplify.
9955         (emit_base_init): Likewise.
9956         * search.c (struct vbase_info): Document decl_ptr.
9957         (convert_pointer_to_single_level): Remove.
9958         (dfs_find_vbases): Remove.
9959         (dfs_init_base_pointers): Simplify.
9960         (dfs_clear_vbase_slots): Remove.
9961         (dfs_vtable_path_unmark): New function.
9962         (init_vbase_pointers): Simplify.
9963         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
9964         (expand_indirect_vtbls_init): Simplify.  Don't call
9965         mark_all_temps_used.
9966         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
9967         initialize_vtbl_ptrs.
9968
9969 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
9970
9971         * except.c: Add static prototypes.
9972
9973 2000-05-20  H.J. Lu  <hjl@gnu.org>
9974
9975         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
9976
9977 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
9978
9979         Don't create a separate copy of virtual bases for the
9980         CLASSTYPE_VBASECLASSES list.
9981         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
9982         (BINFO_FOR_VBASE): Remove.
9983         (CANONICAL_BINFO): Adjust.
9984         (binfo_for_vbase): New function.
9985         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
9986         instead of BINFO_FOR_VBASE.
9987         (build_vbase_pointer): Likewise.
9988         (build_secondary_vtable): Likewise.
9989         (dfs_mark_primary_bases): Likewise.
9990         (mark_primary_bases): Likewise.
9991         (layout_nonempty_base_or_field): Likewise.
9992         (dfs_set_offset_for_shared_vbases): Likewise.
9993         (dfs_set_offset_for_unshared_vbases): Likewise.
9994         (layout_virtual_bases): Likewise.  Adjust for changes to the
9995         CLASSTYPE_VBASECLASSES list.
9996         (dump_class_hierarchy_r): Use binfo_for_vbase
9997         instead of BINFO_FOR_VBASE.
9998         (dump_class_hierarchy): Likewise.
9999         (finish_vtbls): Likewise.
10000         (build_vtbl_initializer): Adjust for changes to the
10001         CLASSTYPE_VBASECLASSES list.
10002         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
10003         * decl.c (finish_destructor_body): Adjust for changes to the
10004         CLASSTYPE_VBASECLASSES list.
10005         * init.c (sort_base_init): Use binfo_for_vbase.
10006         (construct_virtual_bases): Adjust for changes to the
10007         CLASSTYPE_VBASECLASSES list.
10008         (expand_member_init): Use binfo_for_vbase.
10009         (build_vbase_delete):  Adjust for changes to the
10010         CLASSTYPE_VBASECLASSES list.
10011         * method.c (do_build_copy_constructor): Likewise.
10012         * rtti.c (get_base_offset): Use binfo_for_vbase.
10013         (expand_class_desc): Remove #if 0'd code.
10014         * search.c (struct vbase_info): Remove vbase_types.
10015         (get_base_distance):  Use binfo_for_vbase.
10016         (lookup_field_queue_p): Use CANONICAL_BINFO.
10017         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
10018         (get_pure_virtuals): Adjust for changes to the
10019         CLASSTYPE_VBASECLASSES list.
10020         (dfs_find_vbases): Use binfo_for_vbase.
10021         (dfs_init_vbase_pointers): Likewise.
10022         (init_vbase_pointers): Don't initialize vi.vbase_types.
10023         (virtual_context): Use binfo_for_vbase.
10024         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
10025         CLASSTYPE_VBASECLASSES list.
10026         (expand_indirect_vtbls_init): Simplify.
10027         (dfs_get_vbase_types): Don't replicate virtual bases.
10028         (find_vbase_instance): Use binfo_for_vbase.
10029         (binfo_for_vbase): New function.
10030         * typeck.c (get_delta_difference): Use binfo_for_vbase.
10031
10032 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
10033
10034         * decl2.c (finish_anon_union): Generalize error messages to handle
10035         anonymous structures.
10036         * init.c (perform_member_init): Remove `name' parameter.
10037         (build_field_list): New function.
10038         (sort_member_init): Handle anonymous union initialization order
10039         correctly.  Check for multiple initializations of the same union.
10040         (emit_base_init): Don't look up fields by name here.
10041         (expand_member_init): Record the result of name lookup for future
10042         reference.
10043         * typeck.c (build_component_ref): Fix formatting.
10044
10045 Wed May 17 17:27:44 2000  Andrew Cagney  <cagney@b1.cygnus.com>
10046
10047         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
10048         * typeck.c (build_x_compound_expr): Replace warn_unused with
10049         warn_unused_value.
10050
10051         * decl2.c (lang_decode_option): Update -Wall unused flags by
10052         calling set_Wunused.
10053
10054 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
10055
10056         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
10057         * init.c (dfs_vtable_path_unmark): Remove.
10058         * search.c (marked_new_vtable_p): Likewise.
10059         (unmarked_new_vtable_p): Likewise.
10060         (dfs_search_slot_nonempty_p): Likewise.
10061         (dfs_mark): Likewise.
10062         (dfs_vtable_path_unmark): Likewise.
10063         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
10064         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
10065         (dfs_init_vbase_pointers): Remove special-case new ABI code.
10066         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
10067         (init_vbase_pointers): Simplify.
10068         (expand_indirect_vtbls_init): Likewise.
10069
10070         * class.c (copy_virtuals): New function.
10071         (build_primary_table): Use it.
10072         (build_secondary_vtable): Likewise.
10073         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
10074         indicate that no vcall offset is required.
10075         (add_virtual_function): Likewise.
10076         (modify_all_vtables): Likewise.
10077         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
10078         (dfs_accumulate_vtbl_inits): Likewise.
10079         (build_vtbl_initializer): Make changes to handle construction
10080         vtables.
10081         (dfs_build_vcall_offset_vtbl_entries): Likewise.
10082         (build_rtti_vtbl_entries): Likewise.
10083         (build_vtable_entries): Handle a NULL vcall_index.
10084
10085 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
10086
10087         * decl2.c (lang_decode_option): Fix thinko.
10088
10089 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
10090
10091         * except.c (check_handlers): New fn.
10092         * cp-tree.h: Declare it.
10093         * semantics.c (finish_handler_sequence): Call it.
10094         (finish_function_handler_sequence): Likewise.
10095         (finish_handler_parms): Set TREE_TYPE on the handler.
10096         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
10097         * search.c (get_base_distance_recursive): If protect>1, ignore
10098         special access.
10099         (get_base_distance): Don't reduce watch_access.
10100
10101 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
10102
10103         * lex.c: #include diagnostic.h.
10104         (lang_init_options): Set default prefixing rules.
10105
10106         * lang-options.h: Add -fdiagnostics-show-location=.
10107
10108         * decl2.c: #include diagnostic.h.
10109         (lang_decode_option): Handle -fdiagnostics-show-location=.
10110
10111 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
10112
10113         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
10114         * vec.cc: Revert my 2000-05-07 change.
10115
10116 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
10117
10118         * class.c (check_field_decls): Complain about non-static data
10119         members with same name as class in class with constructor.
10120
10121 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
10122
10123         * decl.c (grokdeclarator): Allow non-static data members with
10124         same name as class.
10125
10126 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
10127
10128         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
10129         and pending_inline.filename.  Update prototypes.
10130         * decl.c (define_label): Constify filename parameter.
10131         * decl2.c (warn_if_unknown_interface): Constify local char *.
10132         * input.c Constify input_source.filename. Don't declare
10133         input_filename or lineno.  Constify filename parameter to feed_input.
10134         * lex.c (init_parse): Constify parameter and return value.
10135         (cp_pragma_interface, cp_pragma_implementation): Constify
10136         filename argument.
10137         (reinit_parse_for_method, reinit_parse_for_block,
10138         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
10139         Constify local char *.
10140         * pt.c: Don't declare lineno or input_filename.
10141         (print_template_context, tsubst_friend_function, tsubst_decl,
10142         tsubst, instantiate_decl): Constify local char *.
10143         * semantics.c (expand_body): Constify local char *.
10144         * tree.c (build_srcloc): Constify filename parameter.
10145         * typeck.c (c_expand_asm_operands): Constify filename
10146         parameter.
10147
10148 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
10149
10150         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
10151         offsetof expansion.
10152
10153 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
10154
10155         * inc/cxxabi.h:  Fix typos in comment.
10156         (__base_class_info::__offset): Use a static_cast.
10157
10158 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
10159
10160         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
10161         of std::size_t and std::ptrdiff_t respectively.
10162         * tinfo.cc: Likewise.
10163         * vec.cc: Likewise.
10164
10165 2000-05-06  Richard Henderson  <rth@cygnus.com>
10166
10167         * typeck.c (build_c_cast): Don't warn integer->pointer size
10168         mismatch for constants.
10169
10170 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
10171
10172         * rtti.c (ptmd_initializer): Set non-public, if class is
10173         incomplete.
10174
10175         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
10176         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10177         __cxa_vec_delete): Likewise.
10178         * tinfo.cc (__dynamic_cast): Likewise.
10179         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10180         __cxa_vec_delete): Likewise.
10181
10182 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
10183
10184         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
10185         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
10186         (lang_decl_flags): Add vcall_offset.
10187         (THUNK_VCALL_OFFSET): Use it.
10188         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
10189         * method.c (make_thunk): Create the lang_decl here, not in
10190         emit_thunk.
10191         (emit_thunk): Make generic thunks into ordinary functions once
10192         they have been fed to expand_body.
10193         * semantics.c (expand_body): Set current_function_is_thunk here.
10194
10195 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10196
10197         * class.c (update_vtable_entry_for_fn): Prototype.
10198
10199         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
10200         and `tmpl'.
10201
10202         * search.c (dfs_build_inheritance_graph_order): Prototype.
10203
10204 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
10205
10206         * cp-tree.h (special_function_kind): Add various kinds of
10207         destructors.
10208         (special_function_p): New function.
10209         * class.c (overrides): Don't let one kind of destructor override
10210         another.
10211         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
10212         whether or not to instantiate a template.
10213         * tree.c (special_function_p): Define.
10214
10215 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
10216
10217         * cp-tree.def (THUNK_DECL): Remove.
10218         * cp-tree.h (DECL_THUNK_P): New macro.
10219         (DECL_NON_THUNK_FUNCTION_P): Likewise.
10220         (DECL_EXTERN_C_FUNCTION_P): Likewise.
10221         (SET_DECL_THUNK_P): Likewise.
10222         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
10223         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
10224         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
10225         * decl.c (decls_match): Use DECL_EXTERN_C_P.
10226         (duplicate_decls): Likewise.
10227         (pushdecl): Likewise.  Adjust thunk handling.
10228         (grokfndecl): Use DECL_EXTERN_C_P.
10229         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
10230         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
10231         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
10232         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
10233         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
10234         DECL_NO_STATIC_CHAIN.
10235         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
10236         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
10237         * search.c (covariant_return_p): Remove THUNK_DECL handling.
10238         * ir.texi: Update.
10239
10240 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
10241
10242         * tree.c (walk_tree): Set lineno.
10243
10244 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
10245
10246         * exception.cc: Update license notice.
10247         * new.cc: Likewise.
10248         * new1.cc: Likewise.
10249         * new2.cc: Likewise.
10250         * tinfo.cc: Likewise.
10251         * tinfo2.cc: Likewise.
10252         * vec.cc: Likewise.
10253         * inc/cxxabi.h: Likewise.
10254         * inc/exception: Likewise.
10255         * inc/new: Likewise.
10256         * inc/new.h: Likewise.
10257         * inc/typeinfo: Likewise.
10258
10259 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
10260
10261         * tree.c (build_target_expr_with_type): If we already have a
10262         TARGET_EXPR, just return it.
10263
10264         * optimize.c (initialize_inlined_parameters): Don't generate an
10265         EXPR_STMT if we can just use DECL_INITIAL.
10266         * decl.c (emit_local_var): Only make the initialization a
10267         full-expression if stmts_are_full_exprs_p.
10268
10269 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
10270
10271         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
10272         macro.
10273         * call.c (standard_conversion): Use it.
10274         (direct_reference_binding): Likewise.
10275         (build_over_call): Likewise.
10276         (is_properly_derived_from): Likewise.
10277         (compare_ics): Likewise.
10278         * class.c (resolves_to_fixed_type_p): Likewise.
10279         * optimize.c (declare_return_variable): Likewise.
10280         * pt.c (is_specialization_of): Likewise.
10281         (unify): Likewise.
10282         * typeck.c (comp_target_parms): Likeiwse.
10283         (build_static_cast): Likewise.
10284         (build_reinterpret_cast): Likewise.
10285         (build_const_cast): Likewise.
10286         (comp_ptr_ttypes_real): Likewise.
10287         (comp_ptr_ttypes_const): Likewise.
10288         * typeck2.c (process_init_constructor): Likewise.
10289
10290 2000-04-30  Scott Snyder <snyder@fnal.gov>
10291
10292         * decl.c (finish_destructor_body): Use the base destructor when
10293         destroying virtual bases.
10294
10295 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
10296
10297         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
10298         STMT_EXPRs.
10299         * optimize.c (struct inline_data): Add target_exprs field.
10300         (declare_return_variable): When a function returns an aggregate,
10301         use the variable declared in the TARGET_EXPR as the remapped
10302         DECL_RESULT.
10303         (expand_call_inline): Update the pending target_exprs stack.
10304         (optimize_function): Initialize the stack.
10305
10306         * decl2.c (finish_file): Fix typo in comment.
10307
10308         * method.c (emit_thunk): Don't try to return a `void' value.
10309
10310         * optimize.c (initialize_inlined_parameters): If the parameter is
10311         addressable, we need to make a new VAR_DECL, even if the
10312         initializer is constant.
10313
10314 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
10315
10316         * decl.c (grok_op_properties): Add an extra check of argtypes.
10317
10318 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
10319
10320         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
10321         variables.
10322         (initialize_inlined_parameters): Try to avoid creating new
10323         VAR_DECLs.
10324
10325 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
10326
10327         * lex.c (my_get_run_time): Remove.
10328         (init_filename_times): Use get_run_time instead of my_get_run_time.
10329         (check_newline): Likewise.
10330         (dump_time_statistics): Likewise.
10331         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
10332         of computing elapsed time explicitly.
10333
10334 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
10335
10336         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
10337         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
10338         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
10339         before calling decl_constant_value.
10340         * class.c (check_bitfield_decl): Likewise.
10341         * cvt.c (ocp_convert): Likewise.
10342         (convert): Likewise.
10343         * decl.c (compute_array_index_type): Likewise.
10344         (build_enumerator): Likewise.
10345         * decl2.c (check_cp_case_value): Likewise.
10346         * pt.c (convert_nontype_argument): Likewise.
10347         (tsubst): Likewise.
10348         * typeck.c (decay_conversion): Likewise.
10349         (build_compound_expr): Likewise.
10350         (build_reinterpret_cast): Likewise.
10351         (build_c_cast): Likewise.
10352         (convert_for_assignment): Likewise.
10353
10354 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
10355
10356         * decl.c (finish_function): Don't play games with DECL_INLINE.
10357
10358 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
10359
10360         * ir.texi: Correct typo.
10361
10362 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10363
10364         * decl.c (grokdeclarator): Reject VLAs as members.
10365
10366 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
10367
10368         * call.c (standard_conversion): Accept conversion between
10369         COMPLEX_TYPEs.
10370
10371         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
10372
10373 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
10374
10375         * decl2.c (finish_file): Remove double setup for accounting
10376         compile time.
10377
10378 2000-04-24  Robert Lipe <robertlipe@usa.net>
10379
10380         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
10381
10382 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
10383
10384         * new.cc (set_new_handler): Needs to be in std::.
10385
10386 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
10387
10388         * cp-tree.h (lang_decl): Remove pretty_function_p.
10389         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
10390         language-specific node.
10391         * decl.c (cp_make_fname_decl): Use build_decl, not
10392         build_lang_decl, to build the variables.
10393         (grokvardecl): Don't call build_lang_decl for local variables in
10394         templates.
10395         (grokdeclarator): Don't call build_lang_decl for local type
10396         declarations in templates.
10397         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
10398         zero'd memory, rather than calling memset.
10399         * pt.c: Include hashtab.h.
10400         (local_specializations): New variable.
10401         (retrieve_local_specialization): Use it.
10402         (register_local_specialization): Likewise.
10403         (tsubst_decl): Don't assume local variables have
10404         DECL_LANG_SPECIFIC.
10405         (instantiate_decl): Set up local_specializations.
10406         * Makefile.in (HTAB_H): New variable.
10407
10408 2000-04-23  Richard Henderson  <rth@cygnus.com>
10409
10410         * typeck.c (c_expand_asm_operands): Restore the original
10411         contents of the output list.
10412
10413 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
10414
10415         * ir.texi:  Document complex number representation.
10416
10417 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
10418
10419         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
10420         (target_incomplete_p): New function.
10421         (tinfo_base_init): Create comdat NTBS name variable.
10422         (ptr_initializer): Add non_public parameter. Calculate it.
10423         (ptmd_initializer): Likewise.
10424         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
10425         (create_real_tinfo_var): Add non_public parameter. Use it.
10426         Push proxy into global namespace.
10427         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
10428         New enumeration.
10429         * inc/typeinfo (type_info::before, type_info::operator==):
10430         Compare __name addresses.
10431
10432         * tinfo2.cc: Remove new-abi builtins comment.
10433
10434 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
10435
10436         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
10437
10438         * call.c (joust): Exit early if we get the same function, too.
10439
10440         * decl2.c (key_method): Return NULL_TREE for template classes.
10441         (import_export_class): Don't need to check for template classes.
10442
10443 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
10444
10445         * lex.c: Remove references to cccp.c.
10446
10447 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
10448
10449         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
10450         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
10451         (DECL_DESTRUCTOR_P): Use destructor_attr.
10452         (DECL_CONST_MEMFUNC_P): Reimplement.
10453         (DECL_VOLATILE_MEMFUNC_P): Remove.
10454         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
10455         (overrides): Use DECL_DESTRUCTOR_P.
10456         (check_for_override): Likewise.
10457         * decl.c (start_function): Likewise.
10458         * decl2.c (grokfclassfn): Likewise.
10459         (check_classfn): Likewise.
10460         (grok_function_init): Likewise.
10461
10462 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
10463
10464         * decl2.c (grokfield): Issue error on illegal data member
10465         declaration.
10466
10467 Mon Apr 17 17:11:16 2000  Mark P Mitchell  <mark@codesourcery.com>
10468
10469         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
10470
10471 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
10472
10473         * class.c (build_vtable_entry): Don't build thunks for type-info
10474         functions.
10475
10476 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
10477
10478         * decl.c (decls_match): Allow a redeclaration of a builtin to
10479         specify args while the builtin did not.
10480
10481 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
10482
10483         * cp-tree.def (THUNK_DECL): Add to documentation.
10484         * cp-tree.h (flag_huge_objects): Declare.
10485         * class.c (modify_vtable_entry): Tidy.
10486         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
10487         Calculate delta appropriately for the new ABI.
10488         (dfs_modify_vtables): Use it.
10489         (modify_all_vtables): Fix thinko in code to add overriding copies
10490         of functions to primary vtables.
10491         (build_clone): Fix typo in comment.
10492         (clone_function_decl): Correct order of destructors in vtable.
10493         (build_vbase_offset_vtbl_entries): Adjust comment.
10494         (dfs_vcall_offset_queue_p): Remove.
10495         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
10496         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
10497         (build_vtable_entry): Correct check for pure virtual functions.
10498         Don't declare flag_huge_objects.
10499         * decl.c (flag_huge_objects): Remove declaration.
10500         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
10501         Use int_size_in_bytes.
10502         (emit_thunk): Handle vcall offset thunks.
10503
10504 Sat Apr 15 16:00:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10505
10506         * decl2.c (parse_time, varconst_time): Delete declarations.
10507         (finish_file): Delete LINENO declaration.
10508         START_TIME and THIS_TIME now long.
10509
10510 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
10511
10512         * class.c (build_base_field): Reformat comment.
10513
10514         * inc/cxxabi.h (stddef.h): Comment inclusion.
10515         (__base_class_info::__offset): Comment shift.
10516
10517 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
10518
10519         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
10520         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
10521         (cp_push_exception_identifier): New macro.
10522         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
10523         (DECL_BASE_DESTRUCTOR_P): Likewise.
10524         (DECL_DELETING_DESTRUCTOR_P): Likewise.
10525         (get_vtbl_decl_for_binfo): Fix formatting.
10526         (in_charge_arg_for_name): New macro.
10527         (maybe_build_cleanup_and_delete): Remove declaration.
10528         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
10529         (in_charge_arg_for_name): New function.
10530         (build_new_method_call): Use it.  Handle cloned destructors.
10531         (build_clone): Don't make the base constructor virtual.
10532         Automatically defer generated functions.
10533         (clone_function_decl): Handle destructors, too.
10534         (clone_constructors_and_destructors): Likewise.
10535         (create_vtable_ptr): Don't create a vtable entry for a cloned
10536         function.
10537         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
10538         (initialize_predefined_identifiers): Update appropriately.
10539         (finish_destructor_body): Simplify.
10540         (maybe_build_cleanup_and_delete): Remove.
10541         * except.c (expand_throw): Handle new-ABI destructors.
10542         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
10543         (build_dtor_call): New function.
10544         (build_delete): Use it.  Simplify.
10545         * optimize.c (maybe_clone_body): Handle destructors.
10546         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
10547
10548         * exception.cc (cleanup_fn): New typedef.
10549         (CALL_CLEANUP): New macro.
10550         (cp_eh_info): Use them.
10551         (__cp_push_exception): Likewise.
10552         (__cp_pop_exception): Likewise.
10553
10554 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
10555
10556         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
10557         (complete_dtor_identifier): New macro.
10558         (CLASSTYPE_FIRST_CONVERSION): Remove.
10559         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
10560         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
10561         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
10562         (CLASSTYPE_CONSTRUCTORS): Likewise.
10563         (CLASSTYPE_DESTRUCTORS): Likewise.
10564         (lang_decl): Add cloned_function.
10565         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
10566         (DECL_BASE_CONSTRUCTOR_P): Likewise.
10567         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
10568         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
10569         (DECL_CLONED_FUNCTION_P): Likewise.
10570         (DECL_CLONED_FUNCTION): Likewise.
10571         (clone_function_decl): Declare.
10572         (maybe_clone_body): Likewise.
10573         * call.c (build_user_type_conversion_1): Call complete object
10574         constructors in the new ABI.
10575         (build_new_method_call): Don't add in-charge parameters under the
10576         new ABI.
10577         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
10578         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
10579         CLASSTYPE_DESTRUCTOR_SLOT.
10580         (build_clone): New function.
10581         (clone_function_decl): Likewise.
10582         (clone_constructors_and_destructors): Likewise.
10583         (check_bases_and_members): Use it.
10584         * decl.c (iniitialize_predefined_identifiers): Initialize
10585         complete_dtor_identifier.
10586         (finish_function): Don't add extra code to a clone.
10587         (lang_mark_tree): Mark cloned_function.
10588         * decl2.c (mark_used): Don't bother trying to instantiate things
10589         we synthesized.
10590         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
10591         * method.c (set_mangled_name_for_decl): Don't treat clones as
10592         constructors.
10593         (synthesize_method): Sythesize cloned functions, not the clones.
10594         * optimize.c (inline_data): Update comment on ret_label.
10595         (remap_block): Don't assume DECL_INITIAL exists.
10596         (copy_body_r): Allow ret_label to be NULL.
10597         (maybe_clone_body): Define.
10598         * pt.c (tsubst_decl): Handle clones.
10599         (instantiate_clone): New function.
10600         (instantiate_template): Use it.
10601         (set_mangled_name_for_template_decl): Don't treat clones as
10602         constructors.
10603         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
10604         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
10605         * semantics.c (expand_body): Clone function bodies as necessary.
10606
10607         * optimize.c (remap_decl): Avoid sharing structure for arrays
10608         whose size is only known at run-time.
10609         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
10610
10611         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
10612         to has_in_charge_parm_p.
10613         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
10614         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
10615         (DECL_COPY_CONSTRUCTOR_P): New macro.
10616         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
10617         (build_user_type_conversion_1): Likewise.
10618         (convert_like_real): Likewise.
10619         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
10620         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
10621         (copy_args_p): Likewise.
10622         (grok_ctor_properties): Likewise.
10623         (start_function): Likewise.
10624         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
10625         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
10626         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
10627         * method.c (do_build_copy_constructor): Use
10628         DECL_HAS_IN_CHARGE_PARM_P.
10629         (synthesize_method): Likewise.
10630         * pt.c (instantiate_template): Remove goto.
10631         * tree.c (build_cplus_method_type): Remove mention of obstacks in
10632         comment.
10633
10634         * cp-tre.h (finish_function): Change prototype.
10635         * decl.c (end_cleanup_fn): Adjust caller.
10636         (finish_function): Take only one parameter.
10637         * decl2.c (finish_objects): Adjust caller.
10638         (finish_static_storage_duration_function): Likewise.
10639         * method.c (emit_thunk): Likewise.
10640         * parse.y: Likewise.
10641         * parse.c: Regenerated.
10642         * pt.c (instantiate_decl): Likewise.
10643         * rtti.c (synthesize_tinfo_fn): Likewise.
10644         * semantics.c (expand_body): Likewise.
10645
10646         * cp-tree.h (copy_decl): New function.
10647         * class.c (finish_struct_1): Use it.
10648         * lex.c (copy_decl): Define it.
10649         * pt.c (tsubst_decl): Likewise.
10650         * tree.c (copy_template_template_parm): Likewise.
10651
10652         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
10653         has_nonpublic_assign_ref.
10654         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
10655         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
10656         * class.c (finish_struct_methods): Don't set
10657         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
10658         (interface_only): Don't declare.
10659         (interface_unknown): Likewise.
10660
10661 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10662
10663         * tree.h (HAVE_TEMPLATES): Remove definition.
10664         * lang-options.h (-fthis-is-variable): Remove documentation.
10665
10666 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
10667
10668         * class.c (instantiate_type): Handle object-relative template-id.
10669
10670         * semantics.c (finish_expr_stmt): Call convert_to_void here.
10671         * decl.c (cplus_expand_expr_stmt): Not here.
10672
10673         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
10674         Initialize exprtype earlier.
10675
10676         * parse.y (fn.def1): Check for defining types in return types.
10677
10678         * decl.c (check_tag_decl): Notice extra fundamental types.
10679         Diagnose empty decls in classes, too.
10680
10681         * decl.c (grokdeclarator): Don't override an anonymous name if no
10682         declarator was given.
10683
10684         * cvt.c (convert_to_void): Call resolve_offset_ref.
10685
10686         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
10687
10688         * decl2.c (decl_namespace): Handle getting a type.
10689
10690         * typeck.c (build_c_cast): Re-enable warning for cast between
10691         pointer and integer of different size.
10692
10693 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
10694
10695         * inc/cxxabi.h (__pointer_type_info): Add restrict and
10696         incomplete flags.
10697         (__pointer_type_info::__pointer_catch): New virtual function.
10698         (__pointer_to_member_type_info): Derive from
10699         __pointer_type_info. Adjust.
10700         (__pointer_to_member_type_info::__do_catch): Remove.
10701         (__pointer_to_member_type_info::__is_pointer_p): Declare.
10702         (__pointer_to_member_type_info::__pointer_catch): Declare.
10703         * rtti.c (qualifier_flags): Add restrict flag.
10704         (ptmd_initializer): Reorder members.
10705         (create_tinfo_types): Expand comments. Reorder
10706         ptmd_desc_type_node members.
10707         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
10708         Implement.
10709         (__pointer_type_info::__do_catch): Move specific code into
10710         __pointer_catch. Call it.
10711         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
10712         specific catch checking. Fix void conversion check.
10713         (__pointer_to_member_type_info::__do_catch): Remove.
10714         (__pointer_to_member_type_info::__pointer_catch): Implement.
10715
10716 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
10717
10718         * lex.c (init_parse): Remove traces of classof and headof.
10719         * decl2.c (flag_operator_names): Default to 1.
10720         (lang_decode_option): Do not set it for -ansi.
10721
10722 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
10723
10724         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
10725         (DECL_MAIN_VARIANT): Remove.
10726         * decl.c (duplicate_decls): Don't set it.
10727         (start_function): Likewise.
10728         (lang_mark_tree): Don't mark it.
10729         * decl2.c (defer_fn): Don't use it.
10730         * lex.c (retrofit_lang_decl): Don't set it.
10731         * pt.c (tsubst_decl): Likewise.
10732         * ptree.c (print_lang_decl): Don't print it.
10733         * typeck.c (mark_addressable): Don't use it.
10734
10735 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
10736
10737         * vec.cc: Include <new> and <exception>.
10738         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
10739         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
10740         terminate.
10741         (__cxa_vec_delete): Catch dtor exceptions.
10742
10743 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
10744
10745         Prepend __ to implementation defined names.
10746         * inc/typeinfo (type_info): Rename _name to __name.
10747         (type_info::type_info): Rename parameter.
10748         (type_info::operator==, type_info::operator!=,
10749         type_info::before): Likewise.
10750         (type_info::is_pointer_p, type_info::is_function_p,
10751         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
10752         parameters.
10753         * inc/cxxabi.h
10754         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
10755         (__pointer_type_info::__pointer_type_info): Likewise.
10756         (__pointer_type_info::is_pointer_p,
10757         __pointer_type_info::do_catch): Prepend __. Rename parameters.
10758         (__array_type_info::__array_type_info): Rename parameters.
10759         (__function_type_info::__function_type_info): Likewise.
10760         (__function_type_info::is_function_p): Prepend __.
10761         (__enum_type_info::__enum_type_info): Rename parameters.
10762         (__pointer_to_member_type_info::__pointer_to_member_type_info):
10763         Likewise.
10764         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
10765         parameters.
10766         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
10767         (__class_type_info::__class_type_info): Rename parameters.
10768         (__class_type_info::sub_kind): Prepend __. Adjust member names.
10769         (__class_type_info::upcast_result,
10770         __class_type_info::dyncast_result): Prepend __. Move definition
10771         into tinfo.cc.
10772         (__class_type_info::do_upcast, __class_type_info::do_catch,
10773         __class_type_info::find_public_src,
10774         __class_type_info::do_dyncast,
10775         __class_type_info::do_find_public_src): Prepend __. Rename
10776         parameters.
10777         (__si_class_type_info::__si_class_type_info): Rename parameters.
10778         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
10779         __si_class_type_info::do_find_public_src): Prepent __. Rename
10780         parameters.
10781         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
10782         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
10783         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
10784         parameters.
10785         (__dynamic_cast): Rename parameters.
10786         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
10787         type_info::do_catch, type_info::do_upcast): Prepend __.
10788         (contained_p, public_p, virtual_p, contained_public_p,
10789         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
10790         (__class_type_info::do_catch,
10791         __class_type_info::do_upcast): Prepend __. Adjust.
10792         (__class_type_info::__upcast_result,
10793         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
10794         Adjust.
10795         (__class_type_info::find_public_src): Prepend __. Adjust.
10796         (__class_type_info::do_find_public_src,
10797         __si_class_type_info::do_find_public_src,
10798         __vmi_class_type_info::do_find_public_src): Likewise.
10799         (__class_type_info::do_dyncast,
10800         __si_class_type_info::do_dyncast,
10801         __vmi_class_type_info::do_dyncast): Likewise.
10802         (__class_type_info::do_upcast,
10803         __si_class_type_info::do_upcast,
10804         __vmi_class_type_info::do_upcast): Likewise.
10805         (__dynamic_cast): Adjust.
10806         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
10807         (__function_type_info::is_function_p): Likewise.
10808         (__pointer_type_info::do_catch): Likewise. Adjust.
10809         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
10810         (__throw_type_match_rtti_2): Adjust.
10811         (__is_pointer): Adjust.
10812
10813 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
10814
10815         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
10816         (complete_ctor_identifier): New macro.
10817         (special_function_kind): Add sfk_copy_constructor and
10818         sfk_assignment_operator.
10819         (LOOKUP_HAS_IN_CHARGE): Remove.
10820         (cons_up_default_function): Rename to ...
10821         (implicitly_declare_fn): ... this.
10822         * call.c (build_new_method_call): Add in-charge parameters for
10823         constructors here.
10824         * class.c (add_implicitly_declared_members): Change parameter name
10825         from cant_have_assignment to cant_have_const_assignment.
10826         Replace calls to cons_up_default_function to implicitly_declare_fn.
10827         * cvt.c (ocp_convert): Use complete_ctor_identifier.
10828         * decl.c (initialize_predefined_identifiers): Initialize it.
10829         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
10830         complex expression.
10831         * init.c (expand_default_init): Don't calculate the in-charge
10832         parameter here.
10833         (build_new_1): Likewise.
10834         * lex.c (cons_up_default_function): Move to method.c.
10835         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
10836         (implicitly_declare_fn): New function.
10837         * typeck.c (build_static_cast): Use complete_ctor_identifier.
10838         (build_modify_expr): Likewise.
10839         * typeck2.c (build_functional_cast): Likewise.
10840
10841         Under the new ABI, constructors don't return `this'.
10842         * cp-tree.h (warn_reorder): Declare.
10843         (special_function_kind): New enum.
10844         (global_base_init_list): Remove declaration.
10845         (emit_base_init): Don't return a value.
10846         (check_base_init): Don't declare.
10847         (is_aggr_typedef): Likewise.
10848         * decl.c (check_special_function_return_type): New function.
10849         (return_types): Remove.
10850         (grokdeclarator): Use check_special_function_return_type.
10851         (start_function): Don't initialize ctor_label under the new ABI.
10852         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
10853         * init.c (begin_init_stmts): Move to top of file.
10854         (finish_init_stmts): Likewise.
10855         (warn_reorder): Don't declare.
10856         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
10857         value.
10858         (check_base_init): Remove.
10859         (is_aggr_typedef): Likewise.
10860         (build_new_1): Don't use the return value of a constructor.
10861         * semantics.c (setup_vtbl_ptr): Don't use the return value
10862         of emit_base_init.
10863         * typeck.c (check_return_expr): Don't magically convert return
10864         statements into `return this' in constructors under the new ABI.
10865
10866         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
10867         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
10868         (base_ctor_identifier): New macro.
10869         (base_dtor_identifier): Likewise.
10870         (deleting_dtor_identifier): Likewise.
10871         * decl.c: Don't include obstack.h.
10872         (obstack_chunk_alloc): Don't define.
10873         (obstack_chunk_free): Likewise.
10874         (struct predefined_identifier): New type.
10875         (initialize_predefined_identifiers): New function.
10876         (init_decl_processing): Use it.
10877         (debug_temp_inits): Remove.
10878         (start_method): Don't call preserve_data.
10879         (hack_incomplete_structures): Update comment.
10880         * init.c (init_init_processing): Don't initialize
10881         nelts_identifier.
10882         (build_offset_rf): Remove dead code.
10883         (build_delete): Use CLASSTYPE_N_BASECLASSES.
10884         * search.c (init_search_processing): Don't initialize
10885         vptr_identifier.
10886
10887 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10888
10889         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
10890         some sign_compare warnings.
10891
10892 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
10893
10894         Rename abi::__vmi_class_type_info members.
10895         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
10896         base_list, detail_masks members to vmi_flags, vmi_base_count,
10897         vmi_bases and vmi_flags_masks respectively.
10898         (__vmi_class_type_info::vmi_flags_masks): Rename
10899         details_unknown_mask to flags_unknown_mask.
10900         * tinfo.cc (__class_type_info::do_upcast): Adjust.
10901         (__vmi_class_type_info::do_find_public_src): Adjust.
10902         (__vmi_class_type_info::do_dyncast): Adjust.
10903         (__vmi_class_type_info::do_upcast): Adjust.
10904
10905 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
10906
10907         * tinfo.cc (convert_to_base): New function.
10908         (get_vbase_offset): Remove. Move into convert_to_base.
10909         (__vmi_class_type_info::do_find_public_src): Adjust.
10910         (__vmi_class_type_info::do_dyncast): Adjust.
10911         (__vmi_class_type_info::do_upcast): Adjust.
10912
10913 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
10914
10915         * tinfo.cc (operator=): Use __builtin_strcmp.
10916         * tinfo2.cc (before): Likewise.
10917
10918 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
10919
10920         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
10921         (DECL_SAVED_INLINE): Rename to ...
10922         (DECL_DEFERRED_FN): ... this.
10923         (in_function_p): Remove declaration.
10924         (mark_inline_for_output): Rename to ...
10925         (defer_fn): ... this.
10926         * decl.c (finish_function): Adjust call to mark_inline_for_output.
10927         (in_function_p): Remove definition.
10928         * decl2.c (saved_inlines): Rename to ...
10929         (deferred_fns): ... this.
10930         (saved_inlines_used): Rename to ...
10931         (deferred_fns_used): ... this.
10932         (mark_inline_for_output): Rename to ...
10933         (defer_fn): ... this.
10934         (finish_file): Adjust accordingly.
10935         (init_decl2): Likewise.
10936         * lex.c (cons_up_default_function): Likewise.
10937         * pt.c (mark_decl_instantiated): Likewise.
10938         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
10939         circumstances.
10940         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
10941         * semantics.c (expand_body): Defer more functions.
10942
10943 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
10944
10945         * vec.cc: New file.
10946         * Make-lang.in (CXX_LIB2FUNCS): Add it.
10947         (vec.o): Build it.
10948         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
10949         __cxa_vec_delete): Declare.
10950
10951 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
10952
10953         * rtti.c (dfs_class_hint_mark): New static function.
10954         (dfs_class_hint_unmark): New static function.
10955         (class_hint_flags): Use them.
10956
10957 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
10958
10959         * decl2.c: Make flag_honor_std dependent on ENABLE_STD_NAMESPACE.
10960
10961 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
10962
10963         * cp-tree.h (instantiate_decl): Change prototype.
10964         * decl2.c (mark_used): Adjust call.
10965         * optimize.c (inlinable_function_p): Adjust handling of templates.
10966         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
10967         (do_type_instantiation): Likewise.
10968         (instantiate_decl): Defer more templates.
10969         (instantiate_pending_templates): Adjust logic to handle inline
10970         friend functions.
10971
10972         * Makefile.in (GGC_H): New variable.  Use it throughout in place
10973         of ggc.h.
10974
10975         * call.c: Don't include obstack.h.  Include ggc.h.
10976         (obstack_chunk_alloc): Don't define.
10977         (obstack_chunk_free): Likewise.
10978         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
10979         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
10980         (pop_switch): Free it.
10981
10982         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
10983
10984         * dump.c (dequeue_and_dump): Don't try to print the bit_position
10985         if we don't have a DECL_FIELD_OFFSET.
10986
10987 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
10988
10989         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
10990         special_function_p.
10991
10992 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10993
10994         * cfns.gperf (hash, libc_name_p): Prototype.
10995
10996         * rtti.c (build_dynamic_cast_1): Constification.
10997
10998         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
10999
11000         * semantics.c (deferred_type_access_control): Prototype.
11001
11002 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
11003
11004         Correct many new ABI issues regarding vbase and vcall offset
11005         layout.
11006         * cp-tree.h (BINFO_VTABLE): Document.
11007         (struct lang_type): Tweak formatting.
11008         (BINFO_PRIMARY_BINFO): Add to documentation.
11009         (CLASSTYPE_VSIZE): Fix typo in comment.
11010         (CLASSTYPE_VBASECLASSES): Update documentation.
11011         (BINFO_VBASE_MARKED): Remove.
11012         (SET_BINFO_VBASE_MARKED): Likewise.
11013         (CLEAR_BINFO_VBASE_MARKED): Likewise.
11014         (BINFO_FIELDS_MARKED): Remove.
11015         (SET_BINFO_FIELDS_MARKED): Likewise.
11016         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
11017         (enum access_kind): New enumeration.
11018         (num_extra_vtbl_entries): Remove declaration.
11019         (size_extra_vtbl_entries): Likewise.
11020         (get_vtbl_decl_for_binfo): New function.
11021         (dfs_vbase_unmark): Remove declaration.
11022         (mark_primary_bases): Likewise.
11023         * class.c (SAME_FN): Remove.
11024         (struct vcall_offset_data_s): Move definition.
11025         (build_vbase_pointer): Use `build', not `build_binary_op', to
11026         access the vbase pointer under the new ABI.
11027         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
11028         (build_primary_vtable): Likewise.
11029         (dfs_mark_primary_bases): Move here from search.c.
11030         (mark_primary_bases): Likewise.
11031         (determine_primary_bases): Under the new ABI, don't make a base
11032         class a primary base just because we don't yet have any virtual
11033         functions.
11034         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
11035         (num_vfun_entries): Remove.
11036         (dfs_count_virtuals): Likewise.
11037         (num_extra_vtbl_entries): Likewise.
11038         (size_extra_vtbl_entries): Likewise.
11039         (layout_virtual_bases): Iterate in inheritance graph order under
11040         the new ABI.
11041         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
11042         indicate that a vfield is present.
11043         (init_class_processing): Initialize access_public_node, etc., from
11044         ak_public, etc.
11045         (get_vtbl_decl_for_binfo): New function.
11046         (dump_class_hierarchy_r): Likewise.
11047         (dump_class_hierarchy): Use it.
11048         (finish_vtbls): Build the vtbls in inheritance graph order.
11049         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
11050         (initialize_vtable): Use get_vtbl_decl_for_binfo.
11051         (accumulate_vtbl_inits): Add comments explaining why a pre-order
11052         walk is required.
11053         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
11054         where the vptr points, even for primary vtables.
11055         (build_vtbl_initializer): Adjust handling of vbase and vcall
11056         offsets.
11057         (build_vcall_and_vbase_vtable_entries): New function.
11058         (dfs_build_vbase_offset_vtbl_entries): Remove.
11059         (build_vbase_offset_vtbl_entries): Reimplement.
11060         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
11061         were already handled in a primary base class vtable.
11062         (build_vcall_offset_vtbl_entries): Adjust.
11063         (build_rtti_vtbl_entries): Adjust.
11064         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
11065         * init.c (expand_virtual_init): Simplify.
11066         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
11067         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
11068         * search.c (BINFO_ACCESS): New macro.
11069         (SET_BINFO_ACCESS): Likewise.
11070         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
11071         (access_in_type): Likewise.
11072         (dfs_accessible_p): Likewise.
11073         (protected_accessible_p): Likewise.
11074         (lookup_fnfields_1): Adjust documentation.
11075         (dfs_mark_primary_bases): Move to class.c
11076         (mark_primary_bases): Likewise.
11077         (dfs_vbase_unmark): Remove.
11078         (virtual_context): Use BINFO_FOR_VBASE.
11079         (dfs_get_vbase_types): Simplify.
11080         (dfs_build_inheritance_graph_order): New function.
11081         (get_vbase_types): Use it.
11082         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
11083
11084         * tinfo.cc (get_vbase_offset): New function.
11085         (__vmi_class_type_info::do_find_public_src): Use it.
11086         (__vmi_class_type_info::do_dyncast): Likewise.
11087         (__vmi_class_type_info::do_upcast): Likewise.
11088
11089 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
11090
11091         * lang-specs.h: Pass -fno-show-column to the preprocessor.
11092
11093 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
11094
11095         * rtti.c (class_hint_flags): Rename flags.
11096         (class_initializer): Remove flags.
11097         (synthesize_tinfo_var): Combine offset and flags. Add flags
11098         for __vmi_class_type_info.
11099         (create_tinfo_types): Remove flags from __class_type_info and
11100         __si_class_type_info. Merge flags and offset from
11101         base_class_type_info.
11102         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
11103         (__base_class_info::is_virtual_p): Adjust.
11104         (__base_class_info::is_public_p): Adjust.
11105         (__base_class_info::offset): New accessor.
11106         (__class_type_info::details): Remove member.
11107         (__class_type_info::__class_type_info): Lose details.
11108         (__class_type_info::detail_masks): Remove.
11109         (__si_class_type_info::__si_class_type_info): Lose details.
11110         (__vmi_class_type_info::details): New member.
11111         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
11112         (__vmi_class_type_info::detail_masks): New member.
11113         * tinfo.cc (__class_type_info::do_upcast): Initialize result
11114         with unknown_details_mask.
11115         (__vmi_class_type_info::do_find_public_src): Adjust
11116         (__vmi_class_type_info::do_dyncast): Adjust.
11117         (__vmi_class_type_info::do_upcast): Set result details, if
11118         needed. Adjust.
11119         (__dynamic_cast): Temporarily #if out optimization.
11120
11121 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
11122
11123         * rtti.c (get_tinfo_decl): Mark used.
11124         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
11125         mark as dealt with, if we output it.
11126
11127 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
11128
11129         * class.c: Reorganize to put virtual function table initialization
11130         machinery at the end of the file.
11131
11132 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
11133
11134         * class.c (finish_struct): Use bitsize_zero_node.
11135         * pt.c (instantiate_class_template): Likewise.
11136
11137 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
11138
11139         Put RTTI entries at negative offsets in new ABI.
11140         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
11141         vbase offset at index -3, not -1.
11142         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
11143         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
11144         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
11145         (build_rtti_vtbl_entries): New function.
11146         (set_rtti_entry): Remove.
11147         (build_primary_vtable): Don't use it.
11148         (build_secondary_vtable): Likewise.
11149         (start_vtable): Remove.
11150         (first_vfun_index): New function.
11151         (set_vindex): Likewise.
11152         (add_virtual_function): Don't call start_vtable.  Do call
11153         set_vindex.
11154         (set_primary_base): Rename parameter.
11155         (determine_primary_base): Likewise.
11156         (num_vfun_entries): Don't use skip_rtti_stuff.
11157         (num_extra_vtbl_entries): Include RTTI information.
11158         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
11159         (skip_rtti_stuff): Remove.
11160         (dfs_modify_vtables): Don't use it.
11161         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
11162         (layout_nonempty_base_or_field): Update size handling.
11163         (create_vtable_ptr): Tweak.
11164         (layout_class_type): Adjust parameter names.
11165         (finish_struct_1): Simplify.
11166         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
11167         (skip_rtti_stuff): Remove.
11168         (first_vfun_index): New function.
11169         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
11170         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
11171         (marked_vtable_pathp): Declare.
11172         (unmarked_vtable_pathp): Likewise.
11173         * error.c (dump_expr): Use first_vfun_index to calculate vtable
11174         offsets.
11175         * rtti.c (build_headof): Look for RTTI at negative offsets.
11176         (get_tinfo_decl_dynamic): Likewise.
11177         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
11178         here.
11179         (create_pseudo_type_info): Do it here instead.  Adjust so that
11180         vptr points at first virtual function.
11181         * search.c (marked_vtable_pathp): Make it global.
11182         (unmarked_vtable_pathp): Likewise.
11183         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
11184         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
11185         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
11186         (get_pure_virtuals): Likewise.
11187         (expand_upcast_fixups): Likewise.
11188         * tree.c (debug_binfo): Likewise.
11189         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
11190         negative offset.
11191
11192 Sun Mar 26 20:15:26 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11193
11194         * class.c (check_field_decl): Fix typo.
11195         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
11196         (check_methods): Likewise.
11197         (check_field_decls): Likewise.
11198         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
11199         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
11200         Use DECL_RESULT_FLD, not DECL_RESULT.
11201         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
11202         * lex.c (identifier_type): Likewise.
11203         * pt.c (determine_specialization, lookup_template_class): Likewise.
11204         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
11205         (resolve_overloaded_unification, more_specialized): Likewise.
11206         * semantics.c (finish_member_declaration): Likewise.
11207         * typeck.c (build_x_function_call): Likewise.
11208
11209 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
11210
11211         * class.c (layout_empty_base): Handle empty bases with non-byte
11212         alignment.
11213         (build_base_field): Likewise.
11214         (layout_virtual_bases): Likewise.
11215
11216         * class.c (finish_struct_1): Fix typo in this change:
11217
11218         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11219
11220 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
11221
11222         * decl.c (grokdeclarator): Count partial specializations when
11223         keeping track of how many template classes have been seen.
11224
11225         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
11226
11227 Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11228
11229         * class.c (build_vbase_pointer_fields): layout_field now place_field.
11230         (get_vfield_offset): Use byte_position.
11231         (set_rtti_entry): Set OFFSET to ssizetype zero.
11232         (get_binfo_offset_as_int): Deleted.
11233         (dfs_record_base_offsets): Use tree_low_cst.
11234         (dfs_search_base_offsets): Likewise.
11235         (layout_nonempty_base_or_field): Reflect changes in RLI format
11236         and call byte_position.
11237         (layout_empty_base): Convert offset to ssizetype.
11238         (build_base_field): use rli_size_unit_so_far.
11239         (dfs_propagate_binfo_offsets): Do computation in proper type.
11240         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
11241         (layout_class_type): Reflect changes in RLI names and fields.
11242         (finish_struct_1): Set DECL_FIELD_OFFSET.
11243         * dump.c (dequeue_and_dump): Call bit_position.
11244         * expr.c (cplus_expand_constant): Use byte_position.
11245         * rtti.c (expand_class_desc): Use bitsize_one_node.
11246         * typeck.c (build_component_addr): Use byte_position and don't
11247         special case for zero offset.
11248
11249 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
11250
11251         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
11252
11253         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
11254         tinfo object.
11255         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
11256         vtable.
11257
11258 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11259
11260         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
11261         DECL_P macros.
11262         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
11263         make_typename_type, check_initializer, cp_finish_decl,
11264         xref_tag): Likewise.
11265         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
11266         decl_namespace, arg_assoc_template_arg, arg_assoc,
11267         validate_nonmember_using_decl, do_class_using_decl): Likewise.
11268         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
11269         args_to_string): Likewise.
11270         * friend.c (is_friend): Likewise.
11271         * lex.c (note_got_semicolon, note_list_got_semicolon,
11272         is_global): Likewise.
11273         * method.c (build_overload_nested_name, build_overload_value,
11274         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
11275         * parse.y (typename_sub, typename_sub1): Likewise.
11276         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
11277         process_partial_specialization, convert_template_argument,
11278         template_args_equal, add_pending_template, lookup_template_class,
11279         for_each_template_parm_r, maybe_fold_nontype_arg,
11280         tsubst, instantiate_template, type_unification_real, unify,
11281         instantiate_pending_templates, set_mangled_name_for_template_decl):
11282         Likewise.
11283         * repo.c (repo_get_id, repo_template_used): Likewise.
11284         * search.c (lookup_field_1): Likewise.
11285         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
11286         * xref.c (classname): Likewise.
11287
11288 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
11289
11290         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
11291         (CANONICAL_BINFO): New macro.
11292         (BINFO_NEW_VTABLE_MARKED): Use it.
11293         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
11294         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
11295         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
11296         not TREE_TYPE.
11297         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11298         (build_secondary_vtable): Likewise.
11299         (dfs_finish_vtbls): Likewise.
11300         (dfs_accumulate_vtbl_inits): Likewise.
11301         (accumulate_vtbl_inits): New function.
11302         (finish_vtbls): Make sure that virtual bases come after
11303         non-virtual bases in the vtable group.
11304         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
11305         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11306         * search.c (struct vbase_info): Move definition.
11307         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
11308         (unmarked_new_vtable_p): Likewise.
11309         (dfs_mark_vtable_path): Remove.
11310         (dfs_mark_new_vtable): Remove.
11311         (dfs_unmark_new_vtable): Likewise.
11312         (dfs_clear_search_slot): Likewise.
11313         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
11314         (dfs_clear_vbase_slots): Likewise.
11315         (init_vbase_pointers): LIkewise.
11316
11317 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
11318
11319         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
11320         SIZETYPE to a non-SIZETYPE.
11321
11322 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
11323
11324         * class.c (layout_virtual_bases): Adjust names in conditionally
11325         compiled code.
11326
11327         * class.c (record_base_offsets): New function.
11328         (layout_conflict_p): Likewise.
11329         (layout_nonempty_base_or_field): Use it.
11330         (layout_empty_base): New function.
11331         (build_base_field): Use it.
11332         (build_base_fields): Update comment.
11333         (layout_virtual_bases): Fold in a little code form
11334         layout_basetypes.  Use layout_empty_base.
11335         (layout_basetypes): Remove.
11336         (end_of_class): New function.
11337         (layout_class_type): Use it.  Adjust.
11338
11339         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
11340         (fntype_p): Remove.
11341         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
11342         comment.
11343         (dfs_skip_nonprimary_vbases_markedp): Likewise.
11344         * typeck.c (fntype_p): Remove.
11345
11346         * cp-tree.h (TI_SPEC_INFO): Remove.
11347         (CLASSTYPE_TI_SPEC_INFO): Likewise.
11348         * pt.c (process_partial_specialization): Likewise.
11349
11350         * class.c (build_base_field): Fix thinko in computation of binfo
11351         offsets.
11352
11353         * tree.c (mark_local_for_remap_p): Mark variables declared in
11354         TARGET_EXPRs as well.
11355
11356 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11357
11358         * typeck.c (require_complete_type, complete_type,
11359         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
11360         build_array_ref, convert_arguments, pointer_diff,
11361         build_x_unary_op, build_unary_op, build_c_cast,
11362         build_modify_expr): Use COMPLETE_TYPE_P etc.
11363         * call.c (is_complete, convert_like_real,
11364         build_new_method_call): Likewise.
11365         * class.c (build_vbase_pointer_fields, check_bases,
11366         build_base_field, finish_struct_1, pushclass): Likewise.
11367         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
11368         * decl.c (maybe_process_template_type_declaration, pushtag,
11369         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
11370         layout_var_decl, check_initializer, cp_finish_decl,
11371         grokdeclarator, require_complete_types_for_parms,
11372         grok_op_properties, xref_tag, xref_basetypes,
11373         check_function_type): Likewise.
11374         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
11375         * friend.c (do_friend): Likewise.
11376         * init.c (build_offset_ref): Likewise.
11377         * parse.y (structsp): Likewise.
11378         * pt.c (maybe_process_partial_specialization,
11379         tsubst_friend_function, instantiate_class_template, tsubst,
11380         do_type_instantiation, instantiate_pending_templates): Likewise.
11381         * repo.c (repo_get_id): Likewise.
11382         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
11383         synthesize_tinfo_var, emit_support_tinfos): Likewise.
11384         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
11385         * semantics.c (begin_class_definition): Likewise.
11386         * tree.c (build_cplus_method_type): Likewise.
11387         * typeck2.c (digest_init, build_functional_cast,
11388         add_exception_specifier): Likewise.
11389         * parse.h, parse.c: Regenerated.
11390
11391 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
11392
11393         * inc/cxxabi.h: New header file. Define new-abi entry points.
11394         (__pointer_type_info::target): Rename member to ...
11395         (__pointer_type_info::type): ... here.
11396         (__base_class_info::type): Rename member to ...
11397         (__base_class_info::base): ... here.
11398         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
11399         * cp-tree.h (CPTI_ABI): New global tree enumeration.
11400         (abi_node): New global tree node.
11401         * decl.c (abi_node): Document.
11402         (init_decl_processing): Initialize abi_node.
11403         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
11404         (get_vmi_pseudo_type_info): Likewise.
11405         (create_tinfo_types): Likewise.
11406         (emit_support_tinfos): Likewise.
11407         * tinfo.h (cxxabi.h): Include for new-abi.
11408         Move rtti class definitions to new header file.
11409         * tinfo.cc (abi): Use the namespace.
11410         (std): Move new abi rtti classes from here ...
11411         (__cxxabiv1): ... to here.
11412         * tinfo2.cc (cxxabi.h): Include for new-abi.
11413         Move rtti class definitions to new header file.
11414         (std): Move new abi rtti classes from here ...
11415         (__cxxabiv1): ... to here.
11416         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
11417         namespace.
11418
11419 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
11420             Jason Merrill  <jason@casey.cygnus.com>
11421
11422         * method.c (build_overload_int): Use host_integerp.
11423
11424 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
11425
11426         * init.c (build_offset_ref): Handle the case of a templated member
11427         function.
11428
11429 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11430
11431         * except.c (expand_exception_blocks): Clear catch_clauses_last.
11432
11433 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
11434
11435         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
11436         * class.c (check_bitfield_decl): Turn illegal bitfields into
11437         non-bitfields.
11438         (dfs_propagate_binfo_offsets): Adjust for new size_binop
11439         semantics.
11440         (dfs_offset_for_unshared_vbases): Likewise.
11441         * cvt.c (cp_convert_to_pointer): Convert NULL to a
11442         pointer-to-member correctly under the new ABI.
11443         * expr.c (cplus_expand_constant): Don't use cp_convert when
11444         turning an offset into a pointer-to-member.
11445         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
11446         when dereferencing them under the new ABI.
11447         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
11448         of pointers-to-members under the new ABI.
11449
11450         * class.c (check_bitfield_decl): Remove restriction on really long
11451         bitfields.
11452         (layout_class_type): Implement new ABI handling of bitfields
11453         longer than their types.
11454
11455 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
11456
11457         * parse.y (extdefs): Call ggc_collect.
11458         * parse.c: Regenerated.
11459
11460 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
11461
11462         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
11463         (note_name_declared_in_class): Use OVL_CURRENT to get at a
11464         potential overload.
11465
11466 Fri Mar 17 08:09:14 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11467
11468         * class.c (build_vbase_path): Use integer_zerop.
11469         (build_vtable_entry): Use tree_low_cst.
11470         (get_vfield_offset): Use bit_position.
11471         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
11472         Use tree_low_cst.
11473         (check_bitfield_decl): Set DECL_SIZE using convert.
11474         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
11475         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
11476         Use tree_low_cst.
11477         (finish_struct_1): Use bit_position.
11478         (dump_class_hierarchy): Use tree_low_cst.
11479         * cp-tree.h (min_precision): Add declaration.
11480         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
11481         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
11482         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
11483         * expr.c (cplus_expand_constant): Use bit_position.
11484         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
11485         * rtti.c (get_base_offset): Use bit_position.
11486         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
11487         host_integerp, and tree_low_cst.
11488         (pointer_int_sum): Use integer_zerop.
11489         (build_component_addr): Use bit_position.
11490
11491 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
11492
11493         * typeck.c (require_complete_type): Don't assume size_zero_node.
11494         (complete_type_or_else): Likewise.
11495
11496 2000-03-16  Steven Grady <grady@digitaldeck.com>
11497             Jason Merrill  <jason@casey.cygnus.com>
11498
11499         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
11500
11501 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
11502
11503         * decl2.c (grokfield): Bail out if type is error_mark_node.
11504
11505 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11506
11507         * tinfo2.cc (__ptr_to_member_data): Rename to ...
11508         (__pointer_to_member_data): ... here. Adjust.
11509         * rtti.c (create_tinfo_types): Adjust.
11510
11511 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11512
11513         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
11514         * decl.c (ref_desc_type_node): Undocument.
11515         * rtti.c (ptr_ref_initializer): Rename to ...
11516         (ptr_initializer): ... here. Adjust comments.
11517         (ptmd_initializer): Fix comment thinko.
11518         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
11519         (create_tinfo_types): Remove ref_desc_type_node init.
11520         * tinfo2.cc (__reference_type_info): Remove.
11521
11522 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
11523
11524         * decl.c (cp_finish_decl): Remove obsolete comment.
11525
11526         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
11527
11528 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
11529
11530         * cp-tree.h: Tweak documentation.
11531         * class.c (build_vbase_pointer_fields): Layout the fields, too.
11532         (avoid_overlap): Remove.
11533         (get_binfo_offset_as_int): New function.
11534         (dfs_serach_base_offsets): Likewise.
11535         (layout_nonempty_base_or_field): Likewise.
11536         (build_base_field): Layout fields here.  Avoid placing two objects
11537         of the same type at the same address, under the new ABI.
11538         (build_base_fields): Adjust accordingly.
11539         (create_vtable_ptr): Return the new field, but don't attach it to
11540         TYPE_FIELDS.
11541         (remove_base_field): Remove.
11542         (remove_base_fields): Remove.
11543         (layout_basetypes): Adjust accordingly.
11544         (layout_class_type): Call layout_field for each field, rather than
11545         just making a wholesale call to layout_type.
11546
11547 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
11548
11549         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
11550
11551 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
11552
11553         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
11554
11555         * except.c (dtor_nothrow): New fn.
11556         (do_pop_exception): Use it.  Take type parm.
11557         (push_eh_cleanup): Take type parm.
11558         (expand_start_catch_block): Pass it.
11559         (build_eh_type_type_ref): Accept null type.
11560
11561 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
11562
11563         * cp-tree.h (revert_static_member_fn): Change prototype.
11564         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
11565         (grok_op_properties): Likewise.
11566         (start_function): Likewise.
11567         (revert_static_member_fn): Simplify.
11568         * pt.c (check_explicit_specialization): Adjust call to
11569         revert_static_member_fn.
11570
11571 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
11572
11573         * cp-tree.h (scope_kind): New type.
11574         (tmpl_spec_kind): Likewise.
11575         (declare_pseudo_global_level): Remove.
11576         (pseudo_global_level_p): Rename to template_parm_scope_p.
11577         (pushlevel): Remove declaration.
11578         (begin_scope): New function.
11579         (finish_scope): Likewise.
11580         (current_tmpl_spec_kind): Likewise.
11581         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
11582         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
11583         Add template_spec_p.
11584         (toplevel_bindings_p): Adjust.
11585         (declare_pseudo_global_level): Remove.
11586         (pseudo_global_level_p): Rename to template_parm_scope_p.
11587         (current_tmpl_spec_kind): New function.
11588         (begin_scope): Likewise.
11589         (finish_scope): Likewise.
11590         (maybe_push_to_top_level): Adjust.
11591         (maybe_process_template_type_declaration): Likewise.
11592         (pushtag): Likewise.
11593         (pushdecl_nonclass_level): Likewise.
11594         (lookup_tag): Likewise.
11595         (grokfndecl): Handle member template specializations.  Share
11596         constructor and non-constructor code.
11597         * decl2.c (check_classfn): Handle member template specializations.
11598         * pt.c (begin_template_parm_list): Use begin_scope.
11599         (begin_specialization): Likewise.
11600         (end_specialization): Likewise.
11601         (check_explicit_specialization): Use current_tmpl_spec_kind.
11602         Handle member template specializations.
11603         (end_template_decl): Use finish_scope.  Remove call to
11604         get_pending_sizes.
11605         (push_template_decl_real): Remove bogus error message.
11606         (tsubst_decl): Fix typo in code contained in comment.
11607         (instantiate_template): Handle member template specializations.
11608         (most_general_template): Likewise.
11609
11610 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
11611
11612         * lex.c (whitespace_cr): Compress consecutive calls to warning().
11613         (do_identifier): Ditto for error().
11614
11615         * pt.c (convert_nontype_argument): Ditto for cp_error().
11616         (convert_template_argument): Ditto for cp_pedwarn().
11617
11618 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
11619
11620         * exception.cc (__check_null_eh_spec): New fn.
11621         * except.c (expand_end_eh_spec): Call it if the spec is throw().
11622
11623 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
11624
11625         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
11626         * except.c (expand_end_eh_spec): Add the return type.
11627         * rtti.c (throw_bad_cast): Add the parmtypes.
11628         (throw_bad_typeid): Likewise.
11629
11630         * semantics.c (expand_stmt): Only leave out rtl for unused
11631         artificials, and set DECL_IGNORED_P on them as well.
11632         * decl.c (wrapup_globals_for_namespace): Likewise.
11633
11634 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
11635
11636         * decl.c (maybe_commonize_var): Skip all artificial decls.
11637         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
11638
11639 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
11640
11641         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
11642         * cp-tree.h: Declare flag_enforce_eh_specs.
11643         * decl.c (store_parm_decls, finish_function): Check it.
11644
11645         C library functions don't throw.
11646         * Makefile.in (cfns.h): New target.
11647         (except.o): Depend on it.
11648         * Make-lang.in (cc1plus): Depend on cfns.gperf.
11649         * cfns.gperf: New file.
11650         * cfns.h: Generated.
11651         * except.c: Include it.
11652         (nothrow_libfn_p): New fn.
11653         * decl.c (grokfndecl): Use it.
11654         * cp-tree.h: Declare it.
11655
11656         * decl.c (push_overloaded_decl_1, auto_function,
11657         define_function): Lose.
11658         (build_library_fn_1): New static fn.
11659         (builtin_function): Use it.
11660         (get_atexit_node): Use build_library_fn_ptr.
11661         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
11662         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
11663         push_void_library_fn, push_throw_library_fn): New fns.
11664         * cp-tree.h: Declare them.
11665         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
11666         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
11667         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
11668         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
11669         * rtti.c (build_runtime_decl): Lose.
11670         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
11671         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
11672         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
11673
11674         * call.c (build_call): Remove result_type parm.
11675         Call mark_used on unused artificial fns.
11676         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
11677
11678 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
11679
11680         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
11681         appropriate.
11682         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
11683         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
11684         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
11685         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
11686         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
11687         expand_generic_desc): Likewise.
11688
11689 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11690
11691         * exception.cc (__cp_pop_exception): Cleanup the original object.
11692
11693 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11694
11695         * decl.c (grok_op_properties): Merge conversion to void warning
11696         with other silly op warnings.
11697
11698 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
11699
11700         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
11701         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
11702
11703 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11704
11705         * decl.c (cp_make_fname_decl): New function.
11706         (wrapup_globals_for_namespace): Don't emit unused static vars.
11707         (init_decl_processing): Remove comment about use of
11708         array_domain_type. Set make_fname_decl.
11709         (cp_finish_decl): Remove __FUNCTION__ nadgering.
11710         * semantics.c (begin_compound_stmt): Remove
11711         current_function_name_declared flagging.
11712         (expand_stmt): Don't emit unused local statics.
11713         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
11714         specially.
11715
11716 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
11717
11718         * typeck.c (convert_for_assignment): Don't look at array
11719         initializer.
11720         * call.c (convert_like_real): Likewise.
11721
11722 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
11723
11724         Add initial support for '\uNNNN' specifier.
11725         * lex.c (read_ucs): New fn.
11726         (readescape, skip_white_space): Call it.
11727         (is_extended_char, is_extended_char_1): New fns.
11728         (utf8_extend_token): New fn, #if 0'd out.
11729         (real_yylex): Treat extended chars like letters.
11730
11731         * search.c (note_debug_info_needed): Walk the bases even if we
11732         weren't deferring the type itself.
11733
11734 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11735
11736         * decl2.c (finish_objects): Constify a char*.
11737
11738         * method.c (emit_thunk): Likewise.
11739
11740 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
11741
11742         * typeck.c (dubious_conversion_warnings): Look through
11743         REFERENCE_TYPE.
11744
11745 Mon Mar  6 08:46:47 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11746
11747         * class.c (dfs_modify_vtables): I is now unsigned.
11748         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
11749         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
11750         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
11751         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
11752         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
11753         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
11754         Call integer_all_onesp.
11755         * typeck2.c (process_init_constructor): Use compare_tree_int.
11756
11757         * lang-specs.h (as): Don't call if -syntax-only.
11758
11759 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
11760
11761         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
11762         RTL_EXPR_HAS_NO_SCOPE after all.
11763
11764 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
11765
11766         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
11767         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
11768         RTL_EXPR_HAS_NO_SCOPE.
11769
11770         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
11771         later.
11772
11773         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
11774
11775 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
11776
11777         * call.c (convert_like): Macrofy.
11778         (convert_like_with_context): New macro.
11779         (convert_like_real): Renamed from convert_like.  Add calling
11780         context parameters, for diagnostics. Add recursive flag.  Call
11781         dubious_conversion_warnings for outer conversion.
11782         (build_user_type_conversion): Use convert_like_with_context.
11783         (build_over_call): Likewise. Don't warn about dubious
11784         conversions here. Adjust convert_default_arg calls.
11785         (convert_default_arg): Add context parameters for diagnostics.
11786         Pass through to convert_like_with_context.
11787         * cp-tree.h (convert_default_arg): Add context parameters.
11788         (dubious_conversion_warnings): Prototype new function.
11789         * typeck.c (convert_arguments): Adjust convert_default_arg call.
11790         (dubious_conversion_warnings): New function, broken
11791         out of convert_for_assignment.
11792         (convert_for_assignment): Adjust.
11793
11794 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
11795
11796         * decl2.c (key_method): Break out from...
11797         (import_export_vtable, import_export_class): ...here.
11798
11799         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
11800         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
11801
11802         * search.c (note_debug_info_needed, dfs_debug_mark,
11803         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
11804         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
11805
11806 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
11807
11808         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
11809         typos.
11810
11811 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
11812
11813         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
11814         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
11815         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
11816         (lang_type): Split gets_new into has_new and has_array_new.
11817         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11818         (TYPE_GETS_NEW): Split into ...
11819         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
11820         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
11821         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
11822         (build_op_new_call): Don't declare.
11823         (build_new_1): Likewise.
11824         * call.c (build_op_new_call): Remove.
11825         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
11826         instead of TYPE_NEEDS_DESTRUCTOR.
11827         (finish_struct_bits): Likewise.
11828         (add_implicitly_declared_members): Likewise.
11829         (check_field_decl): Likewise.
11830         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
11831         correctly under the new ABI.
11832         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
11833         instead of TYPE_NEEDS_DESTRUCTOR.
11834         (initialize_local_var): Likewise.
11835         (destroy_local_var): Likewise.
11836         (cp_finish_decl): Likewise.
11837         (register_dtor_fn): Likewise.
11838         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
11839         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
11840         TYPE_VEC_DELETE_TAKES_SIZE here.
11841         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
11842         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
11843         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11844         (finish_destructor_body): Likewise.
11845         (maybe_build_cleanup_1): Likewise.
11846         * decl2.c (do_static_destruction): Likewise.
11847         * init.c (build_new_1): Make it static.
11848         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11849         (expand_cleanup_for_base): Likewise.
11850         (get_cookie_size): New function.
11851         (build_new_1): Handle array-new cookies correctly under the new
11852         ABI.
11853         (build_vec_delete_1): Likewise.
11854         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11855         (build_delete): Likewise.
11856         (build_vec_delete): Handle array-new cookies correctly under the new
11857         ABI.
11858         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11859         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
11860         TYPE_HAS_ARRAY_NEW_OPERATOR.
11861         * ptree.c (print_lang_type): Check them.
11862         * search.c (context_for_name_lookup): Fix typo in comment.
11863         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
11864         * tree.c (break_out_cleanups): Likewise.
11865         (build_cplus_array_test_1): Likewise.
11866         (cp_build_qualified_type_real): Likewise.
11867         * typeck.c (complete_type): Likewise.
11868
11869         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
11870         the command-line, not the end.
11871
11872 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
11873
11874         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
11875
11876 2000-03-02  Tom Tromey  <tromey@cygnus.com>
11877
11878         * cp-tree.h (build_java_class_ref): Declare.
11879         * init.c (build_java_class_ref): No longer static.
11880         * except.c (expand_throw): Generate a Java-style `throw' if the
11881         thrown object is a "Java" object.
11882         (initialize_handler_parm): Generate a Java-style lookup of
11883         exception info if the caught object is a "Java" object.
11884         (catch_language, catch_language_init): New globals.
11885         (decl_is_java_type): New function.
11886         (expand_start_catch_block): Don't call push_eh_info() or
11887         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
11888         class reference to build_catch_block.
11889
11890 Thu Mar  2 13:32:01 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11891
11892         * typeck.c (comptypes): Treat sizetype like its language equivalent.
11893
11894 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
11895
11896         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
11897         to merge reference/pointer code and fix incorrect warnings.
11898
11899 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
11900
11901         * search.c (protected_accessible_p): Use context_for_name_lookup.
11902
11903         * init.c (construct_virtual_bases): Fix thinko.
11904         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
11905
11906 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
11907
11908         * decl.c (current_function_decl): Move to toplev.c.
11909
11910 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
11911
11912         * pt.c (fn_type_unification): Unify return type, whenever
11913         provided.
11914         (get_bindings_real): Only pass return type when necessary.
11915         Remove explicit return type check.
11916         * class.c (resolve_address_of_overloaded_function): Pass desired
11917         return type to fn_type_unification.
11918
11919 Mon Feb 28 08:15:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11920
11921         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
11922         DECL_FIELD_SIZE.
11923         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
11924         DECL_FIELD_SIZE.
11925         * rtti.c (expand_class_desc): Likewise.
11926         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
11927         (THUNK_VCALL_OFFSET): Likewise.
11928         (THUNK_DELTA): Reflect changes in ../tree.h.
11929
11930 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
11931
11932         * search.c (protected_accessible_p): Also allow the access if
11933         the member is public in DERIVED.  Lose TYPE parm.
11934         (friend_accessible_p): Lose TYPE parm.
11935         (accessible_p): Adjust.
11936
11937 Sun Feb 27 16:40:33 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11938
11939         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
11940         on things that are not sizes; ssize_binop deleted.
11941         Call size_diffop when appropriate.
11942         (dfs_build_vcall_offset_vtbl_entries): Likewise.
11943         (build_primary_vtable, build_secondary_vtable): Likewise.
11944         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
11945         Variable I is HOST_WIDE_INT.
11946         (get_vfield_offset): Pass proper types to size_binop.
11947         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
11948         (finish_struct_1): Likewise.
11949         (skip_rtti_stuff): Arg N is now pointer to signed.
11950         (layout_class_type): Use size_zero_node.
11951         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
11952         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
11953         * decl.c (complete_arry_type): Pass proper types to size_binop.
11954         (xref_basetypes): BINFO_OFFSET is sizetype.
11955         * error.c (dump_expr): Don't use size_binop non-sizes.
11956         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
11957         * init.c (construct_virtual_bases): Fix type error.
11958         (build_vec_delete_1): Pass proper type to size_binop and don't
11959         fold result.
11960         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
11961         * rtti.c (get_base_offset): Pass proper type to size_binop.
11962         * search.c (dfs_find_vbases): Fix type error.
11963         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
11964         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
11965         * tree.c (debug_binfo): Variable N is signed.
11966         Use HOST_WIDE_INT_PRINT_DEC.
11967         * typeck.c (comptypes): sizetype is same as equivalent integer type.
11968         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
11969         size_one_node and size_zero_node.
11970         (c_alignof): Use size_one_node.
11971         (build_component_addr): Pass proper types to size_binop.
11972         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
11973
11974 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
11975
11976         Implement class scope using-declarations for functions.
11977         * class.c (handle_using_decl): Call add_method for used functions.
11978         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
11979         (add_method): Used functions are hidden by local functions.
11980         (check_bases_and_members): Handle using-decls before finalizing
11981         CLASSTYPE_METHOD_VEC.
11982         * call.c (add_function_candidate): Add ctype parm; if non-zero,
11983         override the type of 'this' accordingly.
11984         (add_template_candidate, add_template_candidate_real): Add ctype parm.
11985         (convert_class_to_reference, build_user_type_conversion_1,
11986         build_new_function_call, build_object_call, build_new_op,
11987         build_new_method_call): Pass ctype parm.
11988
11989         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
11990         the baselink.
11991         * call.c (convert_class_to_reference, build_user_type_conversion_1,
11992         build_new_function_call, build_object_call, build_new_op,
11993         build_new_method_call, build_op_delete_call): Don't get basetype_path
11994         from a baselink.
11995         * typeck.c (build_component_ref): Likewise.
11996         * init.c (build_offset_ref): Likewise.
11997         (resolve_offset_ref): Don't call enforce_access.
11998         Call build_scoped_ref.
11999         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
12000         would cause an error or if -pedantic.
12001         * class.c (alter_access): Lose binfo parm.
12002
12003 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12004
12005         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
12006         types.
12007
12008 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
12009
12010         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
12011         pseudo_type_info creation into the std namespace
12012
12013 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
12014
12015         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
12016         (import_export_class): Remove declaration.
12017         * decl2.c (import_export_class): Make it static.
12018         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
12019         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
12020         EXPR_WITH_FILE_LOCATION.
12021         * lex.c (check_newline): Tweak filename/lineno setting.
12022         * semantics.c (begin_while_stmt): Fix typo in comment.
12023
12024 Sat Feb 26 19:50:23 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12025
12026         * lang-options.h (-fmessage-length=): Add missing option.
12027
12028         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
12029
12030 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
12031
12032         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
12033
12034 Fri Feb 25 14:52:33 2000  Jim Wilson  <wilson@cygnus.com>
12035
12036         * optimize.c (expand_call_inline): Emit the return label before
12037         evaluating the return value.
12038
12039 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
12040
12041         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
12042         than duplicating functionality here.
12043         * optimize.c: Include input.h.
12044         (expand_call_inline): Use push_srcloc and pop_srcloc.
12045         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
12046         * parse.c: Regenerated.
12047         * Makefile.in (lex.o): Depend on input.h.
12048         (optimize.o): Likewise.
12049
12050 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
12051
12052         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
12053         function type, rather than ICE.
12054
12055 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
12056
12057         * decl.c (grokdeclarator): Call decl_type_access_control.
12058         * parse.y (parse_end_decl): Don't call decl_type_access_control if
12059         decl is null.
12060
12061 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
12062
12063         * decl.c (decls_match): Remove obsolete static member nadgering.
12064
12065 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
12066
12067         * decl.c (grokdeclarator): Change ANSI to ISO.
12068         * lex.c (consume_string, readescape, do_identifier): Likewise.
12069         (parse_float, real_yylex): Likewise.
12070         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
12071         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
12072         new_type_id, maybe_label_decls, simple_stmt,
12073         for.init.statement): Likewise.
12074         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
12075         * semantics.c (finish_named_return_value): Likewise.
12076         * parse.c: Regenerate.
12077
12078 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
12079
12080         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
12081         (CPTI_CLASS_STAR_TYPE): Remove.
12082         (vtable_index_type): Likewise.
12083         (class_star_type_node): Remove.
12084         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
12085         (build_binary_op_nodefault): Remove.
12086         * call.c (build_new_op): Use build_binary_op instead of
12087         build_binary_op_nodefault.
12088         * decl.c (init_decl_processing): Remove class_star_type_node
12089         initialization.  Make delta_type_node ptrdiff_type_node under the
12090         new ABI.  Initialize vtable_index_type.
12091         (build_ptrmemfunc_type): Build different structures for the new
12092         ABI.
12093         (build_enumerator): Use build_binary_op instead of
12094         build_binary_op_nodefault.
12095         * method.c (build_overload_value): Mangle pointers-to-members
12096         appropriately under the new ABI.
12097         * typeck.c (build_array_ref): Use build_binary_op instead of
12098         build_binary_op_nodefault.
12099         (get_member_function_from_ptrfunc): Adjust for the new ABI.
12100         (build_binary_op_nodefault): Rename to ...
12101         (build_binary_op): ... this.  Remove old version.  Adjust for
12102         pointer-to-member comparisons under the new ABI.
12103         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
12104         (build_ptrmemfunc): Adjust for the new ABI.
12105         (expand_ptrmemfunc_cst): Likewise.
12106         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
12107         (pfn_from_ptrmemfunc): Adjust for the new ABI.
12108
12109 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
12110
12111         * call.c (build_object_call): Compress consecutive calls to
12112         cp_error.
12113         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
12114         (build_op_delete_call): Adjust message formatting.
12115
12116         * class.c (check_bases): Compress consecutive calls to
12117         cp_pedwarn.
12118         (finish_struct_anon): Say 'ISO C++'.
12119
12120         * decl.c (start_decl): Same here.
12121         (grok_reference_init): Likewise.
12122         (grokfndecl): Correct message formatting.
12123         (grokfndecl): Improve diagnostic.
12124         (check_static_variable_definition): Likewise. Say 'ISO C++'
12125         (compute_array_index_type): Say 'ISO C++'
12126         (create_array_type_for_decl): Compress consecutive calls to
12127         cp_error.
12128         (grokdeclarator): Say 'ISO C++'
12129         (grok_op_properties): Likewise.
12130
12131         * decl2.c (delete_sanity): Clairify diagnostic.
12132         (check_member_template): Same here.
12133         (grok_function_init): Use consistent terminology.
12134
12135         * expr.c (do_case): Say 'ISO C++'
12136
12137         * friend.c (do_friend): Compress consecutive calls to warning.
12138
12139 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
12140
12141         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
12142         * class.c (build_secondary_vtable): Reorganize.  Don't create a
12143         new vtable under the new ABI.
12144         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
12145         computing the size.
12146         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
12147         the initializing elements.
12148         (initialize_vtable): New function.
12149         (dfs_finish_vtbls): Use it.
12150         (dfs_accumulate_vtbl_inits): New function.
12151         (finish_vtbls): Merge primary and secondary vtables under the new
12152         ABI.
12153         (finish_struct_1): Remove redundant call to layout_vtable_decl.
12154         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
12155         aren't VAR_DECLs.
12156
12157         * class.c (build_vtable): New function, split out from ...
12158         (get_vtable_decl): ... here, and ...
12159         (build_secondary_vtable): ... here.
12160
12161         * pt.c (tsubst_decl): Fix formatting.
12162
12163 Sat Feb 19 18:43:13 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12164
12165         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
12166         (avoid_overlap, build_base_field): Likewise.
12167         (build_base_field, build_base_fields, is_empty_class):
12168         Test DECL_SIZE with integer_zero.
12169         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
12170         * cp-tree.h (struct lang_type): New field size_unit.
12171         (CLASSTYPE_SIZE_UNIT): New macro.
12172         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
12173         (cp_finish_decl): Delete -Wlarger-than processing.
12174         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
12175         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
12176         * tree.c (make_binfo): binfo vector is one entry longer.
12177         (walk_tree): Walk DECL_SIZE_UNIT.
12178
12179 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
12180
12181         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
12182         comment.
12183         (build_vtable_entry): Don't assume all vtable entries are
12184         functions.
12185         (build_vtbl_initializer): Adjust accordingly.
12186         (get_vtable_decl): Fix formatting.
12187
12188 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
12189
12190         * semantics.c (deferred_type_access_control): Walk the entire
12191         type_lookups list.
12192         (save_type_access_control): Rename from
12193         initial_deferred_type_access_control.  Just remember the value.
12194         (decl_type_access_control): New fn.
12195         (begin_function_definition): Use deferred_type_access_control, after
12196         we've started the function.  Set type_lookups to error_mark_node.
12197         * parse.y (frob_specs, fn.def1): Adjust.
12198         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
12199         (parse_end_decl, parse_bitfield0, parse_method): New fns.
12200         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
12201         (after_type_component_declarator0): Likewise.
12202         (after_type_component_declarator): Likewise.
12203         (notype_component_declarator): Likewise.
12204         * cp-tree.h: Adjust.
12205
12206         * decl.c (redeclaration_error_message): Allow redeclaration of
12207         namespace-scope decls.
12208
12209 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
12210
12211         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
12212
12213 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
12214
12215         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
12216         * decl2.c (grokclassfn): Likewise.
12217
12218         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
12219
12220         * decl2.c (lang_decode_option): Don't set default message length
12221         here.
12222         * lex.c (lang_init_options): Set it here.
12223
12224 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
12225
12226         Make DECL_CONTEXT mean the class in which a member function was
12227         declared, even for a virtual function.
12228         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
12229         (DECL_FRIEND_CONTEXT): New macro.
12230         (DECL_REAL_CONTEXT): Remove.
12231         (SET_DECL_FRIEND_CONTEXT): Likewise.
12232         (DECL_VIRTUAL_CONTEXT): Adjust.
12233         (DECL_CLASS_SCOPE_P): Use TYPE_P.
12234         (add_friends): Remove.
12235         (hack_decl_function_context): Likewise.
12236         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
12237         CP_DECL_CONTEXT.
12238         (build_over_call): Fix indentation.  Use DECL_CONTEXT
12239         instead of DECL_CLASS_CONTEXT.
12240         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
12241         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
12242         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12243         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
12244         (build_base_field): Likewise.
12245         (finish_struct_1): Likewise.
12246         (build_self_reference): Likewise.
12247         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
12248         DECL_REAL_CONTEXT.
12249         (pushtag): Use decl_function_context, not
12250         hack_decl_function_context.
12251         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12252         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
12253         (pushdecl): Remove bogus code.
12254         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
12255         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12256         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12257         Use decl_function_context, nothack_decl_function_context.
12258         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
12259         (grokdeclarator): Likewise.  Use decl_function_context, not
12260         hack_decl_function_context.
12261         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
12262         (start_function): Use DECL_FRIEND_CONTEXT, not
12263         DECL_CLASS_CONTEXT.  Use decl_function_context, not
12264         hack_decl_function_context.
12265         (finish_function): Use decl_function_context, not
12266         hack_decl_function_context.
12267         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
12268         DECL_CLASS_CONTEXT.
12269         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
12270         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
12271         (grokfield): Likewise.
12272         (finish_builtin_type): Likewise.
12273         (finish_vtable_vardec): Use decl_function_context, not
12274         hack_decl_function_context.
12275         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12276         (start_static_initialization_or_destruction): Likewise.
12277         (finish_static_initialization_or_destruction): Likewise.
12278         (mark_used): Adjust logic for deciding when to synthesize methods.
12279         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
12280         DECL_REAL_CONTEXT.
12281         * error.c (dump_function_decl): Use DECL_CONTEXT, not
12282         DECL_CLASS_CONTEXT.
12283         * friend.c (is_friend): Likewise.
12284         (add_friends): Remove.
12285         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
12286         * lex.c (begin_definition_of_inclass_inline): Use
12287         decl_function_context, not hack_decl_function_context.
12288         (process_next_inline): Likewise.
12289         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
12290         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
12291         DECL_CLASSS_CONTEXT.
12292         (hack_identifier): Likewise.
12293         (synthesize_method):  Use decl_function_context, not
12294         hack_decl_function_context.
12295         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
12296         DECL_REAL_CONTEXT.
12297         (is_member_template): Use decl_function_context, not
12298         hack_decl_function_context.  Use DECL_CONTEXT, not
12299         DECL_CLASS_CONTEXT.
12300         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
12301         DECL_CLASS_CONTEXT.
12302         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
12303         DECL_REAL_CONTEXT.
12304         (push_template_decl_real): Likewise.
12305         (instantiate_class_template): Don't call add_friends.
12306         (tsubst_default_argument): Use DECL_CONTEXT, not
12307         DECL_REAL_CONTEXT.
12308         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
12309         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12310         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
12311         DECL_CLASS_CONTEXT.
12312         * repo.c (repo_inline_used): Likewise.
12313         * search.c (current_scope): Adjust for new _CONTEXT macros.
12314         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
12315         DECL_REAL_CONTEXT.
12316         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
12317         (lookup_fnfields_here):Likewise.
12318         (check_final_overrider): Likewise.
12319         (init_vbase_pointers): Likewise.
12320         (virtual_context): Likewise.
12321         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
12322         (expand_body): Use decl_function_context, not
12323         hack_decl_function_context.
12324         * tree.c (hack_decl_function_context): Remove.
12325         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
12326         DECL_CLASS_CONTEXT.
12327         * typeck2.c (error_not_base_type): Likewise.
12328
12329 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
12330
12331         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
12332
12333 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12334
12335         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
12336
12337 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
12338
12339         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
12340
12341 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
12342
12343         * decl2.c (lang_decode_option): Enable automatic line wrapping.
12344
12345 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
12346
12347         * parse.y (frob_specs): Split out...
12348         (parse_decl): From here.
12349         (fn.def2): Call initial_deferred_type_access_control.
12350         (after_type_component_declarator0): Call frob_specs.
12351         (notype_component_declarator0): Likewise.
12352         * search.c (friend_accessible_p): Nested classes are friends of their
12353         enclosing classes.
12354
12355 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
12356
12357         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
12358         used to create an implicit temporary.
12359
12360         * class.c (dfs_modify_vtables): Tweak calculation of functions to
12361         override.
12362
12363 2000-02-08  Nathan Sidwell  <nathan@acm.org>
12364
12365         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
12366         strip array element qualifiers too.
12367
12368 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
12369
12370         * decl.c (store_parm_decls): Don't build cleanups for parameters
12371         while processing_template_decl.
12372
12373 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
12374
12375         * cp-tree.h (struct saved_scope): Add incomplete field.
12376         (namespace_scope_incomplete): New macro.
12377         * decl.c (pushdecl): Use it.
12378         (hack_incomplete_structures): Use it.  See through artificial
12379         binding levels.
12380         (mark_saved_scope): Mark it.
12381
12382         Implement access control for nested types.
12383         * search.c (type_access_control): New fn.
12384         (accessible_p): Now we do perform access control for types.
12385         * semantics.c (deferred_type_access_control): New fn.
12386         (initial_deferred_type_access_control): New fn.
12387         (begin_function_definition): Call it.  Add lookups parm.
12388         * decl.c (struct binding_level): Add this_class field.
12389         (pushlevel_class): Set it.
12390         (mark_binding_level): Mark it.
12391         (lookup_name_real): Use it.  Call type_access_control.
12392         (mark_saved_scope): Mark lookups field.
12393         * cp-tree.h (flagged_type_tree): Add lookups field.
12394         (struct saved_scope): Add lookups field.
12395         (type_lookups): New macro.
12396         * parse.y (declmods): Now <ftype>.
12397         (parse_decl): Add lookups parm.  Call
12398         initial_deferred_type_access_control.
12399         (lang_extdef): Clear type_lookups.
12400         (typed_declspecs, declmods, typespec): Set lookups field.
12401         (initdcl): Call deferred_type_access_control.
12402         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
12403         component_decl_1, named_parm): Adjust.
12404         * friend.c (is_friend): Nested classes are friends of their
12405         enclosing classes.
12406
12407         * class.c (currently_open_derived_class): New fn.
12408         * method.c (hack_identifier): Use it.
12409
12410         * lex.c (do_identifier): Remove obsolete code.
12411
12412         * parse.y (typed_typespecs): Propagate new_type_flag properly.
12413
12414 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
12415
12416         * tinfo.h: Remove apostrophes from C++ comment (xgettext
12417         thinks this file is plain C).
12418
12419 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12420
12421         * Makefile.in (call.o): Depend on $(EXPR_H).
12422
12423         * call.c: Include "expr.h".
12424
12425         * class.c (dump_class_hierarchy): Add prototype.
12426
12427         * search.c (dfs_get_pure_virtuals): Likewise.
12428
12429 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
12430
12431         * parse.y (simple_stmt): Allow :: token in asm parameter list.
12432         * parse.c: Rebuilt.
12433
12434 Mon Jan 31 15:35:29 2000  Jim Wilson  <wilson@cygnus.com>
12435
12436         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
12437         Store it in DECL_FCONTEXT.
12438         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
12439
12440 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
12441
12442         * tinfo.h (old abi): #include "tconfig.h".
12443         * tinfo.cc (convert_to_base): Move into old abi section.
12444
12445 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
12446
12447         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
12448         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
12449         (BINFO_PRIMARY_BINFO): New macro.
12450         (BF_DELTA): Rename to ...
12451         (BV_DELTA): ... this.
12452         (BF_VCALL_INDEX): Rename to ...
12453         (BV_VCALL_INDEX): ... this.
12454         (BF_FN): Rename to ...
12455         (BV_FN): ... this.
12456         * class.c (build_vbase_path): Adjust for changes to reverse_path.
12457         (set_rtti_entry): Rename BF_ macros to BV_ variants.
12458         (modify_vtable_entry): Simplify.
12459         (add_virtual_function): Rename BF_ macros to BV_ variants.
12460         (build_vtable_initializer): Likewise.
12461         (get_class_offset_1): Remove.
12462         (dfs_get_class_offset): Likewise.
12463         (get_class_offset): Likewise.
12464         (dfs_find_final_overrider): New function.
12465         (find_final_overrider): Likewise.
12466         (modify_one_vtable): Remove.
12467         (dfs_find_base): New function.
12468         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
12469         find_final_overrider.
12470         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
12471         virtuals.
12472         (dfs_fixup_vtable_deltas): Remove.
12473         (override_one_vtable): Remove.
12474         (merge_overrides): Likewise.
12475         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
12476         unreal chilren of virtual bases.
12477         (finish_struct_1): Don't use merge_overrides.  Don't use
12478         dfs_fixup_vtable_deltas.
12479         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
12480         BINFOs.
12481
12482 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
12483             Jason Merrill  <jason@yorick.cygnus.com>
12484
12485         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
12486
12487 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
12488
12489         * exception.cc (__throw_bad_typeid): Add missing std::.
12490
12491 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12492
12493         * cp-tree.h (make_thunk): PROTO -> PARAMS.
12494
12495 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
12496
12497         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
12498
12499         Runtime support for new-abi rtti.
12500         * inc/typeinfo (type_info::operator!=): Define in class.
12501         (type_info::before, type_info::name, type_info::operator==,
12502         type_info::operator!=): Define new ABI implementations.
12503         (type_info::is_pointer_p, type_info::is_function_p): Declare
12504         new virtual functions.
12505         (type_info::do_catch, type_info::do_upcast): Likewise.
12506
12507         * tinfo.h (__base_class_info): Define new class.
12508         (__class_type_info): Likewise.
12509         (__si_class_type_info): Likewise.
12510         (__vmi_class_type_info): Likewise.
12511         (__dynamic_cast): Prototype.
12512
12513         * tinfo.cc: Conditionalize old and new rtti mechanisms.
12514         (type_info::is_pointer_p): Define new function.
12515         (type_info::is_function_p): Likewise.
12516         (type_info::do_catch): Likewise.
12517         (type_info::do_upcast): Likewise.
12518         (vtable_prefix): New structure for vtable access.
12519         (adjust_pointer): Define new template function.
12520         (contained_p, public_p, virtual_p, contained_public_p,
12521         contained_nonpublic_p, contained_nonvirtual_p): Define new
12522         functions.
12523         (nonvirtual_base_type): New local variable.
12524         (__class_type_info::~__class_type_info): Define.
12525         (__si_class_type_info::~__si_class_type_info): Likewise.
12526         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
12527         (__class_type_info::do_catch): Define new function.
12528         (__class_type_info::do_upcast): Likewise.
12529         (__class_type_info::find_public_src): Likewise.
12530         (__class_type_info::do_find_public_src): Likewise.
12531         (__si_class_type_info::do_find_public_src): Likewise.
12532         (__vmi_class_type_info::do_find_public_src): Likewise.
12533         (__class_type_info::do_dyncast): Likewise.
12534         (__si_class_type_info::do_dyncast): Likewise.
12535         (__vmi_class_type_info::do_dyncast): Likewise.
12536         (__class_type_info::do_upcast): Likewise.
12537         (__si_class_type_info::do_upcast): Likewise.
12538         (__vmi_class_type_info::do_upcast): Likewise.
12539         (__dynamic_cast): Likewise.
12540
12541         * tinfo2.cc (__fundamental_type_info): Define new class.
12542         (__pointer_type_info): Likewise.
12543         (__reference_type_info): Likewise.
12544         (__array_type_info): Likewise.
12545         (__function_type_info): Likewise.
12546         (__enum_type_info): Likewise.
12547         (__ptr_to_member_type_info): Likewise.
12548         (__fundamental_type_info::~__fundamental_type_info): Define.
12549         (__pointer_type_info::~__pointer_type_info): Likewise.
12550         (__reference_type_info::~__reference_type_info): Likewise.
12551         (__array_type_info::~__array_type_info): Likewise.
12552         (__function_type_info::~__function_type_info): Likewise.
12553         (__enum_type_info::~__enum_type_info): Likewise.
12554         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
12555         (__pointer_type_info::do_catch): Define new function.
12556         (__ptr_to_member_type_info::do_catch): Define new function.
12557
12558         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
12559         (__is_pointer): Likewise.
12560
12561         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
12562
12563 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
12564
12565         * cp/class.c (build_vtable): Rename to build_primary_vtable.
12566         (prepare_fresh_vtable): Rename to build_secondary_vtable.
12567         (make_new_vtable): New function.
12568         (modify_vtable_entry): Handle generation of new vtables correctly.
12569         (modify_one_vtable): Remove unused parameter.
12570         (dfs_fixup_vtable_deltas): Likewise.
12571         (override_one_vtable): Use build_secondary_vtable.
12572         (finish_struct_1): Use build_primary_vtable and
12573         build_secondary_vtable.
12574
12575 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
12576
12577         * cp/decl.c: Adjust variable names, comments, help strings.
12578
12579 2000-01-29  Nathan Sidwell  <nathan@acm.org>
12580
12581         * new2.cc (operator delete[]): Use operator delete, don't assume
12582         implementation.
12583
12584 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
12585
12586         * class.c (build_vtbl_initializer): Add argument to
12587         build_vtable_entry call.
12588
12589 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
12590
12591         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
12592         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
12593         (BF_DELTA): New macro.
12594         (BF_VCALL_INDEX): Likewise.
12595         (BF_FN): Likewise.
12596         (THUNK_VCALL_OFFSET): Likewise.
12597         (make_thunk): Change prototype.
12598         * class.c (build_vtable_entry): Integrate
12599         build_vtable_entry_for_fn.  Handle vcall indices.
12600         (build_vtable_entry_for_fn): Remove.
12601         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
12602         BF_VCALL_INDEX, BF_FN.
12603         (modify_vtable_entry): Integrate common code from
12604         modify_one_vtable and dfs_fixup_vtable_deltas.
12605         (add_virtual_function): Set BF_VCALL_INDEX.
12606         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
12607         and BF_FN.
12608         (modify_one_vtable): Simplify.
12609         (dfs_fixup_vtable_deltas): Likewise.
12610         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
12611         * method.c (make_thunk): Handle vcall indices.
12612
12613 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
12614
12615         Compiler side new abi rtti (not enabled).
12616         * cp-tree.h (new_abi_rtti_p): New macro.
12617         (emit_support_tinfos): Prototype new function.
12618         (tinfo_decl_p): Likewise.
12619         (emit_tinfo_decl): Likwise.
12620         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
12621         macros.
12622         (doing_runtime): New local static.
12623         (init_rtti_processing): Add new-abi initializer.
12624         (get_tinfo_decl): Add new-abi logic.
12625         (tinfo_from_decl): Likewise.
12626         (build_dynamic_cast_1): Likewise.
12627         (qualifier_flags): New static function.
12628         (tinfo_base_init): Likewise.
12629         (generic_initializer): Likewise.
12630         (ptr_ref_initializer): Likewise.
12631         (ptmd_initializer): Likewise.
12632         (class_hint_flags): Likewise.
12633         (class_initializer): Likewise.
12634         (synthesize_tinfo_var): Likewise.
12635         (create_real_tinfo_var): Likewise.
12636         (create_pseudo_type_info): Likewise.
12637         (get_vmi_pseudo_type_info): Likewise.
12638         (create_tinfo_types): Likewise.
12639         (emit_support_tinfos): New global function.
12640         (tinfo_decl_p): New global predicate.
12641         (emit_tinfo_decl): New global function.
12642         * class.c (set_rtti_entry): Generalize for old and new rtti.
12643         (build_vtbl_initializer): Likewise.
12644         * decl2.c (finish_file): Likewise.
12645
12646 Thu Jan 27 20:53:36 2000  Jim Wilson  <wilson@cygnus.com>
12647
12648         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
12649         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
12650
12651 Thu Jan 27 13:54:12 2000  Mike Stump  <mrs@wrs.com>
12652
12653         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
12654         for scopes.
12655
12656 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
12657
12658         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
12659
12660 Wed Jan 26 22:19:14 2000  J"orn Rennecke <amylaar@cygnus.co.uk>
12661
12662         * optimize.c (calls_setjmp_r): Supply new argument
12663         to special_function_p.
12664
12665 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12666
12667         * call.c: PROTO -> PARAMS.
12668         * class.c: Likewise.
12669         * cp-tree.h: Likewise.
12670         * cvt.c: Likewise.
12671         * decl.c: Likewise.
12672         * decl.h: Likewise.
12673         * decl2.c: Likewise.
12674         * dump.c: Likewise.
12675         * errfn.c: Likewise.
12676         * error.c: Likewise.
12677         * except.c: Likewise.
12678         * expr.c: Likewise.
12679         * init.c: Likewise.
12680         * input.c: Likewise.
12681         * lex.c: Likewise.
12682         * lex.h: Likewise.
12683         * method.c: Likewise.
12684         * optimize.c: Likewise.
12685         * parse.y: Likewise.
12686         * pt.c: Likewise.
12687         * repo.c: Likewise.
12688         * rtti.c: Likewise.
12689         * search.c: Likewise.
12690         * semantics.c: Likewise.
12691         * spew.c: Likewise.
12692         * tree.c: Likewise.
12693         * typeck.c: Likewise.
12694         * typeck2.c: Likewise.
12695         * xref.c: Likewise.
12696
12697 2000-01-25  Richard Henderson  <rth@cygnus.com>
12698
12699         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
12700
12701 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
12702
12703         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
12704         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
12705         (struct vcall_offset_data_s): New type.
12706         (dfs_vcall_offset_queue_p): New function.
12707         (dfs_build_vcall_offset_vtbl_entries): Likewise.
12708         (build_vcall_offset_vtbl_entries): Likewise.
12709         (layout_vtable_decl): Likewise.
12710         (num_vfun_entries): Likewise.
12711         (num_extra_vtbl_entries): Add the entries for vcall offsets.
12712         (build_vtbl_initializer): Likewise.
12713         (dfs_finish_vtabls): Use layout_vtable_decl.
12714         (modify_one_vtables): Always duplicate vtables under the new ABI.
12715         (finish_struct_1): Use layout_vtable_decl.
12716
12717 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12718
12719         * decl.c (member_function_or_else): Change third arg from a format
12720         specifier to an `enum overload_flags'.  Callers changed.
12721
12722 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
12723
12724         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
12725         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
12726         build_const_cast, get_delta_difference, check_return_expr): Avoid
12727         ANSI string concatenation usage.
12728
12729 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
12730
12731         * class.c (layout_class_type): Put the fields required to make a
12732         class non-empty at the end, not the beginning, of the TYPE_FIELDs
12733         list.
12734
12735 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
12736
12737         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
12738         template.
12739
12740         * decl2.c (mark_used): Do instantiate inlines that have been
12741         explicitly instantiated.
12742
12743 2000-01-24  Richard Henderson  <rth@cygnus.com>
12744
12745         * call.c (build_over_call): Use expand_tree_builtin.
12746         * typeck.c (build_function_call_real): Likewise.
12747         (build_binary_op_nodefault): Handle unordered compares.
12748
12749 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
12750
12751         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
12752         cp_tree_index values.
12753         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
12754         New global node #defines for them.
12755         * rtti.c (call_void_fn): Replace with ...
12756         (build_runtime_decl): ... new static function.
12757         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
12758         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
12759         (build_dynamic_cast_1): Always produce correctly typed result.
12760         Explicitly produce type_info addresses. Use dynamic_cast_node.
12761         * exception.cc (__throw_bad_cast): Return `void *'.
12762         (__throw_bad_typeid): Return `const type_info &'.
12763
12764 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
12765
12766         * cp-tree.h (get_vtable_decl): Prototype new function.
12767         * class.c (get_vtable_decl): New function. Broken out from ...
12768         (build_vtable): ... here. Use it.
12769         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
12770         by get_vtable_decl.
12771
12772 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
12773
12774         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
12775         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
12776         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
12777         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
12778         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
12779         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
12780         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
12781         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
12782         (CPTI_TINFO_VAR_ID): New enumeration.
12783         (__tp_desc_type_node, __access_mode_type_node,
12784         __bltn_desc_type_node, __user_desc_type_node,
12785         __class_desc_type_node, __ptr_desc_type_node,
12786         __attr_desc_type_node, __func_desc_type_node,
12787         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
12788         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
12789         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
12790         enum_desc_type_node, class_desc_type_node,
12791         si_class_desc_type_node, vmi_class_desc_type_node,
12792         ptmd_desc_type_node, base_desc_type_node): New #defines.
12793         (tinfo_fn_id, tinfo_fn_type): Rename to ...
12794         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
12795         (tinfo_var_id): New enumeration.
12796         (DECL_TINFO_FN_P): Augment comment.
12797         * decl.c (cp_global_trees): Adjust documentation.
12798         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
12799         tinfo_decl_type and tinfo_var_id.
12800         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
12801         (build_typeid): Remove unused variable.
12802         (get_tinfo_var): Use tinfo_var_id.
12803         (tinfo_name): New static function.
12804         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
12805         (tinfo_from_decl): Likewise.
12806         (get_base_offset): New static function, broken out of
12807         expand_class_desc.
12808         (expand_si_desc): Use tinfo_name.
12809         (expand_class_desc): Likewise. Lose local static variable.
12810         Use base_desc_type_node. Use get_base_offset.
12811         (expand_ptr_desc): Use tinfo_name.
12812         (expand_attr_desc): Likewise.
12813         (expand_generic_desc): Likewise.
12814
12815         * tinfo.cc (__GXX_ABI_VERSION): Test value and existence.
12816         * tinfo.h (__GXX_ABI_VERSION): Test value and existence.
12817
12818 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
12819
12820         * cp-tree.h (__eprintf): Remove declaration.
12821         * tree.c (__eprintf): Remove definition.
12822
12823 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
12824             Mark Mitchell  <mark@codesourcery.com>
12825
12826         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
12827         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
12828
12829 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
12830
12831         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
12832
12833 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
12834
12835         * cp-tree.h (register_dtor_fn): New function.
12836         * decl.c (destroy_local_static): Rename to ...
12837         (register_dtor_fn): ... this.  Give it external linkage.
12838         (expand_static_init): Use it.
12839         * decl2.c (do_static_initialization): Likewise, if using
12840         __cxa_atexit.
12841         (do_static_destruction): Check that __cxa_atexit is not in use.
12842         (finish_file): Don't call do_static_destruction if using
12843         __cxa_atexit.
12844
12845         * typeck.c (convert_arguments): Restore two-message error
12846         reporting.
12847
12848 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
12849
12850         Remap dynamic cast hint values to be consistent across ABIs.
12851         * search.c (dynamic_cast_base_recurse): Remap generated value.
12852         (get_dynamic_cast_base_type): Adjust documentation.
12853         * tinfo.h (__user_type_info::dyncast): Likewise.
12854         (__user_type_info::find_public_subobj): Remap BOFF meaning.
12855         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
12856         (__class_type_info::do_dyncast): Likewise.
12857         (__class_type_info::do_find_public_subobj): Likewise.
12858         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
12859
12860 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
12861
12862         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
12863
12864         * typeck2.c (incomplete_type_error): Restore previous
12865         cp_error and cp_error_at call sequence.
12866
12867 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
12868
12869         * class.c (dump_class_hierarchy): Make format agree with argument;
12870         cast pointer to unsigned long and print with %lx.
12871
12872 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
12873
12874         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
12875
12876         * typeck.c (composite_pointer_type, common_type,
12877         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
12878         build_function_call_real, convert_arguments,
12879         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
12880         build_unary_op, mark_addressable, build_compound_expr,
12881         build_static_cast, build_reinterpret_cast, build_const_cast,
12882         build_c_cast, build_modify_expr, get_delta_difference,
12883         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
12884         'ISO C++'.  Fusion consecutive calls to diagnostic message routines
12885         into a single one.
12886         * typeck2.c (readonly_error, abstract_virtuals_error,
12887         process_init_constructor, check_for_new_type): Likewise.
12888
12889 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
12890
12891         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
12892         VAR_DECLs.
12893
12894 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
12895
12896         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
12897         (build_x_typeid): Likewise.
12898         (get_tinfo_fn): Likewise.
12899         (get_tinfo_fn_unused): Rename to ...
12900         (get_tinfo_decl): ... here.
12901         * rtti.c (build_headof): Replace logic error with assertion.
12902         (get_tinfo_fn_dynamic): Rename to ...
12903         (get_tinfo_decl_dynamic): ... here. Make static. Use
12904         complete_type_or_else.
12905         (build_x_typeid): Move into ...
12906         (build_typeid): ... here. Adjust call to
12907         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
12908         throw_bad_typeid expression.
12909         (get_tinfo_fn_unused): Rename to ...
12910         (get_tinfo_decl): ... here. Adjust comment.
12911         (get_tinfo_fn): Delete.
12912         (tinfo_from_decl): New static function.
12913         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
12914         (get_typeid): Use complete_type_or_else.
12915         (build_dynamic_cast_1): Adjust calls to
12916         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
12917         * parse.y (primary): Adjust call to build_typeid.
12918         * except.c (build_eh_type_type_ref): Adjust call to
12919         get_tinfo_decl. Mark as used.
12920         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
12921         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
12922         * parse.c: Regenerated.
12923
12924 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
12925
12926         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
12927         calling convention.
12928         (resolves_to_fixed_type_p): Document calling convention.
12929         * rtti.c (build_x_typeid): Initialize NONNULL.
12930
12931         * cp-tree.h (build_shared_int_cst): New function.
12932         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
12933         * class.c (modify_vtable_entry): Likewise.
12934         (add_virtual_function): Split out code to generated shared
12935         INTEGER_CSTs to build_share_int_cst.
12936         (modify_all_vtables): Handle all the overridden functions here.
12937         Add overridden functions from non-primary virtual bases to the
12938         primary vtable.
12939         (finish_struct_1): Adjust call to modify_all_vtables.  Add
12940         overridden functions from non-primary bases to the vtable.
12941         * tree.c (build_shared_int_cst): New function.
12942
12943         * cp-tree.h (scratchalloc): Remove.
12944         (build_scratch_list): Likewise.
12945         * call.c (convert_class_to_reference): Replace build_scratch_list
12946         and build_expr_list with build_tree_list.
12947         (add_candidate): Replace scratchalloc with expralloc.  Note memory
12948         leak.
12949         (build_user_type_conversion_1):  Replace build_scratch_list
12950         and build_expr_list with build_tree_list.
12951         (build_new_op): Likewise.
12952         (build_op_delete_call): Likewise.
12953         (convert_like): Likewise.
12954         * cvt.c (ocp_convert): Likewise.
12955         * decl.c (start_decl): Likewise.
12956         (start_function): Likewise.
12957         (finish_destructor_body): Likewise.
12958         (maybe_build_cleanup_1): Likewise.
12959         * decl2.c (reparse_decl_as_expr): Likewise.
12960         * init.c (perform_member_init): Likewise.
12961         (expand_cleanup_for_base): Likewise.
12962         (build_builtin_delete_call): Likewise.
12963         (build_new_1): Likewise.
12964         (build_delete): Likewise.
12965         * method.c (do_build_assign_ref): Likewise.
12966         * parse.y (already_scoped_stmt): Likewise.
12967         (nontrivial_exprlist): Likewise.
12968         (net_initializer): Likewise.
12969         (initlist): Likewise.
12970         * parse.c: Regenerated.
12971         * rtti.c (build_x_typeid): Likewise.
12972         (build_dynamic_cast_1): Likewise.
12973         * typeck.c (build_x_compound_expr): Likewise.
12974         (build_static_cast): Likewise.
12975         (build_modify_expr): Likewise.
12976
12977         * cp-tree.h (DECL_VINDEX): Add documentation.
12978         * class.c (build_vtable_entry): Likewise.
12979         (start_vtable): Add comment.
12980         (add_virtual_function): Replace pending_hard_virtuals with
12981         overridden_virtuals and pending_virtuals with new_virtuals.
12982         Replace redundant assignments with assertions.
12983         (check_for_override): Add comment.
12984         (check_bases_and_members): Replace pending_hard_virtuals with
12985         overridden_virtuals and pending_virtuals with new_virtuals.
12986         (create_vtbl_ptr): Likewise.
12987         (layout_class_type): Likewise.
12988         (finish_struct_1): Likewise.  Add comments.
12989
12990 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
12991
12992         * class.c (finish_struct_1): Replace redundant code with
12993         assertions.
12994
12995         * cp-tree.h (flag_new_abi): Move.
12996         (flag_use_cxa_atexit): Likewise.
12997         (flag_honor_std): Likewise.
12998         (flag_rtti): Likewise.
12999         (vbase_offsets_in_vtable_p): Define.
13000         (vptrs_present_everywhere_p): Likewise.
13001         (TYPE_CONTAINS_VPTR_P): Likewise.
13002         (dfs_walk_real): Declare.
13003         * class.c (build_vbase_pointer_fields): Check
13004         vbase_offsets_in_vtable_p.
13005         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
13006         BINFO_VPTR_FIELD.
13007         (build_vbase_offset_vtbl_entries): Simplify.
13008         (build_vbase_offset_vtbl_entries): Adjust.
13009         (build_vbase_pointer): Add ability to look up vbase offsets in
13010         vtable.
13011         (start_vtable): New function.
13012         (add_virtual_function): Use it.
13013         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
13014         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
13015         (build_vtbl_initializer): Take the type of the complete object as
13016         input.  Use it to correctly calculate vbase offsets.
13017         (dfs_finish_vtbls): Pass the complete type to
13018         build_vtbl_initializer.
13019         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
13020         (create_vtable_ptr): Create a vtable even if there are no
13021         new virtual functions, under the new ABI.
13022         (finish_struct_1): Likewise.
13023         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
13024         * decl.c (exapnd_static_init): Remove call to
13025         preserve_initializer.
13026         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
13027         vtables.
13028         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
13029         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
13030         (construct_virtual_bases): Don't initialize virtual base pointers
13031         under the new ABI.
13032         (build_aggr_init): Clean up comment.
13033         (expand_aggr_init_1): Likewise.
13034         * rtti.c (expand_class_desc): Store the virtual function table
13035         index where the vbase offset lives in the offset field.
13036         * search.c (dfs_walk_real): Make it global.
13037         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
13038         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
13039
13040         * tinfo.h (USItype): Make it signed under the new ABI.
13041         * tinfo.cc (convert_to_base): New function.  Encapsulate base
13042         conversion logic here.
13043         (__class_type_info::do_upcast): Use it.
13044         (__class_type_info::do_dyncast): Likewise.
13045         (__class_type_info::do_find_public_subobj): Likewise.
13046
13047         * init.c (construct_virtual_bases): Don't look up the addresses of
13048         virtual bases at run-time.
13049
13050         * class.c (build_vbase_pointer): Relocate.
13051         (build_vbase_pointer_fields): Likewise.
13052         (dfs_build_vbase_offset_vtbl_entries): Likewise.
13053         (build_vbase_offset_vtbl_entries): Likewise.
13054
13055         * decl.c (init_decl_processing): Complain if -fnew-abi
13056         -fno-vtable-thunks is used.
13057
13058         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
13059         flag_new_abi.
13060
13061 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
13062
13063         * cp-tree.h (num_extra_vtbl_entries): New function.
13064         (size_extra_vtbl_entries): Likewise.
13065         (dfs_vtable_path_unmark): Likewise.
13066         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
13067         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
13068         * class.c (num_extra_vtbl_entries): New function.
13069         (size_extra_vtbl_entries): Likewise.
13070         (dfs_build_vbase_offset_vtbl_entries): New function.
13071         (build_vbase_offset_vtbl_entries): Likewise.
13072         (build_vtbl_initializer): Use it.
13073         (finish_struct_1): Adjust vtable sizes (using
13074         num_extra_vtbl_entries).
13075         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
13076         THUNK_DECL is non-NULL before expanding it.
13077         * init.c (expand_virtual_init): Adjust the vtable pointer by
13078         size_extra_vtbl_entries before storing it.
13079         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
13080         Handle TREE_LIST parameters here, not in the dfs_* functions.
13081         (dfs_unmarked_real_bases_queue_p): Adjust.
13082         (dfs_marked_real_bases_queue_p): Likewise.
13083         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
13084         (dfs_vtable_path_marked_real_bases_queue_p): New function.
13085         (dfs_vtable_path_unmark): Likewise.
13086
13087 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
13088
13089         * optimize.c (copy_body_r): Clear the operand three of a
13090         TARGET_EXPR when copying it.
13091
13092 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13093
13094         * method.c (build_decl_overload_real): Check whether we are in ::
13095         before returning __builtin_new/delete.
13096
13097 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
13098
13099         * pt.c (tsubst_friend_function): Improve comment.
13100         (instantiate_decl): Avoid crashing when a "nested" function is
13101         instantiated from the top level.
13102
13103         * dump.c (dqeueue_and_dump): Dump
13104         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
13105
13106 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13107
13108         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
13109
13110 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
13111
13112         * g++spec.c (lang_specific_driver): Add -fnew-abi if
13113         ENABLE_NEW_GXX_ABI defined.
13114         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
13115         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
13116         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
13117
13118 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
13119
13120         * decl.c (start_cleanup_fn): Call pushdecl.
13121
13122         * call.c (convert_class_to_reference): Fix typos.
13123         (build_conditional_expr): Handle errors gracefully.
13124         * class.c (push_nested_class): Likewise.
13125         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
13126         (DECL_THIS_EXTERN): Use it.
13127         (DECL_THIS_STATIC): Likewise.
13128         * cvt.c (convert_to_void): Handle errors gracefully.
13129         (build_expr_type_conversion): Likewise.
13130         * decl.c (maybe_push_decl): Likewise.
13131         (start_decl_1): Likewise.
13132         (require_complete_types_for_parms): Likewise.
13133         * parse.y (structsp): Likewise.
13134         (base_class): Likewise.
13135         * parse.c: Regenerated.
13136         * pt.c (finish_member_template_decl): Likewise.
13137         * typeck.c (decay_conversion): Likewise.
13138
13139         * cp-tree.h (dfs_skip_vbases): New function.
13140         (find_vbase_instance): Likewise.
13141         * class.c (determine_primary_base): Allow a nearly empty base to
13142         serve as a primary base class under the new ABI.
13143         (get_class_offset_1): Rename to ...
13144         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
13145         messages here.
13146         (get_class_offset): Use it.  Issue error messages here.
13147         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
13148         find the right copies of virtual bases.
13149         (fixup_vtable_deltas1): Rename to ...
13150         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
13151         bases as primary bases.
13152         (fixup_vtable_deltas): Remove.
13153         (override_one_vtable): Handle virtual bases as primary bases.
13154         (merge_overrides): Likewise.
13155         (finish_struct_1): Likewise.
13156         (dump_class_hierarchy): Dump primary-ness of bases as well.
13157         * search.c (mark_primary_bases): Use a pre-order traversal to
13158         handle primary virtual bases.
13159         (dfs_skip_vbases): New fiunction.
13160         (expand_upcast_fixups): Adjust to handle primary virtual bases.
13161         (fixup_virtual_upcast_offsets): Likewise.
13162         (fixup_all_virtual_upcast_offsets): Likewise.
13163         (dfs_find_vbase_instances): New function.
13164         (find_vbase_instance): Likewise.
13165
13166 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
13167
13168         * lex.c (DIR_SEPARATOR): Delete macro.
13169
13170 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
13171
13172        * decl2.c (lang_decode_option): Handle automatic line wrapping
13173        option.
13174
13175 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
13176
13177         * friend.c (do_friend): Don't resolve scopes when processing
13178         template declarations, even if the qualifying scope doesn't
13179         involve template parameters.
13180
13181 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
13182
13183         * class.c (dfs_modify_vtables_queue_p): Remove.
13184         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
13185         and dfs_marked_real_bases_queue_p instead of
13186         dfs_modify_vtables_queue_p.
13187
13188         * class.c (build_vbase_path): Simplify.
13189         (dfs_propagate_binfo_offsets): New function.
13190         (propagate_binfo_offsets): Use it.
13191         (remove_base_field): Simplify.
13192         (dfs_set_offset_for_vbases): Remove.
13193         (dfs_set_offset_for_shared_vbases): New function.
13194         (dfs_set_offset_for_unshared_vbases): Likewise.
13195         (layout_virtual_bases): Use them.
13196         (layout_basetypes): Don't call propagate_binfo_offsets.
13197         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
13198         for the vbases.
13199
13200         * class.c (build_base_field): New function, split out from ...
13201         (build_base_fields): ... here.  Use it.  Allocate primary bases
13202         first, under the new ABI.
13203         (get_vtable_entry): Remove.
13204         (remove_base_field): New function, split out from ...
13205         (remove_base_fields): ... here.  Adjust since primary bases come
13206         first under the new ABI.
13207
13208         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
13209         (initialize_vtbl_ptrs): New function.
13210         (expand_indirect_vtbls_init): Change prototype.
13211         (convert_pointer_to_vbase): Declare.
13212         * init.c (expand_direct_vtbls_init): Remove.
13213         (dfs_initialize_vtbl_ptrs): New function.
13214         (initialize_vtbl_ptrs): Likewise.
13215         (emit_base_init): Use initialize_vtbl_ptrs.
13216         * search.c (convert_pointer_to_vbase): Make it global.
13217         (expand_indirect_vtbls_init): Remove vtable initialization code.
13218         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
13219
13220         * class.c (dfs_finish_vtbls): New function.
13221         (finish_vtbls): Use it.
13222         (dump_class_hierarchy): New function.
13223
13224         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
13225         (BINFO_VBASE_PRIMARY_P): New macro.
13226         (BINFO_VIRTUALS): Add to documentation.
13227         (SET_BINFO_PRIMARY_MARKED_P): Remove.
13228         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13229         (dfs_mark_primary_bases_queue_p): Likewise.
13230         (dfs_unmarked_real_bases_queue_p): New function.
13231         (dfs_marked_real_bases_queue_p): Likewise.
13232         * search.c (dfs_mark_primary_bases): Adjust.
13233         (mark_primary_bases): Likewise.
13234         (get_shared_vbase_if_not_primary): New function.
13235         (dfs_unmarked_real_bases_queue_p): Likewise.
13236         (dfs_marked_real_bases_queue_p): Likewise.
13237         (dfs_get_pure_virtuals): Simplify.
13238         (get_pure_virtuals): Likewise.
13239
13240 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13241
13242         * lex.c: Include tm_p.h.
13243
13244 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
13245
13246         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
13247
13248 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
13249
13250         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
13251         * pt.c (instantiate_decl): Defer comdat templates that might not be
13252         needed.
13253
13254         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
13255         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
13256         (finish_file): Likewise.
13257
13258         * decl2.c (import_export_class): Undo 12/14 change.
13259
13260         * error.c (dump_decl): operator new, not operatornew.
13261
13262         * class.c (field_decl_cmp): A nontype is "greater" than a type.
13263         * search.c (lookup_field_1): Look for the last field with the
13264         desired name.
13265
13266 2000-01-05  Nathan Sidwell  <nathan@acm.org>
13267
13268         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
13269         FUNCTION_DECL.
13270
13271 2000-01-05  Nathan Sidwell  <nathan@acm.org>
13272
13273         * typeck.c (build_static_cast): Don't strip target qualifiers
13274         when casting from a class.
13275
13276 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13277
13278         * class.c (warn_hidden): Initialize variable `fndecl'.
13279
13280 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
13281
13282         * decl.c (flag_isoc9x): New variable to be able to use code in
13283         c-common.c.  For now always zero.
13284
13285 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
13286
13287         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
13288         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
13289         or unshare_base_binfos for virtual bases here.
13290         * search.c (dfs_get_vbase_types): Do it here.
13291         (get_vbase_types): Adjust.
13292
13293 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
13294
13295         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
13296         (BINFO_PRIMARY_MARKED_P): Use flag 5.
13297         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
13298         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13299         (unmark_primary_bases): Remove declaration.
13300         (unmarkedp): Declare.
13301         (dfs_vbase_unmark): Likewise.
13302         * class.c (determine_primary_base): Return immediately if there
13303         are no base classes.  Call mark_primary_bases here.
13304         (modify_all_direct_vtables): Remove.
13305         (modify_all_indirect_vtables): Remove.
13306         (dfs_modify_vtables_queue_p): New function.
13307         (dfs_modify_vtables): New function.
13308         (modify_all_vtables): Use them.
13309         (build_base_fields): Build FIELD_DECLs for primary virtual base
13310         classes.
13311         (create_vtable_ptr): Don't call determine_primary_base here.
13312         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
13313         (dfs_set_offset_for_vbases): ... this.
13314         (layout_virtual_bases): Use it.
13315         (layout_class_type): Call determine_primary_base here.
13316         * search.c (unmarkedp): Make it global.
13317         (shared_marked_p): Simplify.
13318         (shared_unmarked_p): Likewise.
13319         (dfs_primary_bases_queue_p): Remove.
13320         (dfs_unmark_primary_bases): Likewise.
13321         (unmark_primary_bases): Likewise.
13322         (mark_primary_bases): Simplify.
13323         (get_pure_virtuals): Don't call mark_primary_bases here.
13324         (dfs_vbase_unmark): New function.
13325         (get_vbase_types): Simplify.
13326
13327         * class.c (struct base_info): Remove.
13328         (determine_primary_base): Take has_virtual_p rather than a
13329         base_info as input.  Don't calculate max_has_virtual.
13330         (finish_struct_bits): Remove max_has_virtual argument.
13331         (create_vtable_ptr): Remove max_has_virtual_p argument.
13332         (layout_virtual_bases): Remove max argument.
13333         (layout_basetypes): Likewise.
13334         (layout_class_type): Remove max_has_virtual_p argument.
13335         (finish_struct_1): Remove max_has_virtual.
13336
13337         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
13338         (layout_basetypes): Remove.
13339         * class.c (propagate_binfo_offsets): Moved here from tree.c.
13340         Update to handle primary virtual bases.
13341         (remove_base_fields): New function, split out from
13342         layout_basetypes.
13343         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
13344         (layout_virtual_bases): New function, split out from
13345         layout_basetypes.  Update to handle primary virtual bases.
13346         (layout_basetypes): Moved here from tree.c.  Use
13347         remove_base_fields and layout_virtual_bases.
13348         * search.c (dfs_mark_primary_bases_queue_p): New function.
13349         (mark_primary_bases): Use it.
13350         * tree.c (CEIL): Remove.
13351         (propagate_binfo_offsets): Remove.
13352         (layout_basetypes): Remove.
13353
13354 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
13355
13356         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
13357         (BINFO_PRIMARY_MARKED_P): New macro.
13358         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
13359         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
13360         (mark_primary_bases): New function.
13361         (unmark_primary_bases): Likewise.
13362         * search.c (get_abstract_virtuals_1): Remove.
13363         (dfs_mark_primary_bases): New function.
13364         (mark_primary_bases): Likewise.
13365         (dfs_unmark_primary_bases): Likewise.
13366         (unmark_primary_bases): Likewise.
13367         (dfs_get_pure_virtuals): Likewise.
13368
13369 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
13370
13371         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
13372         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
13373         (modify_one_vtable): Adjust.
13374         (fixup_vtable_deltas1): Likewise.
13375         (override_one_vtable): Likewise.
13376         * search.c (get_abstract_virtuals_1): Likewise.
13377         (get_pure_virtuals): Likewise.
13378         (expand_upcast_fixups): Likewise.
13379         * tree.c (debug_binfo): Likewise.
13380
13381         * class.c (build_vtable): Don't return a value.  Don't rebuild
13382         vtables for bases that have already been handled.
13383         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
13384         already been handled.
13385         (modify_one_vtable): Adjust accordingly.
13386         (fixup_vtable_deltas1): Likewise.
13387         (finish_struct_1): Likewise.
13388
13389 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
13390
13391         * call.c (build_new_method_call): Also check destructors.