Fix typo.
[official-gcc.git] / gcc / cp / ChangeLog
blob60aaf369e5fcafb7b82dd4f3ad8811a008593d81
1 2003-09-07  Gabriel Dos Reis  <gcc@integrable-solutions.net>
3         PR c++/11762
4         * error.c (dump_decl): Handle namespace-alias-definition.
5         * decl.c (warn_extern_redeclared_static): There is no point in
6         checking changes in storage class specifier for a namespace
7         declaration. 
8         (duplicate_decls): Tidy diagnostic message.
9         * cxx-pretty-print.c (pp_cxx_left_brace): New macro.
10         (pp_cxx_right_brace): Likewise.
11         (pp_cxx_original_namespace_definition): New function.
12         (pp_cxx_namespace_alias_definition): Likewise.
13         (pp_cxx_declaration): Use them.  Handle NAMESPACE_DECLs.
15 Sun Sep  7 13:15:14 CEST 2003  Jan Hubicka  <jh@suse.cz>
17         * decl2.c (maybe_emit_vtables, write_out_vars, finish_file):
18         Avoid re-emitting variables in unit-at-a-time mode.
20 2003-09-06  Mark Mitchell  <mark@codesourcery.com>
22         PR c++/11867
23         * call.c (standard_conversion): Improve comments.
24         (perform_direct_initialization): Make sure we return an expression
25         of the correct type.
26         * typeck.c (build_static_cast): Check for ambiguity and
27         accessibility when performing conversions.
29 2003-09-06  Gabriel Dos Reis  <gdr@integrable-solutions.net>
31         * cp-tree.h (add_binding): Remove declaration.
32         * name-lookup.h (supplement_binding): Declare.
33         * decl.c (add_binding): Move to name-lookup.c.
34         (push_local_binding): Adjust.
35         (push_class_binding): Likewise.
36         (set_identifier_type_value_with_scope): Likewise.
37         * name-lookup.c (supplement_binding): Rename from add_binding.
38         Return a bool.  Improve documentation. 
39         (set_namespace_binding): Adjust.
40         * Make-lang.in (cp/name-lookup.o): Depend on toplev.h
42 2003-09-06  Nathan Sidwell  <nathan@codesourcery.com>
44         PR c++/11794
45         * class.c (pushclass): Push dependent using decls for nested
46         classes of templates too.
48 2003-09-06  Roger Sayle  <roger@eyesopen.com>
50         PR c++/11409
51         * class.c (resolve_address_of_overloaded_function): When building
52         list of matching non-template function decls, ignore anticipated
53         declarations of undeclared or shadowed GCC builtins.
55 2003-09-06  Steven Bosscher  <steven@gcc.gnu.org>
57         PR c++/11595
58         * decl.c (define_label): Remove unreachable timevar pop.
59         Always return the decl, even if the definition is invalid.
61 2003-09-06  Nathan Sidwell  <nathan@codesourcery.com>
63         PR c++/12167
64         * parser.c (cp_parser_late_parsing_default_args): Push & pop the
65         unparsed functions queue.
67 2003-09-05  Mark Mitchell  <mark@codesourcery.com>
69         PR c++/12163
70         * call.c (perform_direct_initialization): Correct logic for
71         direct-initialization of a class type.
73         PR c++/12146
74         * pt.c (lookup_template_function): Robustify.
76 2003-09-05  Nathan Sidwell  <nathan@codesourcery.com>
78         PR c++/11922
79         * pt.c (tsubst_qualified_id): Make sure we get a non-type.
80         (tsubst_expr, tsubst_copy_and_build): Pass false, not zero, as
81         is_type_p to lookup_qualified_name.
83         * semantics.c (finish_call_expr): Refactor some code.
85         PR c++/12037
86         * cp-tree.h (COMPOUND_EXPR_OVERLOADED): New.
87         (build_min_non_dep): Declare.
88         * tree.c (build_min): Propagate TREE_SIDE_EFFECTS.
89         (build_min_non_dep): New.
90         * cvt.c (convert_to_void): Don't explicitly copy
91         TREE_SIDE_EFFECTS, TREE_NO_UNUSED_WARNING.
92         * call.c (build_new_method_call): Use build_min_non_dep.
93         * decl2.c (grok_array_decl): Likewise.
94         (build_offset_ref_call_from_tree): Likewise.
95         * typeck.c (finish_class_member_access_expr,
96         build_x_indirect_ref, build_x_binary_op, build_x_unary_op,
97         build_x_conditional_expr, build_x_compound_expr): Likewise.
98         (build_static_cast, build_reinterpret_cast,
99         build_const_cast): Propagate TREE_SIDE_EFFECTS inside a template.
100         * typeck2.c (build_x_arrow): Use build_min_non_dep.
101         (build_functional_cast): Propagate TREE_SIDE_EFFECTS inside a
102         template.
103         * rtti.c (build_dynamic_cast_1): Set DECL_IS_PURE.
104         (build_dynamic_cast): Set TREE_SIDE_EFFECTS.
105         * pt.c (build_non_dependent_expr): Check COMPOUND_EXPR_OVERLOADED.
107 2003-09-04  Richard Henderson  <rth@redhat.com>
109         * decl2.c (mark_member_pointers_and_eh_handlers): Update for
110         change in cgraph_mark_needed_node arguments.
112 2003-09-02  Geoffrey Keating  <geoffk@apple.com>
114         PR 12161
115         * decl2.c (mark_used): Use ggc_push_context/ggc_pop_context.
116         * tree.c (cp_cannot_inline_tree_fn): Likewise.
118 2003-09-04  Nathan Sidwell  <nathan@codesourcery.com>
120         * cp-tree.h (finish_sizeof, finish_alignof): Remove.
121         (expr_sizeof): Replace with ...
122         (cxx_sizeof_or_alignof_expr): ... here.
123         (cxx_sizeof_or_alignof_type): Make complain parameter a bool.
124         * parser.c (cp_parser_unary_expression): Commonize alignof and
125         sizeof handling.
126         * pt.c (tsubst_copy_and_build): Adjust alignof and sizeof
127         substitution.
128         * semantics.c (finish_sizeof, finish_alignof): Remove.
129         * typeck.c (cxx_sizeof_or_alignof_type): Complain parameter
130         becomes bool. Set TREE_READONLY.
131         (expr_sizeof): Replace with ...
132         (cxx_sizeof_or_alignof_expr): ... here. Clear TREE_SIDE_EFFECTS.
134 2003-09-04  Mark Mitchell  <mark@codesourcery.com>
136         Remove cast-as-lvalue extension.
137         * call.c (build_conditional_expr): Correct formatting.
138         (convert_like_real): Use lvalue_p, not non_cast_lvalue_p.
139         (initialize_real): Use real_lvalue_p, not real_non_cast_lvalue_p.
140         * cp-tree.h (non_cast_lvalue_p): Remove.
141         (real_non_cast_lvalue_p): Remove.
142         (non_cast_lvalue_or_else): Remove.
143         * tree.c (lvalue_p_1): Remove allow_cast_as_lvalue parameter.
144         (real_lvalue_p): Adjust call to lvalue_p_1.
145         (non_cast_lvalue_p): Remove.
146         (non_cast_lvalue_or_else): Remove.
147         (lvalue_p): Adjust call to lvalue_p_1.
148         (lvalue_or_else): Simplify.
149         * typeck.c (build_unary_op): Use lvalue_or_else, not
150         non_cast_lvalue_or_else.
151         (build_static_cast): Use real_lvalue_p, not real_non_cast_lvalue_p.
153 2003-09-03  DJ Delorie  <dj@redhat.com>
155         * decl.c (finish_function): Pass fndecl to aggregate_value_p.
157 2003-09-03  Mark Mitchell  <mark@codesourcery.com>
159         PR c++/12053
160         * class.c (include_empty_classes): Correct logic for ABI version 1.
162 2003-09-03  Richard Henderson  <rth@redhat.com>
164         * optimize.c (optimize_function): Push/pop ggc context around
165         the call to optimize_inline_calls.
167 2003-09-02  Scott Brumbaugh  <scottb.lists@verizon.net>
169         PR c++/11553
170         * parser.c (cp_parser_decl_specifier_seq): Add check for a
171         duplicate friend decl-specifier.
173 2003-09-02  Mark Mitchell  <mark@codesourcery.com>
175         PR c++/11847
176         * pt.c (convert_nontype_argument): Correct representation of
177         REFERENCE_TYPE expressions.
179         PR c++/11808
180         * cp-tree.h (KOENIG_LOOKUP_P): New macro.
181         (finish_call_expr): Change prototype.
182         * parser.c (cp_parser_postfix_expression): Adjust call to
183         finish_call_expr.
184         * pt.c (tsubst_copy_and_build): Use KOENIG_LOOKUP_P.
185         * semantics.c (finish_call_expr): Add koenig_p parameter.
187 2003-09-01  Mark Mitchell  <mark@codesourcery.com>
189         PR c++/12114
190         * cp-tree.h (initialize_reference): Change prototype.
191         * call.c (initialize_reference): Add cleanup parameter.
192         * decl.c (grok_reference_init): Likewise.
193         (check_initializer): Likewise.
194         (cp_finish_decl): Insert a CLEANUP_STMT if necessary.
195         (duplicate_decls): When replacing an anticipated builtin, do not
196         honor TREE_NOTHROW.
197         * typeck.c (convert_for_initialization): Correct call to
198         initialize_reference.
200         PR c++/11972
201         * pt.c (dependent_type_p_r): Pass only the innermost template
202         arguments to any_dependent_template_arguments_p.
204 2003-09-01  Josef Zlomek  <zlomekj@suse.cz>
206         * error.c (dump_expr): Kill BIT_ANDTC_EXPR.
207         * lex.c (init_operators): Kill BIT_ANDTC_EXPR.
208         * pt.c (tsubst_copy): Kill BIT_ANDTC_EXPR.
209         * typeck.c (build_binary_op): Kill BIT_ANDTC_EXPR.
210         (tsubst_copy_and_build): Kill BIT_ANDTC_EXPR.
212 2003-08-29  Mark Mitchell  <mark@codesourcery.com>
214         PR c++/12093
215         * pt.c (build_non_dependent_expr): Do not build a
216         NON_DEPENDENT_EXPR for a STRING_CST.
218         PR c++/11928
219         * search.c (add_conversions): Avoid adding two conversion
220         operators for the same type.
222 2003-08-29  Mark Mitchell  <mark@codesourcery.com>
224         PR c++/6196
225         * pt.c (tsubst_copy_and_build): Correct handling of
226         address-of-label extension.
227         * semantics.c (finish_goto_stmt): The address of a label must go
228         through the lvalue-to-rvalue conversion.
230 2003-08-29  Richard Henderson  <rth@redhat.com>
231             Jason Merrill <jason@redhat.com>
233         * cp-lang.c (LANG_HOOKS_RTL_EXPAND_START): New.
234         (LANG_HOOKS_RTL_EXPAND_STMT): New.
235         * cp-tree.h (cxx_expand_function_start): Declare.
236         * decl.c (start_function): Use allocate_struct_function.
237         Move stmts_are_full_exprs_p assertion from expand_body.
238         Do not free_after_parsing or free_after_compilation.
239         (cxx_push_function_context): Move code to set struct function
240         data from genrtl_start_function.
241         * optimize.c (optimize_function): Don't inc/dec function_depth.
242         * semantics.c (expand_body): Use tree_rest_of_compilation.
243         (cxx_expand_function_start): Rename from genrtl_start_function,
244         omit bits done by tree_rest_of_compilation.
245         (genrtl_finish_function): Remove.
246         (clear_decl_rtl): Move to ../tree-optimize.c.
248 2003-08-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
250         PR c++/11811
251         * cxx-pretty-print.c (pp_cxx_canonical_template_parameter): New
252         function. 
253         * cxx-pretty-print.h: Declare.
254         * error.c (dump_template_parameter): Use it.
255         (dump_type): Likewise.
257 2003-08-28  Mark Mitchell  <mark@codesourcery.com>
259         * init.c (decl_constant_value): Deal with COND_EXPR specially.
260         * call.c (build_conditional_expr): Revert previous patch.
262         PR optimization/5079
263         * call.c (build_conditional_expr): Use decl_constant_value to
264         simplify the arguments.
266 2003-08-26  Dan Nicolaescu  <dann@ics.uci.edu>
268         * parser.c (struct cp_token): Use enum bitfields.
269         (CP_TOKEN_BLOCK_NUM_TOKENS): Make sure cp_token_block fits in a
270         512B allocation unit.
271         (cp_parser_token_tree_map_node): Use enum bitfields.
273 2003-08-26  Nathan Sidwell  <nathan@codesourcery.com>
275         PR c++/11871
276         * decl.c (push_class_level_binding): Correct old_decl value from
277         my 2003-07-29 reorganization.
279         * call.c (build_call): Don't set TREE_SIDE_EFFECTS here.
280         (build_new_method_call): Add goto finish.
281         * semantics.c (simplify_aggr_init_exprs_r): Don't set
282         TREE_SIDE_EFFECTS on a call.
284 2003-08-25  Richard Henderson  <rth@redhat.com>
286         * cxx-pretty-print.c (pp_cxx_class_name): Remove unused function.
288 2003-08-25  Gabriel Dos Reis  <gdr@integrable-solutions.net>
290         * cxx-pretty-print.h (pp_cxx_flag_default_argument): New flag.
291         (cxx_pretty_printer): Adjust base type.
292         (pp_cxx_function_specifier): Declare.
293         * cxx-pretty-print.c (pp_cxx_whitespace): New macro.
294         (pp_cxx_left_paren): Likewise.
295         (pp_cxx_right_paren): Likewise.
296         (pp_cxx_dot): Likewise.
297         (pp_cxx_arrow): Likewise.
298         (pp_cxx_semicolon): Likewise.
299         (pp_cxx_identifier): Likewise.
300         (pp_cxx_cv_qualifier_seq): Likewise.
301         (pp_cxx_storage_class_specifier): Likewise.
302         (pp_cxx_expression_list): Likewise.
303         (pp_cxx_space_for_pointer_operator): Likewise.
304         (pp_cxx_init_declarator): Likewise.
305         (pp_cxx_call_argument_list): Likewise.
306         (pp_cxx_nonconsecutive_character): Tidy.
307         (pp_cxx_conversion_function_id): New function.
308         (pp_cxx_template_id): Likewise.
309         (pp_cxx_template_keyword_if_needed): Likewise.
310         (pp_cxx_nested_name_specifier): Likewise.
311         (pp_cxx_unqualified_id): Tidy
312         (pp_cxx_qualified_id): Handle more nodes.
313         (pp_cxx_primary_expression): Tidy.
314         (pp_cxx_postfix_expression): Likewise.
315         (pp_cxx_new_expression): Tidy.
316         (pp_cxx_delete_expression): Likewise.
317         (pp_cxx_cast_expression): New function.
318         (pp_cxx_pm_expression): Tidy.
319         (pp_cxx_conditional_expression): Likewise.
320         (pp_cxx_assignment_operator): New function.
321         (pp_cxx_assignment_expression): Tidy.
322         (pp_cxx_expression): New function.
323         (pp_cxx_function_specifier): Likewise.
324         (pp_cxx_decl_specifier_seq): Likewise.
325         (pp_cxx_simple_type_specifier): Tidy.
326         (pp_cxx_type_specifier_seq): Likewise.
327         (pp_cxx_ptr_operator): New function.
328         (pp_cxx_implicit_parameter_type): Likewise.
329         (pp_cxx_parameter_declaration): Tidy.
330         (pp_cxx_parameter_declaration_clause): New function.
331         (pp_cxx_exception_specification): Likewise.
332         (pp_cxx_direct_declarator): Tidy.
333         (pp_cxx_declarator): Likewise.
334         (pp_cxx_ctor_initializer): New function.
335         (pp_cxx_function_definition): Likewise.
336         (pp_cxx_abstract_declarator): Tidy.
337         (pp_cxx_direct_abstract_declarator): Likewise.
338         (pp_cxx_type_id): Likewise.
339         (pp_cxx_exception_declaration): New function.
340         (pp_cxx_statement): Likewise.
341         (pp_cxx_simple_declaration): Likewise.
342         (pp_cxx_template_parameter_list): Likewise.
343         (pp_cxx_template_parameter): Likewise.
344         (pp_cxx_template_declaration): Likewise.
345         (pp_cxx_explicit_specialization): Likewise.
346         (pp_cxx_explicit_instantiation): Likewise.
347         (pp_cxx_declaration): Tidy.
348         (pp_cxx_pretty_printer_init): Initialize more fields.
350 2003-08-25  Mark Mitchell  <mark@codesourcery.com>
352         PR c++/8795
353         * cp-tree.h (build_cplus_method_type): Remove.
354         * call.c (standard_conversion): Use build_method_type_directly
355         instead of build_cplus_method_type.
356         * class.c (build_clone): Likewise.
357         (adjust_clone_args): Likewise.
358         * decl.c (build_ptrmem_type): Likewise.
359         (grokdeclarator): Likewise.
360         (check_function_type): Likewise.
361         * decl2.c (grok_method_quals): Likewise.
362         (maybe_retrofit_in_chrg): Likewise.
363         * pt.c (copy_default_args_to_explicit_spec): Likewise.
364         (tsubst_function_type): Likewise.
365         (tsubst): Likewise.
366         * tree.c (build_cplus_method_type): Remove.
367         * typeck.c (merge_types): Use build_method_type_directly.
369 2003-08-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
371         PR c++/3765
372         * search.c (dfs_access_in_type): Fix typo in comment.
373         (dfs_accessible_queue_p): Likewise.
374         (dfs_accessible_p): Only terminate when a friend is found.
375         (accessible_p): Return immediately if access_in_type allows
376         access.
378 2003-08-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
380         PR c++/641, c++/11876
381         * friend.c (add_friend): Add complain parameter.
382         (make_friend_class): Likewise.
383         (do_friend): Adjust add_friend call.
384         * decl.c (grokdeclarator): Adjust make_friend_class call.
385         * parser.c (cp_parser_member_declaration): Likewise.
386         (cp_parser_template_declaration_after_exp): Likewise.
387         * pt.c (instantiate_class_template): Adjust make_friend_class
388         and add_friend call.
389         * cp-tree.h (make_friend_class): Adjust declaration.
390         (add_friend): Likewise.
392 2003-08-21  Jason Merrill  <jason@redhat.com>
394         PR c++/11283
395         * call.c (build_conditional_expr): Ignore cv-qual differences for
396         non-class types.
398 2003-08-21  Mark Mitchell  <mark@codesourcery.com>
400         PR c++/11551
401         * parser.c (cp_parser_id_expression): Add declarator_p parameter.
402         (cp_parser_primary_expression): Adjust call to
403         cp_parser_id_expression.
404         (cp_parser_unqualified_id): Complain about the use of
405         typedef-names in a destructor declarator.
406         (cp_parser_postfix_expression): Adjust call to
407         cp_parser_id_expression.
408         (cp_parser_type_parameter): Likewise.
409         (cp_parser_template_argument): Likewise.
410         (cp_parser_declarator_id): Likewise.
412         PR c++/11919
413         * call.c (standard_conversion): Use same_type_p, not pointer
414         equality, to compare types.
416         PR c++/10762
417         * parser.c (cp_parser_using_declaration): Check for invalid uses
418         of template-ids here...
419         * decl2.c (do_class_using_decl): ... rather than here.
421 2003-08-20  Mark Mitchell  <mark@codesourcery.com>
423         PR c++/11834
424         * pt.c (more_specialized): Bump processing_template_decl.
426 2003-08-21  Jason Merrill  <jason@redhat.com>
428         PR c++/11614
429         * decl.c (grokdeclarator): Recognize a flexible array based on the
430         type, not the form of the declarator.
432 2003-08-20  Jason Merrill  <jason@redhat.com>
434         * semantics.c (simplify_aggr_init_expr): Split out from
435         simplify_aggr_init_exprs_r.  Convert slot address to match
436         the return type.
437         * cp-tree.h: Declare it.
438         * tree.c (cp_copy_res_decl_for_inlining): Don't clobber the
439         DECL_NAME of a user variable.
441 2003-08-20  Nathan Sidwell  <nathan@codesourcery.com>
443         PR c++/11945
444         * pt.c (build_non_dependent_expr): Look inside COND_EXPR and
445         COMPOUND_EXPR.
446         * semantics.c (finish_expr_stmt): Always convert to void.
447         * typeck.c (build_x_compound_exp): Always convert to void.
449 2003-08-19  Mark Mitchell  <mark@codesourcery.com>
451         PR c++/11684
452         * cp-tree.h (grok_op_properties): Change prototype.
453         * decl.c (grok_op_properties): Add complain parameter.
454         (grokfndecl): Pass it.
455         * pt.c (tsubst_decl): Adjust accordingly.
457         PR c++/10926
458         * decl.c (start_method): Return immediately if push_template_decl
459         does not like the declaration.
460         * pt.c (push_template_decl_real): Disallow member template
461         destructors.
463         PR c++/11036
464         * cp-tree.h (add_binding): Add prototype.
465         * class.c (add_method): Set TYPE_HAS_DESTRUCTOR if appropriate.
466         (maybe_warn_about_overly_private_class): Use
467         CLASSTYPE_DESTRUCTORS.
468         (pushclass): Adjust call to set_identifier_type_value.
469         * decl.c (add_binding): Give it external linkage.
470         (push_local_binding): Adjust call to add_binding.
471         (push_class_binding): Likewise.
472         (set_identifier_type_value_with_scope): Change prototype.  Use
473         add_binding for global bindings.
474         (set_identifier_type_value): Adjust accordingly.
475         (pushtag): Likewise.
476         (pushdecl): Use set_identifier_type_value, not
477         set_identifier_type_value_with_scope.
478         (pushdecl_namespace_level): Adjust calls to
479         SET_IDENTIFIER_TYPE_VALUE to pass a DECL.
480         (pushdecl_class_level): Likewise.
481         (lookup_tag): Use select_decl.
482         (select_decl): Improve comment.
483         (record_builtin_type): Do not call pushdecl.
484         (cxx_init_decl_processing): Do not call xref_tag for bad_alloc.
485         (cp_finish_decl): Adjust call to set_identifier_type_value.
486         (check_elaborated_type_specifier): Improve checks for invalid uses
487         of typedefs.
488         (xref_tag): Adjust call to check_elaborated_type_specifier.
489         * decl2.c (grokclassfn): Do not set TYPE_HAS_DESTRUCTOR.
490         * name-lookup.c (set_namespace_binding): Use add_binding.
491         * parser.c (cp_parser_simple_type_specifier): Return a TYPE_DECL,
492         rather than an IDENTIFIER_NODE, to represent built-in types, if
493         requested by the caller.
494         (cp_parser_postfix_expression): Adjust call.
495         (cp_parser_type_specifier): Likewise.
496         (cp_parser_elaborated_type_specifier): Adjust call to
497         check_elaborated_type_specifier.
498         * typeck2.c (build_functional_cast): Do not perform name lookups.
500         PR c++/10717
501         * decl.c (expand_static_init): Remove unncessary code.
503 2003-08-19  Andrew Pinski  <pinskia@physics.uc.edu>
505         PR c++/10538, PR c/5582
506         * cp/cp-lang.c (LANG_HOOKS_DECL_UNINIT): Define.
508 2003-08-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
510         PR c++/11174
511         * init.c (build_offset_ref): Perform access checking for
512         pointer to member correctly.
514 2003-08-19  Gabriel Dos Reis  <gdr@integrable-solutions.net>
516         * cp-lang.c (LANG_HOOKS_INITIALIZE_DIAGNOSTICS): Fix spelling.
518 2003-08-18  Nathan Sidwell  <nathan@codesourcery.com>
520         PR c++/11957
521         * cp-tree.h (finish_stmt_expr): Add bool parameter.
522         * init.c (finish_init_stmts): Pass true to finish_stmt_expr. Don't
523         adjust the stmt_expr here.
524         (build_vec_init): Use finish_stmt_expr_expr, convert result to
525         array type.
526         * parser.c (cp_parser_primar_expression): Adjust finish_stmt_expr
527         call.
528         * pt.c (tsubst_copy): Likewise.
529         * semantics.c (finish_stmt_expr): Add parameter.
531         * pt.c (instantiate_class_template): Push to class's scope before
532         tsubsting base.
534 Sun Aug 17 10:05:38 CEST 2003  Jan Hubicka  <jh@suse.cz>
536         PR C++/11702
537         * semantics.c (finish_id_expression): Mark all functions as used.
539 2003-08-16  Nathan Sidwell  <nathan@codesourcery.com>
541         PR c++/11512
542         * cvt.c (convert_to_void): Indicate which side of conditional has
543         no effects, and rhs of comma operator. Test for no sideeffect
544         expressions here and always build a convert expr.
545         * init.c (expand_default_init): Convert the init to void.
546         * typeck.c (build_x_compound_expr): Do not check for side effects
547         here.
548         (build_compound_expr): Do not convert lhs when building a
549         template.
551 2003-08-15  Nathan Sidwell  <nathan@codesourcery.com>
553         * cp-tree.def (NON_DEPENDENT_EXPR): Add operand.
554         * decl2.c (build_offset_ref_call_from_tree): Use
555         build_non_dependent_expr.
556         * error.c (dump_expr) <NON_DEPENDENT_EXPR case>: Dump the operand.
557         * pt.c (build_non_dependent_expr): Set operand.
559 2003-08-14  Jan Hubicka  <jh@suse.cz>
561         * decl2.c (mark_member_pointers): Rename to...
562         (mark_member_pointers_and_eh_tinfos): ... this one; deal with eh tinfos
563         (lower_function): Update call.
564         * except.c (eh_type_info): Break out from ...
565         (build_eh_type): ... here; tinfo is already used.
566         (finish_eh_spec_block): Mark tinfos as used.
567         * semantics.c (finish_handler_params): Mark tinfo as used.
568         * cp-tree.h (eh_type_info): Declare.
570 2003-08-15  Nathan Sidwell  <nathan@codesourcery.com>
572         * pt.c (instantiate_class_template): Set location before
573         substuting bases.
575         * decl.c (make_typename_type): Use my_friendly_assert.
576         * pt.c (tsubst_aggr_type): Rearrange context substitution.
578 Thu Aug 14 12:19:25 CEST 2003  Jan Hubicka  <jh@suse.cz>
580         * method.c (use_thunk): Expand body directly.
582 2003-08-12  Mark Mitchell  <mark@codesourcery.com>
584         PR c++/11703
585         * call.c (type_passed_as): Use TYPE_SIZE, not TYPE_PRECISION to
586         determine whether or not to promote types.
587         (convert_for_arg_passing): Likewise.
588         * decl2.c (cp_build_parm_decl): Do not set DECL_ARG_TYPE in
589         templates.
590         * pt.c (tsubst_decl): Do not expect it to be set.
592         PR c++/9512
593         PR c++/10923
594         * cp-tree.h (check_elaborated_type_specifier): Declare.
595         (handle_class_head): Remove.
596         (note_got_semicolon): Likewise.
597         (note_list_got_semicolon): Likewise.
598         (finish_class_definition): Likewise.
599         * decl.c (check_elaborated_type_specifier): Make it public.
600         Robustify.
601         (handle_class_head): Remove.
602         * parser.c (cp_parser_elaborated_type_specifier): Use
603         check_elaborated_type_specifier.
604         (cp_parser_class_specifier): Do not call finish_class_definition.
605         (cp_parser_class_head): Or handle_class_head.  Check for
606         over-qualified names.
607         * semantics.c (finish_class_definition): Remove.
609         * parser.c (cp_parser_check_for_definition_in_return_type): New
610         function.
611         (cp_parser_simple_declaration): Adjust call to
612         cp_parser_init_declarator.
613         (cp_parser_decl_specifier_seq): Change type of
614         declares_class_or_enum parameter.
615         (cp_parser_explicit_instantiation): Adjust accordingly.
616         (cp_parser_type_specifier): Change type of
617         declares_class_or_enum parameter.
618         (cp_parser_init_declarator): Add declares_class_or_enum
619         parameter.
620         (cp_parser_parameter_declaration): Adjust call to
621         cp_parser_decl_specifier_seq.
622         (cp_parser_function_definition): Likewise.
623         (cp_parser_member_declaration): Likewise.
624         (cp_parser_single_declaration): Likewise.
626         * cp-tree.h (lang_type_class): Remove has_call_overloaded,
627         has_array_ref_overloaded, has_arrow_overloaded, and got_semicolon.
628         (TYPE_OVERLOADS_CALL_EXPR): Remove.
629         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
630         (TYPE_OVERLOADS_ARROW): Likewise.
631         (CLASSTYPE_GOT_SEMICOLON): Likewise.
632         * class.c (check_bases): Do not set them.
633         (finish_struct_1): Likewise.
634         * decl.c (cp_finish_decl): Do not set CLASSTYPE_GOT_SEMICOLON.
635         (build_ptrmemfunc_type): Likewise.
636         (grok_op_properties): Do not set TYPE_OVERLOADS_*.
637         (start_function): Do not check CLASSTYPE_GOT_SEMICOLON.
638         * decl2.c (grokfield): Do not set CLASSTYPE_GOT_SEMICOLON.
639         * lex.c (note_got_semicolon): Remove.
640         (note_list_got_semicolon): Likewise.
641         * parser.c (cp_parser_simple_declaration): Do not call
642         note_list_got_semicolon.
643         * pt.c (list_eq): Remove.
644         (lookup_template_class): Do not set CLASSTYPE_GOT_SEMICOLON.
645         (instantiate_class_template): Do not set TYPE_OVERLOADS*.
646         (instantiate_class_template): Do not set CLASSTYPE_GOT_SEMICOLON.
647         * ptree.c (cxx_print_type): Do not print them.
648         * semantics.c (finish_member_class_template): Do not call
649         note_list_got_semicolon.
651 2003-08-11  Aldy Hernandez  <aldyh@redhat.com>
653         * call.c (standard_conversion): Opaque pointers interconvert.
655         * testsuite/g++.dg/other/opaque-3.C: New.
657 2003-08-11  Mark Mitchell  <mark@codesourcery.com>
659         * typeck.c (merge_types): Handle cv-qualified pointer-to-member
660         types correctly.
662 2003-08-10  Mark Mitchell  <mark@codesourcery.com>
664         PR c++/11789
665         * cp-tree.h (get_vbase): Remove.
666         (get_vbase_types): Remove.
667         * init.c (expand_member_init): Correct logic for looking up base
668         classes.
670 2003-08-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
672         * error.c (dump_expr): Tidy.
673         * cxx-pretty-print.c (pp_cxx_nonconsecutive_character): New.
674         (pp_cxx_begin_template_argument_list): Likewise.
675         (pp_cxx_end_template_argument_list): Likewise.
676         (is_destructor_name): Likewise.
677         (pp_cxx_unqualified_id): Likewise.
678         (pp_cxx_qualified_id): Likewise.
679         (pp_cxx_id_expression): Likewise.
680         (pp_cxx_new_expression): Likewise.
681         (pp_cxx_delete_expression): Likewise.
682         (pp_cxx_pm_expression): Likewise.
683         (pp_cxx_type_specifier): Rework.
684         (pp_cxx_type_id): Likewise.
685         (pp_cxx_primary_expression): Likewise.
686         (pp_cxx_postfix_expression): Likewise.
687         (pp_cxx_unary_expression): Likewise.
688         (pp_cxx_multiplicative_expression): Likewise.
689         (pp_cxx_conditional_expression): Likewise.
690         (pp_cxx_assignment_expression): Likewise.
691         (pp_cxx_pretty_printer_init): Tidy.
693 2003-08-10  Nathan Sidwell  <nathan@codesourcery.com>
695         * cp-tree.h (TMPL_ARGS_HAVE_MULTIPLE_LEVELS): non-NULL
696         NODE is always a TREE_VEC of non-zero size.
697         (NUM_TMPL_ARGS): NODE is always a TREE_VEC.
698         * decl2.c (arg_assoc): Template args will be a vec.
699         * error.c (dump_decl) <TEMPLATE_ID_EXPR case>: Call
700         dump_template_argument_list.
701         (dump_template_parms): Args will be a vec.
702         * parser.c (cp_parser_template_argument_list): Produce a
703         vector, not a list.
704         * pt.c (coerce_template_parms): Args are always vectors.
705         (mangle_class_name_for_template): Likewise.
706         (lookup_template_function): Likewise.
707         (lookup_template_class): Likewise.
708         (tsubst_template_args): Likewise.
709         (tsubst_baselink): Use tsubst_template_args.
710         (tsubst_qualified_id): Likewise.
711         (tsubst_copy) <TEMPLATE_ID_EXPR case>: Likewise.
712         (tsubst_copy_and_build) <TEMPLATE_ID_EXPR case>: Likewise.
713         (any_dependent_template_args_p):  Args are always vectors.
714         * tree.c (cp_tree_equal): Add TEMPLATE_ID_EXPR case.
716         PR c++/11670
717         * call.c (convert_like_real): Add rvalue binding error message.
718         * error.c (dump_expr) <NOP_EXPR case>: Detect when the no expr is
719         really a cast.
721         PR c++/10530
722         * pt.c (dependent_type_p_r): A dependent template-id is a class
723         type with dependent template arguments, or a bound template
724         template parameter.
725         (type_dependent_expression_p): A template function decl cannot
726         have a dependent context.
728 2003-08-07  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
730         PR c++/5767
731         * parser.c (cp_parser_class_name): Return immediately when scope
732         is error_mark_node.
734 2003-08-07  Aldy Hernandez  <aldyh@redhat.com>
736         * cp/Make-lang.in (cp/call.o): Add dependency for target.h.
738         * cp/call.c (standard_conversion): Support opaque types.
739         Include target.h.
740         (strip_top_quals): Use cp_build_qualified_type instead of
741         TYPE_MAIN_VARIANT.
743         * cp/typeck.c (convert_for_assignment): Support opaque types.
745         * testsuite/g++.dg/other/opaque-1.C: New.
747         * testsuite/g++.dg/other/opaque-2.C: New.
749 2003-08-06  Aldy Hernandez  <aldyh@redhat.com>
751         * decl.c (grokparms): Use cp_build_qualified_type instead
752         TYPE_MAIN_VARIANT.
754 2003-08-05  Gabriel Dos Reis  <gdr@integrable-solutions.net>
756         * cxx-pretty-print.h: New file.
757         * cxx-pretty-print.c: Likewise.
758         * error.c (scratch_pretty_printer): Change type.
759         (init_error): Tidy.
760         (dump_aggr_type): Likewise.
761         (dump_global_iord): Likewise.
762         (dump_expr): Likewise.
763         (dump_char): Remove.
764         * cp-lang.c (LANG_HOOKS_INITIALIZE_DIAGNOSTITCS): Define.
765         (cxx_initialize_diagnostics): New function.
766         * Make-lang.in (CXX_OBJS): Add cp/cxx-pretty-print.o
767         (CXX_PRETTY_PRINT_H): New variable.
768         (cp/cxx-pretty-print.o): New rule.
769         (cp/cp-lang.o): Update dependence.
770         (cp/error.o): Likewise.
772 2003-08-05  Steven Bosscher  <steven@gcc.gnu.org>
774         * cp-tree.h (struct lang_decl): Don't include c_lang_decl.
775         (DECL_DECLARED_INLINE_P): Remove.
776         * decl2.c (import_export_decl): Only look at DECL_DECLARED_INLINE_P
777         if decl is a FUNCTION_DECL.  This never made sense, but now it is
778         required to avoid a tree check failure.
779         * decl.c (grokfndecl): Don't touch DID_INLINE_FUNC.
780         * optimize.c (maybe_clone_body): Likewise.
782 2003-08-04  Roger Sayle  <roger@eyesopen.com>
784         * decl.c (cxx_insert_default_attributes): Delete.
785         * cp-tree.h (cxx_insert_default_attributes): Don't prototype.
786         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Don't define.
788 2003-08-03  Nathan Sidwell  <nathan@codesourcery.com>
790         PR c++/11704
791         * pt.c (type_dependent_expression_p): Cope with COMPONENT_REF with
792         unknown type.
794         PR c++/11766
795         * typeck.c (comp_ptr_ttypes_real): Don't loop on pointers to
796         member functions.
798 2003-08-02  Nathan Sidwell  <nathan@codesourcery.com>
800         PR c++/9447
801         * cp-tree.def (USING_DECL): Document its type.
802         * class.c (pushclass): If we're entering a template, push any
803         dependent using decls it has.
804         * decl2.c (do_class_using_decl): Refactor. Type is NULL iff it is
805         a dependent scope.
806         * pt.c (tsubst_decl) <USING_DECL case>: Set type.
807         (tsubst): Remove USING_DECL checks.
808         (type_dependent_expression_p): Remove USING_DECL case.
809         * semantics.c (finish_member_declaration): A USING_DECL's type
810         indicates whether it is dependent.
812 2003-08-02  Nathan Sidwell  <nathan@codesourcery.com>
814         * cp-tree.h (pushclass): Remove unneeded parameter.
815         * class.c (pushclass): Remove unneeded MODIFY parm. Adjust.
816         (push_nested_class): Adjust pushclass call.
817         * pt.c (instantiate_class_template): Likewise.
818         * semantics.c (begin_class_definition): Likewise.
820 2003-08-01  Nathanael Nerode  <neroden@gcc.gnu.org>
822         * typeck2.c (add_exception_specifier): Use 'bool' where appropriate.
824 2003-08-01  Mark Mitchell  <mark@codesourcery.com>
826         PR c++/11697
827         * decl.c (decls_match): Don't ignore the types of template
828         classes.
830         PR c++/11744
831         * pt.c (tsubst_copy_and_build): Refine Koenig lookup logic.
833 2003-08-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
835         PR c++/8442, c++/8806
836         * decl.c (qualify_lookup): Accept TEMPLATE_DECL if types are
837         preferred.
838         (check_elaborated_type_specifier): Add allow_template_p
839         parameter.  Check tag mismatch and class template.
840         (xref_tag): Add template_header_p parameter.  Add assertion
841         that name is an IDENTIFIER_NODE.  Remove implicit typename
842         warning.  Simplify lookup process if globalize is true.
843         (cxx_init_decl_processing): Adjust call to xref_tag.
844         (xref_tag_from_type): Likewise.
845         * decl2.c (handle_class_head): Likewise.
846         * parser.c (cp_parser_elaborated_type_specifier,
847         cp_parser_class_head): Likewise.
848         * rtti.c (init_rtti_processing, build_dynamic_cast1,
849         tinfo_base_init, emit_support_tinfos): Likewise.
850         * class.c (is_base_of_enclosing_class): Remove.
851         * pt.c (convert_template_argument): Don't accept RECORD_TYPE as
852         template template argument.
853         * cp-tree.h (xref_tag): Adjust declaration.
854         (is_base_of_enclosing_class): Remove.
855         * NEWS: Document template template argument change.
857 2003-08-01  Nathan Sidwell  <nathan@codesourcery.com>
859         * parser.c (cp_parser_init_declarator,
860         cp_paser_member_declaration): Reformat.
861         * pt.c (lookup_template_class, type_unification_real, unify,
862         type_dependent_expression_p): Reformat.
864         PR c++/11295
865         * cp-tree.h (tubst_flags_t): Add tf_stmt_expr_cmpd,
866         tf_stmt_expr_body.
867         (finish_stmt_expr_expr): Declare.
868         * parser.c (cp_parser_primary_expression): Tell
869         cp_parser_compount_statement that it is a statement expression.
870         (cp_parser_statement, cp_parser_labeled_statement,
871         cp_parser_compound_statement, cp_parser_statement_seq_opt): Add
872         in_statement_expr_p parameter.
873         (cp_parser_expression_statement): Likewise. Call
874         finish_stmt_expr_expr for final expression of a statement
875         expression.
876         (cp_parser_for_init_statement,
877         cp_parser_implicitly_scoped_statement,
878         cp_parser_already_scoped_statement, cp_parser_function_definition,
879         cp_parser_try_block, cp_parser_handled): Adjust.
880         * pt.c (tsubst_copy) <STMT_EXPR case>: Pass tf_stmt_expr.
881         (tsubst_expr): Process tf_stmt_expr and tf_stmt_exprs flags.
882         (tsubst_expr) <EXPR_STMT case>: Check tf_stmt_exprs flag.
883         * semantics.c (finish_expr_stmt): Do not deal with statement
884         expressions.
885         (begin_stmt_expr): Clear last_expr_type.
886         (finish_stmt_expr_expr): New.
887         (finish_stmt_expr): Process the value expression.
889         * typeck.c (build_compound_expr): If RHS is a TARGET_EXPR, put the
890         compound expr inside the target's initializer.
892         PR c++/11525
893         * parser.c (cp_parser_primary_expression): Do not set
894         non-constant-p merely because it is a dependent scope.
896         PR c++/9447
897         * decl2.c (do_class_using_decl): Set type to NULL_TREE.
898         * semantics.c (finish_expr_stmt): Do not convert to void in a
899         template.
901 2003-07-31  Nathan Sidwell  <nathan@codesourcery.com>
903         * pt.c (coerce_template_parms): Refactor.
904         (fn_type_unification): Increment processing_template_decl when
905         tsubsting an incomplete set of explicit args.
907         PR c++/11347
908         * pt.c (instantiate_class_template): Increment
909         processing_template_decl around the tsubst of a template member
910         class.
911         (tsubst_qualified_id): Assert we do not have a dependent scope.
913         * pt.c (coerce_template_template_parms, lookup_template_class,
914         can_complete_type_without_circularity, instantiate_class_template,
915         tsubst_decl, unify): Reformat.
917 Thu Jul 31 01:07:41 CEST 2003  Jan Hubicka  <jh@suse.cz>
919         * decl2.c (maybe_make_one_only): Use mark_referenced.
920         * method.c (use_thunk): Likewsie.
922 Wed Jul 30 19:12:48 CEST 2003  Jan Hubicka  <jh@suse.cz>
924         * class.c (build_vtable_entry_ref): Kill.
925         (build_vtbl_ref_1): Do not call build_vtable_entry_ref.
926         (build_vfn_ref): Do not call build_vtable_entry_ref.
927         * cp-lang.c (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): Kill.
928         * cp-tree.h (prepare_assemble_variable): Kill.
929         * cp-decl.c (prepare_assemble_variable): Kill.
931 2003-07-29  Geoffrey Keating  <geoffk@apple.com>
933         * parser.c (cp_lexer_new_main): Use c_common_no_more_pch instead
934         of setting valid_pch by hand.
936 2003-07-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
938         * decl.c (finish_enum): Initialize underlying_type.
940 2003-07-29  Nathan Sidwell  <nathan@codesourcery.com>
942         PR c++/9447
943         * decl.c (add_binding): Add bval local variable.
944         (push_class_level_binding): Likewise. Allow a USING_DECL to be
945         pushed.
946         * decl2.c (do_class_using_decl):  The type of a using decl is
947         unknown.
948         * parser.c (cp_parser_postfix_expression): Refactor unqualified-id
949         function call lookup code.
950         * pt.c (tsubst): A USING_DECL will have unknown type.
951         (tsubst_copy_and_build): Allow a using decl.
952         (type_dependent_expression_p): A USING_DECL will make it
953         dependent.
954         * semantics.c (finish_member_declaration): Push a dependent using
955         declaration.
957 2003-07-28  Mark Mitchell  <mark@codesourcery.com>
959         PR c++/11530
960         * parser.c (cp_parser_postfix_expression): Do not call mark_used.
961         * semantics.c (finish_id_expression): Call mark_used for all
962         declarations.
964 2003-07-28  Mark Mitchell  <mark@codesourcery.com>
966         PR c++/11667
967         * call.c (standard_conversion): Allow all integral->enumeral
968         conversions, after marking them as bad.
969         * decl.c (finish_enum): Make sure that all enumerators are
970         properly converted to the underlying type.
971         (build_enumerator): Set DECL_CONTEXT for namespace-scope
972         enumeration types.
973         * pt.c (tsubst_copy): Adjust handling of CONST_DECLs accordingly.
974         (tsubst_enum): Tidy.
976         * Make-lang.in (typeck.o): Depend on convert.h.
977         (class.o): Likewise.
978         (rtti.o): Likewise.
979         * call.c: Include convert.h.
980         (convert_arg_to_ellipsis): Use convert_to_real.
981         * class.c: Include convert.h.
982         (build_base_path): Use convert_to_integer.
983         * rtti.c: Include convert.h.
984         (build_headof): Use convert_to_integer.
985         * typeck.c: Include convert.h.
986         (decay_conversion): Use convert_to_integer.
987         (build_unary_op): Use build_nop.
988         (get_delta_difference): Use convert_to_integer.
989         (build_ptrmemfunc): Avoid unncessary conversions.
991 Mon Jul 28 23:55:10 CEST 2003  Jan Hubicka  <jh@suse.cz>
993         * decl2.c (mark_member_pointers): Verify that member pointer points to
994         the function.
996 2003-07-28  Nathan Sidwell  <nathan@codesourcery.com>
998         * cp-tree.h (begin_compound_stmt): No scope arg is a bool.
999         (finish_compound_stmt): Remove no scope arg.
1000         * decl.c (register_dtor_fn): Adjust begin_compound_stmt and
1001         end_compound_stmt calls.
1002         (expand_static_init, begin_destructor_body, begin_function_body,
1003         finish_function_body): Likewise.
1004         * decl2.c (start_objects, finish_objects,
1005         start_static_storage_duration_function,
1006         finish_static_storage_duration_function): Likewise.
1007         * init.c (begin_init_stmts, finish_init_stmts,
1008         construct_virtual_base, build_vec_init): Likewise.
1009         * method.c (do_build_assign_ref, synthesize_method): Likewise.
1010         * parser.c (cp_parser_compound_statement,
1011         cp_parser_implicitly_scoped_statement,
1012         cp_parser_already_scoped_statement): Likewise.
1013         * pt.c (tsubst_expr): Likewise.
1014         * semantics.c (begin_compound_stmt): No scope arg is a bool.
1015         (finish_compound_stmt): Remove no scope arg.
1017         * error.c (dump_expr) <COMPOUND_EXPR case>: A compound expr is
1018         always dyadic.
1020 2003-07-27  Mark Mitchell  <mark@codesourcery.com>
1022         * call.c (standard_conversion): Tweak handling of
1023         pointer-to-member types.
1024         * pt.c (tsubst): Correctly qualify pointers-to-data member types.
1025         * typeck.c (comp_ptr_ttypes_real): Check qualifiers on
1026         pointer-to-data member types.
1028 2003-07-27  Nathan Sidwell  <nathan@codesourcery.com>
1030         * parser.c (cp_parser_type_parameter): Reformat.
1031         (cp_parser_parameter_declaration): Deprecate default args where
1032         not allowed.
1034 2003-07-26  Nathan Sidwell  <nathan@codesourcery.com>
1036         * cfns.h: Rebuilt.
1038         * cp-tree.h (begin_init_stmts, finish_init_stmts): Remove.
1039         (begin_global_stmt_expr, finish_global_stmt_expr): Remove.
1040         * init.c (begin_init_stmts): Make static. Return is_global
1041         value. Always call begin_stmt_expr.
1042         (finish_init_stmts): Make static. Add is_global parm. Always
1043         building a stmt tree.
1044         (build_aggr_init): Adjust begin_init_stmts, finish_init_stmts calls.
1045         (build_vec_init): Likewise. Always building a stmt tree.
1046         (expand_default_init): Always building a stmt tree.
1047         (get_temp_regvar): Likewise.
1048         * semantics.c (begin_global_stmt_expr,
1049         finish_global_stmt_expr): Remove.
1051 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
1053         * cp-tree.h (build_compound_expr): Take LHS & RHS args.
1054         (build_x_compound_expr_from_list): Declare.
1055         * typeck.c (build_x_compound_expr_from_list): New.
1056         (build_x_compound_expr): Adjust.
1057         (build_compound_expr): Remove unreachable code. Take two
1058         parameters, adjust.
1059         * decl.c (grok_reference_init): Use
1060         build_x_compound_expr_from_list.
1061         (expand_static_init): Adjust build_compound_expr call.
1062         (cxx_maybe_build_cleanup): Likewise.
1063         * init.c (perform_member_init): Use
1064         build_x_compound_expr_from_list.
1065         (build_new_1): Likewise.
1066         (build_vec_delete): Adjust build_compound_expr calls.
1067         (build_vbase_delete): Likewise.
1068         * typeck2.c (store_init_value): Use
1069         build_x_compound_expr_from_list.
1070         (build_functional_cast): Likewise.
1072 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
1074         * cp-tree.h (enum tsubst_flags_t): Add tf_user.
1075         * decl.c (make_typename_type): Pass it.
1076         * pt.c (lookup_template_class): Use it.
1077         (resolve_typename_type): Pass it.
1078         * semantics.c (finish_template_type): Pass it.
1080 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
1082         PR c++/11617
1083         * cp-tree.h (qualified_name_lookup_error): Declare.
1084         * pt.c (tsubst_qualified_id): Use qualified_name_lookup_error for
1085         errors.
1086         (tsubst_expr) <DECL_STMT case>: Likewise.
1087         (tsubst_copy_and_build) <COMPONENT_REF case>: Likewise.
1088         * semantics.c (qualified_name_lookup_error): New, broken out of ...
1089         (finish_id_expression): ... here. Use it.
1091 2003-07-25  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
1093         * cfns.gperf: Add '%%' delimiter to placate gperf 3.0.
1095 2003-07-25  Nathan Sidwell  <nathan@codesourcery.com>
1097         PR c++/11596
1098         * pt.c (maybe_fold_nontype_arg, maybe_fold_nontype_args): Remove.
1099         (tsubst_template_arg): New.
1100         (tsubst_template_arg_vector): Rename to ...
1101         (tsubst_template_args): ... this. Accept a TREE_LIST form. Use
1102         tsubst_template_arg.
1103         (coerce_template_parms): Use tsubst_template_arg for default
1104         value.
1105         (tsubst_template_parms): Likewise.
1106         (tsubst_aggr_type): Adjust.
1107         (tsubst_decl): Likewise.
1108         (tsubst): Use tsubst_template_arg for a DOMAIN. Adjust.
1109         (tsubst_copy) <TEMPLATE_ID_EXPR case>: Use tsubst_template_args.
1111 2003-07-25 Gabriel Dos Reis  <gdr@integrable-solutions.net>
1113         * Make-lang.in (cp/error.o): Depend on DIAGNOSTIC_H.
1114         * error.c: Use the new pretty-printer framework.
1116 2003-07-24  Per Bothner  <pbothner@apple.com>
1118         * decl.c (pushdecl_class_level): Don't use push_srcloc/pop_srcloc
1119         which causes errors messages to incorrectly mention included files.
1121 2003-07-24  Mark Mitchell  <mark@codesourcery.com>
1123         * cp-tree.h (convert_to_base_statically): Declare.
1124         * call.c (build_special_member_call): Convert INSTANCE to the base
1125         type.
1126         * class.c (convert_to_base_statically): New method.
1127         * init.c (construct_virtual_base): Use it.
1128         * method.c (do_build_assign_ref): Fix typo in comment.
1130 2003-07-24  Jason Merrill  <jason@redhat.com>
1132         * decl.c: Just set truthvalue_* to boolean_*.
1134 2003-07-24  Nathan Sidwell  <nathan@codesourcery.com>
1136         * decl.c (reshape_init): Remove unreachable code.
1138 2003-07-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1140         PR c++/11513
1141         * cp-tree.h (PROCESSING_REAL_TEMPLATE_DECL_P): Use current_scope.
1143 2003-07-23  Mark Mitchell  <mark@codesourcery.com>
1145         PR c++/11645
1146         * cp-tree.h (accessible_base_p): Declare.
1147         * call.c (build_over_call): Use it.
1148         * search.c (accessible_base_p): New function, split out from ...
1149         (lookup_base): ... here.
1151         PR c++/11517
1152         * call.c (build_conditional_expr): Use perform_implicit_conversion
1153         and error_operand_p.  Robustify.
1154         * typeck.c (build_unary_op): Use perform_implicit_conversion.
1156 2003-07-23  Nathan Sidwell  <nathan@codesourcery.com>
1158         PR c++/10953
1159         * parser.c (cp_parser_nested_name_specifier): Reset scope on
1160         failure.
1161         (cp_parser_elaborated_type_specifier): Likewise.
1163 2003-07-22  Mark Mitchell  <mark@codesourcery.com>
1165         Eliminate use of POINTER_TYPE for pointers-to-members.
1166         * call.c (standard_conversion): Rework pointer-to-member handling.
1167         Add comments.
1168         (add_builtin_candidate): Likewise.
1169         (resolve_scoped_fn_name): Remove.
1170         (build_conditional_expr): Rework pointer-to-member handling.
1171         (compare_ics): Likewise.
1172         * class.c (check_field_decls): Use TYPE_PTR_P.
1173         * cp-lang.c (cp_var_mod_type_p): Rework pointer-to-member
1174         handling.
1175         * cp-tree.h (SCALAR_TYPE_P): Use TYPE_PTR_TO_MEMBER_P.
1176         (TYPE_PTRMEM_P): Add comment.
1177         (TYPE_PTR_P): Simplify.
1178         (TYPE_PTROB_P): Correct definition.
1179         (TYPE_PTR_TO_MEMBER_P): New macro.
1180         (TYPE_PTRMEM_CLASS_TYPE): Adjust.
1181         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
1182         (resolved_scoped_fn_name): Remove declaration.
1183         (build_offset_ref): Change prototype.
1184         (resolve_offset_ref): Remove.
1185         (comp_target_types): Remove.
1186         * cvt.c (cp_convert_to_pointer): Rework pointer-to-member
1187         handling.
1188         (convert_to_reference): Use can_convert.
1189         (ocp_convert): Improve error handling.  Rework pointer-to-member
1190         handling.
1191         (perform_qualification_conversions): Rework pointer-to-member
1192         handling.
1193         * decl.c (build_ptrmem_type): Handle functions too.
1194         (create_array_type_for_decl): Remove OFFSET_TYPE error message.
1195         (grokdeclarator): Use OFFSET_TYPE for pointers to data members.
1196         (grokparms): Remove OFFSET_TYPE error message.
1197         * dump.c (cp_dump_tree): Rework pointer-to-member handling.
1198         * error.c (dump_type_prefix): Likewise.
1199         * expr.c (cplus_expand_constant): Use build_nop.
1200         * init.c (build_offset_ref): Add address_p parameter.  Fold in
1201         necessary bits from resolve_offset_ref.
1202         (resolve_offset_ref): Remove.
1203         * parser.c (cp_parser_postfix_expression): Remove special case
1204         code for OFFSET_TYPE.
1205         * pt.c (convert_nontype_argument): Rework pointer-to-member
1206         handling.
1207         (convert_template_argument): Likewise.
1208         (unify): Likewise.
1209         (invalid_nontype_parm_type_p): Likewise.
1210         (dependent_type_p_r): Likewise.
1211         * rtti.c (get_tinfo_decl): Remove OFFSET_TYPE special case.
1212         (target_incomplete_p_): Rework pointer-to-member
1213         handling.
1214         (get_pseudo_ti_init): Likewise.
1215         (get_pseudo_ti_desc): Likewise.
1216         * semantics.c (finish_qualified_id_expr): Adjust call to
1217         build_offset_ref.  Remove use of resolve_offset_ref.
1218         * tree.c (pod_type_p): Use TYPE_PTR_TO_MEMBER_P.
1219         * typeck.c (target_type): Use TYPE_PTRMEM_P.
1220         (type_unknown_p): Remove obsolete code about the time before
1221         non-dependent expressions were handled correctly.
1222         (qualify_type_recursive): Remove.
1223         (composite_pointer_type_r): New function.
1224         (composite_pointer_type): Use it.
1225         (merge_types): Remove dead comments.
1226         (comp_cv_target_types): Remove.
1227         (comp_target_types): Likewise.
1228         (comp_target_parms): Likewise.
1229         (cxx_sizeof_or_alignof_type): Remove OFFSET_TYPE error.
1230         (build_indirect_ref): Use TYPE_PTR_TO_MEMBER_P.
1231         (build_binary_op): Do not use of comp_target_types.
1232         (pointer_diff): Remove OFFSET_TYPE case.
1233         (build_unary_op): Adjust pointer-to-member handling.
1234         (unary_complex_lvalue): Likewise.
1235         (check_for_casting_away_constness): Add description parameter.
1236         (build_static_cast): Pass it.
1237         (build_reinterpret_cast): Use check_for_casting_away_constness.
1238         (build_const_cast): Adjust pointer-to-member handling.
1239         (build_c_cast): Likewise.
1240         (convert_for_assignment): Remove OFFSET_TYPE error message.
1241         (comp_ptr_ttypes_real): Adjust pointer-to-member handling.
1242         (comp_ptr_ttypes_reinterpret): Remove.
1243         (casts_away_constness_r): Adjust pointer-to-member handling.
1244         (casts_away_constness): Liekwise.
1245         (strip_all_pointer_quals): Remove.
1246         * typeck2.c (digest_init): Adjust pointer-to-member handling.
1247         (build_m_component_ref): Likewise.
1249 2003-07-22  Wolfgang Bangerth  <bangerth@dealii.org>
1251         * lex.c (unqualified_fn_lookup_error): Mention that the error
1252         message needs to be kept in synch with the manual.
1254 2003-07-22  Nathan Sidwell  <nathan@codesourcery.com>
1256         PR c++/11614
1257         * decl.c (grokdeclarator): An array member is only a flexible
1258         array member if the field itself is the array.
1260 2003-07-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1262         PR c++/10793
1263         * decl.c (xref_basetypes): Handle error_mark_node.
1265 2003-07-22  Nathan Sidwell  <nathan@codesourcery.com>
1267         * cp-tree.h (enum cp_lvalue_kind): Add clk_packed.
1268         * tree.c (lvalue_p_1): Set it.
1269         * class.c (check_field): Don't allow non-packed non-POD fields to
1270         be packed.
1271         * call.c (reference_binding): Need a temporary for all bitfield
1272         and packed fields.
1273         (convert_like_real): Check it is ok to make a temporary here.
1275 2003-07-21  Nathan Sidwell  <nathan@codesourcery.com>
1277         * cp-tree.h (hack_identifier): Remove.
1278         * method.c (hack_identifier): Remove.
1279         * semantics.c (finish_id_expression): Expand hack_identifier
1280         here. Simplify.
1282 2003-07-19  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1284         * call.c class.c decl.c decl2.c g++spec.c lex.c parser.c pt.c rtti.c
1285         semantics.c typeck.c: Remove unnecessary casts.
1287 2003-07-18  Nathan Sidwell  <nathan@codesourcery.com>
1289         * cp-tree.h (hack_identifier): Remove.
1290         * method.c (hack_identifier): Remove.
1291         * semantics.c (finish_id_expression): Expand hack_identifier
1292         here. Simplify.
1294 2003-07-18  Nathan Sidwell  <nathan@codesourcery.com>
1296         * cp-tree.h (finish_non_static_data_member): Add object param.
1297         * method.c (hack_identifier): Adjust.
1298         * pt.c (tsubst_copy_and_build) <COMPONENT_REF case>: Don't search
1299         again for a FIELD_DECL.
1300         * semantics.c (finish_non_static_data_member): Add object
1301         parameter. Always save the DECL in the COMPONENT_REF.
1302         * call.c (resolve_scoped_fn_name): Adjust.
1304 2003-07-17  Zack Weinberg  <zack@codesourcery.com>
1306         * pt.c (get_bindings): Make definition consistent with
1307         forward declaration.
1309 2003-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1311         PR c++/7809
1312         * friend.c (add_friend): Check access for member functions
1313         and templates.
1315 2003-07-17  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1317         PR c++/10668
1318         * typeck.c (build_class_member_access_expr): Improve diagnostic.
1320 2003-07-16  Mark Mitchell  <mark@codesourcery.com>
1322         PR c++/11547
1323         * cp-tree.h (DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P): New
1324         macro.
1325         (DECL_PRETTY_FUNCTION_P): Use VAR_DECL_CHECK.
1326         * decl.c (duplicate_decls): Merge
1327         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
1328         * parser.c (cp_parser_postfix_expression): Adjust call to
1329         cp_parser_initializer_list and
1330         cp_parser_parenthesized_expression_list.
1331         (cp_parser_parenthesized_expression_list): Add non_constant_p.
1332         (cp_parser_new_placement): Adjust call to
1333         cp_parser_parenthesized_expression_list.
1334         (cp_parser_direct_new_declarator): Likewise.
1335         (cp_parser_conditional_expression): Remove.
1336         (cp_parser_constant_expression): Parse an assignment-expression,
1337         not a conditional-expression.
1338         (cp_parser_simple_declaration): Resolve expression/declaration
1339         ambiguity more quickly.
1340         (cp_parser_mem_initializer): Adjust call to
1341         cp_parser_parenthesized_expression_list.
1342         (cp_parser_init_declarator): Keep track of whether or not the
1343         initializer is a constant-expression.
1344         (cp_parser_initializer): Add non_constant_p parameter.
1345         (cp_parser_initializer_clause): Likewise.
1346         (cp_parser_initializer_list): Likewise.
1347         (cp_parser_attribute_list): Adjust call to
1348         cp_parser_parenthesized_expression_list.
1349         (cp_parser_functional_cast): Likewise.
1350         * pt.c (tsubst_decl): Copy
1351         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
1352         (tsubst_expr): Tweak use of DECL_PRETTY_FUNCTION_P.
1353         * semantics.c (finish_id_expression): Use
1354         DECL_INITIALIZED_BY_CONSTANT_EXPRESSION_P.
1356 2003-07-16  Neil Booth  <neil@daikokuya.co.uk>
1358         * lang-options.h: Remove.
1360 2003-07-16  Andrew Pinski  <pinskia@physics.uc.edu>
1362         PR c/10962
1363         * class.c (field_decl_cmp): Remove.
1364         (resort_field_decl_cmp): Remove.
1365         (resort_sorted_fields): Remove.
1366         (add_fields_to_vec): Rename to ...
1367         (add_fields_to_record_type): this.
1368         (finish_struct_1): Change to be using
1369         sorted_fields_type's fields.
1370         * cp-tree.h (lang_decl): In lang_decl_u3
1371         change sorted_fields to be a pointer to
1372         sorted_fields_type.
1373         (resort_sorted_fields): Remove prototype.
1374         * search.c (lookup_field_1): Change to be using
1375         sorted_fields_type's fields.
1377 2003-07-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1379         PR c++/5421
1380         * decl.c (grokdeclarator): Handle TEMPLATE_ID_EXPR if friend
1381         is a member of other class.
1382         * friend.c (do_friend): Don't build TEMPLATE_DECL if friend
1383         is a specialization of function template.
1385 2003-07-16  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1387         PR c++/10903
1388         * pt.c (convert_nontype_argument): Fix thinko in diagnostic.
1389         Improve.
1391 2003-07-15  Mark Mitchell  <mark@codesourcery.com>
1393         * cp-tree.def (LOOKUP_EXPR): Remove.
1394         * cp-tree.h (cp_id_kind): Add CP_ID_KIND_UNQUALIFIED_DEPENDENT.
1395         (LOOKUP_EXPR_GLOBAL): Remove.
1396         (get_bindings): Remove.
1397         (is_aggr_type_2): Remove.
1398         * call.c (resolved_scoped_fn_name): Remove support for
1399         LOOKUP_EXPR.
1400         * decl.c (grokfndecl): Likewise.
1401         (grokdeclarator): Likewise.
1402         * error.c (dump_decl): Likewise.
1403         (dump_expr): Likewise.
1404         * friend.c (do_friend): Likewise.
1405         * init.c (build_offset_ref): Likewise.
1406         * lex.c (unqualified_fn_lookup_error): Use pedwarn.  Do not create
1407         LOOKUP_EXPRs
1408         * mangle.c (write_expression): Remove support for LOOKUP_EXPR.
1409         * parser.c (cp_parser_postfix_expression): Modify Koenig lookup
1410         test.
1411         * pt.c (get_bindings): Give it internal linkage.
1412         (check_explicit_specialization): Remove support for LOOKUP_EXPR.
1413         (lookup_template_function): Likewise.
1414         (for_each_tempalte_parm_r): Likewise.
1415         (tsubst_decl): Likewise.
1416         (tsubst_qualified_id): Handle template template parameters.
1417         (tsubst_copy): Remove support for LOOKUP_EXPR.
1418         (tsubst_copy_and_build): Likewise.
1419         (most_general_template): Likewise.
1420         (value_dependent_expression_p): Likewise.
1421         (type_dependent_expression_p): Note that IDENTIFIER_NODEs are
1422         always dependent.
1423         * semantics.c (perform_koenig_lookup): Do not create
1424         IDENTIFIER_NODEs.
1425         (finish_fname): Likewise.
1426         (finish_id_expression): Likewise.
1427         * tree.c (is_aggr_type_2): Remove.
1429 2003-07-16  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1431         PR c++/11531
1432         * typeck.c (check_return_expr): Fix thinko in diagnostic.
1434 2003-07-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1436         PR c++/10108
1437         * pt.c (tsubst_decl) <TEMPLATE_DECL>: Add a check for
1438         error_mark_node.
1440 2003-07-14  Mark Mitchell  <mark@codesourcery.com>
1442         PR c++/11509
1443         * pt.c (dependent_scope_ref_p): New function.
1444         (value_dependent_expression_p): Use it.
1445         (type_dependent_expression_p): Likewise.
1447         * pt.c (tsubst_friend_function): Use reregister_specialization.
1449         PR c++/7019
1450         * cp-tree.h (lookup_qualified_name): Adjust prototype.
1451         * decl.c (lookup_qualified_name): Add complain parameter.  Adjust
1452         call to is_aggr_type.
1453         * parser.c (cp_parser_lookup_name): Adjust call to
1454         lookup_qualified_name.
1455         * pt.c (tsubst_qualified_id): Likewise.
1456         (tsubst_copy_and_build): Likewise.
1457         * semantics.c (finish_qualified_id_expr): Deal with erroneous
1458         expressions.
1460 2003-07-14  Gabriel Dos Reis <gdr@integrable-solutions.net>
1462         PR c++/11510
1463         * call.c (op_error): Properly format  REALPART_EXPR and
1464         IMAGPART_EXPR.
1465         * error.c (dump_expr): Likewise.
1467 2003-07-14  Gabriel Dos Reis <gdr@integrable-solutions.net>
1469         * error.c (dump_expr): Handle EMPTY_CLASS_EXPR.
1471 2003-07-14  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1473         PR c++/5293
1474         * call.c (initialize_reference): Improve diagnostic.
1476 2003-07-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1478         PR c++/11154
1479         * pt.c (more_specialized_class): Add full_args parameter.
1480         (most_specialized_class): Adjust calls to more_specialized_class.
1481         * cp-tree.h (more_specialized_class): Adjust declaration.
1483 2003-07-14  Dan Nicolaescu  <dann@ics.uci.edu>
1485         * lex.c (enum tree_node_kind): Delete.
1487 2003-07-13  Mark Mitchell  <mark@codesourcery.com>
1489         PR c++/11503
1490         * cp-tree.h (DECL_SELF_REFERENCE_P): New macro.
1491         (SET_DECL_SELF_REFERENCE_P): Likewise.
1492         * class.c (build_self_reference): Use SET_DECL_SELF_REFERENCE_P.
1493         * pt.c (tsubst_decl): Copy it.
1494         * search.c (lookup_base): Use DECL_SELF_REFERENCE_P.
1496         * pt.c (reregister_specialization): Fix thinko in previous change.
1498         * cp-tree.h (cp_id_kind): New type.
1499         (unqualified_name_lookup_error): Change prototype.
1500         (unqualified_fn_lookup_error): New function.
1501         (do_identifier): Remove.
1502         (do_scoped_id): Likewise.
1503         (tsubst_copy_and_build): Change prototype.
1504         (reregister_specialization): New function.
1505         (perform_koenig_lookup): Likewise.
1506         (finish_id_expression): Likewise.
1507         * call.c (build_method_call): Adjust call to
1508         unqualified_name_lookup_error.
1509         * decl.c (duplicate_decls): Use reregister_specialization.
1510         * lex.c (is_global): Remove.
1511         (unqualified_name_lookup_error): Return a value.
1512         (do_identifier): Remove.
1513         (do_scoped_id): Likewise.
1514         (identifier_typedecl_value): Remove.
1515         (unqualified_fn_lookup_error): New function.
1516         * parser.c (cp_parser_id_kind): Remove.
1517         (cp_parser_non_constant_id_expression): Remove.
1518         (cp_parser_primary_expression): Use finish_id_expression.
1519         (cp_parser_class_or_namespace_name): Use cp_id_kind, not
1520         cp_parser_id_kind.
1521         (cp_parser_postfix_expression): Use perform_koenig_lookup.
1522         (cp_parser_template_argument): Use cp_id_kind.
1523         (cp_parser_fold_non_dependent_expr): Adjust call to
1524         tsubst_copy_and_build.
1525         * pt.c (unregister_specialization): Rename to ...
1526         (reregister_specialization): This.
1527         (tsubst_friend_function): Use it.
1528         (maybe_fold_nontype_arg): Adjust call to tsubst_copy_and_build.
1529         (tsubst_qualified_id): Likewise.
1530         (tsubst_expr): Likewise.
1531         (tsubst_copy_and_build): Add function_p parameter.  Use
1532         finish_id_expression.  Introduce RECUR macro.
1533         (tsubst_non_call_postfix_expression): New function.
1534         (regenerate_decl_from_template): Use reregister_specialization.
1535         * semantics.c (perform_koenig_lookup): New function.
1536         (finish_id_expression): Likewise.
1538 2003-07-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1540         * pt.c (push_access_scope_real): Remove.
1541         (push_access_scope): Move code from push_access_scope_real.
1542         (pop_access_scope): Don't check for TEMPLATE_DECL.
1543         (instantiate_template): Defer access checking during template
1544         substitution.
1545         (regenerate_decl_from_template): Tidy.
1547 2003-07-11  Nathanael Nerode  <neroden@gcc.gnu.org>
1549         PR c++/11437
1550         * operators.def: Add definitions for __imag__, __real__.
1552 2003-07-11  Nathan Sidwell  <nathan@codesourcery.com>
1554         PR c++/11050
1555         * parser.c (cp_parser_expression_list): Rename to ...
1556         (cp_parser_parenthesized_expression_list): ... here. Add attribute
1557         parameter, parse the surounding parentheses.
1558         (cp_parser_skip_to_closing_parenthesis): Add recover and or_comma
1559         parameters. Return int.
1560         (cp_parser_skip_to_closing_parenthesis or comma): Remove.
1561         (cp_parser_postfix_expression): Adjust function call parsing.
1562         (cp_parser_new_placement): Adjust.
1563         (cp_parser_new_initializer): Likewise.
1564         (cp_parser_cast_expression): Likewise.
1565         (cp_parser_selection_statement): Likewise.
1566         (cp_parser_mem_initializer): Likewise.
1567         (cp_parser_asm_definition): Likewise.
1568         (cp_parser_init_declarator): Likewise.
1569         (cp_parser_declarator): Make
1570         cdtor_or_conv_p an int ptr.
1571         (cp_parser_direct_declarator): Likewise. Check for a parameter
1572         list on cdtors & conv functions.
1573         (cp_parser_initializer): Adjust.
1574         (cp_parser_member_declaration): Adjust.
1575         (cp_parser_attribute_list): Move code into
1576         cp_parser_parens_expression_list.
1577         (cp_parser_functional_cast): Adjust.
1578         * pt.c (type_dependent_expression_p): Erroneous expressions are
1579         non-dependent.
1581 2003-07-11  Geoffrey Keating  <geoffk@apple.com>
1583         * decl.c (cp_finish_decl): Handle 'used' attribute.
1585         * cp-lang.c (c_reset_state): New dummy routine.
1586         * cp-tree.h (finish_file): Move prototype to c-common.h.
1587         * parser.c (c_parse_file): Rename from yyparse; don't call finish_file.
1589 2003-07-11  Mark Mitchell  <mark@codesourcery.com>
1591         PR c++/8327
1592         * pt.c (tsubst_qualified_id): Implement suggested resolution for
1593         Core Issue 2.
1594         (type_dependent_expression_p): Likewise.
1596 2003-07-10  Mark Mitchell  <mark@codesourcery.com>
1598         * typeck.c (build_binary_op): Do not warn about signed
1599         vs. unsigned comparisons in the bodies of templates.
1601         PR c++/9411
1602         * parser.c (cp_parser_postfix_expression): Check dependency of
1603         functions.
1605 2003-07-09  Mark Mitchell  <mark@codesourcery.com>
1607         PR c++/10032
1608         * decl.c (cxx_init_decl_processing): With -pedantic, pedwarns are
1609         still errors.
1611         PR c++/10527
1612         * error.c (decl_to_string): Do not print default argument
1613         expressions.
1615         * cp-tree.h (break_out_calls): Remove declaration.
1616         * tree.c (break_out_calls): Remove.
1617         * typeck.c (build_modify_expr): Avoid invalid sharing of trees.
1619 2003-07-09  Nathan Sidwell  <nathan@codesourcery.com>
1621         PR c++ 9483
1622         * class.c (check_field_decls): Pass DECL_NAME to constructor_name_p.
1623         * decl2.c (constructor_name_p): Avoid repeated constructor_name
1624         calls.
1625         * decl.c (grokdeclarator): Refactor ctor/dtor detection.
1627 2003-07-09  Mark Mitchell  <mark@codesourcery.com>
1629         * typeck.c (build_x_unary_op): Take note of the fact that
1630         PREINCREMENT_EXPR and POSTINCREMENT_EXPR are binary operations on
1631         trees.
1633         * parser.c (cp_parser_primary_expression): Preserve the form of
1634         qualified expressions in templates, even if they are not
1635         dependent.
1636         * pt.c (convert_nontype_argument): Handle non-dependent SCOPE_REFs.
1637         (tsubst_qualified_id): Likewise.
1638         * search.c (accessible_p): Treat everything in the body of a
1639         template as accessible.
1641 2003-07-08  Mark Mitchell  <mark@codesourcery.com>
1643         * cp-tree.def (NON_DEPENDENT_EXPR): New node.
1644         * cp-tree.h (build_call_from_tree): Remove.
1645         (build_member_call): Likewise.
1646         (dependent_template_arg_p): Remove.
1647         (any_dependent_template_arguments_p): New function.
1648         (dependent_template_id_p): Likewise.
1649         (any_type_dependent_arguments_p): Likewise.
1650         (build_non_dependent_expr): Likewise.
1651         (build_non_dependent_args): Likewise.
1652         (build_x_compound_expr): Adjust prototype.
1653         * call.c (build_new_method_call): Handle non-dependent expressions
1654         correctly.
1655         * decl2.c (grok_array_decl): Likewise.
1656         (build_offset_ref_call_from_tree): Likewise.
1657         (build_call_from_tree): Remove.
1658         * error.c (dump_decl): Handle NON_DEPENDENT_EXPR.
1659         (dump_expr): Likewise.
1660         * init.c (build_member_call): Remove.
1661         * mangle.c (write_expression): Update handling for template-ids.
1662         * parser.c (cp_parser_primary_expression): Use
1663         any_dependent_template_arguments_p.  Update constant-expression
1664         handling.
1665         (cp_parser_postfix_expression): Use
1666         any_type_dependent_arguments_p.  Simplify call processing.
1667         (cp_parser_unary_expression): Simplify.
1668         (cp_parser_expression): Adjust for changes to
1669         build_x_compound_expr.
1670         (cp_parser_template_argument): Implement standard-conforming
1671         parsing of non-type template arguments.
1672         (cp_parser_direct_declarator): Use
1673         cp_parser_fold_non_dependent_expr.
1674         (cp_parser_fold_non_dependent_expr): New function.
1675         (cp_parser_next_token_ends_template_argument_p): Likewise.
1676         * pt.c (convert_template_argument): Do not call
1677         maybe_fold_nontype_arg.
1678         (tsubst_baselink): Likewise.
1679         (tsubst_copy_and_build): Share common code.  Make sizeof/alignof
1680         processing work correctly for non-dependent expressions.  Adjust
1681         handling of COMPOUND_EXPR.  Simplify call processing.
1682         (value_dependent_expression_p): Deal with functional casts and
1683         sizeof/alignof correctly.
1684         (type_dependent_expression_p): Handle overloaded functions.
1685         (any_type_dependent_arguments_p): New function.
1686         (any_dependent_template_arguments_p): Likewise.
1687         (dependent_template_p): Treat SCOPE_REFs as dependent.
1688         (dependent_template_id_p): Simplify.
1689         (build_non_dependent_expr): New function.
1690         (build_non_dependent_args): Likewise.
1691         * semantics.c (finish_stmt_expr): Don't make dependent
1692         statement-expresions have void type.
1693         (finish_call_expr): Handle non-dependent expressions
1694         correctly.
1695         * tree.c (lvalue_p_1): Treat NON_DEPENDENT_EXPRs as lvalues.
1696         * typeck.c (cxx_sizeof_or_alignof_type): Give the expression
1697         type size_t, even in templates.
1698         (expr_sizeof): Likewise.
1699         (finish_class_member_access_expr): Handle non-dependent expressions
1700         correctly.
1701         (build_x_indirect_ref): Likewise.
1702         (build_x_binary_op): Likewise.
1703         (build_x_unary_op): Likewise.
1704         (build_x_conditional_expr): Likewise.
1705         (build_x_compound_expr): Likewise.
1706         * typeck2.c (build_x_arrow): Likewise.
1708 Wed Jul  9 02:28:39 CEST 2003  Jan Hubicka  <jh@suse.cz>
1710         * cp-lang.c (LANG_HOOKS_TREE_INLINING_ESTIMATE_NUM_INSNS): New.
1711         * decl.c (duplicate_decls): Use DECL_ESTIMATED_INSNS.
1712         (start_function): Use DECL_ESTIMATED_INSNS.
1713         * optimize.c (maybe_clone_body): Use DECL_ESTIMATED_INSNS.
1715         * decl2.c (maybe_emit_vtables): Fix marking vtables as needed in
1716         unit-at-a-time
1718 2003-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
1720         PR c++/11030
1721         * pt.c (instantiate_class_template): Don't call xref_tag to
1722         inject name when the friend class is a specialization.
1724 2003-07-07  Mark Mitchell  <mark@codesourcery.com>
1726         * cp-tree.h (build_scoped_method_call): Remove.
1727         (lookup_qualified_name): Remove parameter.
1728         (tsubst_copy_and_build): Declare.
1729         (finish_qualified_object_call_expr): Remove.
1730         (check_accessibility_of_qualified_id): New function.
1731         (finish_qualified_id_expr): Likewise.
1732         (non_reference): Likewise.
1733         (build_expr_from-tree): Remove.
1734         * call.c (non_reference): Remove.
1735         (build_scoped_method_call): Likewise.
1736         (build_method_call): Use error_operand_p.  Assert that we are not
1737         processing a template.
1738         (standard_conversion): Use non_reference.
1739         * class.c (build_vtbl_entry_ref): Likewise.
1740         (build_vtbl_ref_1): Likewise.
1741         * cvt.c (build_expr_type_conversion): Use non_reference.
1742         * decl.c (lookup_qualified_name): Remove flags parameter.
1743         (grok_op_properties): Use non_reference.
1744         * decl2.c (grok_array_decl): Likewise.
1745         (build_expr_from_tree): Remove.
1746         (build_offset_ref_call_from_tree): Update comment.
1747         * error.c (parm_to_string): Call reinit_global_formatting_buffer.
1748         * except.c (prepare_eh_types): Use non_reference.
1749         (can_convert_eh): Likewise.
1750         * init.c (build_dtor_call): Avoid using build_method_call.
1751         * mangle.c (write_template_param): Remove misleading comment.
1752         * method.c (locate_copy): Use non_reference.
1753         * parser.c (cp_parser_scope_through_which_access_occurs): Remove.
1754         (cp_parser_primary_expression): Do not create SCOPE_REFs is
1755         non-dependent contexts.
1756         (cp_parser_postfix_expression): Use finish_qualified_id_expr.
1757         (cp_parser_direct_declarator): Use tsubst_copy_and_build, not
1758         build_expr_from_tree.
1759         (cp_parser_lookup_name): Adjust call to lookup_qualified_name.
1760         Use check_accessibility_of_qualified_id.
1761         * pt.c (maybe_fold_nontype_arg): Use tsubst_copy_and_build, not
1762         build_expr_from_tree.
1763         (tsubst_baselink): New function.
1764         (tsubst_qualified_id): Likewise.
1765         (tsubst_copy): Use them.  Remove support for METHOD_CALL_EXPR.
1766         (tsubst_expr): Adjust call to lookup_qualified_name.
1767         (tsubst_copy_and_build): Handle SCOPE_REFs specially.  Adjust
1768         handling of CALL_EXPRs.
1769         (value_dependent_expression_p): Use INTEGRAL_OR_ENUMERATION_TYPE_P.
1770         * rtti.c (get_tinfo_decl_dynamic): Use non_reference.
1771         * search.c (check_final_overrider): Likewise.
1772         * semantics.c (check_accessibility_of_qualified_id): New function.
1773         (finish_qualified_object_call_expr): Remove.
1774         * typeck.c (target_type): Use non_reference.
1775         (cxx_sizeof_or_alignof_type): Likewise.
1776         (dubious_conversion_warnings): Likewise.
1777         (convert_for_initialization): Likewise.
1778         (non_reference): New function.
1780 2003-07-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1782         * decl.c (print_binding_level, print_other_binding_stack,
1783         print_binding_stack): Merge uses of HOST_PTR_PRINTF with adjacent
1784         stdio calls.
1785         * ptree.c (cxx_print_decl, cxx_print_binding): Likewise.
1787 2003-07-07  Andreas Jaeger  <aj@suse.de>
1789         * friend.c: Convert to ISO C90 prototypes.
1791         * Make-lang.in ($(srcdir)/cp/cfns.h): Use ANSI-C as output
1792         language.
1793         * cfns.h: Regenerate.
1795         * typeck.c: Convert remaining prototypes to ISO C90.
1796         * search.c: Likewise.
1798         * decl2.c (build_expr_from_tree): Convert prototype to ISO C90.
1799         * semantics.c (expand_or_defer_fn): Likewise
1800         * mangle.c (discriminator_for_string_literal): Likewise.
1801         * g++spec.c (lang_specific_driver): Likewise.
1803         * search.c (lookup_base_r): Remove unused variable.
1805 2003-07-07  Nathan Sidwell  <nathan@codesourcery.com>
1807         * semantics.c: (genrtl_try_block) Adjust emit_line_note
1808         calls.
1810 2003-07-07  Andreas Jaeger  <aj@suse.de>
1812         * search.c (lookup_base_r): Remove unused variable.
1814 2003-07-06  Michael Chastain  <mec@shout.net>
1816         PR debug/10055
1817         * lex.c (cxx_init): Call push_srcloc and pop_srcloc rather than
1818         assigning to input_filename directly.
1820 2003-07-06  Kazu Hirata  <kazu@cs.umass.edu>
1822         * call.c: Fix comment formatting.
1823         * class.c: Likewise.
1824         * cp-tree.h: Likewise.
1825         * decl.c: Likewise.
1826         * decl2.c: Likewise.
1827         * error.c: Likewise.
1828         * method.c: Likewise.
1829         * name-lookup.c: Likewise.
1830         * parser.c: Likewise.
1831         * pt.c: Likewise.
1832         * rtti.c: Likewise.
1833         * search.c: Likewise.
1834         * typeck.c: Likewise.
1836 2003-07-06  Mark Mitchell  <mark@codesourcery.com>
1838         PR c++/11345
1839         * search.c (lookup_base_r): Remove is_non_public and
1840         within_current_scope parameters.  Remove other dead code.
1841         (lookup_base): Adjust call to lookup_base_r.
1842         (adjust_result_of_qualified_name_lookup): Improve comment.
1843         * semantics.c (finish_call_expr): Use maybe_dummy_object.
1845 2003-07-06  Neil Booth  <neil@daikokuya.co.uk>
1847         * cp-lang.c (LANG_HOOKS_HANDLE_FILENAME,
1848         LANG_HOOKS_MISSING_ARGUMENT): Override.
1850 2003-07-05  Mark Mitchell  <mark@codesourcery.com>
1852         PR c++/11431
1853         * typeck.c (build_static_cast): Check for reference conversions
1854         earlier.
1856 2003-07-04  Mark Mitchell  <mark@codesourcery.com>
1858         * cp-tree.h (perform_integral_promotions): Declare.
1859         * call.c (build_addr_func): Use decay_conversion.
1860         (convert_arg_to_ellipsis): Likewise.  Remove misleading comment.
1861         (convert_for_arg_passing): Use perform_integral_promotions.
1862         * cvt.c (build_expr_type_conversion): Use decay_conversion.
1863         (type_promotes_to): Do not return a cv-qualified type.
1864         * decl.c (grok_reference_init): Fix formatting.
1865         (get_atexit_node): Use decay_conversion.
1866         (build_enumerator): Use perform_integral_promotions.
1867         * init.c (build_vec_init): Use decay_conversion.
1868         * semantics.c (finish_expr_stmt): Likewise.
1869         (finish_switch_cond): Use perform_integral_promotions.
1870         * typeck.c (default_conversion): Likewise.
1871         (perform_integral_promotions): New function.
1872         (build_indirect_ref): Use decay_conversion.
1873         (build_array_ref): Use perform_integral_promotions.
1874         (convert_arguments): Use decay_conversion.
1875         (build_unary_op): Use perform_integral_promotions.
1876         (build_c_cast): Use decay_conversion.
1877         (build_modify_expr): Likewise.
1878         (convert_for_initialization): Likewise.
1879         * typeck2.c (build_x_arrow): Likewise.
1881 2003-07-04  Kazu Hirata  <kazu@cs.umass.edu>
1883         * call.c: Fix comment typos.
1884         * class.c: Likewise.
1885         * cp-tree.h: Likewise.
1886         * cvt.c: Likewise.
1887         * decl2.c: Likewise.
1888         * decl.c: Likewise.
1889         * init.c: Likewise.
1890         * mangle.c: Likewise.
1891         * parser.c: Likewise.
1892         * pt.c: Likewise.
1893         * search.c: Likewise.
1894         * semantics.c: Likewise.
1895         * tree.c: Likewise.
1896         * typeck.c: Likewise.
1898 2003-07-04  Zack Weinberg  <zack@codesourcery.com>
1900         * parser.c (cp_lexer_read_token): No need to handle string
1901         constant concatenation.
1903 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1905         * cp-tree.h (GCC_DIAG_STYLE, ATTRIBUTE_GCC_CXXDIAG): Define.
1906         (cp_error_at, cp_warning_at, cp_pedwarn_at): Mark with
1907         ATTRIBUTE_GCC_CXXDIAG.
1909 2003-07-03  Mark Mitchell  <mark@codesourcery.com>
1911         * call.c (build_addr_func): Handle bound pointers-to-members.
1912         (build_method_call): Do not call resolve_offset_ref.
1913         (implicit_conversion): Likewise.
1914         (resolve_scoped_fn_name): Use finish_non_static_data_member, not
1915         resolve_offset_ref.
1916         (resolve_args): Do not call resolve_offset_ref.
1917         (build_conditional_expr): Likewise.
1918         (build_new_method_call): Likewise.
1919         * cp-tree.def (OFFSET_REF): Update documentation.
1920         * cvt.c (cp_convert_to_pointer): Update handling of conversions from
1921         pointers to members to pointers.
1922         (ocp_convert): Do not call resolve_offset_ref.
1923         (convert_to_void): Likewise.
1924         (build_expr_type_conversion): Likewise.
1925         * decl2.c (delete_sanity): Likewise.
1926         * init.c (resolve_offset_ref): Simplify greatly.
1927         (build_vec_delete): Do not call resolve_offset_ref.
1928         * parser.c (cp_parser_postfix_expression): Call resolve_offset_ref
1929         if appropriate.
1930         (cp_parser_unary_expression): Use
1931         cp_parser_simple_cast_expression.
1932         (cp_parser_delete_expression): Likewise.
1933         (cp_parser_cast_expression): Likewise.
1934         (cp_parser_pm_expression): Use cp_parser_binary_op.
1935         (cp_parser_simple_cast_expression): New function.
1936         * rtti.c (build_dynamic_cast_1): Do not call resolve_offset_ref.
1937         * semantics.c (finish_increment_expr): Likewise.
1938         (finish_typeof): Likewise.
1939         * tree.c (lvalue_p_1): Do not handle OFFSET_REF.
1940         * typeck.c (require_complete_type): Do not handle OFFSET_REFs.
1941         (decay_conversion): Do not call resolve_offset_ref.
1942         (finish_class_member_access_expr): Likewise.
1943         (convert_arguments): Likewise.
1944         (build_x_binary_op): Handle DOTSTAR_EXPR.
1945         (condition_conversion): Do not call resolve_offset_ref.
1946         (unary_complex_lvalue): Likewise.
1947         (build_static_cast): Likewise.
1948         (build_reinterpret_cast): Likewise.
1949         (build_const_cast): Likewise.
1950         (build_c_cast): Likewise.
1951         (build_modify_expr): Likewise.
1952         (convert_for_assignment): Likewise.
1953         (convert_for_initialization): Likewise.
1954         * typeck2.c (build_x_arrow): Likewise.
1955         (build_m_component_ref): Simplify.
1957         * call.c (build_scoped_method_call): Use convert_to_void.
1958         (build_method_call): Likewise.
1959         * class.c (check_field_decls): Remove dead code.
1960         * cvt.c (convert_from_reference): Remove OFFSET_TYPE handling.
1961         * decl2.c (grok_array_decl): Remove dead code.
1962         (arg_assoc_type): Avoid relying on POINTER_TYPE over OFFSET_TYPE
1963         as pointer-to-member representation.
1964         * init.c (build_offset_ref): Tidy.
1965         (build_vec_delete_1): Use convert_to_void.
1966         * mangle.c (write_type): Avoid relying on POINTER_TYPE over OFFSET_TYPE
1967         as pointer-to-member representation.
1969 2003-07-03  Nathan Sidwell  <nathan@codesourcery.com>
1971         PR c++/9162
1972         * decl.c (grokdeclarator): Return friend decls, not
1973         void_type_node.
1974         * decl2.c (grokfield): Alter friend decl check.
1975         * parser.c (struct cp_parser): Document default_arg chain on
1976         unparsed_functions_queue.
1977         (cp_parser_save_default_args): New.
1978         (cp_parser_init_declarator, cp_parser_function_definition,
1979         cp_parser_member_declaration): Call it.
1980         (cp_parser_class_specifier): Remove unused variable. Alter
1981         processing of unparsed_functions_queue.
1983 2003-07-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1985         * class.c (add_method, check_field_decl): Fix format specifier.
1986         * decl.c (duplicate_decls, pushdecl, check_goto,
1987         fixup_anonymous_aggr, maybe_commonize_var, grokdeclarator,
1988         start_enum): Likewise.
1989         * decl2.c (ambiguous_decl): Likewise.
1990         * pt.c (redeclare_class_template): Likewise.
1992 2003-07-02  Nathan Sidwell  <nathan@codesourcery.com>
1994         PR c++/10219
1995         * pt.c (type_unification_real): Don't unify exprs of error type.
1996         * tree.c (error_type): Don't die on error_type.
1998         PR c++/9779
1999         * decl2.c (arg_assoc_class): Don't die on NULL type.
2000         * typeck.c (type_unknown_p): Don't die on untyped expressions.
2002 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
2004         PR c++/6949
2005         * decl2.c (grokfield): Create TEMPLATE_DECLs for methods in local
2006         classes.
2008 2003-07-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2010         * error.c (locate_error): %P takes an `int', not a `tree'.
2012 Wed Jul  2 00:36:48 CEST 2003  Jan Hubicka  <jh@suse.cz>
2014         * decl2.c (defer_fn): Set DECL_DEFER_OUTPUT.
2015         (finish-file): Do not process function with DECL_DEFER_OUTPUT clear;
2016         clear DECL_DEFER_OUTPUT once function is processed; avoid flags
2017         massaging.
2019         * cp-tree.h (DECL_NEEDED_P): Support unit-at-a-time
2020         (expand_or_defer_fn): Declare.
2021         (lower_function): Declare.
2022         * decl.c (start_cleanup_fn): Use expand_or_defer_fn.
2023         * decl2.c: Include cgraph.h and varpool.h
2024         (maybe_emit_vtables):  Make explicit instantations as needed.
2025         (mark_member_pointers, lower_function): New functions.
2026         (finish_file): Do unit-at-a-time.
2027         * method.c (synthesize_method): Use expand_or_defer_fn.
2028         * optimize.c (maybe_clone_body): Use expand_or_defer_fn.
2029         * parser.c (cp_parser_function_definition_after_decl): Use
2030         expand_or_defer_fn.
2031         * pt.c (instantiate_decl): Likewise.
2032         * semantics.c: Include cgraph.h
2033         (expand_or_defer_fn): Break out from ...
2034         (expand_body): ... here; deal with unit-at-a-time.
2035         * cp-lang.c (LANG_HOOKS_CALLGRAPH_EXPAND_FUNCTION,
2036         LANG_HOOKS_CALLGRAPH_LOWER_FUNCTION): Define.
2038 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
2040         * call.c (resolve_scoped_fn_name): Return error_mark_node for
2041         erroneous cases.
2043 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
2045         PR c++/11149
2046         * call.c (resolve_scoped_fn_name): Check that the qualifying scope
2047         is a class type.
2049 2003-07-01  Giovanni Bajo  <giovannibajo@libero.it>
2051         PR c++/8046
2052         * error.c (dump_decl): Handle BIT_NOT_EXPR as
2053         pseudo destructor calls.
2055 2003-07-01  Nathan Sidwell  <nathan@codesourcery.com>
2057         * cp-tree.h (define_label): Replace filename and lineno
2058         arguments with a location_t.
2059         * decl.c (pop_label): Adjust define_label call.
2060         (define_label): Replace filename and lineno arguments with a
2061         location_t.
2062         * semantics.c (finish_label): Adjust define_label call.
2064 2003-07-01  Mark Mitchell  <mark@codesourcery.com>
2066         PR c++/9559
2067         * decl2.c (grokfield): Do not build NOP_EXPRs around the
2068         error_mark_node.
2070 2003-06-30  Neil Booth  <neil@daikokuya.co.uk>
2072         * Make-lang.in: Update.
2073         * cp-lang.c (c_language): Define.
2074         (LANG_HOOKS_INIT_OPTIONS): Use common hook.
2075         * cp-tree.h (cxx_init_options): Remove.
2076         * lex.c: Don't include diagnostic.h.
2077         (cxx_init_options): Remove.
2079 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
2081         PR c++/4933
2082         * error.c (dump_expr): Support correctly the COMPOUND_EXPR
2083         tree generated within a template. Use dump_expr to dump an
2084         expression sizeof.
2086 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
2088         * mangle.c (write_expression): Exit gracefully when trying to
2089         mangle a CALL_EXPR.
2091 2003-06-30  Giovanni Bajo  <giovannibajo@libero.it>
2093         PR c++/10750
2094         * parser.c (cp_parser_primary_expression): A VAR_DECL with a
2095         (value- or type-) dependent expression as DECL_INITIAL is a
2096         valid constant-expression (at parser time).
2098 2003-06-30  Giovanni Bajo <giovannibajo@libero.it>
2100         PR c++/11106
2101         * error.c (dump_decl): Call dump_decl to dump the DECL_NAME for a
2102         USING_DECL, instead of print_tree_identifier.
2104 2003-06-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2106         * cp-tree.h (language_to_string): Adjust declaration.
2107         * dump.c (cp_dump_tree): Adjust usage.
2108         * error.c (dump_char): Use output_formatted_scalar. Tidy.
2109         (parm_to_string): Lose unused parameter.  Tidy.
2110         (expr_to_string): Likewise.
2111         (code_to_string): Likewise.
2112         (language_to_string): Likewise.
2113         (op_to_string): Likewise.
2114         (assop_to_string): Likewise.
2115         (digit_buffer): Remove.
2116         (dump_type): Format builtin vector type as __vector__.
2118 2003-06-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2120         * error.c (print_integer): Remove.
2121         (dump_type_suffix): Adjust.
2122         (dump_expr): Likewise.
2124 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
2126         * error.c (print_instantiation_partial_context): Take a
2127         location_t.
2128         (print_instantiation_full_context): Adjust.
2129         (print_instantiation_context): Adjust.
2131         * cp-tree.h (cp_line_of, cp_file_of): Remove.
2132         * error.c (cp_line_of, cp_file_of): Merge into ...
2133         (location_of): ... here. Make static, return a location_t.
2134         (cp_error_at, cp_warning_at, cp_pedwarn_at): Adjust.
2136 2003-06-28  Nathan Sidwell  <nathan@codesourcery.com>
2138         PR c++/10784
2139         * call.c (joust): Move warn_conversion check outwards.
2141 2003-06-27  Zack Weinberg  <zack@codesourcery.com>
2143         * decl.c (build_typename_type)
2144         * mangle.c (write_template_template_arg)
2145         * parser.c (cp_parser_scope_through_which_access_occurs)
2146         * pt.c (push_access_scope_real, push_access_scope, pop_access_scope)
2147         * repo.c (get_base_filename)
2148         * semantics.c (maybe_convert_cond):
2149         Mark the definition static, matching the forward declaration.
2151 2003-06-27  Mark Mitchell  <mark@codesourcery.com>
2153         PR c++/10468
2154         * pt.c (tsubst): Handle qualified TYPEOF_TYPEs correctly.
2156 2003-06-27  Mark Mitchell  <mark@codesourcery.com>
2158         PR c++/10796
2159         * decl.c (finish_enum): Implement DR377.
2161         * decl.c (cp_finish_decl): Don't make variables with reference
2162         type readonly while they are being initialized.
2164 2003-06-26  Mark Mitchell  <mark@codesourcery.com>
2166         PR c++/11332
2167         * typeck.c (build_static_cast): Avoid returning expressions with
2168         reference type.
2170 2003-06-26  Nathan Sidwell  <nathan@codesourcery.com>
2172         * call.c (build_op_delete_call): Use strip_array_call. Correct
2173         error message to say 'delete' or 'delete[]'.
2175 2003-06-26  Giovanni Bajo  <giovannibajo@libero.it>
2177         PR c++/8266
2178         * pt.c (check_explicit_specialization): When looking up a
2179         template function from an identifier outside class-scope, bind
2180         it to CP_DECL_CONTEXT.
2182 2003-06-25  Mark Mitchell  <mark@codesourcery.com>
2184         PR c++/10990
2185         * search.c (lookup_base_r): Rely on accessible_p, rather than
2186         trying to emulate that logic here.
2188         PR c++/10931
2189         * call.c (convert_like): Pass issue_conversion_warnings.
2190         (convert_like_with_context): Likewise.
2191         (convert_like_real): Add issue_conversion_warnings parameter.
2192         (perform_direct_initialization_if_possible): New function.
2193         * cp-tree.h (perform_direct_initialization_if_possible): Declare it.
2194         * typeck.c (check_for_casting_away_constness): New function.
2195         (build_static_cast): Rewrite.
2197 2003-06-24  Nathan Sidwell  <nathan@codesourcery.com>
2199         * call.c (enforce_access): Assert we get a binfo.
2200         (build_op_delete_call): Pass a binfo to
2201         perform_or_defer_access_check.
2202         * class.c (alter_access): Likewise.
2203         * decl.c (make_typename_type): Likewise.
2204         (make_unbound_class_template): Likewise.
2205         * lex.c (do_identifier): Likewise.
2206         * method.c (hack_identifier): Likewise.
2207         * parser.c (cp_parser_lookup_name): Likewise.
2208         * search.c (lookup_member): Likewise. Move IDENTIFIER_CLASS_VALUE
2209         test.
2210         * semantics.c (finish_non_static_data_member): Likewise.
2211         (perform_or_defer_access_check): Expect a binfo.
2212         * typeck.c (comptypes): Expect types.
2214         * mangle.c (find_substitution): Don't pass a non-type to same_type_p
2215         * friend.c (make_friend_class): Likewise.
2216         * pt.c (check_default_tmpl_args): Likewise.
2217         (lookup_template_class): Likewise.
2219 Tue Jun 24 15:30:05 CEST 2003  Jan Hubicka  <jh@suse.cz>
2221         * method.c (thunk_labelno): Move outside ifdef block to make garbage
2222         collector happy.
2224 Tue Jun 24 13:52:34 CEST 2003  Jan Hubicka  <jh@suse.cz>
2226         * class.c (build_vtable): Make vtables.
2227         * cp-tree.h (DECL_VTABLE_OR_VTT_P): New macro.
2228         * decl2.c (output_vtable_inherit): Rename to ...
2229         (prepare_assemble_variable): ... this one; change interface.
2230         (maybe_emit_vtables): Do not call output_vtable_inherit.
2231         * cp-lang.c (LANG_HOOKS_PREPARE_ASSEMBLE_VARIABLE): Define.
2232         * cp-tree.h (prepare_assemble_variable): New.
2234 2003-06-23  Andrew Pinski <pinskia@physics.uc.edu>
2236         * method.c: add prototype for make_alias_for_thunk.
2237         (thunk_labelno, make_alias_for_thunk): only define
2238         if ASM_OUTPUT_DEF is defined.
2240 2003-06-23  Jakub Jelinek  <jakub@redhat.com>
2242         * method.c (thunk_labelno): New variable.
2243         (make_alias_for_thunk): New function.
2244         (use_thunk): Use it if defined ASM_OUTPUT_DEF.  Put the thunk
2245         into the same section as the function it is calling.
2246         Include gt-cp-method.h.
2247         * Make-lang.in (gt-cp-method.h): Depend on s-gtype.
2248         (cp/method.o): Depend on gt-cp-method.h.
2249         * config-lang.in (gtfiles): Add $(srcdir)/cp/method.c.
2251 Mon Jun 23 19:41:27 CEST 2003  Jan Hubicka  <jh@suse.cz>
2253         * decl.c (register_dtor_fn): Mark cleanup as used.
2254         * decl2.c (mark_vtable_entries): Skip nops.
2255         * rtti.c (get_tinfo_ptr): Mark tinfo as used.
2256         (build_dynamic_cast_1): Likewise.
2257         (tinfo_base_init): Likewise.
2258         (emit_tinfo_decl): Likewise.
2260 2003-06-23  Jakub Jelinek  <jakub@redhat.com>
2262         * mangle.c (hash_type): Val is the TREE_LIST itself, not a pointer
2263         to it.
2265 2003-06-21  Gabriel Dos Reis <gdr@integrable-solutions.net>
2267         PR c++/10784
2268         * call.c (joust): Warn about choosing conversion sequence only if
2269         -Wconversion.
2271 2003-06-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2273         PR c++/10864
2274         * call.c (op_error): Tidy.
2275         * error.c (dump_expr): Properly format 'T()' when T is an
2276         aggregate type.
2278 2003-06-21  Gabriel Dos Reis <gdr@integrable-solutions.net>
2280         PR c++/10915
2281         * decl.c (grok_op_properties): Warn possible confusing conversion
2282         only if -Wconversion.
2284 2003-06-20  Mark Mitchell  <mark@codesourcery.com>
2286         PR c++/10749
2287         * parser.c (cp_parser_class_head): See through dependent names
2288         when parsing a class-head.
2290         PR c++/10845
2291         * pt.c (try_class_unification): Correct handling of member class
2292         templates.
2294 2003-06-20  Nathan Sidwell  <nathan@codesourcery.com>
2296         * semantics.c (genrtl_finish_function): Adjust
2297         expand_function_end call.
2299 2003-06-19  Mark Mitchell  <mark@codesourcery.com>
2301         PR c++/10939
2302         * pt.c (tsubst_decl): Do not try to substitute into non-dependent
2303         functions.
2304         (value_dependent_expression_p): Correct logic for FUNCTION_DECLs.
2306         PR c++/9649
2307         * cp-tree.h (pushdecl_class_level): Change prototype.
2308         (push_class_level_binding): Likewise.
2309         * decl.c (add_binding): Reject duplicate static data members.
2310         (pushdecl_class_level): Return a value indicating whether or not
2311         the binding was valid.
2312         (push_class_level_binding): Likewise.
2313         * semantics.c (finish_member_declaration): Don't keep invalid
2314         declarations.
2316         PR c++/11041
2317         * call.c (initialize_reference): Do not use cp_finish_decl to emit
2318         temporary variables.
2319         * cp-tree.h (static_aggregates): Declare.
2320         (pushdecl_top_level_and_finish): Likewise.
2321         * decl.c (pushdecl_top_level_1): New function.
2322         (pushdecl_top_level): Use it.
2323         (pushdecl_top_level_and_finish): New function.
2324         (initialize_local_var): Remove redundant code.
2325         (cp_finish_decl): Remove support for RESULT_DECLs.  Don't check
2326         building_stmt_tree.
2327         * decl.h (static_aggregates): Remove.
2328         * decl2.c (get_guard): Use pushdecl_top_level_and_finish.
2329         * rtti.c (get_tinfo_decl): Use pushdecl_top_level_and_finish.
2330         (tinfo_base_init): Likewise.
2332 2003-06-19  Matt Austern  <austern@apple.com>
2334         PR c++/11228
2335         * init.c (build_zero_init): Assert that number of array elements
2336         is an integer constant.
2337         (build_default_init) Don't use build_zero_init for arrays with
2338         variable number of elements.
2340 2003-06-19  Andreas Jaeger  <aj@suse.de>
2342         * cp-tree.h: Remove duplicated declarations.
2344 2003-06-18  Nathanael Nerode  <neroden@gcc.gnu.org>
2346         * pt.c: Convert to ISO C.
2347         * semantics.c: Convert to ISO C.
2349 2003-06-18  Nathan Sidwell  <nathan@codesourcery.com>
2351         * cp-tree.h (comp_except_specs, compparms, cp_has_mutable_p,
2352         at_least_as_qualified_p, more_qualified_p): Return bool.
2353         * typeck.c: ANSIFY function definitions.
2354         (comp_array_types): Take redeclaration bool parameter.
2355         (comptypes): Rearrange STRICT handling.
2356         (at_least_as_qualified_p, more_qualified_p,
2357         comp_cv_qualification): Cache cv quals.
2358         (compparms): Rearrange loop.
2360 2003-06-18  Nathan Sidwell  <nathan@codesourcery.com>
2362         * cp-tree.h (COMPARE_RELAXED): Rename to ...
2363         (COMPARE_DERIVED): ... here. Adjust comment.
2364         (resolve_typename_type_in_current_instantiation): Remove.
2365         (cp_tree_equal, comptypes): Return a bool.
2366         * cvt.c (convert_to_reference): Adjust comptypes call.
2367         * pt.c (template_args_equal, unify,): Adjust cp_tree_equal call.
2368         (resolve_typename_type_in_current_instantiation): Remove.
2369         * tree.c (cp_tree_equal): Return bool. Cope with TEMPLATE_DECLs and
2370         IDENTIFIER_NODEs. Abort if undeciderable. Adjust recursive
2371         calls. Refactor code.
2372         * typeck.c (comp_array_types): Return bool. Lose callback.
2373         parameter. Adjust cp_tree_equal calls.
2374         (comptypes): Return bool. Adjust strict handling. Remove relaxed
2375         enumeration and java type handling. Deal with typename types here.
2376         Adjust recursive and cp_tree_equals calls. Adjust base and derived
2377         checking.
2378         (comp_target_types): Remove unreachable code. Adjust
2379         same_or_base_type_p calls.
2380         (ptr_reasonably_similar): Adjust base and derived check.
2382         * typeck.c (maybe_warn_about_returning_address_of_local): Remove
2383         unused calculation.
2384         (check_return_expr): Adjust error messages.
2385         * cp-tree.def (SCOPE_REF): Correct comment.
2387 2003-06-17  Mark Mitchell  <mark@codesourcery.com>
2389         * mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
2390         string again.
2392 2003-06-17  Robert Abeles  <rabeles@archaelogic.com>
2394         * optimize.c (dump_function): Form complete flag name by
2395         prefixing 'fdump-' to string returned by dump_flag_name().
2397 2003-06-17  Mark Mitchell  <mark@codesourcery.com>
2399         * mangle.c (mangle_conv_op_name_for_type): Correct sprintf format
2400         string.
2402 2003-06-17  Jason Merrill  <jason@redhat.com>
2404         PR c++/10929
2405         * decl.c (grokfndecl): Don't mark a function inline for
2406         -finline-functions if it isn't defined.
2408 2003-06-17  Mark Mitchell  <mark@codesourcery.com>
2410         PR c++/10712
2411         * class.c (handle_using_decl): Robustify.
2413         PR c++/11105
2414         * cp-tree.h (DECL_CONV_FN_TYPE): New method.
2415         * mangle.c (struct globals): Remove internal_mangling_p.
2416         (write_unqualified_name): Use DECL_CONV_FN_TYPE.
2417         (write_template_parm): Don't write out the level number.
2418         (conv_type_names): New variable.
2419         (hash_type): New function.
2420         (compare_type): Likewise.
2421         (mangle_conv_op_name_for_type): Don't try to mangle conversion
2422         operator names.
2423         * search.c (lookup_conversion_operator): New function.
2424         (lookup_fnfields_1): Use it.
2426 2003-06-17  Andreas Jaeger  <aj@suse.de>
2428         * except.c: Remove duplicate declaration of push_eh_cleanup.
2430         * call.c: Remove extra declaration of inhibit_warnings.
2432 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
2434         2003-06-16  Jens-Michael Hoffmann  <jensmh@gmx.de>
2435         * mangle.c: Convert to ISO C.
2437 2003-06-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2439         * cp/decl.c, cp/pt.c, cp/search.c, cp/tree.c: Don't use the PTR
2440         macro.
2442 2003-06-16  Nathanael Nerode  <neroden@gcc.gnu.org>
2444         * tree.c: Convert to ISO C.
2446 2003-06-16  Kazu Hirata  <kazu@cs.umass.edu>
2448         * cp-tree.h: Follow spelling conventions.
2449         * mangle.c: Likewise.
2450         * method.c: Likewise.
2451         * parser.c: Likewise.
2453 2003-06-14  Nathan Sidwell  <nathan@codesourcery.com>
2455         * decl.c (start_function): Adjust init_function_start call.
2456         * method.c (use_thunk): Likewise.
2457         * semantics.c (genrtl_start_function): Likewise.
2459 2003-06-14  Neil Booth  <neil@daikokuya.co.uk>
2461         * Make-lang.in: Remove c-options.o.
2463 2003-06-13  Nathanael Nerode  <neroden@gcc.gnu.org>
2465         * lex.c: Convert to ISO C.
2467         2003-05-19  Jens-Michael Hoffmann  <jensmh@gmx.de>
2468         * init.c: removes use of PARAMS macro.  Use ISO style function
2469         declarations.  (Not copyright-significant change.)
2471         * rtti.c: Remove PARAMS.
2473         * typeck2.c: Convert to ISO C.
2475 2003-06-12  Mark Mitchell  <mark@codesourcery.com>
2477         PR c++/10635
2478         * typeck.c (build_c_cast): Check that the destination type is
2479         complete.
2481 2003-06-11  Mark Mitchell  <mark@codesourcery.com>
2483         PR c++/10432
2484         * cp-tree.h (finish_declarator): Remove.
2485         * decl.c (cp_finish_decl): Make sure to pop_nested_class even for
2486         erroneous declarations.
2487         * semantics.c (finish_declarator): Remove.
2489 2003-06-11  Roger Sayle  <roger@eyesopen.com>
2491         * decl2.c (generate_ctor_or_dtor_function): Avoid expanding a
2492         global static constructor/destructor if it will be empty, i.e.
2493         either doesn't call any ctors/dtors or only calls pure or const
2494         ctors/dtors.
2496 2003-06-11  Mark Mitchell  <mark@codesourcery.com>
2498         * mangle.c (tm_p.h): Include it.
2499         * Make-lang.in (cp/mangle.o): Depend on $(TM_P_H).
2501         PR c++/11131
2502         * tree.c (cp_cannot_inline_fn): Check for "inline" before
2503         instantiation.
2505 2003-06-10  Jason Merrill  <jason@redhat.com>
2507         PR c++/10968
2508         * pt.c (mark_decl_instantiated): Clear DECL_COMDAT.
2510 2003-06-10  Andrew Pinski  <pinskia@physics.uc.edu>
2512         * decl.c (start_cleanup_fn): Move static 'counter' out, mark with GTY.
2513         (start_cleanup_cnt): New.
2515 2003-06-10  Mark Mitchell  <mark@codesourcery.com>
2517         PR c++/11131
2518         * cp-tree.h (template_for_substitution): Declare.
2519         * decl2.c (mark_used): Use it when figuring out whether or not a
2520         function is inline.
2521         * pt.c (template_for_substitution): Give it external linkage.
2522         * tree.c (cp_cannot_inline_tree_fn): Instantiate as early as
2523         possible.
2525 2003-06-09  Zack Weinberg  <zack@codesourcery.com>
2527         PR 8861
2528         * mangle.c (write_real_cst): New function.  Implement
2529         ABI-compliant mangling of floating-point literals when
2530         -fabi-version>=2; provide backward compatibility with 3.3 when
2531         -fabi-version=1 (with warning).  Clarify commentary.
2532         (write_template_arg_literal): Use write_real_cst.
2534 2003-06-07  Andreas Jaeger  <aj@suse.de>
2536         * cp/decl.c (xref_tag): Remove undefined macro NONNESTED_CLASSES.
2538 2003-06-07  Neil Booth  <neil@daikokuya.co.uk>
2540         * cp-lang.c (LANG_HOOKS_DECODE_OPTON): Drop.
2541         (LANG_HOOKS_HANDLE_OPTION): Override.
2542         * cp-tree.h (cxx_init_options): Update.
2543         * lex.c (cxx_init_options): Update.
2545 Thu Jun  5 18:33:40 CEST 2003  Jan Hubicka  <jh@suse.cz>
2547         * Make-lang.in:  Add support for stageprofile and stagefeedback
2549 2003-06-04  J"orn Rennecke <joern.rennecke@superh.com>
2551         * decl.c (grokdeclarator): Error_mark_node in, error_mark_node out.
2553 2003-06-04  Andreas Jaeger  <aj@suse.de>
2555         * g++spec.c (lang_specific_driver): Remove ALT_LIBM usage.
2557 2003-06-03  Jason Merrill  <jason@redhat.com>
2559         * cp/cp-tree.h (CP_AGGREGATE_TYPE_P): Accept vectors.
2561         * cp/decl.c (reshape_init): Handle vectors.
2563         * testsuite/g++.dg/init/array10.C: New.
2565 2003-06-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2567         PR c++/10940
2568         * pt.c (check_explicit_specialization): Check for 'static'
2569         earlier.
2571 2003-05-31  Diego Novillo  <dnovillo@redhat.com>
2573         * class.c (dump_array): Call CONSTRUCTOR_ELTS to access
2574         the operand of a CONSTRUCTOR node.
2576 2003-05-31  Gabriel Dos Reis <gdr@integrable-solutions.net>
2578         * decl.c (cp_binding_level::this_entity): Rename from this_class.
2579         (cxx_scope_descriptor): New function.
2580         (cxx_scope_debug): Likewise.
2581         (push_binding_level): Use it.
2582         (pop_binding_level): Likewise.
2583         (suspend_binding_level): Likewise.
2584         (resume_binding_level): Likewise.
2585         (pushlevel_class): Adjust use of this_class.
2586         (pushtag): Likewise.
2587         (lookup_name_real): Likewise.
2588         (global_scope_name): New variable.
2589         (initialize_predefined_identifiers): Initialize it.
2590         (push_namespace): Use it.
2591         (make_cxx_scope): New function.
2592         (pushlevel): Use it.
2593         (pushlevel_class): Likewise.
2594         (push_binding_level): Simplify.  Loose the last two arguments.
2595         (make_binding_level): Remove.
2596         (initial_push__namespace_scope): New function.
2597         (push_namespace): Use it.  Simplify.
2598         (cxx_init_decl_processing): Likewise.
2599         (declare_namespace_level): Remove.
2601 2003-05-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2603         PR c++/10956
2604         * pt.c (instantiate_decl): Don't use full template arguments if
2605         we are dealing with specializations.
2607 2003-05-29  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2609         * decl.c (ENABLE_SCOPE_CHECKING): Rename from DEBUG_BINDING_LEVELS.
2610         (binding_depth): Unconditionally define.
2611         (is_class_level): Likewise.
2612         (indent): Likewise.  Take an indenting parameter.
2613         (push_binding_level): Remove conditional definittion.
2614         (pop_binding_level): Likewise.
2615         (suspend_binding_level): Likewise.
2616         (resume_binding_level): Likewise.
2617         (pushlevel): Likewise.
2618         (pushlevel_class): Likewise.
2619         (poplevel_class): Likewise.
2620         (pop_everything): Likewise.
2622 2003-05-27  Gabriel Dos Reis <gdr@integrable-solutions.net>
2624         * name-lookup.h (global_scope_p): New macro.
2625         * decl.c (pop_binding_level): Use it.  Don't refer directly to
2626         global_binding_level.
2627         (suspend_binding_level): Likewise.
2628         (global_bindings_p): Likewise.
2629         (print_other_binding_stack): Likewise.
2630         (print_binding_stack): Likewise.
2631         (maybe_push_to_top_level): Likewise.
2632         (pushdecl_namespace_level): Likewise.
2633         (cxx_init_decl_processing): Likewise.
2634         (start_decl): Likewise.
2635         (cp_finish_decl): Likewise.
2636         (start_function): Likewise.
2637         (global_binding_level): Remove.
2639 2003-05-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2641         * parser.c (cp_parser_explicit_instantiation): Restore old
2642         access before template instantiation.
2644 2003-05-23  Geoffrey Keating  <geoffk@apple.com>
2646         * lang-specs.h: Use -o to specify preprocessor's output file.
2647         Make -no-integrated-cpp work when building PCH files.
2649 2003-05-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2651         PR c++/10682
2652         * pt.c (instantiate_class_template): Use DECL_ARTIFICIAL to
2653         check for implicitly created typedef to an enum.
2655 2003-05-21  Jason Merrill  <jason@redhat.com>
2657         * init.c (build_vec_delete): Copy the address into a temporary
2658         variable before calling build_vec_delete_1.
2659         * decl2.c (delete_sanity): Don't call stabilize_reference.
2661 2003-05-21  Nathan Sidwell  <nathan@codesourcery.com>
2663         * pt.c (register_specialization): Update the decl's location,
2664         if necessary.
2665         (check_explicit_specialization): Likewise.
2667 2003-05-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2669         * error.c (dump_expr): Use HOST_WIDE_INT_PRINT_DOUBLE_HEX.
2671 2003-05-21  Danny Smith  <dannysmith@users.sourceforge.net>
2673         PR c++/9738
2674         * decl.c (duplicate_decls): Re-invoke make_decl_rtl
2675         if the old decl had instantiated DECL_RTL.
2676         (Base on Richard Henderson 2003-05-13 patch to c-decl.c).
2678 2003-05-19  Matt Austern  <austern@apple.com>
2680         * lang-options.h: Document -Wno-invalid-offsetof
2681         * typeck.c (build_class_member_access_expr): Don't complain about
2682         (Foo *)p->x for non-POD Foo if warn_invalid_offset is zero.
2684 2003-05-18 Andrew Pinski <pinskia@physics.uc.edu>
2686         * name-lookup.c (free_binding_entry): fix where the GTY markers are.
2687         (binding_entry_make): Make entry->chain NULL after getting an entry.
2688         fix the spelling of chain in a comment.
2689         (binding_table_free): speed up by having temporary variable.
2690         (binding_table_new): set table->chain to be NULL after allocating
2691         a table.
2692         (cxx_binding_make): use gcc_alloc instead of ggc_alloc_cleared and set
2693         binding->previous to NULL after getting an binding for speed.
2695 2003-05-18  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2697         * cp-tree.h (struct lang_type_class): Replace data member tags
2698         with hash-table nested_udts.
2699         (CLASSTYPE_NESTED_UTDS): Rename from CLASSTYPE_TAGS.
2700         * class.c (unreverse_member_declarations): Don't touch
2701         CLASSTYPE_TAGS.
2702         (pushclass): Use cxx_remember_type_decls.
2703         * decl.c (struct cp_binding_level): Replace data member tags with
2704         hash-table type_decls.
2705         (pop_binding_level): Handle level->type_decls.
2706         (kept_level_p): Adjust.
2707         (poplevel): Remove unused local variable.
2708         (bt_print_entry): New function.
2709         (print_binding_level): Use it.
2710         (push_namespace): Build current_binding_level->type_decls.
2711         (maybe_process_template_type_declaration): Adjust.
2712         (pushtag): Likewise.
2713         (clear_anon_tags): Use binding_table_remove_anonymous_types.
2714         (gettags): Remove.
2715         (cxx_remember_type_decls):  Rename from storetags.  Adjust.
2716         (lookup_tag): Use binding_table_find_anon_type.  Tidy.
2717         (lookup_tag_reverse): Use binding_table_reverse_maybe_remap.
2718         (cxx_init_decl_processing): Build global_binding_level->type_decls.
2719         (store_parm_decls): Remove pointless code.
2720         * name-lookup.c (free_binding_entry): New variable.
2721         (ENTRY_INDEX): New macro.
2722         (struct binding_table_s): New datatype.
2723         (binding_entry_make): New function.
2724         (binding_entry_free): Likewise.
2725         (binding_table_construct): Likewise.
2726         (binding_table_free): Likewise.
2727         (binding_table_new): Likewise.
2728         (binding_table_expand): Likewise.
2729         (binding_table_insert): Likewise.
2730         (binding_table_find): Likewise.
2731         (binding_table_find_anon_type): Likewise.
2732         (binding_table_reverse_maybe_remap): Likewise.
2733         (binding_table_remove_anonymous_types): Likewise.
2734         (binding_table_foreach): Likewise.
2735         * name-lookup.h (binding_table): New type.
2736         (binding_entry): Likewise.
2737         (bt_foreach_proc): Likewise.
2738         (struct binding_entry_s): New datatype.
2739         (SCOPE_DEFAULT_HT_SIZE): New macro.
2740         (CLASS_SCOPE_HT_SIZE): Likewise.
2741         (NAMESPACE_ORDINARY_HT_SIZE): Likewise.
2742         (NAMESPACE_STD_HT_SIZE): Likewise.
2743         (GLOBAL_SCOPE_HT_SIZE): Likewise.
2744         (binding_table_new): Declare.
2745         (binding_table_free): Likewise.
2746         (binding_table_insert): Likewise.
2747         (binding_table_find_anon_type): Likewise.
2748         (binding_table_reverse_maybe_remap): Likewise.
2749         (binding_table_remove_anonymous_types): Likewise.
2750         (binding_table_foreach): Likewise.
2751         (binding_table_find): Likewise.
2752         (cxx_remember_type_decls): Likewise.
2753         * pt.c (bt_instantiate_type_proc): New function.
2754         (do_type_instantiation): Use it.
2755         * search.c (lookup_field_r): Use binding_table_find.
2757 2003-05-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2759         * semantics.c (perform_deferred_access_checks): Don't discard
2760         checked access.
2762 2003-05-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2764         * error.c (cp_error_at, cp_warning_at, cp_pedwarn_at): Eliminate
2765         libiberty VA_ macros, always use stdarg.
2766         * rtti.c (create_pseudo_type_info): Likewise.
2767         * tree.c (build_min_nt, build_min): Likewise.
2769 2003-05-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2771         * ptree.c (cxx_print_type, cxx_print_xnode): Use string
2772         concatentation on HOST_WIDE_INT_PRINT_* format specifier to
2773         collapse multiple function calls into one.
2774         * tree.c (debug_binfo): Likewise.
2776 2003-05-15  Jason Merrill  <jason@redhat.com>
2778         PR c++/5388
2779         * call.c (conditional_conversion): Don't consider implicit
2780         conversions if T2 is a base of T1.
2781         * cp-tree.h (DERIVED_FROM_P, UNIQUELY_DERIVED_FROM_P): Make boolean.
2782         (ACCESSIBLY_UNIQUELY_DERIVED_P, PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
2784         * parser.c (cp_parser_primary_expression): Convert a static data
2785         member from reference.
2787 2003-05-15  Mark Mitchell  <mark@codesourcery.com>
2789         * call.c (build_op_delete_call): Avoid creating unnecessary types.
2790         * class.c (instantiate_type): Remove tests for tf_no_attributes.
2791         * cp-tree.h (tsubst_flags_t): Remove tf_no_attributes.
2792         (COMPARE_NO_ATTRIBUTES): Remove.
2793         * typeck.c (comptypes): Do not check COMPARE_NO_ATTRIBUTES.
2795         PR c++/8385
2796         * semantics.c (finish_typeof): Refine type-dependency check.
2798 2003-05-13  Jason Merrill  <jason@redhat.com>
2800         * typeck.c (build_modify_expr): Don't always stabilize the lhs and
2801         rhs.  Do stabilize the lhs of a MODIFY_EXPR used on the lhs.
2803 2003-05-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2805         * method.c (synthesize_method): Call push/pop_deferring_access_checks.
2807 2003-05-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2809         PR c++/10230, c++/10481
2810         * semantics.c (finish_non_static_data_member): Handle when the
2811         non-static member is not from a base of the current class type.
2813 2003-05-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2815         PR c++/10552
2816         * pt.c (tsubst_copy): Handle TEMPLATE_DECL that is a member class
2817         template and has dependent context.
2819 2003-05-10  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2821         * pt.c (instantiate_decl): Call push/pop_deferring_access_checks.
2823 2003-05-10  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2825         PR c++/9252
2826         * cp-tree.h (saved_scope): Remove check_access field.
2827         (tsubst_flags_t): Remove tf_parsing.
2828         * decl.c (maybe_push_to_top_level): Don't initialize
2829         scope_chain->check_access.
2830         (make_typename_type, make_unbound_class_template): Don't use
2831         tf_parsing.
2832         (register_dtor_fn): Use push/pop_deferring_access_checks
2833         instead of scope_chain->check_access.
2834         * method.c (use_thunk): Likewise.
2835         * parser.c (cp_parser_explicit_instantiation
2836         (cp_parser_constructor_declarator_p): Don't call
2837         push/pop_deferring_access_checks here.
2838         (cp_parser_template_argument, cp_parser_class_name): Don't use
2839         tf_parsing.
2840         (yyparse): Check flag_access_control.
2841         * pt.c (instantiate_class_template): Call
2842         push/pop_deferring_access_checks.
2843         * semantics.c (push_deferring_access_checks): Propagate
2844         dk_no_check.
2845         (perform_or_defer_access_check): Make sure basetype_path is
2846         a type before comparison.
2847         * call.c (build_op_delete_call, build_over_call): Use
2848         perform_or_defer_access_check.
2849         * class.c (alter_access): Likewise.
2850         * init.c (build_offset_ref): Likewise.
2851         * lex.c (do_identifier): Likewise.
2852         * method.c (hack_identifier): Likewise.
2853         * search.c (lookup_member): Likewise.
2854         * semantics.c (finish_non_static_data_member): Likewise.
2855         (simplify_aggr_init_exprs_r): Use push/pop_deferring_access_checks
2856         instead of flag_access_control.
2858 2003-05-10  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2860         PR c++/9554
2861         * parser.c (cp_parser_class_name): Remove check_access parameter.
2862         All caller adjusted.  Update declaration.
2863         (cp_parser_lookup_name): Likewise.
2864         * semantics.c (push_deferring_access_checks): Change parameter type
2865         to enum deferring_kind.  All caller adjusted.
2866         (resume_deferring_access_checks): Adjust to use new enum.
2867         (stop_deferring_access_checks): Likewise.
2868         (perform_or_defer_access_check): Likewise.
2869         * cp-tree.h (deferring_kind): New enum.
2870         (deferred_access): Adjust field type.
2871         (push_deferring_access_checks): Update declaration.
2873 2003-05-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2875         PR c++/10555, c++/10576
2876         * pt.c (lookup_template_class): Handle class template with
2877         multiple levels of parameters when one of the levels contain
2878         errors.
2880 2003-05-08  Jason Merrill  <jason@redhat.com>
2882         * init.c (build_new_1): Don't reuse a TARGET_EXPR in an
2883         expression.  Undo some of the recent reorg.
2885 2003-05-07  Richard Henderson  <rth@redhat.com>
2887         PR c++/10570
2888         * cfns.gperf: Comment out POSIX thread cancellation points,
2889         plus abort and raise.
2890         * cfns.h: Regenerate.
2892 2003-05-07  Jason Merrill  <jason@redhat.com>
2894         * call.c (build_conditional_expr): Don't assume that the folded
2895         expression has result_type.
2897 2003-05-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2899         * typeck.c (build_unary_op): Deal with const qualifier in
2900         invalid pointer-to-member earlier.
2902 2003-05-05  Jason Merrill  <jason@redhat.com>
2904         PR c++/9537
2905         * call.c (conditional_conversion): Build an RVALUE_CONV if
2906         we're just changing the cv-quals.
2907         (build_conditional_expr): Don't call convert to change
2908         cv-quals.
2910 2003-05-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2912         PR c++/10496
2913         * typeck.c (build_unary_op): Don't output const qualifier when
2914         output invalid pointer-to-member diagnostics.
2916 2003-05-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2918         * decl.c: Fix typos.
2920 2003-05-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2922         PR c++/4494
2923         * decl.c (start_function): Use same_type_p to check return type
2924         of main.
2926 2003-05-03  Zack Weinberg  <zack@codesourcery.com>
2928         PR c/10604
2929         * cp/typeck.c (build_x_compound_expr): No need to check
2930         extra_warnings as well as warn_unused_value.
2932 2003-05-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2934         PR c++/9364, c++/10553, c++/10586
2935         * decl.c (make_typename_type): Don't crash on illegal code.
2937 2003-05-03  Nathan Sidwell  <nathan@codesourcery.com>
2939         * class.c (finish_struct): Use location_t and input_location
2940         directly.
2941         * decl.c (make_label_decl): Likewise.
2942         (use_label): Likewise.
2943         * decl2.c (warn_if_unknown_interface): Likewise.
2944         (start_static_initialization_or_destruction): Likewise.
2945         (generate_ctor_or_dtor_function): Likewise.
2946         (finish_file): Likewise.
2947         * error.c (print_instantiation_full_context): Likewise.
2948         * init.c (create_temporary_var): Likewise.
2949         * method.c (synthesize_method): Likewise.
2950         * parser.c (cp_token): Likewise.
2951         (cp_lexer_set_source_position_from_token): Likewise.
2952         (cp_lexer_get_preprocessor_token): Likewise.
2953         (cp_parser_statement): Likewise.
2954         * pt.c (tsubst_friend_function): Likewise.
2955         (instantiate_class_template): Likewise.
2956         (tsubst_decl): Likewise.
2957         (tsubst): Likewise.
2958         (instantiate_decl): Likewise.
2959         * semantics.c (begin_class_definition): Likewise.
2960         (expand_body): Likewise.
2962 2003-05-01  Nathan Sidwell  <nathan@codesourcery.com>
2964         * class.c (finish_struct): Rename lineno to input_line.
2965         * decl.c (push_binding_level, pop_binding_level,
2966         suspend_binding_level, resume_binding_level, make_label_decl,
2967         use_label, start_function): Likewise.
2968         * decl2.c (warn_if_unknown_interface,
2969         start_static_initialization_or_destruction,
2970         generate_ctor_or_dtor_function, finish_file): Likewise.
2971         * error.c (cp_line_of, print_instantiation_full_context,
2972         print_instantiation_context): Likewise.
2973         * except.c (check_handlers_1, check_handlers): Likewise.
2974         * init.c (create_temporary_var): Likewise.
2975         * method.c (use_thunk, synthesize_method): Likewise.
2976         * parser.c (cp_lexer_set_source_position_from_token,
2977         cp_lexer_get_preprocessor_token): Likewise.
2978         * pt.c (push_tinst_level, pop_tinst_level,
2979         tsubst_friend_function, instantiate_class_template, tsubst_decl,
2980         tsubst, tsubst_expr, instantiate_decl): Likewise.
2981         * semantics.c (genrtl_try_block, finish_label_stmt,
2982         begin_class_definition, expand_body,
2983         genrtl_finish_function): Likewise.
2984         * tree.c (build_min_nt, build_min): Likewise.
2986 2003-05-01  Mark Mitchell  <mark@codesourcery.com>
2988         * decl2.c (comdat_linkage): Don't externalize explicit
2989         instantiations.
2991 2003-05-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
2993         PR c++/10554
2994         * decl2.c (do_class_using_decl): Check if operand 0 of SCOPE_REF
2995         is not NULL.
2997 2003-05-01  Steven Bosscher  <steven@gcc.gnu.org>
2999         * cp-tree.h (struct lang_id2): Remove.  Move fields from here...
3000         (struct lang_identifier): ... to here.
3001         (LANG_ID_FIELD): Remove.
3002         (SET_LANG_ID): Remove.
3003         (IDENTIFIER_LABEL_VALUE): Adjust for new lang_identifier.
3004         (SET_IDENTIFIER_LABEL_VALUE): Likewise.
3005         (IDENTIFIER_IMPLICIT_DECL): Likewise.
3006         (SET_IDENTIFIERL_IMPLICIT_DECL): Likewise.
3007         (IDENTIFIER_ERROR_LOCUS): Likewise.
3008         (SET_IDENTIFIER_ERROR_LOCUS): Likewise.
3010 2003-05-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3012         PR c++/8772
3013         * pt.c (convert_template_argument): Correct diagnostic.
3015 2003-04-30  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3017         PR c++/9432, c++/9528
3018         * decl2.c (validate_nonmember_using_decl): Handle SCOPE_REF.
3020 2003-04-30  Garbiel Dos Reis  <gcc@integrable-solutions.net>
3022         * decl.c (check_previous_goto_1): Adjust prototype.
3023         (check_previous_goto): Adjust use.
3024         (check_switch_goto): Likewise.
3025         (use_label): Adjust.
3026         (check_previous_goto_1): Don't use pedwarn_with_file_and_line.
3027         (struct named_label_use_list): Use location_t datatype.
3029 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
3031         PR c++/10551
3032         * pt.c (mark_decl_instantiated): Defer all explicit instantiations
3033         that have not yet been written out.
3035 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
3037         PR c++/10549
3038         * class.c (layout_class_type): Mark overlong bitfields as having
3039         the maximum size permitted by their type, after layout.
3041         PR c++/10527
3042         * error.c (dump_expr): Correctly handling of NEW_EXPR.4
3044 2003-04-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3046         * call.c (build_operator_new_call): Fix typo.
3047         * lang-options.h: Likewise.
3049 2003-04-29  Mark Mitchell  <mark@codesourcery.com>
3051         PR c++/10515
3052         * cp-tree.h (lookup_field_1): Declare it.
3053         * search.c (lookup_field_1): Make it public.
3054         * decl.c (reshape_init): Handle designated initializers.
3056         * decl.c (maybe_commonize_var): Further tweak support for systems
3057         without weak symbols.
3059 2003-04-27  Mark Mitchell  <mark@codesourcery.com>
3061         * decl.c (maybe_commonize_var): Fix thinko in last patch.
3063 2003-04-27  Mark Mitchell  <mark@codesourcery.com>
3065         PR c++/10506
3066         * method.c (use_thunk): Decrement immediate_size_expand.
3068         PR c++/10503
3069         * cp-tree.h (DECL_VAR_MARKED_P): New macro.
3070         (DECL_MAYBE_TEMPLATE): Remove.
3071         * class.c (fixed_type_or_null): Avoid infinite recursion.
3073         * decl.c (maybe_commonize_var): Make the code match the comments.
3074         * pt.c (instantiate_decl): Move call to import_export_decl.
3076 2003-04-26  Mark Mitchell  <mark@codesourcery.com>
3078         * decl2.c (finish_file): Fix merge botch.
3080 2003-04-25  Mark Mitchell  <mark@codesourcery.com>
3082         * decl2.c (finish_file): Don't call import_export_decl for
3083         functions that are not defined.
3084         (handle_class_head): Robustify.
3085         * pt.c (instantiate_decl): Do not call cp_finish_decl for
3086         variables that are not defined.
3088 2003-04-24  Sylvain Pion  <Sylvain.Pion@mpi-sb.mpg.de>
3090         * call.c (print_z_candidates): Fix off by one error.
3092 2003-04-24  Nathan Sidwell  <nathan@codesourcery.com>
3094         PR c++/10337
3095         * call.c (joust): Don't warn about conversion ops that are exact
3096         or cv-conversions. Rearrange to avoid multiple type comparisons.
3098 2003-04-23  Mark Mitchell  <mark@codesourcery.com>
3100         PR c++/10471
3101         * call.c (build_cxx_call): Robustify.
3103 2003-04-23  Neil Booth  <neil@daikokuya.co.uk>
3105         * Make-lang.in (lex.o): Remove mbchar.h.
3106         * lex.c (MULTIBYTE_CHARS): Lose.
3107         * parser.c (cp_lexer_get_preprocessor_token): CPP_OTHER handled
3108         in c-lex.c.
3110 2003-04-23  Mark Mitchell  <mark@codesourcery.com>
3112         PR c++/9847
3113         * cp-tree.h (duplicate_tag_error): Remove.
3114         * class.c (duplicate_tag_error): Remove.
3115         * semantics.c (begin_class_definition): Return immediately for a
3116         duplicate class definition.
3118         PR c++/10451
3119         * decl.c (grokdeclarator): Correct logic for "mutable" errors.
3121 2003-04-22  Mark Mitchell  <mark@codesourcery.com>
3123         PR c++/10446
3124         * search.c (lookup_fnfields_1): Handle empty slots in the method
3125         vector.
3127         PR c++/10428
3128         * decl.c (check_elaborated_type_specifier): New function, split
3129         out from ...
3130         (xref_tag): ... here.  Use the new function in more places.
3132         * rtti.c (throw_bad_typeid): Use build_cxx_call.
3134 2003-04-21  Mark Mitchell  <mark@codesourcery.com>
3136         * call.c (build_over_call): Use build_cxx_call.
3137         (build_cxx_call): New method, split out of build_over_call.
3138         * cp-tree.h (language_function): Add can_throw.
3139         (build_cxx_call): Declare it.
3140         * decl.c (finish_function): If a function does not contain any
3141         calls to functions that can throw an exception, indicate that
3142         fact.
3143         * decl2.c (mark_used): Do not defer the instantiation of
3144         functions, if the current function does not throw.
3145         * optimize.c (maybe_clone_body): Copy TREE_NOTHROW to the clones.
3146         * pt.c (instantiate_decl): Make sure import_export_decl is called
3147         before emitting things.
3148         * rtti.c (throw_bad_cast): Use build_cxx_call.
3149         (build_dynamic_cast_1): Likewise.
3150         * typeck.c (build_function_call): Likewise.
3152 2003-04-21  Nathan Sidwell  <nathan@codesourcery.com>
3154         PR c++/9881
3155         * typeck.c (build_unary_op): Fold all COMPONENT_REF addr
3156         expressions. Reverts my 2002-08-08 patch.
3158         * typeck.c (comp_ptr_ttypes_real): Swap final && operands for
3159         cheaper early exit.
3161 2003-04-20  Nathan Sidwell  <nathan@codesourcery.com>
3163         * cp/decl2.c (start_static_storage_duration_function): Take count
3164         arg, don't check if it wraps round.
3165         (generate_ctor_or_dtor_function): Add locus arg, use it.
3166         (generate_ctor_and_dtor_functions_for_priority): Data arg is a
3167         locus.
3168         (finish_file): Set line numbers to past EOF for synthesized
3169         functions.
3171 2003-04-20  Nathan Sidwell  <nathan@codesourcery.com>
3173         PR c++/10405
3174         * search.c (lookup_field_1): Final scan goes backwards for
3175         types, forwards for non-types.
3177 2003-04-17  Roger Sayle  <roger@eyesopen.com>
3179         PR c/10375
3180         * decl.c (duplicate_decls): Preserve "const", "noreturn" and
3181         "nothrow" function attributes.
3183 2003-04-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3185         PR c++/10347
3186         * pt.c (type_dependent_expression_p): Handle array new.
3188 2003-04-15  Mark Mitchell  <mark@codesourcery.com>
3190         PR c++/10381
3191         * parser.c (cp_parser_primary_expression): Reorganize logic for
3192         dealing with name lookup failures.
3194 2003-04-15  Jason Merrill  <jason@redhat.com>
3196         * decl2.c (mark_used): Don't instantiate anything if
3197         skip_evaluation.
3199 2003-04-14  Ziemowit Laski  <zlaski@apple.com>
3201         * tree.c (build_cplus_array_type_1): Do not call
3202         uses_template_parms() on a NULL index_type.
3204 2003-04-13  Roger Sayle  <roger@eyesopen.com>
3206         * decl.c (duplicate_decls): Preserve pure and malloc attributes.
3208 2003-04-12  Mark Mitchell  <mark@codesourcery.com>
3210         PR c++/10300
3211         * init.c (build_new_1): Reorganize.
3213 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
3215         * class.c (initialize_array)
3216         * decl.c (reshape_init)
3217         * decl2.c (build_expr_from_tree)
3218         * init.c (build_zero_init)
3219         * pt.c (tsubst_copy, tsubst_copy_and_build)
3220         * rtti.c (tinfo_base_init, generic_initializer, ptr_initializer)
3221         (ptm_initializer, class_initializer, get_pseudo_ti_init)
3222         * semantics.c (finish_compound_literal)
3223         * typeck.c (build_ptrmemfunc1)
3224         * typeck2.c (store_init_value, process_init_constructor)
3225         (build_functional_cast): Use build_constructor.
3227 2003-04-12  Zack Weinberg  <zack@codesourcery.com>
3229         * call.c (print_z_candidates): Use gcc_gettext_width, not
3230         strlen, to determine how much padding to use.
3232 2003-04-10  Zack Weinberg  <zack@codesourcery.com>
3234         * decl.c: Update all calls to shadow_warning.
3236 2003-04-10  Mark Mitchell  <mark@codesourcery.com>
3238         * class.c (layout_class_type): Correct handling for overlong
3239         bit-fields whose width is the same as an integer type.
3241 2003-04-06  Zack Weinberg   <zack@codesourcery.com>
3243         * cp-tree.def: Make fourth element for all 'c' and 'x' nodes zero.
3244         * cp-lang.c (cp_tree_size): New function.
3245         (LANG_HOOKS_TREE_SIZE): Override.
3247         * cp-tree.h (SOURCE_LOCUS, SRCLOC_FILE, SRCLOC_LINE, struct
3248         tree_srcloc, TS_CP_COMMON, TS_CP_SRCLOC): Kill.
3249         (union lang_tree_node): Remove common and srcloc members.
3250         (build_srcloc_here): Don't prototype.
3251         * decl.c (cp_tree_node_structure): Kill SRCLOC case.
3252         * pt.c (pending_templates): Correct comment.
3253         * tree.c (build_srcloc, build_srcloc_here): Kill.
3255 2003-04-06  Zack Weinberg   <zack@codesourcery.com>
3257         * call.c: Include intl.h.
3258         (print_z_candidate): Always use inform; get rid of errfn
3259         argument. Reorganize so that all the strings get picked up
3260         by xgettext.  Note obligation of caller to pass first argument
3261         through gettext.
3262         (print_z_candidates): Update to match.  Indent second and
3263         successive candidates by strlen() of translated message.
3264         (joust): Restructure ambiguous-conversion pedwarn so that
3265         translators see a complete sentence.  Update calls to
3266         print_z_candidate.
3268         * Make-lang.in (cp/call.o): Update dependencies.
3270 2003-04-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3272         * decl.c (set_current_binding_level): Delete, revert last change.
3273         (current_binding_level): Modify to allow it as as lvalue.
3275 2003-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3277         * name-lookup.c (find_binding): Pass appropriate pointer type to
3278         POP_TIMEVAR_AND_RETURN.
3280 2003-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3282         * Make-lang.in (cp-warn): Add $(STRICT_WARN).
3283         * cp-tree.h: Don't insist on having GNUC.
3285 2003-04-03  Jason Merrill  <jason@redhat.com>
3287         * cvt.c (ocp_convert): Only abort if we try to convert an object
3288         of TREE_ADDRESSABLE type.
3290         * class.c (build_vtable): Set DECL_ALIGN here.
3291         (get_vtable_decl): Not here.
3292         (layout_vtable_decl): Or here.
3293         (create_vtable_ptr): Or here.
3294         (layout_class_type): Or here.
3295         (check_bitfield_decl): Don't mess with field alignment.
3297 2003-04-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3299         * operators.def (DEF_SIMPLE_OPERATOR, DEF_ASSN_OPERATOR,
3300         DEF_ASSN_OPERATOR): Delete spurious semi-colon.
3301         * rtti.c (dfs_class_hint_mark): Likewise.
3303         * decl.c (push_local_name, push_class_level_binding,
3304         maybe_inject_for_scope_var): Don't use POP_TIMEVAR_AND_RETURN in
3305         functions returning void.
3306         * decl2.c (add_using_namespace): Likewise.
3308         * decl.c (print_binding_level, print_other_binding_stack,
3309         print_binding_stack): Cast argument of %p specifier to void*.
3310         * ptree.c (cxx_print_decl): Likewise.
3312         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK,
3313         VAR_FUNCTION_OR_PARM_DECL_CHECK,
3314         VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK, RECORD_OR_UNION_TYPE_CHECK,
3315         BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK, LANG_TYPE_CLASS_CHECK,
3316         LANG_TYPE_PTRMEM_CHECK, LANG_DECL_U2_CHECK): Add __extension__.
3318         * decl.c (set_current_binding_level): New macro.  Use throughout
3319         when setting the current binding level.
3321         * cp-tree.h (cp_lvalue_kind, base_access): Delete trailing comma
3322         in enum.
3323         * method.c (mangling_flags): Likewise.
3325         * cp-tree.h (lang_type_header): Add __extension__ and use
3326         CHAR_BITFIELD for members.
3328 2003-04-02  Geoffrey Keating  <geoffk@apple.com>
3330         PR other/9274
3331         * mangle.c: Include gt-cp-mangle.h.
3332         (subst_identifiers): Mark with GTY.
3333         * config-lang.in (gtfiles): Add cp/mangle.c.
3334         * Make-lang.in: (gt-cp-mangle.h): New rule.
3335         (cp/mangle.o): Depends on gt-cp-mangle.h.
3337 2003-04-01  Andrew Pinski  <pinskia@physics.uc.edu>
3339         * config-lang.in (gtfiles): Add \$(srcdir)/cp/name-lookup.c
3340         after \$(srcdir)/cp/name-lookup.h.
3341         * name-lookup.c: (cxx_binding_make): Use ggc_alloc_clearedinstead
3342         of ggc_alloc.  Include gt-cp-name-lookup.h at the end of the file.
3343         * Make-lang.in: (gt-cp-name-lookup.h): Is generated by gengtype.
3344         (cp/name-lookup.o): Depends on gt-cp-name-lookup.h.
3346 2003-03-31  Jason Merrill  <jason@redhat.com>
3348         PR java/10145
3349         * class.c (check_field_decl): Don't set DECL_ALIGN.
3351 2003-03-30  Mark Mitchell  <mark@codesourcery.com>
3353         PR c++/7647
3354         * decl.c (grokdeclarator): Tidy, slightly.
3355         * search.c (lookup_field_1): Add want_type parameter.
3356         (lookup_field_r): Adjust call to lookup_field_1.
3358 2003-03-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3360         * Make-lang.in (cp/name-lookup.o): Add more dependencies.
3362 2003-03-30  Gabriel Dos Reis <gdr@integrable-solutions.net>
3364         * cp-tree.h (binding_for_name: Move to name-lookup.h  Adjust
3365         prototype.
3366         (cxx_scope_find_binding_for_name): Likewise.
3367         * decl.c (find_binding: Move to name-lookup.c.
3368         (binding_for_name): Likewise.
3369         (cxx_scope_find_binding_for_name): Likewise.
3370         (BINDING_LEVEL):  Remove.
3371         (push_binding): Tidy.
3372         (push_class_binding): Likewise.
3373         (pop_binding): Likewise.
3374         (poplevel): Likewise.
3375         (poplevel_class): Likewise.
3376         (set_identifier_type_value_with_scope): Likewise.
3377         (push_overloaded_decl): Likewise.
3378         (lookup_tag): Likewise.
3379         (unqualified_namespace_lookup): Likewise.
3380         (lookup_name_current_level): Likewise.
3381         (maybe_inject_for_scope_var): Likewise.
3382         (namespace_binding): Move to name-lookup.c.
3383         (set_namespace_binding): Likewise.
3384         * decl2.c (lookup_using_namespace): Tidy.
3385         (qualified_lookup_using_namespace): Likewise.
3386         (do_toplevel_using_decl): Likewise.
3387         * name-lookup.c: Include "timevar.h"
3388         * name-lookup.h (cxx_scope):  Declare.
3389         (struct cxx_binding): Lose member "has_level".  Adjust "scope"
3390         member declaration.
3391         (BINDING_SCOPE): Adjust definition.
3392         (BINDING_HAS_LEVEL_P): Remove.
3394 2003-03-30  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3396         * name-lookup.c: New file.
3397         * name-lookup.h: Likewise..
3398         * decl.c (push_binding): Adjust use cxx_binding_make.
3399         (free_bindings): Move to name-lookup.c
3400         (pop_binding): Use cxx_binding_free.
3401         (binding_for_name): Tidy.
3402         * cp-tree.h: Include "name-lookup.h"
3403         (cxx_binding_make): Move to name-lookup.h
3404         (cxx_binding_clear): Likewise.
3405         (struct cxx_binding): Likewise.
3406         (LOCAL_BINDING_P): Likewise.
3407         (INHERITED_VALUE_BINDING_P): Likewise.
3408         (BINDING_SCOPE): Likewise.
3409         (BINDING_HAS_LEVEL_P): Likewise.
3410         (BINDING_VALUE): Likewise.
3411         (BINDING_TYPE): Likewise.
3412         * config-lang.in (gtfiles): Add cp/name-lookup.h
3413         * Make-lang.in (cp/name-lookup.o): New rule.
3414         (CXX_OBJS): Add cp/name-lookup.o
3415         (CXX_TREE_H): Add cp/name-lookup.h
3417 2003-03-28  Jason Merrill  <jason@redhat.com>
3419         PR c++/10245
3420         * cvt.c (force_rvalue): New fn.
3421         * call.c (build_conditional_expr): Use it.
3422         * cp-tree.h: Declare it.
3424 2003-03-28  Mike Stump  <mrs@apple.com>
3426         * error.c (dump_expr): Add 0x to printed hex numbers to make
3427         output match source code better.
3429 2003-03-28  Mark Mitchell  <mark@codesourcery.com>
3431         PR c++/10218
3432         * decl.c (grokfndecl): Return NULL_TREE for bogus out-of-class
3433         definitions.
3435         * decl2.c (generate_ctor_or_dtor_function): Tolerate a
3436         non-existant ssdf_decls array.
3437         (finish_file): Call generator_ctor_or_dtor_function when there are
3438         static constructors or destructors and no other static
3439         initializations.
3441 2003-03-28  Nathan Sidwell  <nathan@codesourcery.com>
3443         PR c++/10047
3444         * decl2.c (finish_file): Don't warn about explicitly instantiated
3445         inline decls.
3447 2003-03-27  Nathan Sidwell  <nathan@codesourcery.com>
3449         PR c++/10224
3450         * pt.c (lookup_template_class): Only check instantiated args if
3451         they do not contain template parameters.
3453 2003-03-27  Nathan Sidwell  <nathan@codesourcery.com>
3455         PR c++/10158
3456         * parser.c (cp_parser_function_definition): Set
3457         DECL_INITIALIZED_IN_CLASS for members.
3458         * pt.c (instantiate_decl): Only reduce the template args for
3459         friends that are not defined in class.
3461 2003-03-25  Jason Merrill  <jason@redhat.com>
3463         * call.c (print_z_candidate): Change name of first arg to msgid.
3464         (joust): Add comment for translators.
3466 2003-03-24  Nathan Sidwell  <nathan@codesourcery.com>
3468         PR c++/9898, PR c++/383, DR 322
3469         * pt.c (maybe_adjust_types_for_deduction) <DEDUCE_CONV>: Look
3470         through reference types on both PARM and ARG.
3472 2003-03-24  Nathan Sidwell  <nathan@codesourcery.com>
3474         PR c++/10119
3475         * error.c (dump_expr) <BASELINK>: Use dump_expr.
3476         * pt.c (maybe_fold_nontype_args): New function.
3477         (tsubst_copy) <SCOPE_REF>: Subst any template_id args.
3478         <TEMPLATE_ID_EXPR>: Break out folding code, call it.
3479         (tsubst_copy_and_build) <TEMPLATE_ID_EXPR>: Call
3480         maybe_fold_nontype_args.
3482 2003-03-24  Nathan Sidwell  <nathan@codesourcery.com>
3484         PR c++/10026
3485         * decl2.c (arg_assoc_type) <ERROR_MARK>: Don't die.
3487 2003-03-23  Mark Mitchell  <mark@codesourcery.com>
3489         PR c++/7086
3490         * typeck.c (cxx_mark_addressable):  Adjust call to
3491         gen_mem_addressof or put_var_into_stack.
3493 2003-03-22  Nathan Sidwell  <nathan@codesourcery.com>
3495         PR c++/9978, c++/9708
3496         * cp-tree.h (instantiate_template): Add tsubst_flags parameter.
3497         * call.c (add_template_candidate_real): Adjust
3498         instantiate_template call.
3499         * class.c (resolve_address_of_overloaded_function): Likewise.
3500         * decl.c (build_enumerator): Set TREE_CONSTANT.
3501         * pt.c (check_instantiated_args): New.
3502         (push_inline_template_parms_recursive): Set TREE_CONSTANT,
3503         TREE_READONLY.
3504         (build_template_parm_index): Copy TREE_CONSTANT, TREE_READONLY.
3505         (reduce_template_parm_level): Likewise.
3506         (process_template_parm): Likewise.
3507         (check_explicit_specialization): Adjust instantiate_template call.
3508         (convert_template_argument): Don't check non-type argument here.
3509         (lookup_template_class): Check them here.
3510         (tsubst_friend_function): Adjust instantiate_template call.
3511         (instantiate_template): Add tsubst_flags parameter, use it. Check
3512         instantiated args.
3514 2003-03-21  Zack Weinberg  <zack@codesourcery.com>
3516         * decl.c: Update calls to shadow_warning.
3518 2003-03-21  Nathan Sidwell  <nathan@codesourcery.com>
3520         PR c++/9898
3521         * error.c (dump_decl) [CONST_DECL]: Print '<enumerator>'.
3522         (dump_expr) [CONSTRUCTOR]: Print default ctor as a function call.
3524 2003-03-20  Mark Mitchell  <mark@codesourcery.com>
3526         * cp/decl2.c (arg_assoc_class): Correct check for namespace-scope
3527         friends.
3528         * cp/pt.c (instantiate_class_template): Fix formatting.
3530 2003-03-14  Matt Austern  <austern@apple.com>
3532         * cp-tree.h (unemitted_tinfo_decls): Declaration of a new varray.
3533         (unemitted_tinfo_decl_p): Remove.
3534         (emit_tinfo_decl): Change declaration to remove unused parameter.
3535         * decl2.c (finish_file): Change tinfo emission to loop through
3536         unemitted_tinfo_decls array instead of looping through all decls.
3537         * rtti.c (unemitted_tinfo_decl_p): Declare as static, remove
3538         unused second parameter.
3539         (init_rtti_processing): initialize unemitted_tinfo_decls varray.
3540         (get_tinfo_decls): push new tinfo decl on unemitted_tinfo_decls.
3541         (emit_tinfo_decl): remove unused second parameter, add assertion
3542         that decl hasn't already been emitted.
3544 2003-03-19  Nathanael Nerode  <neroden@gcc.gnu.org>
3546         * dump.c (cp_dump_tree), cp-tree.h (cp_dump_tree): Change return
3547         type from 'int' to 'bool'. Replace 0 and 1 with true and false in
3548         return statements.
3550 2003-03-19  Jason Merrill  <jason@redhat.com>
3552         PR c++/8316, c++/9315, c++/10136
3553         * call.c (print_z_candidate): Split out from...
3554         (print_z_candidiates): ...here.
3555         (joust): Use it.
3557 2003-03-17  Roger Sayle  <roger@eyesopen.com>
3559         PR c++/10031
3560         * decl.c (duplicate_decls): Use the new type when prototyping
3561         anticipated decls, even when the types match.  This defines the
3562         exception list for the built-in function.
3564 2003-03-17  Jason Merrill  <jason@redhat.com>
3566         PR c++/10091
3567         * typeck.c (build_class_member_access_expr): Compare
3568         TYPE_MAIN_VARIANTs.
3570 2003-03-17  Mark Mitchell  <mark@codesourcery.com>
3572         PR c++/9639
3573         * parser.c (cp_parser_declarator_id): Clear parser->scope.
3575 2003-03-16  Jason Merrill  <jason@redhat.com>
3577         PR c++/9993
3578         * decl.c (finish_function): Only allow the NRVO to use variables
3579         declared at function scope.
3581 2003-03-17  Andreas Jaeger  <aj@suse.de>
3583         * Make-lang.in (cp/TAGS): Remove.
3585 2003-03-16  Nathan Sidwell  <nathan@codesourcery.com>
3587         PR c++/9629
3588         * cp-tree.h (struct language_function): Add in_base_initializer.
3589         (in_base_initializer): define it.
3590         (expand_member_init): Remove INIT param.
3591         * init.c (expand_member_init): Remove INIT param, return the member.
3592         (emit_mem_initializers): Set in_base_initializer.
3593         * class.c (build_base_path): Check in_base_initializer.
3594         * parser.c (cp_parser_mem_initializer): Set in_base_initializer.
3595         * pt.c (tsubst_initializer_list): Likewise.
3597 2003-03-16   Gabriel Dos Reis <gdr@integrable-solutions.net>
3599         * decl.c (binding_for_name): Fix initialization thinko.
3601 2003-03-15  Gabriel Dos Reis <gdr@integrable-solutions.net>
3603         Compile-time improvement: 2/n.
3604         * cp-tree.h (struct cxx_binding): New datatype;
3605         (struct lang_identifier): Use it.
3606         (LOCAL_BINDING_P): Adjust definition.
3607         (INHERITED_VALUE_BINDING_P): Likewise.
3608         (BINDING_SCOPE): Likewise.
3609         (BINDING_HAS_LEVEL_P): Likewise.
3610         (BINDING_VALUE): Likewise.
3611         (BINDING_TYPE): Likewise.
3612         (IDENTIFIER_VALUE): Likewise.
3613         (struct tree_binding): Remove.
3614         (TS_CP_BINDING): Likewise.
3615         ((union lang_tree_node): Remove field "binding".
3616         (cxx_binding_clear): New macro.
3617         (binding_for_name): Adjust return type.
3618         (qualified_lookup_using_namespace): Adjust prototype.
3619         (lookup_using_namespace): Adjust prototype.
3620         (cxx_scope_find_binding_for_name): Declare.
3621         * cp-tree.def: Remove CPLUS_BINDING definition.
3622         * decl.c (push_binding): Adjust local variable type.
3623         (add_binding): Likewise.
3624         (push_class_binding): Likewise.
3625         (pop_binding): Likewise.
3626         (poplevel): Likewise.
3627         (poplevel_class): Likewise.
3628         (free_bindings):  Adjust type.
3629         (find_binding): Adjust return type, add a third parameter. Remove
3630         non-useful assertion now that we use static typing.
3631         (cxx_scope_find_binding_for_name): New function.
3632         (binding_for_name): Use it.  Adjust local variable type. Simplify.
3633         (namespace_binding):  Simplify.
3634         (set_namespace_binding): Likewise.
3635         (set_identifier_type_value_with_scope): Adjust local variable type.
3636         (lookup_tag): Don't type-abuse of local variable 'old'.
3637         (lookup_namespace_name): Likewise.  Allocate binding on stack.
3638         (select_decl): Adjust prototype.
3639         (unqualified_namespace_lookup):  Allocate binding on stack.
3640         Don't type-abuse of local variable 'val'.
3641         (lookup_name_real): Likewise.
3642         (maybe_inject_for_scope_var): Adjust local variable type.
3643         (cp_tree_node_structure): Remove CPLUS_BINDING case label.
3644         (namespace_binding): Adjust logic, simplify.
3645         (BINDING_LEVEL): Adjust definition.
3646         (push_class_level_binding): Adjust local variable type.
3647         (struct cxx_saved_binding): Adjust field 'binding' type.
3648         * decl2.c (ambiguous_decl): Adjust prototype.
3649         (lookup_using_namespace): Adjust local variable type.
3650         (qualified_lookup_using_namespace): Catch type error and correct
3651         ensueing logic error.
3652         (do_nonmember_using_decl): Adjust local variable type.  Allocate
3653         temporary cxx_binding on stack.
3654         (do_toplevel_using_decl): Adjust local variable type.
3655         * ptree.c (cxx_print_cxx_binding): New function.
3656         (cxx_print_identifier): Use it.
3657         (cxx_print_xnode): Delete CPLUS_BINDING case label.
3659 2003-03-15  Roger Sayle  <roger@eyesopen.com>
3661         * tree.c (count_functions): Fix whitespace.
3663 2003-03-15  Neil Booth  <neil@daikokuya.co.uk>
3665         * Make-lang.in: Update.
3667 2003-03-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3669         PR c++/6440
3670         * pt.c (maybe_process_partial_specialization): Handle
3671         member class template when enclosing class template is
3672         explicit specialized.
3673         (most_general_template): Stop looking when DECL is already
3674         specialized.
3676 2003-03-13  Jason Merrill  <jason@redhat.com>
3678         PR c++/9420
3679         * search.c (lookup_conversions): Call complete_type here.
3680         * call.c (implicit_conversion): Not here.
3682 2003-03-13  Mark Mitchell  <mark@codesourcery.com>
3684         * decl2.c (do_nonmember_using_decl): Correct handling of
3685         simultaneous type/non-type bindings.
3687         * call.c (initialize_reference): Remove bogus assertion.
3688         * decl.c (build_ptrmemfunc_type): Revert change of 2003-03-09.
3690 2003-03-12  Andrew Lewycky  <andrew@mxc.ca>
3692         PR c++/7050
3693         * expr.c (cxx_expand_expr): Return const0_rtx for throw
3694         expressions.
3696 2003-03-11  Mark Mitchell  <mark@codesourcery.com>
3698         PR c++/9474
3699         * decl2.c (do_nonmember_using_decl): Do not call duplicate decls
3700         to merge old and new declarations.
3702 2003-03-12  Alexandre Oliva  <aoliva@redhat.com>
3704         * g++.1: Remove.
3705         * Make-lang.in (c++.generated-manpages): Build cp/g++.1.
3706         (cp/g++.1): Build it from scratch in the build tree.
3707         (c++.install-man): Depend on it.  Install it from the build tree.
3708         (c++.mostlyclean): Clean it.
3710 2003-03-11  Mark Mitchell  <mark@codesourcery.com>
3712         PR c++/9474
3713         * decl2.c (do_nonmember_using_decl): Do not call duplicate decls
3714         to merge old and new declarations.
3716         PR c++/9924
3717         * decl2.c (do_nonmember_using_decl): Ignore anticipated builtins.
3719 2003-03-11  Jason Merrill  <jason@redhat.com>
3721         PR c++/9820
3722         * search.c (lookup_member): Fix handling of functions in a class
3723         being defined.
3725 2003-03-11  Mark Mitchell  <mark@codesourcery.com>
3727         PR c++/8700
3728         * call.c (convert_class_to_reference): Adjust usage of
3729         splice_viable.
3730         (any_viable): Remove.
3731         (splice_viable): Combine with any_viable.
3732         (print_z_candidates): Avoid printing duplicates.
3733         (build_user_type_conversion_1): Adjust usage of splice_viable.
3734         (build_new_function_call): Likewise.
3735         (build_operator_new_call): Likewise.
3736         (build_object_call): Likewise.
3737         (build_conditional_expr): Likewise.
3738         (build_new_op): Likewise.
3739         (build_new_method_call): Likewise.
3740         (joust): Remove spurious comment.
3741         * cp-tree.h (DECL_FRIENDLIST): Correct documentation.
3742         * decl2.c (arg_assoc_class): Simplify.
3743         * friend.c (add_friend): Likewise.
3745 2003-03-11  Jason Merrill  <jason@redhat.com>
3747         PR c++/8660
3748         * decl2.c (check_classfn): A member template only matches a
3749         member template.
3751 2003-03-11  Neil Booth  <neil@daikokuya.co.uk>
3753         * Make-lang.in (CXX_C_OBJS): Update.
3754         * lang-specs.h: Don't define __GNUG__ here.
3756 2003-03-10  Mark Mitchell  <mark@codesourcery.com>
3758         * call.c (perform_overload_resolution): New function.
3759         (build_new_function_call): Use it.
3760         (build_operator_new_call): Likewise.
3761         (add_candidates): Add explicit_targs and template_only parameters.
3762         (build_new_op): Adjust accordingly.
3763         * cp-tree.h (build_operator_new_call): New function.
3764         (build_function_call_real): Remove.
3765         (build_function_call_maybe): Likewise.
3766         * init.c (build_new_1): Use build_operator_new_call.
3767         * typeck.c (build_function_call_real): Rename to ...
3768         (build_function_call): ... this.
3770 2003-03-10  Devang Patel  <dpatel@apple.com>
3772         PR c++/9394
3773         * g++spec.c (lang_specific_driver): Use DEFAULT_WORD_SWTCH_TAKES_ARG.
3775 2003-03-10  Jason Merrill  <jason@redhat.com>
3777         PR c++/9798
3778         * decl.c (push_using_directive): Push before recursing.
3780         PR c++/9868, c++/9524
3781         * call.c (resolve_scoped_fn_name): Handle the case of a function
3782         pointer member.
3784         * decl2.c (build_offset_ref_call_from_tree): Only mess with 'this'
3785         argument in the pointer-to-member case.
3787 2003-03-09  Mark Mitchell  <mark@codesourcery.com>
3789         PR c++/9373
3790         * cp-lang.c (cxx_get_alias_set): Use alias set zero for
3791         pointers to member functions.
3793         PR c++/8534
3794         * decl.c (build_ptrmemfunc_type): Do not allow default arugments
3795         in pointer-to-member-function types.
3797 2003-03-10  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3799         * expr.c (cplus_expand_constant): Use C90 prototype style.
3800         (cxx_expand_expr): Likewise.
3802 2003-03-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3804         PR c++/9970
3805         * decl.c (duplicate_decls): Only copy DECL_THUNKS for virtual
3806         functions.
3808 2003-03-08  Geoffrey Keating  <geoffk@apple.com>
3810         * lang-specs.h (c++-header): Change .pch to .gch.
3812 2003-03-08  Neil Booth  <neil@daikokuya.co.uk>
3814         * cp-tree.h (cxx_init): Update prototype.
3815         * lex.c (cxx_init): Similarly.
3817 2003-03-08  Mark Mitchell  <mark@codesourcery.com>
3819         PR c++/9823
3820         * cp-tree.h (begin_mem_initializers): Remove.
3821         * parser.c (cp_parser_mem_initializer_list): Inline it here.
3822         Do not call finish_mem_initializers if not in a constructor.
3823         (cp_parser_class_head): Fix typo in error message.
3824         * semantics.c (begin_mem_initializers): Remove.
3825         * testsuite/g++.dg/parser/constructor1.C: New test.
3827         PR c++/9809
3828         * call.c (add_function_candidate): Skip builtin fuctions that have
3829         not yet been declared.
3831         PR c++/9982
3832         * init.c (build_new_1): Correct logic for determining whether or
3833         not to use an array cookie.
3835         PR c++/9524
3836         * parser.c (cp_parser_postfix_expression): Call
3837         finish_non_static_data_member, even when processing_template_decl.
3839         PR c++/9912
3840         * cp-tree.h (is_ancestor): New function.
3841         (handle_class_head): Change prototype.
3842         * decl2.c (is_namespace_ancestor): Rename to ...
3843         (namespace_anecestor): ... this.
3844         (set_decl_namespace): Adjust accordingly.
3845         (handle_class_head): Remove unncessary parameters.
3846         * parser.c (cp_parser_class_head): Check that
3847         nested-name-specifiers are used appropriately.
3849 2003-03-07  Mark Mitchell  <mark@codesourcery.com>
3851         * call.c (reference_binding): Remove REF_IS_VAR parameter.
3852         (implicit_conversion): Adjust call to reference_binding.
3853         (make_temporary_var_for_ref_to_type): Add TYPE parameter.
3854         (initialize_reference): Adjust handling for references bound to
3855         rvalues.
3856         * cp-tree.h (make_temporary_var_for_ref_to_temp): Change
3857         prototype.
3858         (real_non_cast_lvalue_p): New method.
3859         * cvt.c (build_up_reference): Adjust use of
3860         make_temporary_var_for_ref_to_temp.
3861         * tree.c (real_non_cast_lvalue_p): New method.
3863 2003-03-07  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3865         * except.c (init_exception_processing): Use C90 prototype style.
3866         (cp_protect_cleanup_actions): Likewise.
3867         (prepare_eh_type): Likewise.
3868         (build_eh_type_type): Likewise.
3869         (build_exc_ptr): Likewise.
3870         (do_begin_catch): Likewise.
3871         (dtor_nothrow): Likewise.
3872         (do_end_catch): Likewise.
3873         (push_eh_cleanup): Likewise.
3874         (decl_is_java_type): Likewise.
3875         (choose_personality_routine): Likewise.
3876         (initialize_handler_parm): Likewise.
3877         (expand_start_catch_block): Likewise.
3878         (expand_end_catch_block): Likewise.
3879         (begin_eh_spec_block): Likewise.
3880         (finish_eh_spec_block): Likewise.
3881         (do_allocate_exception): Likewise.
3882         (do_free_exception): Likewise.
3883         (wrap_cleanups_r): Likewise.
3884         (stabilize_throw_expr): Likewise.
3885         (build_throw): Likewise.
3886         (complete_ptr_ref_or_void_ptr_p): Likewise.
3887         (is_admissible_throw_operand): Likewise.
3888         (nothrow_libfn_p): Likewise.
3889         (can_convert_eh): Likewise.
3890         (check_handlers_1): Likewise.
3891         (check_handlers): Likewise.
3893 2003-03-06  Mark Mitchell  <mark@codesourcery.com>
3895         * call.c (merge_conversion_sequences): New function.
3896         (build_conv): Set ICS_USER_FLAG for USER_CONVs.
3897         (convert_class_to_reference): Correct handling of second
3898         standard conversion sequence in a user-defined conversion
3899         sequence.
3900         (build_user_type_conversion_1): Use merge_conversion_sequences.
3901         * cp-tree.def: Add comments for CONV nodes.
3902         * rtti.c (get_tinfo_decl): Use build_address/build_nop.
3904 2003-03-07  Gabriel Dos Reis  <gdr@integrable-solutions.net>
3906         * error.c (init_error): Use C90 prototype style.
3907         (dump_scope): Likewise.
3908         (dump_qualifiers): Likewise.
3909         (dump_template_argument): Likewise.
3910         (dump_template_argument_list): Likewise.
3911         (dump_template_parameter): Likewise.
3912         (dump_template_bindings): Likewise.
3913         (dump_type): Likewise.
3914         (dump_typename): Likewise.
3915         (class_key_or_enum): Likewise.
3916         (dump_aggr_type): Likewise.
3917         (dump_type_prefix): Likewise.
3918         (dump_type_suffix): Likewise.
3919         (dump_global_iord): Likewise.
3920         (dump_simple_decl): Likewise.
3921         (dump_decl): Likewise.
3922         (dump_template_decl): Likewise.
3923         (dump_function_decl): Likewise.
3924         (dump_parameters): Likewise.
3925         (dump_exception_spec): Likewise.
3926         (dump_function_name): Likewise.
3927         (dump_template_parms): Likewise.
3928         (dump_char): Likewise.
3929         (dump_expr_list): Likewise.
3930         (dump_expr): Likewise.
3931         (dump_binary_op): Likewise.
3932         (dump_unary_op): Likewise.
3933         (type_as_string): Likewise.
3934         (expr_as_string): Likewise.
3935         (decl_as_string): Likewise.
3936         (context_as_string): Likewise.
3937         (lang_decl_name): Likewise.
3938         (cp_file_of): Likewise.
3939         (cp_line_of): Likewise.
3940         (decl_to_string): Likewise.
3941         (expr_to_string): Likewise.
3942         (fndecl_to_string): Likewise.
3943         (code_to_string): Likewise.
3944         (language_to_string): Likewise.
3945         (parm_to_string): Likewise.
3946         (op_to_string): Likewise.
3947         (type_to_string): Likewise.
3948         (assop_to_string): Likewise.
3949         (args_to_string): Likewise.
3950         (cv_to_string): Likewise.
3951         (cxx_print_error_function): Likewise.
3952         (cp_diagnostic_starter): Likewise.
3953         (cp_diagnostic_finalizer): Likewise.
3954         (cp_print_error_function): Likewise.
3955         (function_category): Likewise.
3956         (print_instantiation_full_context): Likewise.
3957         (print_instantiation_partial_context): Likewise.
3958         (maybe_print_instantiation_context): Likewise.
3959         (print_instantiation_context): Likewise.
3960         (cp_printer): Likewise.
3961         (print_integer): Likewise.
3962         (print_non_consecutive_character): Likewise.
3963         (locate_error): Likewise.
3965 2003-03-06  Mark Mitchell  <mark@codesourcery.com>
3967         PR c++/9965
3968         * call.c (reference_binding): Add ref_is_var parameter.
3969         (implicit_conversion): Adjust call to reference_binding.
3970         (initialize_reference): Likewise.
3972         PR c++/9400
3973         * decl.c (pushdecl): Don't check for shadowing of DECL_ARTIFICIAL
3974         PARM_DECLs.
3976         PR c++/9791
3977         * class.c (get_basefndecls): Use lookup_fnfields_1.
3979 2003-03-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
3981         PR c++/9188
3982         * parser.c (cp_parser_type_parameter): Remove redundant `expect'
3983         in error message.
3984         (cp_parser_single_declaration): Likewise.
3986 2003-03-05  Jason Merrill  <jason@redhat.com>
3988         PR c++/9440
3989         * call.c (build_conditional_expr): Use convert rather than an
3990         explicit NOP_EXPR.
3992 2003-03-02  Matt Austern  <austern@apple.com>
3994         * decl.c (cp_binding_level): Add static_decls varray member.
3995         (add_decl_to_level): Add static/inline namespace scope
3996         declarations to static_decls array.
3997         (wrapup_global_for_namespace): Pass static_decls only, instead of
3998         all decls, to wrapup_global_declarations/check_global_declarations.
3999         (push_namespace): Initialize static_decls for ordinary namespaces.
4000         (cxx_init_decl_processing): Initialize static_decls for global
4001         namespace.
4003 2003-03-05  Mark Mitchell  <mark@codesourcery.com>
4005         * class.c (end_of_class): Correct thinko.
4007 2003-03-04  Nathanael Nerode  <neroden@gcc.gnu.org>
4009         * config-lang.in: Replace ${libstdcxx_version} by its value.
4011 2003-03-04  Gabriel Dos Reis <gdr@integrable-solutions.net>
4013         * cp-tree.h (cxx_saved_binding): Declare.
4014         (struct saved_scope): Adjust type of field 'old_binding'.
4015         * decl.c (cxx_saved_binding_make): New macro.
4016         (struct cxx_saved_binding): Define.
4017         (store_bindings): Adjust prototype.  Use cxx_saved_binding to save
4018         C++ bindings.
4019         (maybe_push_to_top_level): Adjust local variable type.
4020         (pop_from_top_level): Likewise.
4022 2003-03-04  Tom Tromey  <tromey@redhat.com>
4024         * Make-lang.in (c++.tags): New target.
4026 2003-03-04  Neil Booth  <neil@daikokuya.co.uk>
4028         * Make-lang.in: Update.
4030 2003-03-03  Jason Merrill  <jason@redhat.com>
4032         * decl.c (finish_enum): Do set the type in a template. Simplify.
4033         * pt.c (tsubst_enum, tsubst_copy): Revert last patch.
4035 2003-03-03  Mark Mitchell  <mark@codesourcery.com>
4037         PR c++/9878
4038         * call.c (convert_class_to_reference): Correct conversion
4039         sequences.
4040         (reference_binding): Add ref_bound_directly_to_rvalue_p parameter.
4041         (implicit_conversion): Adjust call to reference_binding.
4042         (add_candidate): Change type of candidates parameter.
4043         (add_function_candidate): Likewise.
4044         (add_conv_candidate): Likewise.
4045         (build_builtin_candidate): Likewise.
4046         (add_builtin_candidate): Likewise.
4047         (add_builtin_candidates): Likewise.
4048         (add_template_candidate_real): Likewise.
4049         (add_template_candidate): Likewise.
4050         (add_template_conv_candidate): Likewise.
4051         (build_user_type_conversion_1): Adjust accordingly.
4052         (build_object_call): Likewise.
4053         (build_conditional_expr): Likewise.
4054         (add_candidates): Likewise.
4055         (build_new_op): Likewise.
4056         (convert_like_real): Use USER_CONV_CAND.  Use build_nop.
4057         (build_new_method_call): Adjust calls to add_function_candidate.
4058         (make_temporary_var_for_ref_to_temp): New function.
4059         (initialize_reference): Add decl parameter.
4060         * class.c (build_rtti_vtbl_entries): Use build_address and
4061         build_nop.
4062         * cp-tree.h (initialize_reference): Change prototype.
4063         (make_temporary_var_for_ref_to_temp): New function.
4064         (build_type_conversion): Change prototype.
4065         (build_address): New function.
4066         (build_nop): Likewise.
4067         * cvt.c (cp_convert_to_pointer): Adjust call to
4068         build_type_conversion.  Avoid indicating redundant NOP_EXPRs.
4069         Use build_nop.
4070         (convert_to_pointer_force): Use build_nop.
4071         (build_up_reference): Use make_temporary_var_for_ref_to_temp.
4072         (convert_to_reference): Adjust call to build_type_conversion.
4073         (ocp_convert): Likewise.
4074         (build_type_conversion): Remove for_sure parameter.
4075         * decl.c (grok_reference_init): Use initialize_reference.
4076         * typeck.c (build_address): New function.
4077         (build_nop): Likewise.
4078         (build_unary_op): Use them.
4079         (build_ptrmemfunc): Tidy slightly.
4080         (convert_for_initialization): Adjust call to
4081         initialize_reference.
4082         * typeck2.c (store_init_value): Remove #if 0'd code.
4084 2003-03-03  Jason Merrill  <jason@redhat.com>
4086         * decl.c (start_function): Clear DECL_NUM_STMTS.
4088         * class.c (get_vtable_decl): Use vtbl_type_node.
4089         (build_primary_vtable): Check for it.
4091 2003-03-02  Aldy Hernandez  <aldyh@redhat.com>
4093         * decl.c (check_initializer): Check for vector_opaque_p.
4095 2003-03-02  Ashif Harji  <asharji@uwaterloo.ca>
4097         * lang-specs.h (default_compilers): Add -no-integrated-cpp flag to
4098           invoke an external cpp during compilation.
4100 2003-03-01  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4102         * decl.c (duplicate_decls): Convert use of warning_with_decl() to
4103         that of warning().
4104         (start_decl): Likewise.
4105         (start_function): Likewise.
4107 2003-03-01  Neil Booth  <neil@daikokuya.co.uk>
4109         * Make-lang.in (CXX_C_OBJS): Update.
4111 2003-02-28  Mark Mitchell  <mark@codesourcery.com>
4113         PR c++/9892
4114         * pt.c (instantiate_decl): Clear DECL_RTL for a VAR_DECL when
4115         instantiating it.
4117 2003-02-28  Aldy Hernandez  <aldyh@redhat.com>
4119         * parser.c (cp_parser_init_declarator): Revert opaque
4120         vector_opaque_p change.
4121         Do not include target.h.
4123 2003-02-28  Mark Mitchell  <mark@codesourcery.com>
4125         PR c++/9879
4126         * cp-tree.h (build_zero_init): Add parameter.
4127         * decl.c (cp_finish_decl): Adjust call.
4128         * init.c (build_zero_init): Add nelts parameter.  Adjust recursive
4129         calls.
4130         (build_default_init): Add nelts parameter.  Adjust calls to
4131         build_zero_init.
4132         (build_new_1): Adjust call to build_default_init.
4133         * typeck2.c (process_init_constructor): Adjust call to build_zero_init.
4135 2003-02-26  Devang Patel  <dpatel@apple.com>
4137         * decl.c (finish_enum): Merge two 'for' loops. Copy value node if
4138         required.  Postpone enum setting for template decls.
4139         (build_enumerator): Delay copying value node until finish_enum
4140         (). Remove #if 0'ed code.
4141         * pt.c (tsubst_enum): Set TREE_TYPE and copy value node.
4142         (tsubst_copy): Add check for enum type.
4144 2003-02-25  Mark Mitchell  <mark@codesourcery.com>
4146         PR c++/9683
4147         * decl2.c (prune_vars_needing_no_initialization): Do not throw
4148         away initializations for DECL_EXTERNAL VAR_DECLs.
4149         (finish_file): Adjust accordingly.
4150         * pt.c (instantiate_decl): Do not defer VAR_DECLs.
4152 2003-02-24 Gabriel Dos Reis  <gdr@integrable-solutions.net>
4154         * decl.c (add_binding): Time TV_NAME_LOOKUP.
4155         (push_class_binding): Likewise.
4156         (set_namespace_binding): Likewise.
4158 2003-02-24  Mark Mitchell  <mark@codesourcery.com>
4160         PR c++/9836
4161         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE): Do not skip from
4162         specializations back to the main template.
4163         * parser.c (cp_parser_diagnose_invalid_type_name):Adjust use.
4164         * pt.c (resolve_typename_type): Likewise.
4166 2003-02-24  Jeffrey D. Oldham  <oldham@codesourcery.com>
4168         PR c++/9778
4169         * pt.c (tsubst_copy_and_build): For a templated function inside a
4170         scope, process template arguments.
4172 2003-02-24  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4174         PR c++/9602
4175         * typeck2.c (abstract_virtuals_error): Don't check when
4176         TYPE is still template parameter dependent.
4178 2003-02-23  Mark Mitchell  <mark@codesourcery.com>
4180         PR c++/5333
4181         * cp-tree.h (CLASSTYPE_PRIMARY_TEMPLATE): New macro.
4182         * parser.c (cp_parser_diagnose_invalid_type_name): Use it.
4183         * pt.c (instantiate_class_template): Don't try to instantiate
4184         dependent types.
4185         (resolve_typename_type): Use CLASSTYPE_PRIMARY_TEMPLATE.
4187 2003-02-21  Mark Mitchell  <mark@codesourcery.com>
4189         PR c++/9749
4190         * decl.c (grokdeclarator): Do not allow parameters with variably
4191         modified types.
4193 2003-02-21  Nathan Sidwell  <nathan@codesourcery.com>
4195         * search.c (grow_bfs_bases): Remove. Fold into ...
4196         (bfs_walk): ... here, fix fencepost error. Fix merge lossage
4197         in previous patch.
4199 2003-02-20  Mark Mitchell  <mark@codesourcery.com>
4201         PR c++/9729
4202         * mangle.c (mangle_conv_op_name_for_type): Issue an error message
4203         when the G++ 3.2 ABI prevents correct compilation.
4205 2003-02-20  Nathan Sidwell  <nathan@codesourcery.com>
4207         Change base class access representation. Share virtual base
4208         binfos.
4209         * cp/call.c (build_special_member_call): Remove binfo_for_vbase
4210         call.
4211         * cp/class.c (build_base_path): Likewise.
4212         (build_primary_vtable): Adjust BINFO_NEW_VTABLE_MARKED use.
4213         (build_secondary_vtable): Remove FOR_TYPE arg. Adjust.
4214         (make_new_vtable): Adjust.
4215         (force_canonical_binfo_r): Delete.
4216         (force_canonical_binfo): Delete.
4217         (mark_primary_virtual_base): Delete.
4218         (dfs_unshared_virtual_bases): Delete.
4219         (mark_primary_bases): Adjust.
4220         (maybe_warn_about_overly_private_class): Adjust.
4221         (dfs_base_derived_from): Delete.
4222         (base_derived_from): Follow the inheritance chain.
4223         (struct find_final_overrider_data): Add vpath member.
4224         (dfs_find_final_overrider): Adjust.
4225         (dfs_find_final_overrider_q, dfs_find_final_overrider_post): New.
4226         (find_final_overrider): Adjust.
4227         (update_vtable_entry_for_fn): Adjust.
4228         (modify_all_vtables): Adjust.
4229         (walk_subobject_offsets): Adjust.
4230         (layout_nonempty_base_or_field): Adjust.
4231         (layout_empty_base): Remove last parameter. Adjust.
4232         (build_base_field): Adjust.
4233         (build_base_fields): Adjust.
4234         (propagate_binfo_offsets): Remove last parameter. Adjust.
4235         (dfs_set_offset_for_unshared_vbases): Delete.
4236         (layout_virtual_bases): Adjust.
4237         (finish_struct_1): Adjust.
4238         (init_class_processing): Don't init access nodes.
4239         (dfs_get_primary_binfo): Delete.
4240         (get_primary_binfo): Adjust.
4241         (dump_class_hierarchy_r): Remove most derived arg, add IGO
4242         parameter. Adjust.
4243         (dump_class_hierarchy): Adjust.
4244         (finish_vtbls): Adjust.
4245         (get_original_base): Delete.
4246         (build_vtt_inits): Adjust.
4247         (dfs_build_secondary_vptr_vtt_inits): Adjust.
4248         (dfs_ctor_vtable_bases_queue_p): Adjust.
4249         (build_ctor_vtbl_group): Adjust.
4250         (dfs_accumulate_vtbl_inits): Adjust.
4251         (build_vtbl_initializer): Adjust.
4252         (build_vbase_offset_vtbl_entries): Adjust.
4253         (add_vcall_offset_vtbl_entries_1): Adjust.
4254         * cp/cp-tree.h (CPTI_ACCESS_*): Remove.
4255         (access_*_node): Remove.
4256         (CANONICAL_BINFO): Delete.
4257         (BINFO_UNSHARED_MARKED): Remove.
4258         (BINFO_MARKED): Set LANG_FLAG_0 directly.
4259         (SET_BINFO_MARKED, CLEAR_BINFO_MARKED): Delete.
4260         (BINFO_VTABLE_PATH_MARKED): Set LANG_FLAG_3 directly.
4261         (SET_BINFO_VTABLE_PATH_MARKED, CLEAR_BINFO_VTABLE_PATH_MARKED):
4262         Delete.
4263         (BINFO_NEW_VTABLE_MARKED): Set LANG_FLAG_4 directly.
4264         (SET_BINFO_NEW_VTABLE_MARKED): Adjust.
4265         (SET_BINFO_PUSHDECLS_MARKED, CLEAR_BINFO_PUSHDECLS_MARKED):
4266         Delete.
4267         (BINFO_DEPENDENT_BASE_P): New.
4268         (dfs_walk, dfs_walk_real): Queue function takes derived binfo and
4269         index.
4270         (markedp, unmarkedp): Adjust.
4271         (dfs_unmarked_real_bases_queue_p, dfs_marked_real_bases_queue_p,
4272         dfs_skip_vbases, marked_vtable_pathp, unmarked_vtable_pathp,
4273         find_vbase_instance, binfo_for_vbase): Delete.
4274         (copied_binfo, original_binfo): Declare.
4275         (finish_base_specifier): Add virtual_p arg.
4276         (unshare_base_binfos): Delete.
4277         (copy_base_binfos): Declare.
4278         (reverse_path): Delete.
4279         * cp/decl.c (xref_basetypes): Access and virtuality passed
4280         differently. Don't copy direct base binfos here. Call
4281         copy_base_binfos.
4282         * cp/init.c (dfs_initialize_vtbl_ptrs): Adjust.
4283         (initialize_vtbl_ptrs): Adjust.
4284         (expand_member_init): Adjust.
4285         * cp/parser.c (cp_parser_base_specifier): Adjust.
4286         * cp/pt.c (instantiate_class_template): Adjust.
4287         (get_template_base_recursive): Adjust.
4288         * cp/rtti.c (get_pseudo_ti_init): Adjust.
4289         (get_pseudo_ti_desc): Adjust.
4290         * cp/tree.c (unshare_base_binfos): Rename to ...
4291         (copy_base_binfos): ... here, reimplement.
4292         (make_binfo): Set BINFO_DEPENDENT_BASE_P.
4293         (reverse_path): Remove.
4294         * cp/typeck.c (get_delta_difference): Adjust error messages.
4295         * cp/semantics.c (finish_base_specifier): Add virtual arg, adjust.
4296         * cp/search.c (lookup_base_r): Adjust.
4297         (dynamic_cast_base_recurse): Adjust.
4298         (canonical_binfo): Remove.
4299         (dfs_canonical_queue): Remove.
4300         (dfs_assert_unmarked_p): Remove.
4301         (assert_canonical_unmarked): Remove.
4302         (shared_marked_p, shared_unmarked_p): Remove.
4303         (BINFO_ACCESS, SET_BINFO_ACCESS): Use TREE_PUBLIC & TREE_PRIVATE.
4304         (dfs_access_in_type): Adjust.
4305         (access_in_type): Adjust.
4306         (dfs_accessible_queue_p): Adjust.
4307         (dfs_accessible_p): Adjust.
4308         (is_subobject_of_p_1, is_subobject_of_p): Remove.
4309         (struct lookup_field_info): Remove from_dep_base_p field.
4310         (lookup_field_queue_p): Adjust, test BINFO_DEPENDENT_BASE_P.
4311         (lookup_field_r): Remove dependent base code.
4312         (lookup_member): Likewise.
4313         (dfs_walk, dfs_walk_real): Add access arg to queue fn.
4314         (dfs_unmarked_real_bases_queue_p): Remove.
4315         (dfs_marked_real_bases_queue_p): Remove.
4316         (dfs_skip_vbases): Remove.
4317         (dfs_get_pure_virtuals): Adjust.
4318         (markedp, unmarkedp): Adjust.
4319         (marked_vtable_pathp, unmarked_vtable_pathp): Remove.
4320         (marked_pushdecls_p, unmarked_pushdecls_p): Adjust.
4321         (dfs_unmark): Adjust.
4322         (dfs_get_vbase_types):Remove.
4323         (dfs_build_inheritance_graph_order): Remove.
4324         (get_vbase_types): Remove
4325         (dfs_find_vbase_instance): Remove.
4326         (find_vbase_instance): Remove.
4327         (dfs_debug_unmarkedp): Adjust.
4328         (dependent_base_p): Remove.
4329         (dfs_push_type_decls): Adjust.
4330         (dfs_push_decls): Adjust.
4331         (dfs_no_overlap_yet): Adjust.
4332         (copied_binfo): New function.
4333         (original_binfo): New function.
4334         (binfo_for_vbase): Remove.
4336 2003-02-18  Zack Weinberg  <zack@codesourcery.com>
4338         * cp/search.c (grow_bfs_bases): New subroutine of bfs_walk.
4339         (bfs_walk): Rewritten using circular queue of BINFO_BASETYPES
4340         vectors, for speed.
4342 2003-02-18  Mark Mitchell  <mark@codesourcery.com>
4344         PR c++/9704
4345         * class.c (layout_class_type): In the 3.2 ABI, take into account
4346         trailing bit fields when computing CLASSTYPE_SIZE_UNIT.
4348 2003-02-18  Matt Austern <austern@apple.com>
4350         * cp/cp-lang.c: Change lang hooks so that final_write_globals does
4351         nothing for C++.
4352         * cp/decl.c (wrapup_globals_for_namespace): Remove special
4353         handling of global namespace.
4355 2003-02-18  Geoffrey Keating  <geoffk@apple.com>
4357         * cp-tree.h (rid_to_yy): Delete.
4358         (C_RID_YYCODE): Delete.
4359         (finish_file): Delete redundant declaration.
4361 2003-02-18  Jason Merrill  <jason@redhat.com>
4363         PR c++/9623
4364         * decl.c (reshape_init): Don't mess with initializer labels.
4366         PR c++/9485
4367         * parser.c (cp_parser_postfix_expression): Set idk properly for
4368         object->scope::member.
4370 2003-02-18  Ben Elliston  <bje@redhat.com>
4372         PR other/7350
4373         * decl.c (duplicate_decls): Fix typo in comment.
4375 2003-02-17  Michael Elizabeth Chastain <mec@shout.net>
4377         PR debug/9717
4378         * class.c (build_base_field): Mark fields for base classes with
4379         DECL_IGNORED_P.
4381 2003-02-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4383         PR c++/9457
4384         * pt.c (tsubst_copy_and_build) [CONSTRUCTOR]: Substitute
4385         CONSTRUCTOR_ELTS only once.
4387 2003-02-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4389         PR c++/9459
4390         * error.c (dump_type_prefix): Handle TYPEOF_TYPE.
4391         (dump_type_suffix): Likewise.
4393 2003-02-14  Nathan Sidwell  <nathan@codesourcery.com>
4395         * search.c: ANSIfy function declarations and definitions.
4396         * cp-tree.h (lookup_field, lookup_member): Last parameter is a bool.
4397         * call.c (build_method_call, resolve_scoped_fn_name,
4398         build_java_interface_fn_ref): Adjust lookup_field, lookup_member
4399         calls.
4400         * class.c (handle_using_decl): Likewise.
4401         * decl.c (make_typename_type, make_unmound_class_template,
4402         start_decl, compute_array_index_type): Likewise.
4403         * decl2.c (build_expr_from_tree, build_call_from_tree): Likewise.
4404         * init.c (expand_member_init, build_member_call): Likewise.
4405         * pt.c (tsubst_copy, tsubst_copy_and_build, do_decl_instantiation,
4406         resolve_typename_type): Likewise.
4407         * typeck.c (lookup_destructor, finish_class_member_access_exprm
4408         build_prememfunc_access_expr): Likewise.
4410 2003-02-13  Gabriel Dos Reis <gdr@integrable-solutions.net>
4412         * decl2.c: Include "timevar.h".
4413         (namespace_ancestor): Time name lookup.
4414         (add_using_namespace): Likewise.
4415         (lookup_using_namespace): Likewise.
4416         (qualified_lookup_using_namespace): Likewise.
4417         (decl_namespace): Likewise.
4418         (lookup_arg_dependent): Likewise.
4419         * lex.c (do_identifier): Likewise.
4420         (do_scoped_id): Likewise.
4421         * pt.c (lookup_template_class): Likewise.
4423 2003-02-14   Andrew Pinski <pinskia@physics.uc.edu>
4425         * decl.c: (define_label): Fix warning for return 0 instead of NULL.
4427 2003-02-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
4429         * decl.c: Include "timevar.h".
4430         (poplevel): Time name lookup.
4431         (find_binding): Likewise.
4432         (push_namespace): Likewise.
4433         (pop_nested_namespace): Likewise.
4434         (store_bindings): Likewise.
4435         (maybe_push_to_top_level): Likewise.
4436         (pop_from_top_level): Likewise.
4437         (push_local_name): Likewise.
4438         (pushtag): Likewise.
4439         (pushdecl): Likewise.
4440         (pushdecl_with_scope): Likewise.
4441         (pushdecl_namespace_level): Likewise.
4442         (pushdecl_top_level): Likewise.
4443         (pushdecl_class_level): Likewise.
4444         (push_class_level_binding): Likewise.
4445         (push_using_decl): Likewise.
4446         (push_using_directive): Likewise.
4447         (push_overloaded_decl): Likewise.
4448         (lookup_label): Likewise.
4449         (define_label): Likewise.
4450         (lookup_tag): Likewise.
4451         (lookup_tag_reverse): Likewise.
4452         (lookup_namespace_name): Likewise.
4453         (select_decl): Likewise.
4454         (unqualified_namespace_lookup): Likewise.
4455         (lookup_name_real): Likewise.
4456         (lookup_name_current_level): Likewise.
4457         (lookup_type_current_level): Likewise.
4458         (maybe_inject_for_scope_var): Likewise.
4459         (xref_tag): Likewise.
4461         * Make-lang.in (cp/decl.o): Add dependency on timevar.h
4463 2003-02-12  Phil Edwards  <pme@gcc.gnu.org>
4465         * decl.c (build_enumerator):  Remove unneeded test.
4467 2003-02-09  Dan Nicolaescu  <dann@ics.uci.edu>
4469         * cp-tree.h (struct lang_type_header): Make all fields unsigned
4470         char.
4472 2003-02-03  Mark Mitchell  <mark@codesourcery.com>
4474         PR c++/7129
4475         * call.c (z_candidate): Add args.
4476         (convert_class_to_reference): Set it.
4477         (implicit_conversion): Tidy.
4478         (add_candidate): Add args parameter.
4479         (add_function_candidate): Adjust call to add_candidate.
4480         (add_conv_candidate): Likewise.
4481         (build_builtin_candidate): Likewise.
4482         (build_user_type_conversion_1): Eliminate wasteful tree_cons
4483         usage.
4484         (build_new_function_call): Likewise.
4485         (build_object_call): Likewise.
4486         (add_candidates): New function.
4487         (build_new_op): Use it.
4488         (covert_like_real): Adjust call to build_over_call.
4489         (build_over_call): Remove args parameter.
4490         * operators.def: Add <?= and >?=.
4492 2003-02-01  Richard Sandiford  <rsandifo@redhat.com>
4494         * typeck.c (build_indirect_ref): Don't check flag_volatile.
4496 2003-01-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4498         PR c++/8849
4499         * pt.c (resolve_overloaded_unification): Handle FUNCTION_DECL.
4501 2003-01-31  Nathan Sidwell  <nathan@codesourcery.com>
4503         * cp-tree.h (BINFO_SUBVTT_INDEX, BINFO_VPTR_INDEX,
4504         BINFO_PRIMARY_BASE_OF): Use BINFO_ELTS.
4505         (BINFO_LANG_ELTS): New #define.
4506         * tree.c (make_binfo): Use BINFO_LANG_ELTS.
4508 2003-01-30  Geoffrey Keating  <geoffk@apple.com>
4510         * cp/Make-lang.in: Remove -Wno-error from cp/decl.o.
4512 2003-01-30  Mark Mitchell  <mark@codesourcery.com>
4514         * class.c (check_field_decls): Only check C_TYPE_FIELDS_READONLY
4515         for class types.
4516         * cp-tree.h (C_TYPE_FIELDS_READONLY): Use a lang-specific bit
4517         rather than TYPE_LANG_FLAG_0.
4518         (TYPE_BUILT_IN): Remove.
4519         (TYPE_DEPENDENT_P): New macro.
4520         (TYPE_DEPENDENT_P_VALID): Likewise.
4521         (lang_type_class): Add fields_readonly.
4522         * decl.c (record_builtin_type): Don't set TYPE_BUILT_IN.
4523         * pt.c (dependent_type_p_r): New function, split out from ...
4524         (dependent_type_p): ... here.  Memoize results.
4525         * search.c (dependent_base_p): Use dependent_type_p, not
4526         uses_template_parms.
4527         * typeck.c (build_modify_expr): Only check C_TYPE_FIELDS_READONLY
4528         for class types.
4530 2003-01-29  Mark Mitchell  <mark@codesourcery.com>
4532         * call.c (build_field_call): Use build_new_op, not build_opfncall.
4533         (prep_operand): New function.
4534         (build_new_op): Use it.  Remove dead code.
4535         * class.c (pushclass): Change "modify" parameter type from int to
4536         bool.
4537         (currently_open_class): Use same_type_p, not pointer equality.
4538         (push_nested_class): Adjust calls to pushclass, remove modify
4539         parameter.
4540         * cp-tree.h (INTEGRAL_OR_ENUMERATION_TYPE_P): New macro.
4541         (pushclass): Change prototype.
4542         (push_nested_class): Likewise.
4543         (grokoptypename): Remove.
4544         (build_opfncall): Remove.
4545         (value_dependent_expression_p): Declare.
4546         (resolve_typename_type): Likewise.
4547         (resolve_typename_type_in_current_instantiation): Likewise.
4548         (enter_scope_of): Remove.
4549         (tsubst): Remove.
4550         (tsubst_expr): Likewise.
4551         (tsubst_copy): Likewise.
4552         (tsubst_copy_and_build): Likewise.
4553         * decl.c (warn_about_implicit_typename_lookup): Remove.
4554         (finish_case_label): Return error_mark_node for erroneous labels.
4555         (start_decl): Adjust calls to push_nested_class.
4556         (grokfndecl): Call push_scope/pop_scope around call to
4557         duplicate_decls.
4558         (grokdeclarator): Do not call tsubst.
4559         (start_function): Adjust calls to push_nested_class.
4560         * decl2.c (grok_array_decl): Use build_new_op, not build_opfncall.
4561         (check_classfn): Use push_scope/pop_scope around type comparisions.
4562         (grokoptypename): Remove.
4563         (push_sscope): Adjust call to push_nested_class.
4564         * error.c (dump_type): Show cv-qualification of typename types.
4565         * init.c (build_member_call): Use build_new_op, not
4566         build_opfncall.
4567         * method.c (build_opfncall): Remove.
4568         * parser.c (cp_parser): Add allow_non_constant_expression_p and
4569         non_constant_expression_p.
4570         (cp_parser_constant_expression): Adjust prototype.
4571         (cp_parser_resolve_typename_type): Remove.
4572         (cp_parser_non_constant_expression): New function.
4573         (cp_parser_non_constant_id_expression): Likewise.
4574         (cp_parser_new): Set allow_non_constant_expression_p and
4575         non_constant_expression_p.
4576         (cp_parser_primary_expression): Reject `this' and `va_arg' in
4577         constant-expressions.  Note that dependent names aren't really
4578         constant.
4579         (cp_parser_postfix_expression): Reject conversions to non-integral
4580         types in constant-expressions.  Neither are increments or
4581         decrements.
4582         (cp_parser_unary_expression): Reject increments and decrements in
4583         constant-expressions.
4584         (cp_parser_direct_new_declarator): Adjust call to
4585         cp_parser_constant_expression.
4586         (cp_parser_cast_expression): Reject conversions to non-integral
4587         types in constant-expressions.
4588         (cp_parser_assignment_expression): Rejects assignments in
4589         constant-expressions.
4590         (cp_parser_expression): Reject commas in constant-expressions.
4591         (cp_parser_labeled_statement): Adjust call to
4592         cp_parser_constant_expression.
4593         (cp_parser_direct_declarator): Simplify array bounds, even in
4594         templates, when they are non-dependent.  Use
4595         resolve_typename_type, not cp_parser_resolve_typename_type.
4596         (cp_parser_class_head): Use resolve_typename_type, not
4597         cp_parser_resolve_typename_type.
4598         (cp_parser_member_declaration): Adjust call to
4599         cp_parser_constant_expression.
4600         (cp_parser_constant_initializer): Likewise.
4601         (cp_parser_constructor_declarator): Use resolve_typename_type, not
4602         cp_parser_resolve_typename_type.
4603         (cp_parser_late_parsing_default_args): Adjust call to
4604         push_nested_class.
4605         * pt.c (tsubst): Give it internal linkage.
4606         (tsubst_expr): Likewise.
4607         (tsubst_copy): Likewise.
4608         (tsubst_copy_and_build): Likewise.
4609         (push_access_scope_real): Likewise.
4610         (tsubst_friend_class): Likewise.
4611         (instantiate_class_template): Adjust call to pushclass.
4612         (value_dependent_expression_p): Give it external linkage.
4613         Robustify.
4614         (resolve_typename_type): New function.
4615         * semantics.c (finish_call_expr): Use build_new_op, not
4616         build_opfncall.
4617         (begin_constructor_declarator): Remove.
4618         (begin_class_definition): Adjust call to pushclass.
4619         (enter_scope_of): Remove.
4620         * typeck.c (comptypes): Resolve typename types as appropriate.
4621         (build_x_indirect_ref): Use build_new_op, not build_opfncall.
4622         (build_x_compound_expr): Likewise.
4623         (build_modify_expr): Likewise.
4624         (build_x_modify_expr): Likewise.
4625         * typeck2.c (build_x_arrow): Likewise.
4627 2003-01-29  Fariborz Jahanian  <fjahanian@apple.com>
4629         * pt.c (last_pending_template) Declare GTY().
4631 2003-01-29  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4633         PR c++/8591
4634         * parser.c (cp_parser_elaborated_type_specifier): Convert
4635         TEMPLATE_DECL to TYPE_DECL only when processing template friends.
4636         (cp_parser_maybe_treat_template_as_class): Remove redundant tests.
4638 2003-01-28  Nathan Sidwell  <nathan@codesourcery.com>
4640         PR c++/9437
4641         * pt.c (unify): Don't unify '*T' with 'U C::*'.
4643         PR c++/3902
4644         * parser.c (cp_parser_decl_specifier_seq): Cannot have constructor
4645         inside a declarator.
4647 2003-01-27  Nathan Sidwell  <nathan@codesourcery.com>
4649         * class.c (update_vtable_entry_for_fn): Add index parameter.
4650         Generate vcall thunk for covariant overriding from a virtual
4651         primary base.
4652         (dfs_modify_vtables): Adjust.
4654 2003-01-25  Nathan Sidwell  <nathan@codesourcery.com>
4656         PR c++/9403
4657         * parser.c (cp_parser_class_or_namespace_name): Reject duplicate
4658         template keyword.
4659         (cp_parser_base_specifier): Look for and consume a
4660         TEMPLATE keyword. Replace switch with array index.
4662         PR c++/795
4663         * semantics.c (finish_non_static_data_member): Remember the
4664         field's type even in a template.
4666         PR c++/9415
4667         * pt.c (tsubst_copy_and_build, CALL_EXPR): BASELINK exprs are
4668         already scoped.
4670         PR c++/8545
4671         * parser.c (cp_parser_cast_expression): Be more tentative.
4673 2003-01-25  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4675         * cp-tree.h (flagged_type_tree_s): Remove.
4676         (check_for_new_type): Likewise.
4677         * typeck2.c (check_for_new_type): Likewise.
4679 2003-01-23  Nathanael Nerode  <neroden@gcc.gnu.org>
4681         * dump.c: ANSIfy function declarations and definitions.
4683         * cp-tree.h, decl.h: Get rid of PARAMS.  Again.
4685 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
4687         PR c++/9354
4688         * init.c (build_new): Set the type of the new-expression, even
4689         when processing_templte_decl.
4691         PR c++/9216
4692         * parser.c (cp_parser_primary_expression): Improve error message
4693         for templates used in an expression context.
4695         PR c++/8696
4696         * parser.c (cp_parser_decl_specifier_seq): Commit to tentative
4697         parse when encountering "typedef".
4699 2003-01-22  Nathanael Nerode  <neroden@gcc.gnu.org>
4701         * class.c, parser.c: ANSIfy function definitions and declarations.
4703 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
4705         PR c++/9328
4706         * error.c (dump_decl): For an OVERLOAD, just print the name of the
4707         function; it doesn't make sense to try to print its type.
4708         * semantics.c (finish_typeof): Issue errors about invalid uses.
4710         PR c++/9298
4711         * parser.c (cp_parser_consume_semicolon_at_end_of_statement): New
4712         function.
4713         (cp_parser_expression_statement): Use it.
4714         (cp_parser_explicit_instantiation): Likewise.
4715         * pt.c (do_decl_instantiation): Improve error handling logic.
4717 2003-01-22  Mark Mitchell  <mark@codesourcery.com>
4719         PR c++/9384
4720         * parser.c (cp_parser_using_declaration): Issue error messages
4721         about name resolution failures here.
4723         PR c++/9388
4724         * class.c (currently_open_derived_class): Use dependent_type_p.
4725         * cp-tree.h (dependent_type_p): New function.
4726         (dependent_template_arg_p): Likewise.
4727         (dependent_template_p): Likewise.
4728         (type_dependent_expression_p): Likewise.
4729         * parser.c (cp_parser_dependent_type_p): Remove.
4730         (cp_parser_value_dependent_type_p): Likewise.
4731         (cp_parser_type_dependent_expression_p): Likewise.
4732         (cp_parser_dependent_template_arg_p): Likewise.
4733         (cp_parser_dependent_template_id_p): Likewise.
4734         (cp_parser_dependent_template_p): Likewise.
4735         (cp_parser_diagnose_invalid_type_name): Replace
4736         cp_parser_dependent_type_p with dependent_type_p, etc.
4737         (cp_parser_primary_expresion): Likewise.
4738         (cp_parser_nested_name_specifier_opt): Likewise.
4739         (cp_parser_postfix_expression): Likewise.
4740         (cp_parser_unary_expression): Likewise.
4741         (cp_parser_template_name): Likewise.
4742         (cp_parser_class_name): Likewise.
4743         (cp_parser_lookup_name): Likewise.
4744         * pt.c (dependent_type_p): New function.
4745         (value_dependent_expression_p): Likewise.
4746         (type_dependent_expression_p): Likewise.
4747         (dependent_template_arg_p): Likewise.
4748         (dependent_template_id_p): Likewise.
4749         (dependent_template_p): Likewise.
4751         PR c++/9285
4752         PR c++/9294
4753         * parser.c (cp_parser_simple_declaration): Return quickly when
4754         encountering errors.
4756 2003-01-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4758         Make-lang.in (cp/decl.o-warn): Add -Wno-error.
4760 2003-01-17  Jason Merrill  <jason@redhat.com>
4762         PR c++/9167, c++/9358
4763         * decl.c (require_complete_types_for_parms): Also update DECL_ARG_TYPE.
4765 2003-01-17  Jason Merrill  <jason@redhat.com>
4767         PR c++/9342
4768         * call.c (build_conditional_expr): Always do lvalue-rvalue
4769         conversion.
4771 2003-01-17  Mark Mitchell  <mark@codesourcery.com>
4773         PR c++/9294
4774         * cp-tree.def (BASELINK): Make it class 'x', not class 'e'.
4775         * cp-tree.h (BASELINK_BINFO): Adjust.
4776         (BASELINK_FUNCTIONS): Likewise.
4777         (BASELINK_ACCESS_BINFO): Likewise.
4778         (tree_baselink): New structure.
4779         (cp_tree_node_structure_enum): Add TS_CP_BASELINK.
4780         (lang_tree_node): Add baselink.
4781         * decl.c (cp_tree_node_structure): Add BASELINK case.
4782         * search.c (build_baselink): Adjust.
4783         * tree.c (cp_walk_subtrees): Add BASELINK case.  Remove BASELINK_P
4784         test from TREE_LIST case.
4786         PR c++/9272
4787         * parser.c (cp_parser_constructor_declarator_p): Do not assume
4788         that a constructor cannot be declared outside of its own class.
4790         * parser.c (cp_parser_resolve_typename_type): If the scope cannot
4791         be resolved, neither can the qualified name.
4793         * rtti.c (get_pseudo_ti_desc): Fix thinko.
4795 2003-01-16  Jason Merrill  <jason@redhat.com>
4797         PR c++/8564
4798         * init.c (build_vec_init): Re-add maxindex parm.
4799         (perform_member_init, build_aggr_init): Pass it.
4800         (build_new_1): Pass it. Use an incomplete array type for full_type.
4801         * typeck.c (build_modify_expr): Pass it.
4802         * cp-tree.h: Adjust.
4804 2003-01-16  Jeffrey D. Oldham  <oldham@codesourcery.com>
4806         * cp-tree.h (tsubst_copy_and_build): New declaration.
4807         * pt.c (tsubst_copy): Remove 'build_expr_from_tree' from comment.
4808         (tsubst_expr): Use 'tsubst_copy_and_build'.  Update initial comment.
4809         (tsubst_copy_and_build): New function.
4811 2003-01-16  Mark Mitchell  <mark@codesourcery.com>
4813         * cp-tree.h (lang_type_class): Remove is_partial_instantiation.
4814         (PARTIAL_INSTANTIATION_P): Remove.
4815         (IMPLICIT_TYPENAME_P): Likewise.
4816         (IMPLICIT_TYPENAME_TYPE_DECL_P): Likewise.
4817         (build_typename_type): Remove declaration.
4818         (parmlist_is_exprlist): Likewise.
4819         * decl.c (build_typename_type): Make it static, remove third
4820         parameter.
4821         (push_class_binding): Don't do implicit typename stuff.
4822         (make_typename_type): Likewise.
4823         (lookup_name_real): Likewise.
4824         (grokdeclarator): Don't try to convert declarations into
4825         initializations.  Don't do implicit typename stuff.
4826         (parmlist_is_exprlist): Remove.
4827         (xref_basetypes): Simplify.
4828         * decl2.c (grokfield): Don't try to convert declarations into
4829         initializations.
4830         (build_anon_union_vars): Do this while processing templates, too.
4831         (finish_anon_union): Likewise.
4832         * error.c (dump_type): Remove implicit typename handling.
4833         * parser.c (cp_parser_diagnose_invalid_type_name): New method.
4834         (cp_parser_primary_expression): Correct handling of names not
4835         found by unqualified name lookup in templates.
4836         (cp_parser_nested_name_specifier_opt): Avoid checking dependency
4837         of types when possible.
4838         (cp_parser_simple_declaration): Complain intelligently about some
4839         invalid declarations.
4840         (cp_parser_member_declaration): Likewise.
4841         (cp_parser_constructor_declarator_p): Don't check when we're in a
4842         function scope.
4843         * pt.c (instantiate_class_template): Remove
4844         PARTIAL_INSTANTIATION_P gunk.
4845         * search.c (lookup_field_r): Don't build implicit typenames.
4846         (marked_pushdecls_p): Don't enter dependent base types.
4847         (unmarked_pushdecls_p): Likewise.
4848         * semantics.c (begin_class_definition): Remove implicit typename
4849         stuff.
4851 2003-01-16  Nathan Sidwell  <nathan@codesourcery.com>
4853         PR c++/9212
4854         * parser.c (cp_parser_direct_declarator): If accepting either
4855         abstract or named, the name must be an unqualified-id.
4857 2003-01-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4859         * class.c (layout_virtual_bases): Avoid signed/unsigned warning.
4861 2003-01-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4863         * decl2.c (check_classfn): Fix uninitialized warning.
4864         (build_anon_union_vars): Likewise.
4865         * pt.c (tsubst_copy): Likewise.
4867 2003-01-14  Jeffrey D. Oldham  <oldham@codesourcery.com>
4869         Further conform g++'s __vmi_class_type_info to the C++ ABI
4870         specification.
4871         * rtti.c (dfs_class_hint_mark): Do not set hints not specified by
4872         the specification.
4873         (class_hint_flags): Likewise.
4875 2003-01-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
4877         * config-lang.in: Add semantics.c to gtfiles.
4878         * cp-tree.h (flagged_type_tree_s): Remove lookups field.
4879         (saved_scope): Likewise.
4880         (type_lookups): Remove.
4881         (deferred_access): New structure.
4882         (type_access_control): Remove.
4883         (save_type_access_control): Likewise.
4884         (reset_type_access_control): Likewise.
4885         (decl_type_access_control): Likewise.
4886         (push_deferring_access_checks): Declare.
4887         (resume_deferring_access_checks): Likewise.
4888         (stop_deferring_access_checks): Likewise.
4889         (pop_deferring_access_checks): Likewise.
4890         (get_deferred_access_checks): Likewise.
4891         (pop_to_parent_deferring_access_checks): Likewise.
4892         (perform_deferred_access_checks): Likewise.
4893         (perform_or_defer_access_check): Likewise.
4894         * decl.c (make_typename_type): Use perform_or_defer_access_check.
4895         (make_unbound_class_template): Likewise.
4896         (grokdeclarator): Don't call decl_type_access_control.
4897         * parser.c (cp_parser_context): Remove deferred_access_checks
4898         and deferring_access_checks_p fields.
4899         (cp_parser_context_new): Adjust.
4900         (cp_parser): Remove access_checks_lists.
4901         (cp_parser_defer_access_check): Remove.
4902         (cp_parser_start_deferring_access_checks): Remove.
4903         (cp_parser_stop_deferring_access_checks): Remove.
4904         (cp_parser_perform_deferred_access_checks): Remove.
4905         (cp_parser_nested_name_specifier_opt): Use new deferred access
4906         functions.
4907         (cp_parser_simple_declaration): Likewise.
4908         (cp_parser_template_id): Likewise.
4909         (cp_parser_function_definition): Likewise.
4910         (cp_parser_class_specifier): Likewise.
4911         (cp_parser_lookup_name): Likewise.
4912         (cp_parser_single_declaration): Likewise.
4913         (cp_parser_pre_parsed_nested_name_specifier): Likewise.
4914         (cp_parser_parse_tentatively): Likewise.
4915         (cp_parser_parse_definitely): Likewise.
4916         (yyparse): Likewise.
4917         (cp_parser_init_declarator): Remove access_checks parameter.
4918         Use new deferred access functions.
4919         (cp_parser_function_definition_from_specifiers_and_declarator):
4920         Likewise.
4921         (cp_parser_class_head): Remove deferring_access_checks_p and
4922         saved_access_checks parameters.  Use new deferred access functions.
4923         (cp_parser_member_specification_opt): Don't call
4924         reset_type_access_control.
4925         * search.c (type_access_control): Remove.
4926         * semantics.c: Include "gt-cp-semantics.h".
4927         (deferred_type_access_control): Remove.
4928         (deferred_access_stack): New variable.
4929         (deferred_access_free_list): Likewise.
4930         (push_deferring_access_checks): New function.
4931         (resume_deferring_access_checks): Likewise.
4932         (stop_deferring_access_checks): Likewise.
4933         (pop_deferring_access_checks): Likewise.
4934         (get_deferred_access_checks): Likewise.
4935         (pop_to_parent_deferring_access_checks): Likewise.
4936         (perform_deferred_access_checks): New function, adapted from
4937         cp_parser_perform_deferred_access_checks.
4938         (perform_or_defer_access_check): New function, adapted from
4939         cp_parser_defer_access_check.
4940         (current_type_lookups): Remove.
4941         (deferred_type_access_control): Likewise.
4942         (decl_type_access_control): Likewise.
4943         (save_type_access_control): Likewise.
4944         (reset_type_access_control): Likewise.
4945         (begin_function_definition): Adjust.
4946         (begin_class_definiton): Likewise.
4948 2003-01-13  Jason Merrill  <jason@redhat.com>
4950         PR c++/8748
4951         * class.c (build_base_path): Take the address before calling save_expr.
4953         * call.c (build_user_type_conversion_1): Do set ICS_BAD_FLAG if
4954         all the ambiguous conversions are bad.
4956         * class.c (maybe_warn_about_overly_private_class): Don't stop
4957         searching when we find a nonprivate method.
4959         * typeck.c (build_class_member_access_expr): Use unary_complex_lvalue.
4961 2003-01-12  Mark Mitchell  <mark@codesourcery.com>
4963         * cp-tree.h (get_arglist_len_in_bytes): Remove.
4965         PR c++/9264
4966         * parser.c (cp_parser_elaborated_type_specifier): Handle erroneous
4967         typeame types more robustly.
4969 2003-01-11  Phil Edwards  <pme@gcc.gnu.org>
4971         * parser.c:  Fix comment typos.
4973 2003-01-10  Mark Mitchell  <mark@codesourcery.com>
4975         PR c++/9099
4976         * parser.c (cp_parser_scope_through_which_access_occurs): Handle
4977         an object_type which is not a class type.
4979 2003-01-10  Geoffrey Keating  <geoffk@apple.com>
4981         * parser.c (cp_parser_late_parsing_for_member): Don't cast to void.
4982         (cp_parser_late_parsing_default_args): Likewise.
4984 2003-01-10  Nathanael Nerode  <neroden@gcc.gnu.org>
4986         * cfns.gperf: ANSIfy function declarations.
4987         * cfns.h: Regenerate.
4988         * cp-tree.h: ANSIfy function declarations.
4990 2003-01-10  Mark Mitchell  <mark@codesourcery.com>
4992         * cp-tree.h (reparse_absdcl_as_expr): Remove.
4993         (reparse_absdcl_as_casts): Likewise.
4994         (reparse_decl_as_expr): Likewise.
4995         (finish_decl_parsing): Likewise.
4996         * decl2.c (reparse_absdcl_as_expr): Remove.
4997         (reparse_absdcl_as_casts): Likewise.
4998         (repase_decl_as_expr): Likewise.
4999         (finish_decl_parsing): Likewise.
5001         PR c++/9128
5002         PR c++/9153
5003         PR c++/9171
5004         * parser.c (cp_parser_pre_parsed_nested_name_specifier): New
5005         function.
5006         (cp_parser_nested_name_specifier_opt): Correct the
5007         check_dependency_p false.
5008         (cp_parser_postfix_expression): Fix formatting.
5009         (cp_parser_decl_specifier_seq): Avoid looking for constructor
5010         declarators when possible.
5011         (cp_parser_template_id): Avoid performing name-lookup when
5012         possible.
5013         (cp_parser_class_head): Do not count specializations when counting
5014         levels of templates.
5015         (cp_parser_constructor_declarator_p): Return immediately if
5016         there's no chance that the tokens form a constructor declarator.
5017         * rtti.c (throw_bad_typeid): Add comment.  Do not return an
5018         expression with reference type.
5019         (get_tinfo_decl_dynamic): Do not return an expression with
5020         reference type.
5021         (build_typeid): Add comment.  Do not return an expression with
5022         reference type.
5023         * typeck.c (build_class_member_access_expr): Improve handling of
5024         conditionals and comma-expressions as objects.
5026 2003-01-09  Nathanael Nerode  <neroden@gcc.gnu.org>
5028         * cfns.gperf: ANSIfy function declarations.
5029         * cfns.h: Regenerate.
5030         * cp-tree.h: ANSIfy function declarations.
5031         * parser.c: ANSIfy function declarations & definitions.
5033         * decl.c (bad_specifiers): Fix parameter order error I introduced.
5035 2003-01-09  Geoffrey Keating  <geoffk@apple.com>
5037         Merge from pch-branch:
5039         2003-01-09  Geoffrey Keating  <geoffk@apple.com>
5041         Merge to tag pch-merge-20030102:
5043         * semantics.c (finish_translation_unit): Don't call finish_file.
5044         * parser.c: Don't include ggc.h.
5045         (cp_lexer_new_main): Rename from cp_lexer_new, only create main lexer,
5046         read first token here.  Don't allow PCH files after the first
5047         token is read.
5048         (cp_lexer_new_from_tokens): Duplicate functionality from cp_lexer_new.
5049         (cp_lexer_get_preprocessor_token): Allow LEXER to be NULL.
5050         (cp_parser_new): Call cp_lexer_new_main before allocating GCed memory.
5051         (cp_parser_late_parsing_for_member): Don't duplicate call to
5052         cp_lexer_set_source_position_from_token.
5053         (cp_parser_late_parsing_default_args): Likewise.
5054         (yyparse): Call finish_file after clearing the_parser.
5056         2002-12-11  Geoffrey Keating  <geoffk@apple.com>
5058         * Make-lang.in: Remove $(GGC_H) from all dependencies.
5059         (CXX_TREE_H): Add $(GGC_H).
5060         * class.c: Don't include ggc.h.
5061         (field_decl_cmp): Make parameters be 'const void *' to match qsort.
5062         (method_name_cmp): Likewise.
5063         (resort_data): New variable.
5064         (resort_field_decl_cmp): New.
5065         (resort_method_name_cmp): New.
5066         (resort_sorted_fields): New.
5067         (resort_type_method_vec): New.
5068         (finish_struct_methods): Delete cast.
5069         (finish_struct_1): Delete cast.
5070         * cp-tree.h: Include ggc.h.
5071         (struct lang_type_class): Add reorder attribute to field `methods'.
5072         (union lang_decl_u3): Add reorder attribute to field `sorted_fields'.
5073         (resort_sorted_fields): New prototype.
5074         (resort_type_method_vec): New prototype.
5075         * call.c: Don't include ggc.h.
5076         * decl.c: Likewise.
5077         * decl2.c: Likewise.
5078         * init.c: Likewise.
5079         * lex.c: Likewise.
5080         * method.c: Likewise.
5081         * optimize.c: Likewise.
5082         * parse.y: Likewise.
5083         * pt.c: Likewise.
5084         * repo.c: Likewise.
5085         * search.c: Likewise.
5086         * semantics.c: Likewise.
5087         * spew.c: Likewise.
5088         * tree.c: Likewise.
5090         * lang-specs.h: Remove comment.
5092         2002-12-03  Geoffrey Keating  <geoffk@apple.com>
5094         * cp-tree.h (struct operator_name_info_t): Mark for GTY machinery.
5095         (operator_name_info): Mark to be saved for PCH, specify size.
5096         (assignment_operator_name_info): Likewise.
5098         2002-11-19  Geoffrey Keating  <geoffk@apple.com>
5100         * decl.c (anon_cnt): Mark to be saved for PCH.
5102         2002-10-25  Geoffrey Keating  <geoffk@apple.com>
5104         * lex.c  (init_reswords): Delete now-untrue comment.
5105         Allocate ridpointers using GGC.
5107         2002-10-04  Geoffrey Keating  <geoffk@apple.com>
5109         * cp-tree.h (union lang_decl_u2): Add tags to all fields.
5111         * g++spec.c (lang_specific_driver): Don't include standard
5112         libraries in `added'.
5114         2002-08-27  Geoffrey Keating  <geoffk@redhat.com>
5116         * decl2.c (finish_file): Call c_common_write_pch.
5117         * Make-lang.in (CXX_C_OBJS): Add c-pch.o.
5119         2002-08-17  Geoffrey Keating  <geoffk@redhat.com>
5121         * g++spec.c (lang_specific_driver): Treat .h files as C++ header
5122         files when using g++.
5123         * lang-specs.h: Handle compiling C++ header files.
5125 2003-01-09  Jakub Jelinek  <jakub@redhat.com>
5127         * decl.c (start_decl): Only check DECL_THREAD_LOCAL for VAR_DECLs.
5129 2003-01-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5131         * pt.c (push_access_scope_real): Call push_to_top_level for
5132         function in namespace scope.
5133         (pop_access_scope): Call pop_from_top_level for function in
5134         namespace scope.
5136 2003-01-09  Jakub Jelinek  <jakub@redhat.com>
5138         * decl.c (start_decl): Don't set DECL_COMMON for __thread variables.
5140 2003-01-09  Christian Cornelssen  <ccorn@cs.tu-berlin.de>
5142         * Make-lang.in (c++.install-common, c++.install-man,
5143         c++.uninstall): Prepend $(DESTDIR) to destination paths in
5144         all (un)installation commands.
5145         (c++.install-common): Rewrite $(LN) commands to support
5146         DESTDIR with "ln" as well as with "ln -s".
5148 2003-01-08  Jason Merrill  <jason@redhat.com>
5150         * parser.c (cp_parser_primary_expression): See through explicitly
5151         scoped ALIAS_DECLs, too.
5153 2003-01-08  Nathanael Nerode  <neroden@gcc.gnu.org>
5155         * decl.c: Remove some #if 0 code.
5157         * decl.c: ANSIfy function declarations.
5159 2003-01-07  Mark Mitchell  <mark@codesourcery.com>
5161         * parser.c (cp_parser_asm_definition): Correct handling of omitted
5162         operands.
5164 2003-01-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5166         PR c++/9030
5167         * decl.c (make_typename_type): Check access only when tf_error.
5168         (make_unbound_class_template): Likewise.
5169         * pt.c (saved_access_scope): New variable.
5170         (push_access_scope_real): New function.
5171         (push_access_scope): Likewise.
5172         (pop_access_scope): Likewise.
5173         (tsubst_default_argument): Use them.
5174         (instantiate_template): Likewise.
5175         (regenerate_decl_from_template): Likewise.
5176         (instantiate_decl): Likewise.
5177         (get_mostly_instantiated_function_type): Likewise.
5179 2003-01-07  Nathanael Nerode <neroden@gcc.gnu.org>
5181         * tree.c: Delete bogus #if 0 code.
5183 2003-01-07  Andreas Schwab  <schwab@suse.de>
5185         * class.c (layout_class_type): Don't use
5186         PCC_BITFIELD_TYPE_MATTERS if not defined.
5188 2003-01-06  Mark Mitchell  <mark@codesourcery.com>
5190         PR c++/9165
5191         * decl2.c (build_cleanup): Mark the object as used.
5193         * pt.c (retrieve_local_specialization): Revert 2003-01-05 change.
5194         (hash_local_specialization): New function.
5195         (register_local_specialization): Revert 2003-01-05 change.
5196         (instantiate_decl): Use hash_local_specialization when creating
5197         the local_specializations table.
5199         * decl2.c (mark_used): Do not synthesize thunks.
5201         * class.c (layout_class_type): Correct handling of unnamed
5202         bitfields wider than their types.
5204         PR c++/9189
5205         * parser.c (cp_parser): Remove default_arg_types.  Update
5206         documentation for unparsed_functions_queues.
5207         (cp_parser_late_parsing_default_args): Take a FUNCTION_DECL as the
5208         parameter.
5209         (cp_parser_new): Don't set parser->default_arg_types.
5210         (cp_parser_function_definition): Adjust usage of
5211         unparsed_funtions_queues.
5212         (cp_parser_class_specifier): Don't mess with
5213         parser->default_arg_types.  Handle default argument processing in
5214         a separate phase from function body processing.
5215         (cp_parser_template_declaration_after_export): Adjust usage of
5216         unparsed_functions_queues.
5217         (cp_parser_late_parsing_for_member): Do not handle default
5218         arguments.
5220 2003-01-06  Nathan Sidwell  <nathan@codesourcery.com>
5222         PR c++/9109
5223         * parser.c (cp_parser_declarator_kind): New enum.
5224         (cp_parser_declarator): Adjust.
5225         (cp_parser_direct_declarator): Adjust. Allow for either named or
5226         abstract declarator. Prefer abstract, if possible. Allow
5227         parenthesized function name.
5228         (cp_parser_condition): Adjust cp_parser_declarator call.
5229         (cp_parser_explicit_instantiation): Likewise.
5230         (cp_parser_init_declarator): Likewise.
5231         (cp_parser_type_id): Likewise.
5232         (cp_parser_function_definition): Likewise.
5233         (cp_parser_member_declaration): Likewise.
5234         (cp_parser_parameter_declaration): Use cp_parser_declarator to do
5235         the tentative parsing.
5236         (cp_parser_exception_declaration): Likewise.
5238 2003-01-05  Mark Mitchell  <mark@codesourcery.com>
5240         * parser.c (cp_parser_template_parameter): Adjust call to
5241         cp_parser_parameter_declaration.
5242         (cp_parser_parameter_declaration_list): Likewise.
5243         (cp_parser_parameter_declaration): Replace
5244         greater_than_is_operator_p with template_parm_p parameter.  Do not
5245         cache tokens for template default arguments.
5247         * pt.c (retrieve_local_specialization): Use htab_find, not
5248         htab_find_with_hash.
5249         (register_local_specialization): Use htab_find_slot, not
5250         htab_find_slot_with_hash.
5251         (instantiate_decl): Pass a hash function to htab_create.
5253 2003-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5255         * parser.c (cp_parser_binary_expression,
5256         cp_parser_multiplicative_expression,
5257         cp_parser_additive_expression, cp_parser_shift_expression,
5258         cp_parser_relational_expression, cp_parser_equality_expression,
5259         cp_parser_and_expression, cp_parser_exclusive_or_expression,
5260         cp_parser_inclusive_or_expression,
5261         cp_parser_logical_and_expression, cp_parser_logical_or_expression,
5262         cp_parser_binary_expression): Const-ify.
5264 2003-01-04  Mark Mitchell  <mark@codesourcery.com>
5266         * method.c (use_thunk): Disable access control while building the
5267         body of the thunk.
5269 2003-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
5271         * cvt.c, decl.c, decl2.c: This is the C++ front end, not the C
5272         front end.
5274 2003-01-03  Matt Austern  <austern@apple.com>
5276         * cp-tree.h (struct lang_type_class): add field for key method
5277         (cp_global_trees): rename dynamic_classes to keyed_classes
5278         (key_method): add definition
5279         * class.c (finish_struct_1): compute class's key method, and add
5280         the class to keyed_classes list if there is no key method.
5281         * decl.c (finish_function): add class to keyed_classes list if we
5282         see a definition of the class's key method.
5283         * pt.c (instantiate_class_template): add template specialization
5284         of a dynamic class to keyed_classes list.
5285         * decl2.c (key_method): remove
5286         (finish_file): iterate only through keyed_classes list when
5287         deciding whether to emit vtables, remove class from its list after
5288         we do the emission.
5290 2003-01-02  Jason Merrill  <jason@redhat.com>
5292         * call.c (build_conditional_expr): Stabilize lvalues properly.
5293         * cvt.c (ocp_convert): Don't build NOP_EXPRs of class type.
5294         * tree.c (lvalue_p_1): Don't allow sloppy NOP_EXPRs as lvalues.
5295         Don't allow CALL_EXPR or VA_ARG_EXPR, either.
5297         * call.c (convert_like_real): Call decl_constant_value for an
5298         IDENTITY_CONV even if there are no more conversions.
5300         * cvt.c (build_up_reference): Don't push unnamed temps.
5302         * decl2.c (do_namespace_alias): Namespace aliases are DECL_EXTERNAL.
5304         * dump.c (cp_dump_tree): Don't try to dump class-specific fields
5305         for a backend struct.
5307         * except.c (wrap_cleanups_r, build_throw): Make
5308         MUST_NOT_THROW_EXPRs void.
5309         * init.c (expand_default_init): Update to handle MUST_NOT_THROW_EXPR.
5311         * init.c (build_vec_delete_1): Pre-evaluate the base address.
5313         * init.c (get_temp_regvar): Simplify logic.
5315         * tree.c (cp_copy_res_decl_for_inlining): Only do debug tweaks if
5316         our replacement is a decl.
5318         * decl.c (cp_make_fname_decl): Push the decls inside the
5319         outermost scope.
5321 2003-01-03  Nathan Sidwell  <nathan@codesourcery.com>
5323         PR c++/45, c++/3784
5324         * tree.c (cp_tree_equal, TEMPLATE_PARM_INDEX): The types must be
5325         the same too.
5327 2003-01-03  Graham Stott  <graham.stott@btinternet.com>
5329         * parser.c (struct cp_parser): Add access_checks_lists field
5330         (cp_parser_simple_declaration): Use.
5331         (cp_parser_init_declarator): Likewise.
5333 2003-01-02  Mark Mitchell  <mark@codesourcery.com>
5335         * parser.c (cp_parser_declaration): Accept the __extension__
5336         keyword before the declaration.
5338         PR c++/2843
5339         * parser.c (cp_parser_parameter_declaration): Allow attributes to
5340         appear after the declarator.
5342         * call.c (build_new_method_call): Fix typo in message format
5343         string.
5345 2003-01-02  Mark Mitchell  <mark@codesourcery.com>
5347         * parser.c (cp_lexer_next_token_is): Declare it inline.
5348         (cp_lexer_set_source_position_from_token): Likewise.
5349         (cp_lexer_debugging_p): Likewise.
5350         (cp_parser_parsing_tentatively): Likewise.
5351         (cp_parser_nested_name_specifier_opt): Reduce the number of calls
5352         to the cp_lexer_peek_token.
5354         * parser.c (cp_parser_sizeof_operand): Do not evaluate the
5355         expression.
5357 2003-01-02  Steven Bosscher <s.bosscher@student.tudelft.nl>
5359         * cp/except.c, cp/expr.c, cp/friend.c, cp/g++spec.c,
5360         cp/lang-options.h, cp/lang-specs.h, cp/lex.h, cp/ptree.c,
5361         cp/repo.c: Fix copyright years.
5363 2003-01-01  Neil Booth  <neil@daikokuya.co.uk>
5365         * lex.c: Remove superfluous include of cpplib.h.
5366         (CONSTRAINT): Define without conditions.
5367         (init_cp_pragma): Use c_register_pragma.
5369 2002-12-31  Neil Booth  <neil@daikokuya.co.uk>
5371         * .cvsignore: Remove.
5373 2002-12-31  Steven Bosscher  <s.bosscher@student.tudelft.nl>
5375         * call.c, class.c, cp-lang.c, cp-tree.h, cvt.c, dump.c, error.c,
5376           except.c, expr.c friend.c, g++spec.c, init.c, lang-options.h,
5377           lang-specs.h, lex.c, mangle.c, method.c, optimize.c, parser.c,
5378           pt.c, ptree.c, repo.c, rtti.c, search.c, semantics.c, tree.c,
5379           typeck.c, typeck2.c: Replace "GNU CC" with "GCC" in the
5380           copyright header.
5381         * lex.h: parse.y is dead, so don't mention it.  Also replace the
5382           copyright header with the default GNU copyright header.
5384 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
5386         * cp-tree.h (LOOKUP_TEMPLATES_EXPECTED): Remove.
5387         (lookup_name_namespace_only): Likewise.
5388         (begin_only_namespace_names): Likewise.
5389         (end_only_namespace_names): Likewise.
5390         * decl.c (only_namespace_names): Remove.
5391         (qualify_lookup): Do not check LOOKUP_TEMPLATES_EXPECTED.
5392         (lookup_name_real): Do not check only_namespace_names.
5393         (lookup_name_namespace_only): Remove.
5394         (begin_only_namespace_names): Likewise.
5395         (end_only_namespace_names): Likewise.
5396         * parser.c (cp_parser_nested_name_specifier_opt): Handle erroneous
5397         nested-name-specifiers more gracefully.
5398         (cp_parser_class_or_namespace_name): Avoid looking up namespace
5399         names when they cannot possibly appear.
5400         (cp_parser_template_name): Adjust call to cp_parser_lookup_name.
5401         (cp_parser_elaborated_type_specifier): Likewise.
5402         (cp_parser_namespace_name): Only look for namespace names.
5403         (cp_parser_lookup_name): Add is_namespace parameter.
5404         (cp_parser_lookup_name_simple): Adjust call to
5405         cp_parser_lookup_name.
5407         * parser.c (cp_parser_dependent_type_p): Fix thinko.
5409 2002-12-31  Neil Booth  <neil@daikokuya.co.uk>
5411         * .cvsignore: Update.
5413 2002-12-31  Nathan Sidwell  <nathan@codesourcery.com>
5415         * class.c (modify_vtable_entry): Remove unused variable.
5416         (get_vcall_index): Always expect a non-thunk.
5417         (update_vtable_entry_for_fn): Combine covariant adjustments, when
5418         overriding a thunk. Pass get_vcall_index a non-thunk.
5420         * decl2.c (finish_file): Mark undefined inlines as extern.
5422 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
5424         * cp-tree.def (RETURN_INIT): Remove.
5425         * cp-tree.h (DECL_IN_MEMORY_P): Remove.
5426         (scope_kind): Add sk_block, sk_try, sk_catch, sk_for.
5427         (note_level_for_for): Remove.
5428         (note_level_for_try): Likewise.
5429         (note_level_for_catch): Likewise.
5430         (finish_named_return_value): Likewise.
5431         (do_pushlevel): Change prototype.
5432         (pending_lang_change): Remove.
5433         * decl.c (begin_scope): Handle sk_block, sk_try, sk_catch,
5434         sk_for.
5435         (note_level_for_for): Remove.
5436         (note_level_for_try): Likewise.
5437         (note_level_for_catch): Likewise.
5438         (maybe_inject_for_scope_var): Remove use of DECL_IN_MEMORY_P.
5439         * parser.c (cp_parser_context_free_list): Make it "deletable".
5440         (cp_parser_template_argument): Remove misleading comment.
5441         * pt.c (tsubst_expr): Remove RETURN_INIT code.
5442         * semantics.c (genrtl_named_return_value): Remove.
5443         (do_pushlevel): Take a scope kind as an argument.
5444         (begin_if_stmt): Adjust.
5445         (begin_while_stmt): Likewise.
5446         (begin_for_stmt): Likewise.
5447         (finish_for_init_stmt): Likewise.
5448         (begin_switch_stmt): Likewise.
5449         (begin_handler): Likewise.
5450         (begin_compound_stmt): Likewise.
5451         (finish_named_return_value): Remove.
5452         (cp_expand_stmt): Remove RETURN_INIT case.
5453         * tree.c (cp_statement_code_p): Remove RETURN_INIT case.
5455 2002-12-31  Mark Mitchell  <mark@codesourcery.com>
5457         PR c++/9112
5458         * parser.c (cp_parser_direct_declarator): Handle erroneous
5459         parenthesized declarators correctly.
5461 2002-12-31  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5463         * cp-tree.h (pending_lang_change): Declare.
5465 2002-12-30  Mark Mitchell  <mark@codesourcery.com>
5467         * parser.c (cp_parser_context_free_list): New variable.
5468         (cp_parser_context_new): Use it.
5469         (cp_parser_error): Check return code from
5470         cp_parser_simulate_error.
5471         (cp_parser_simulate_error): Return a value.
5472         (cp_parser_id_expression): Optimize common case.
5473         (cp_parser_class_name): Likewise.
5474         (cp_parser_class_specifier): Adjust call to
5475         cp_parser_late_parsing_default_args.
5476         (cp_parser_lookup_name): Optimize common case.
5477         (cp_parser_late_parsing_for_member): Adjust call to
5478         cp_parser_late_parsing_default_args.
5479         (cp_parser_late_parsing_default_args): Add scope parameter.
5480         (cp_parser_require): Avoid creating the error message unless it's
5481         needed.
5482         (cp_parser_parse_definitely): Place free'd contexts on the free
5483         list.
5485         * parser.c (cp_parser_declaration_seq_opt): Handle pending_lang_change.
5487 2002-12-30  David Edelsohn  <edelsohn@gnu.org>
5489         * parser.c (cp_parser_parameter_declaration_clause): Treat system
5490         header as extern "C" if NO_IMPLICIT_EXTERN_C undefined.
5492 2002-12-30  Nathanael Nerode  <neroden@gcc.gnu.org>
5494         * config-lang.in, Make-lang.in, operators.def, cp-tree.def:
5495         GCC, not GNU CC.
5497 2002-12-30  Mark Mitchell  <mark@codesourcery.com>
5499         * parse.y: Remove.
5500         * spew.c: Likewise.
5501         * Make-lang.in (gt-cp-spew.h): Remove.
5502         * cp-tree.h (do_pending_lang_change): Remove.
5503         (do_identifier): Change prototype.
5504         (finish_id_expr): Remove.
5505         * decl.c (lookup_name_real): Remove yylex variable.
5506         * decl2.c (build_expr_from_tree): Adjust call to do_identifier.
5507         * lex.c (init_cpp_parse): Remove.
5508         (reduce_cmp): Likewise.
5509         (token_cmp): Likewise.
5510         (yychar): Likewise.
5511         (lastiddecl): Likewise.
5512         (token_count): Likewise.
5513         (reduce_count): Likewise.
5514         (yyhook): Likewise.
5515         (print_parse_statistics): Likewise.
5516         (do_pending_lang_change): Likewise.
5517         (do_identifier): Remove parsing parameter.
5518         * lex.h (lastiddecl): Remove.
5519         (looking_for_typename): Remove.
5520         (looking_for_template): Likewise.
5521         (pending_lang_change): Likewise.
5522         (yylex): Likewise.
5523         * semantics.c (finish_id_expr): Remove.
5525         * decl.c (grokdeclarator): Diagnost "extern thread" and "static
5526         thread" correctly.
5528 2002-12-30  Nathanael Nerode  <neroden@gcc.gnu.org>
5530         * decl.c, decl2.c, decl.h:  GCC, not GNU CC.  This is the C++ front
5531         end, not the C front end.
5533 2002-12-30  Nathan Sidwell  <nathan@codesourcery.com>
5535         * cp-tree.h (THUNK_TARGET): New macro.
5536         (THUNK_VIRTUAL_OFFSET): For result thunks it is always a binfo.
5537         (finish_thunk): Remove offset parms.
5538         * class.c (find_final_overrider): Look through thunks.
5539         (get_vcall_index): Use THUNK_TARGET.
5540         (update_vtable_entry_for_fn): Look through thunks. Set covariant
5541         fixed offset here. Adjust finish_thunk call.
5542         (build_vtbl_initializer): Adjust finish_thunk calls.
5543         * mangle.c (mangle_call_offset): Remove superfluous if.
5544         (mangle_thunk): Adjust.
5545         * method.c (make_thunk): Adjust.
5546         (finish_thunk): Adjust.
5547         (thunk_adjust): Remove assert.
5548         (use_thunk): Use THUNK_TARGET
5549         * dump1.c (cp_dump_tree): Adjust thunk dumping.
5551         PR c++/9054
5552         * class.c (layout_class_type): Set TYPE_CONTEXT of type for base.
5553         * dump.c (cp_dump_tree, RECORD_TYPE): Deal with type for base types.
5555 2002-12-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5557         Remove traditional C constructs 4/n.
5558         * decl2.c (grok_method_quals, warn_if_unknown_interface,
5559         grok_x_components, cp_build_parm_decl, build_artificial_parm,
5560         maybe_retrofit_in_chrg, grokclassfn, grok_array_decl,
5561         delete_sanity, check_member_template, check_java_method,
5562         check_classfn, finish_static_data_member_decl, grokfield,
5563         grokbitfield, grokoptypename, grok_function_init,
5564         cplus_decl_attributes, constructor_name, defer_fn,
5565         build_anon_union_vars, finish_anon_union, coerce_new_type,
5566         coerce_delete_type, comdat_linkage, maybe_make_one_only,
5567         key_method, import_export_vtable, import_export_class,
5568         output_vtable_inherit, import_export_decl, import_export_tinfo,
5569         build_cleanup, get_guard, get_guard_bits, get_guard_cond,
5570         set_guard, start_objects, finish_objects,
5571         start_static_storage_duration_function,
5572         finish_static_storage_duration_function, get_priority_info,
5573         start_static_initialization_or_destruction,
5574         finish_static_initialization_or_destruction,
5575         do_static_initialization, do_static_destruction,
5576         prune_vars_needing_no_initialization, write_out_vars,
5577         reparse_decl_as_expr, finish_decl_parsing, namespace_ancestor,
5578         add_using_namespace, merge_functions, ambiguous_decl,
5579         lookup_using_namespace, lookup_using_namespace,
5580         qualified_lookup_using_namespace, set_decl_namespace,
5581         decl_namespace, current_decl_namespace, push_decl_namespace,
5582         pop_decl_namespace, push_scope, pop_scope, add_function,
5583         arg_assoc_namespace, arg_assoc_template_arg, arg_assoc,
5584         lookup_arg_dependent, do_namespace_alias,
5585         validate_nonmember_using_decl, do_nonmember_using_decl,
5586         do_toplevel_using_decl, do_local_using_decl,
5587         do_class_using_decl, do_using_directive, check_default_args,
5588         mark_used, handle_class_head): Use C90 prototypings.  Use booleans.
5589         * parser.c (cp_parser_class_head): Use booleanss.
5590         * decl.c (walk_globals, walk_vtables): Likewise.
5591         * cp-tree.h (walk_globals_pred, walk_globals_fn, walk_vtables,
5592         walk_globals): Change return type from 'int' to 'bool'.
5593         * rtti.c (init_rtti_processing, build_headof, throw_bad_cast
5594         throw_bad_typeid, get_tinfo_decl_dynamic, typeid_ok_p,
5595         build_typeid, tinfo_name, get_tinfo_decl, get_tinfo_ptr,
5596         get_typeid, ifnonnull, build_dynamic_cast_1, build_dynamic_cast,
5597         qualifier_flags, tinfo_base_init, generic_initializer,
5598         ptr_initializer, dfs_class_hint_mark, ptm_initializer,
5599         dfs_class_hint_unmark, class_hint_flags, class_initializer,
5600         typeinfo_in_lib_p, get_pseudo_ti_init, create_pseudo_type_info,
5601         get_pseudo_ti_desc, create_tinfo_types, emit_support_tinfos,
5602         unemitted_tinfo_decl_p, emit_tinfo_decl): Likewise.
5603         * repo.c (repo_compile_flags, repo_template_declared,
5604         repo_template_defined, repo_class_defined, repo_get_id,
5605         repo_template_used, repo_vtable_used, repo_inline_used,
5606         repo_tinfo_used, repo_template_instantiated, extract_string,
5607         open_repo_file, afgets, init_repo, reopen_repo_file_for_write,
5608         finish_repo): Likewise.
5609         * ptree.c (cxx_print_decl, cxx_print_type, cxx_print_identifier,
5610         cxx_print_xnode): Likewise..
5611         * cp-lang.c (ok_to_generate_alias_set_for_type, cxx_get_alias_set,
5612         cxx_warn_unused_global_decl, cp_expr_size): Likewise.
5613         * cxxfilt.c (demangle_it, print_demangler_list, usage,
5614         standard_symbol_characters, hp_symbol_characters, main, fatal):
5615         Likewise.
5616         (strip_underscore):  Change type from 'int' to 'bool'.
5617         (main): Use boolean constants.
5619 2002-12-28  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5621         Remove traditional C constructs 3/n.
5622         * cvt.c (cp_convert_to_pointer, convert_to_pointer_force,
5623         build_up_reference, warn_ref_binding, convert_to_reference,
5624         convert_from_reference, convert_lvalue, cp_convert, ocp_convert,
5625         convert_to_void, convert, convert_force, build_type_conversion,
5626         build_expr_type_conversion, type_promotes_to,
5627         perform_qualification_conversions): Use C90 prototyping style.
5628         * decl2.c (grok_array_decl): Use boolean constant.
5629         (delete_sanity): Likewise.
5630         * typeck.c (build_unary_op): Likewise.
5631         * semantics.c (finish_switch_cond): Likewise.
5632         * parser.c (cp_parser_direct_new_declarator): Likewise.
5633         * init.c (build_new): Likewise.
5635 2002-12-27  Mark Mitchell  <mark@codesourcery.com>
5637         * Make-lang.in (po-generated): Remove parse.c.
5638         (CXX_OBJS): Remove parse.o and spew.o.  Add parser.o.
5639         ($(srcdir)/cp/parse.h): Remove target.
5640         ($(srcdir)/cp/parse.c): Likewise.
5641         (gt-cp-parse.h): Likewise.
5642         (gt-cp-parser.h): New target.
5643         (c++.distclean): Do not remove parse.output.
5644         (c++.maintainer-clean): Do not remove parse.c or parse.h.
5645         (cp/spew.o): Remove target.
5646         (cp/lex.o): Adjust dependencies.
5647         (cp/pt.o): Likewise.
5648         (cp/parse.o): Likewise.
5649         (cp/TAGS): Do not mention parse.c.
5650         (cp/parser.o): New target.
5651         * NEWS: Mention the new parser.
5652         * call.c (build_scoped_method_call): Simplify.
5653         (build_method_call): Likewise.
5654         (build_new_function_call): Adjust calls to add_function_candidate
5655         and add_template_candidate.
5656         (build_new_op): Improve handling of erroroneous operands.
5657         (convert_default_arg): Remove circular argument processing.
5658         (name_as_c_string): New function.
5659         (build_new_method_call): Use it.
5660         (perform_implicit_conversion): Use error_operand_p.
5661         * class.c (finish_struct_anon): Use constructor_name_p.
5662         (check_field_decls): Likewise.
5663         (pop_nested_class): Use OVL_NEXT, not OVL_CHAIN.
5664         (resolve_address_of_overloaded_function): Likewise.
5665         (instantiate_type): Tweak pointer-to-member handling.
5666         (get_primary_binfo): Remove incorrect assertion.
5667         * config-lang.in (gtfiles): Add parser.c, remove parse.c.
5668         * cp-tree.h (DEFARG_TOKENS): New macro.
5669         (default_arg): New structure.
5670         (cp_tree_node_structure_enum): Add TS_CP_DEFAULT_ARG.
5671         (lang_tree_node): Add default_arg.
5672         (cp_tree_index): Add CPTI_TYPE_INFO_REF_TYPE.
5673         (type_info_ref_type): New macro.
5674         (saved_scope): Make processing_explicit_instantiation a boolean.
5675         (check_access): New field.
5676         (unparsed_text): Remove.
5677         (language_function): Remove unparsed_inlines.
5678         (error_operand_p): New macro.
5679         (lang_decl): Adjust pending_inline_info.
5680         (DEFARG_POINTER): Remove.
5681         (tag_types): Add typenames.
5682         (lookup_ualified_name): Declare.
5683         (lookup_name_real): Likewise.
5684         (shadow_tag): Adjust prototype.
5685         (get_scope_of_declarator): Declare it.
5686         (process_next_inline): Remove it.
5687         (check_for_missing_semicolon): Likewise.
5688         (maybe_get_template_decl_from_type_decl): Declare it.
5689         (finish_label_stmt): Adjust prototype.
5690         (finish_non_static_data_meber): Declare it.
5691         (finish_pseudo_destructor_call_expr): Rename to ...
5692         (finish_pseudo_destructor_expr): ... this.
5693         (finish_compound_literal): Declare it.
5694         (begin_inline_definitions): Remove it.
5695         (init_spew): Remove.
5696         (peekyylex): Likewise.
5697         (arbitrate_lookup): Likewise.
5698         (frob_opname): Likewise.
5699         (maybe_snarf_defarg): Likewise.
5700         (add_defarg_fn): Likewise.
5701         (do_pending_defargs): Likewise.
5702         (done_pending_defargs): Likewise.
5703         (unprocessed_defarg_fn): Likewise.
5704         (replace_defarg): Likewise.
5705         (end_input): Likewise.
5706         (get_overloaded_fn): Likewise.
5707         * cvt.c (convert_to_reference): Improve error handling.
5708         * decl.c (lookup_name_real): Do not declare it static.
5709         (maybe_push_to_top_level): Set check_access.
5710         (identifier_type_value): Adjust call to lookup_name_real.
5711         (lookup_qualified_name): New method.
5712         (lookup_name_real): Remove special-case parsing code.
5713         (lookup_name-nonclass): Adjust call to lookup_name_real.
5714         (lookup_name_namespace_only): Likewise.
5715         (lookup_name): Likewise.
5716         (check_tag_decl): Return the type declared.
5717         (shadow_tag): Likewise.
5718         (register_dtor_fn): Tweak check_access.
5719         (grokfndecl): Use constructor_name_p.
5720         (get_scope_of_declarator): New function.
5721         (grokdeclarator): Obscure tweaks for slightly different declarator
5722         representations.
5723         (start_method): Return error_mark_node to indicate failure.
5724         (cp_tree_node_structure_enum): Use TS_CP_DEFAULT_ARG for DEFAULT_ARGs.
5725         * decl2.c (constructor_name_full): Simplify.
5726         (constructor_name): Use it.
5727         (build_expr_from_tree): Adjust for changes to do new parser.
5728         (push_scope): Improve robustness.
5729         (validate_nonmember_using_decl): Process declarations, not names.
5730         (do_class_using_decl): Likewise.
5731         (handle_class_head): Do not mess with CLASSTYPE_DECLARED_CLASS
5732         here.
5733         * error.c (dump_expr): Handle IDENTIFIER_NODEs and BASELINKs.
5734         * expr.c (cxx_expand_expr): Handle BASELINKs.
5735         * init.c (member_init_ok_or_else): Issue more errors.
5736         (build_offset_ref): Tweak handling of FUNCTION_DECLs.
5737         * lex.c: Do not include parse.h.
5738         (yypring): Do not declare.
5739         (yylval): Likewise.
5740         (make_reference_declarator): Remove error-generating code.
5741         (rid_to_yy): Remove.
5742         (cxx_init): Do not call init_spew.
5743         (yypring): Remove.
5744         (check_for_missing_semicolon): Remove.
5745         * lex.h (got_scope): Remove.
5746         (got_object): Remove.
5747         * method.c (hack_identifier): Use finish_non_static_data_member.
5748         (implicitly_declare_fn): Adjust use of constructor_name.
5749         * parser.c: New file.
5750         * pt.c (parse.h): Do not include it.
5751         (maybe_get_template_decl_from_template): Do not declare it.
5752         (finish_member_template_decl): Tweak.
5753         (begin_explicit_instantiation): Adjust for
5754         processing_explicit_instantiation being boolean.
5755         (end_explicit_instantiation): Likewise.
5756         (maybe_process_partial_specialization): Tighten specialization
5757         test.
5758         (retrieve_local_specialization): Adjust ue of hash table.
5759         (eq_local_specializations): New function.
5760         (register_local_specialization): Likewise.
5761         (push_template_decl_real): Remove unnecessary test.
5762         (maybe_get_template_decl_from_type_decl): Don't make it static.
5763         (for_each_template_parm_r): Handle TYPEOF_TYPE.
5764         (tsubst_copy): Use retrieive_local_specialization to handle
5765         PARM_DECL.  Adjust handling of CONST_DECLs.  Handle BASELINKs.
5766         Handle COMPONENT_REFs with pseudo-destructor-expressions.
5767         Simplify handling of CALL_EXPR and METHOD_CALL_EXPR.
5768         (tsubst_expr): Pass decls, not names, to do_local_using_decl.
5769         (unify): Tweak handling of CONST_DECLs.
5770         (regenerate_decl_from_template): Use push_nested_class.
5771         (template_for_substitution): New funciton.
5772         (instantiate_decl): Use it.  Register parameters as local
5773         specializations.
5774         * rtti.c (init_rtti_processing): Set type_info_ref_type.
5775         (build_typeid): Use it.
5776         (get_typeid): Likeise.
5777         * search.c (accessible_p): Use check_access, not
5778         flag_access_control.
5779         (adjust_result_of_qualified_name_lookup): Pay attention to the
5780         context_class.
5781         * semantics.c (finish_asm_stmt): Adjust error handling.
5782         (finish_label_stmt): Return the statement.
5783         (finish_non_static_data_member): New function.
5784         (finish_class_expr): Handle BASELINKs.
5785         (finish_call_expr): Handle PSEUDO_DTOR_EXPR.
5786         (finish_object_call_expr): Simplify handling during templates.
5787         (finish_pseudo_destructor_call_expr): Rename to ...
5788         (finish_pseudo_dtor_expr): ... this.
5789         (finish_compound_literal): New function.
5790         (begin_inline_definitions): Remove.
5791         (finish_sizeof): Remove special template handling.
5792         * spew.c: Do not include parse.h.
5793         * tree.c (get_overloaded_fn): Remove.
5794         * typeck.c (build_class_member_access_expr): Handle
5795         PSEUDO_DTOR_EXPR.  Adjust handling of static member functions.
5796         (lookup_destructor): New function.
5797         (finish_class_member_access_expr): Use it.
5798         (convert_arguments): Simplify.
5799         (build_unary_op): Handle BASELINKs.
5801 2002-12-26  Nathan Sidwell  <nathan@codesourcery.com>
5803         PR c++/4803
5804         * decl2.c (mark_used): Defer inline functions.
5805         (finish_file): Merge deferred_fns loops. Check all used
5806         inline functions have a definition.
5807         * method.c (make_thunk): Thunks are not inline.
5809         PR c++/5116, c++/764
5810         * call.c (build_new_op): Make sure template class operands are
5811         instantiated.
5813 2002-12-24  Nathan Sidwell  <nathan@codesourcery.com>
5815         PR C++/7964
5816         * cp-tree.h (resolve_scoped_fn_name): Prototype.
5817         * call.c (resolve_scoped_fn_name): New function. Deal with
5818         more template expansion. Broken out of ...
5819         * parse.y (parse_finish_call_expr): ... here. Call it.
5820         * decl2.c (build_expr_from_tree, CALL_EXPR): Use
5821         resolve_scoped_fn_name and build_call_from_tree.
5823         PR c++/9053
5824         * decl.c (duplicate_decls): Templates may be disambiguated by
5825         return type.
5827         PR c++/8702
5828         * decl2.c (check_classfn): Use lookup_fnfield_1. List all
5829         conversion operators on failure.
5831 2002-12-23  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5833         Remove traditional C constructs 2/n.
5834         * call.c (tourney, build_field_call, equal_functions, joust,
5835         compare_ics, build_over_call, build_java_interface_fn_ref,
5836         convert_like_real, op_error, build_object_call, resolve_args,
5837         build_vfield_ref, check_dtor_name, build_scoped_method_call,
5838         build_addr_func, build_call, build_method_call, null_ptr_cst_p,
5839         sufficient_parms_p, build_conv, non_reference, strip_top_quals,
5840         standard_conversion, reference_related_p,
5841         reference_compatible_p, convert_class_to_reference,
5842         direct_reference_binding, reference_binding,
5843         ,implicit_conversion, is_complete, promoted_arithmetic_type_p,
5844         add_template_conv_candidate, any_viable, any_strictly_viable,
5845         build_this, splice_viable, print_z_candidates,
5846         build_user_type_conversion, build_new_function_call,
5847         conditional_conversion, build_conditional_expr, build_new_op,
5848         build_op_delete_call, enforce_access, call_builtin_trap,
5849         convert_arg_to_ellipsis, build_x_va_arg, cxx_type_promotes_to,
5850         convert_default_arg, type_passed_as, convert_for_arg_passing,
5851         in_charge_arg_for_name, is_properly_derived_from,
5852         maybe_handle_implicit_object, maybe_handle_ref_bind,
5853         source_type, add_warning, can_convert, can_convert_arg,
5854         perform_implicit_conversion, can_convert_arg_bad,
5855         initialize_reference, add_conv_candidate,
5856         add_template_candidate_real, add_template_candidate): Ansify.
5858 2002-12-22  Nathan Sidwell  <nathan@codesourcery.com>
5860         PR c++/8572
5861         * cp-tree.h (grokoptypename): Add SCOPE parameter.
5862         * decl2.c (grokoptypename): Add SCOPE parameter. tsubst the type
5863         if in a template scope.
5864         * parse.y (unoperator): Return the scope.
5865         (operator_name): Adjust grokoptypename call.
5867 2002-12-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5869         * cp-tree.h (make_unbound_class_template): Use tsubst_flags_t.
5870         * decl.c (make_unbound_class_template): Adjust.  Check for tf_error.
5871         * pt.c (tsubst) [OFFSET_TYPE]: Check for tf_error.
5873 2002-12-20  Kazu Hirata  <kazu@cs.umass.edu>
5875         * ChangeLog: Fix a typo.
5876         * class.c: Fix comment typos.
5877         * cp-tree.h: Likewise.
5879 2002-12-18  Jason Merrill  <jason@redhat.com>
5881         Handle anonymous unions at the tree level.
5882         C++ ABI change: Mangle anonymous unions using the name of their
5883         first named field (by depth-first search).  Should not cause
5884         binary compatibility problems, though, as the compiler previously
5885         didn't emit anything for affected unions.
5886         * cp-tree.def (ALIAS_DECL): New tree code.
5887         * decl2.c (build_anon_union_vars): Build ALIAS_DECLs.  Return the
5888         first field, not the largest.
5889         (finish_anon_union): Don't mess with RTL.  Do set DECL_ASSEMBLER_NAME,
5890         push the decl, and write it out at namespace scope.
5891         * decl.c (lookup_name_real): See through an ALIAS_DECL.
5892         (pushdecl): Add namespace bindings for ALIAS_DECLs.
5893         * rtti.c (unemitted_tinfo_decl_p): Don't try to look at the name
5894         of a decl which doesn't have one.
5895         * typeck.c (build_class_member_access_expr): Don't recurse if
5896         we already have the type we want.
5898 2002-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5900         PR c++/8099
5901         * friend.c (make_friend_class): Allow partial specialization
5902         when declaration is not a template friend.
5904 2002-12-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
5906         PR c++/3663
5907         * pt.c (lookup_template_class): Copy TREE_PRIVATE and
5908         TREE_PROTECTED to created decl nodes.
5910 2002-12-18  Mark Mitchell  <mark@codesourcery.com>
5912         * class.c (build_base_field): Do not set DECL_PACKED on the
5913         FIELD_DECL.
5915 2002-12-18  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5917         * cp-tree.h (struct tree_srcloc): Use location_t.
5918         (SOURCE_LOCUS): New.
5919         (SRCLOC_FILE, SRCLOC_LINE): Adjust.
5921 2002-12-17  Jason Merrill  <jason@redhat.com>
5923         * decl.c (finish_function): Also complain about no return in
5924         templates.
5925         * semantics.c (finish_return_stmt): Also call check_return_expr in
5926         templates.
5927         * typeck.c (check_return_expr): In a template, just remember that we
5928         saw a return.
5930 2002-12-16  Jason Merrill  <jason@redhat.com>
5932         * semantics.c (simplify_aggr_init_exprs_r): Don't change the type
5933         of the CALL_EXPR.
5935         * semantics.c (do_pushlevel): Call pushlevel after adding the
5936         SCOPE_STMT.
5937         (do_poplevel): Call poplevel before adding the SCOPE_STMT.
5938         * parse.y (function_body): Go back to using compstmt.
5939         * decl.c (pushdecl): Skip another level to get to the parms level.
5941         * call.c (build_new_method_call): Use is_dummy_object to determine
5942         whether or not to evaluate the object parameter to a static member
5943         function.
5945 2002-12-14  Jason Merrill  <jason@redhat.com>
5947         * semantics.c (simplify_aggr_init_exprs_r): Also prepend the
5948         return slot for normal functions.  Set CALL_EXPR_HAS_RETURN_SLOT_ADDR.
5949         * tree.c (build_cplus_new): If the type isn't TREE_ADDRESSABLE,
5950         don't bother with an AGGR_INIT_EXPR.
5951         (cp_copy_res_decl_for_inlining): If the type isn't TREE_ADDRESSABLE,
5952         just generate a new decl normally.  Take return slot parm.
5953         * cp-tree.h: Adjust prototype.
5955 2002-12-13  Gabriel Dos Reis  <gdr@integrable-solutions.net>
5957         PR C++/8031
5958         * cvt.c (convert_to_pointer_force): Don't try comparing against
5959         erronous type.
5961 2002-12-13  Geoffrey Keating  <geoffk@apple.com>
5963         * cp-tree.h: Have the multiple-include guards around
5964         the entire file.
5966 2002-12-10  David Edelsohn  <edelsohn@gnu.org>
5968         * cp/spew.c (feed_input): Change limit to last_pos and pos to cur_pos
5969         for SPEW_DEBUG.
5970         (snarf_method): Same.
5971         (snarf_defarg): Same.
5973 2002-12-10  Mark Mitchell  <mark@codesourcery.com>
5975         PR c++/8372
5976         * pt.c (tsubst_copy): Handle destructor names more correctly.
5978 2002-12-10  Matt Austern   <austern@apple.com>
5980         * cp-tree.h: get rid of needs_virtual_reinit bit.
5982 2002-12-09  Mark Mitchell  <mark@codesourcery.com>
5984         * NEWS: Document removal of in-class initialization extension for
5985         static data members of non-arithmetic, non-enumeration type.
5986         * decl.c (check_static_variable_definition): Do not allow that
5987         extension.
5988         * decl2.c (grokfield): Do not call digest_init when processing
5989         templates.
5991 2002-12-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5993         * error.c (dump_expr): Fix format specifier warning.
5995 2002-12-04  Geoffrey Keating  <geoffk@apple.com>
5997         * class.c (finish_struct_1): Correct comment.
5998         * cp-tree.c (DECL_SORTED_FIELDS): Likewise.
6000 2002-12-04  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6002         PR C++/8799
6003         * error.c (dump_expr): Don't ever try to dump a non-existent
6004         expression.
6006 2002-12-03  Nathan Sidwell  <nathan@codesourcery.com>
6008         Implement covariant returns.
6009         * cp-tree.h (IS_AGGR_TYPE_2): Remove.
6010         (struct lang_decl_flags): Add this_thunk_p flag.
6011         Rename vcall_offset to virtual_offset.
6012         (struct lang_decl): Rename delta to fixed_offset.
6013         (DECL_THIS_THUNK_P, DECL_RESULT_THUNK_P): New #defines.
6014         (SET_DECL_THUNK_P): Add THIS_ADJUSTING arg.
6015         (THUNK_DELTA, THUNK_VCALL_OFFSET): Rename to ...
6016         (THUNK_FIXED_OFFSET, THUNK_VIRTUAL_OFFSET): ... here.
6017         (make_thunk): Add this_adjusting arg.
6018         (finish_thunk): Declare.
6019         (mangle_thunk): Add this_adjusting arg.
6020         * class.c (get_vcall_index): Use base function for lookup.
6021         (update_vtable_entry_for_fn): Generate covariant thunk.
6022         (finish_struct_1): Set DECL_VINDEX to NULL for thunks.
6023         (build_vtbl_initializer): Use base function for lookup.
6024         Finish covariant thunk here. Adjust thunk generation.
6025         * dump.c (cp_dump_tree): Simplify DECL_GLOBAL_[CD]TOR_P handling.
6026         Adjust thunk dumping.
6027         * mangle.c (mangle_call_offset): New function.
6028         (mangle_thunk): Adjust for covariant thunks.
6029         * method.c (make_thunk): Adjust. Do not set name here.
6030         (finish_thunk): New function. Set name here.
6031         (use_thunk): Generate covariant thunks too.
6032         (thunk_adjust): New function.
6033         * search.c (covariant_return_p): Remove. Fold into ...
6034         (check_final_overrider): ... here. Simplify.
6035         * semantics.c (emit_associated_thunks): Walk covariant thunk lists.
6037 2002-12-03  Jason Merrill  <jason@redhat.com>
6039         PR c++/8674
6040         * call.c (build_over_call): Check specifically for TARGET_EXPR
6041         when eliding.
6043         PR c++/8461, c++/8625
6044         * call.c (convert_for_arg_passing): Don't mess with error_mark_node.
6045         (cp_convert_parm_for_inlining): Remove.
6046         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
6047         Remove.
6048         * cp-tree.h (ADDR_IS_INVISIREF): Remove.
6049         * except.c (stabilize_throw_expr): Remove ADDR_IS_INVISIREF code.
6051         * call.c (build_user_type_conversion_1): Don't set ICS_BAD_FLAG on
6052         an ambiguous conversion.
6054 2002-12-03  Mark Mitchell  <mark@codesourcery.com>
6056         PR c++/8688
6057         * decl.c (reshape_init): Handle erroneous initializers.
6059 2002-12-02  Mark Mitchell  <mark@codesourcery.com>
6061         PR c++/8720
6062         * spew.c (remove_last_token): Make sure that last_chunk is set
6063         correctly.
6065         PR c++/8615
6066         * error.c (dump_expr): Handle character constants with
6067         TREE_OVERFLOW set.
6069 2002-12-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6071         DR 180
6072         * decl.c (grokdeclarator): Require class-key for all friend class.
6073         Output the correct type and context in the error message.
6075 2002-12-01  Mark Mitchell  <mark@codesourcery.com>
6077         PR c++/5919
6078         * pt.c (unify): Use variably_modified_type_p to test validity of
6079         template argument types.
6081         PR c++/8727
6082         * cp-tree.h (lang_type_class): Add typeinfo_var.
6083         (CLASSTYPE_TYPEINFO_VAR): New macro.
6084         * rtti.c (get_tinfo_decl): Use it.
6086         PR c++/8663
6087         * init.c (expand_member_init): Always get the main variant of a
6088         base class.
6090 2002-12-01  Mark Mitchell  <mark@codesourcery.com>
6092         PR c++/8332
6093         PR c++/8493
6094         * decl.c (cxx_init_decl_processing): Use size_type_node, not
6095         c_size_type_node.
6096         * decl2.c (coerce_new_type): Likewise.
6097         * except.c (do_allocate_exception): Likewise.
6099 2002-11-30  Zack Weinberg  <zack@codesourcery.com>
6101         * call.c, class.c, cp-lang.c, cvt.c, cxxfilt.c, decl.c, decl2.c,
6102         dump.c, error.c, except.c, expr.c, friend.c, g++spec.c, init.c,
6103         lex.c, mangle.c, method.c, optimize.c, parse.y, pt.c, ptree.c,
6104         repo.c, rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
6105         typeck2.c: Include coretypes.h and tm.h.
6106         * Make-lang.in: Update dependencies.
6108 2002-11-30  Mark Mitchell  <mark@codesourcery.com>
6110         PR c++/8227
6111         * decl.c (layout_var_decl): Deal gracefully with erroneous types.
6112         (check_initializer): Validate the type of the initialized
6113         variable, even if the initializer is absent.
6114         * typeck.c (cp_type_quals): Deal gracefully with erroneous types.
6116         PR c++/8214
6117         * typeck.c (convert_for_assignment): Do not use
6118         decl_constant_value on the operand.
6120         PR c++/8511
6121         * pt.c (instantiate_decl): Handle template friends defined outside
6122         of the class correctly.
6124 2002-11-29  Joe Buck <jbuck@synopsys.com>
6126         * parse.y (class_head_defn): Set CLASSTYPE_DECLARED_CLASS for
6127         anonymous structs.
6129 2002-11-29  Mark Mitchell  <mark@codesourcery.com>
6131         * class.c (walk_subobject_offsets): Recur on binfos as well as on
6132         types.
6133         (layout_nonempty_base_or_field): Pass it a binfo when processing a
6134         base class.
6135         (layout_empty_base): Likewise.
6136         (build_base_field): Likewise.
6138 2002-11-27  Mark Mitchell  <mark@codesourcery.com>
6140         * class.c (build_base_field): Make sure we get the canonical base
6141         when descending through primary bases.
6143 2002-11-26  Geoffrey Keating  <geoffk@apple.com>
6145         * decl.c (check_initializer): Don't error on initialisation of
6146         a scalar with a brace-enclosed expression.
6148 2002-11-26  Nathan Sidwell  <nathan@codesourcery.com>
6150         * cp-tree.h (DECL_LANG_FLAG_4): Document more uses.
6151         (template_parms_equal): Remove prototype.
6152         * typeck.c (buuld_indirect_ref): Reformat.
6154 2002-11-25  Jason Merrill  <jason@redhat.com>
6156         * init.c (build_vec_init): Use a FOR_STMT instead of an IF_STMT
6157         and a DO_STMT.
6159 2002-11-25  Mark Mitchell  <mark@codesourcery.com>
6161         * tree.c (cp_build_qualified_type_real): Correct handling of
6162         array types.
6163         * class.c (walk_subobject_offsets): Fix thinko.
6164         (build_base_field): Record offsets of empty bases in primary
6165         virtual bases.
6166         (layout_class_type): Record offsets of empty bases in fields.
6168         * search.c (is_subobject_of_p_1): Fix thinko.
6169         (lookup_field_queue_p): Likewise.
6171 2002-11-24  Mark Mitchell  <mark@codesourcery.com>
6173         * class.c (layout_class_type): Reuse tail padding when laying out
6174         virtual bases.
6176 2002-11-22  Mark Mitchell  <mark@codesourcery.com>
6178         * rtti.c (qualifier_flags): Fix thinko.
6180 2002-11-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6182         Remove traditional C constructs 1/n.
6183         * cp-tree.h (init_method, set_mangled_name_for_decl,
6184         build_opfncall, hack_identifier, make_thunk, use_thunk,
6185         synthesize_method, implicitly_declare_fn,
6186         skip_artificial_parms_for, optimize_function, calls_setjmp_p,
6187         maybe_clone_body): Remove use of PARAMS.
6189         * method.c (do_build_assign_ref, do_build_copy_constructor,
6190         synthesize_exception_spec, locate_dtor, locate_ctor, locate_copy):
6191         Likewise.
6192         (synthesize_method): Use 'bool' type and constants instead of
6193         'int'.
6194         (locate_copy): Likewise.
6195         (implicitly_declare_fn): Likewise.
6197         * optimize.c (calls_setjmp_r, update_cloned_parm, dump_function):
6198         Remove old-style declaration.
6199         (maybe_clone_body): Use 'bool' type and constants.
6201 2002-11-21  Glen Nakamura  <glen@imodulo.com>
6203         PR c++/8342
6204         * typeck.c (get_member_function_from_ptrfunc): Make sure that a
6205         SAVE_EXPR for instance_ptr doesn't get evaluated first inside one
6206         of the branches of a COND_EXPR.
6208 2002-11-19  Mark Mitchell  <mark@codesourcery.com>
6210         * pt.c (for_each_template_parm): Free allocated memory.
6211         * search.c (is_subobject_of_p_1): New function.
6212         (is_subobject_of_p): Avoid walking virtual bases multiple times.
6214 2002-11-19  Jason Thorpe  <thorpej@wasabisystems.com>
6216         * g++spec.c (lang_specific_spec_functions): New.
6218 2002-11-15  Kazu Hirata  <kazu@cs.umass.edu>
6220         * ChangeLog: Follow spelling conventions.
6221         * class.c: Likewise.
6222         * decl2.c: Likewise.
6224 2002-11-14  Zack Weinberg  <zack@codesourcery.com>
6226         * search.c (dfs_push_decls): Do not try to reorder elements
6227         3..n of method_vec if method_vec has only two elements.
6228         Reverse order of two tests to avoid accessing unallocated
6229         memory.
6231 2002-11-14  Mark Mitchell  <mark@codesourcery.com>
6233         * class.c (dfs_find_final_overrider): Adjust so that the most
6234         derived object is a binfo, rather than a class type.
6235         (find_final_overrider): Likewise.
6236         (add_vcall_offset_vtbl_entries_1): Simplify accordingly.
6237         (add_vcall_offset): Likewise.
6239 2002-11-09  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6241         PR c++/8389
6242         * pt.c (instantiate_template): Push class scope for member
6243         functions.
6244         (get_mostly_instantiated_function_type): Likewise.  Don't call
6245         tsubst on context.  Remove CONTEXTP and TPARMSP parameters.
6246         * cp-tree.h (get_mostly_instantiated_function_type): Adjust.
6247         * mangle.c (write_encoding, write_unqualified_name): Adjust.
6249 2002-11-07  Mark Mitchell  <mark@codesourcery.com>
6251         * class.c (add_vcall_offset_vtbl_entries_1): Correct ordering of
6252         vcall offfsets.  Split out ...
6253         (add_vcall_offset): ... new function.
6255         PR c++/8338
6256         * pt.c (for_each_template_parm): Add htab parameter.
6257         (process_partial_specialization): Adjust call.
6258         (push_template_decl_real): Likewise.
6259         (pair_fn_data): Add visited.
6260         (for_each_template_parm_r): Avoid walking duplicates more than
6261         once.
6262         (uses_template_parms): Adjust call to for_each_template_parm.
6264 2002-11-07  Mark Mitchell  <mark@codesourcery.com>
6266         * class.c (add_implicitly_declared_members): Put implicitly
6267         declared functions at the end of TYPE_METHODs when -fabi-version
6268         is at least 2.
6270 2002-11-05  Geoffrey Keating  <geoffk@apple.com>
6272         * decl2.c (finish_file): Correct spelling.
6274 2002-11-03  Mark Mitchell  <mark@codesourcery.com>
6276         * call.c (build_special_member_call): Do not try to lookup VTTs by
6277         name.
6278         * class.c (vtbl_init_data): Add generate_vcall_entries.
6279         (get_vtable_decl): Do not look up virtual tables by name.
6280         (copy_virtuals): Do not use BV_USE_VCALL_INDEX_P.
6281         (set_primary_base): Do not set CLASSTYPE_RTTI.
6282         (determine_primary_base): Likewise.
6283         (get_matching_virtual): Remove.
6284         (get_vcall_index): New function.
6285         (update_vtable_entry_for_fn): Do not try to use virtual thunks
6286         when they are not required.  Assign vcall indices at this point.
6287         (finish_struct_1): Do not set CLASSTYPE_NEEDS_VIRTUAL_REINIT.
6288         Do update dynamic_classes.
6289         (build_vtt): Do not add VTTs to the symbol table.
6290         (build_ctor_vtbl_group): Likewise.
6291         (build_vtbl_initializer): Simplify handling of vcall indices.
6292         (build_vcall_offset_vtbl_entries): Pretend to build vcall offsets
6293         for the most derived class.
6294         (add_vcall_offset_vtbl_entries_1): But do not actually add them to
6295         the vtable.
6296         * cp-tree.h (dynamic_classes): New macro.
6297         (lang_type_class): Remove rtti.  Add vtables.  Add vcall_indices.
6298         (CLASSTYPE_RTTI): Remove.
6299         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Remove.
6300         (CLASSTYPE_VCALL_INDICES): New macro.
6301         (CLASSTYPE_VTABLES): Likewise.
6302         (BV_USE_VCALL_INDEX_P): Remove.
6303         (build_vtable_path): Remove.
6304         * decl2.c (finish_vtable_vardecl): Remove.
6305         (key_method): Remove #if 0'd code.
6306         (finish_vtable_vardecl): Rename to ...
6307         (maybe_emit_vtables): ... this.
6308         (finish_file): Use it.
6309         * search.c (look_for_overrides_here): Update comment.
6311 2002-11-01  Zack Weinberg  <zack@codesourcery.com>
6313         PR c/7353 redux
6314         * decl2.c (grokfield): Reject TYPE_DECLs with initializers.
6316 2002-10-30  Jason Merrill  <jason@redhat.com>
6318         PR c++/8186
6319         * cp-tree.h (ADDR_IS_INVISIREF): New macro.
6320         * call.c (convert_for_arg_passing): Set it.
6321         * except.c (stabilize_throw_expr): Recurse for such an arg.
6323 2002-10-31  Mark Mitchell  <mark@codesourcery.com>
6325         * cp-tree.h (lang_decl_flags): Remove init_priority.
6326         (lang_decl): Add delta.
6327         (GLOBAL_INIT_PRIORITY): Remove.
6328         (THUNK_DELTA): Revise definition.
6329         * decl2.c (start_objects): Don't set GLOBAL_INIT_PRIORITY.
6330         * dump.c (cp_dump_tree): Don't dump it.
6332 2002-10-30  Mark Mitchell  <mark@codesourcery.com>
6334         PR c++/8160
6335         * typeck2.c (process_init_constructor): Call complete_array_type.
6337         PR c++/8149
6338         * decl.c (make_typename_type): Issue errors about invalid results.
6340 2002-10-30  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6342         Core issue 287, PR c++/7639
6343         * cp-tree.h (lang_type_class): Add decl_list field.
6344         (CLASSTYPE_DECL_LIST): New macro.
6345         (maybe_add_class_template_decl_list): Add declaration.
6346         * class.c (duplicate_tag_error): Initialize CLASSTYPE_DECL_LIST.
6347         (unreverse_member_declarations): Reverse CLASSTYPE_DECL_LIST.
6348         (maybe_add_class_template_decl_list): New function.
6349         (add_implicitly_declared_members): Use it.
6350         * decl.c (maybe_process_template_type_declaration): Likewise.
6351         (pushtag): Likewise.
6352         * friend.c (add_friend): Likewise.
6353         (make_friend_class): Likewise.
6354         * semantics.c (finish_member_declaration): Likewise.
6355         (begin_class_definition): Initialize CLASSTYPE_DECL_LIST.
6356         * pt.c (instantiate_class_template): Use CLASSTYPE_DECL_LIST
6357         to process members and friends in the order of declaration.
6359 2002-10-29  Mark Mitchell  <mark@codesourcery.com>
6361         PR c++/8287
6362         * decl.c (finish_destructor_body): Create the label to jump to
6363         when returning from a destructor here.
6364         (finish_function_body): Rather than here.
6366 2002-10-25  Zack Weinberg  <zack@codesourcery.com>
6368         PR c++/7266
6369         * decl.c (grokdeclarator): Check that TREE_OPERAND 0 of a
6370         SCOPE_REF is not null before dereferencing it.
6372 2002-10-25  Mark Mitchell  <mark@codesourcery.com>
6374         * call.c (build_over_call): Use DECL_CONTEXT, not
6375         DECL_VIRTUAL_CONTEXT.
6376         * class.c (modify_vtable_entry): Don't mess with
6377         DECL_VIRTUAL_CONTEXT.
6378         (set_vindex): Remove.
6379         (set_primary_base): Remove vfuns_p parameter.
6380         (determine_primary_base): Likewise.
6381         (modify_all_vtables): Likewise.
6382         (layout_class_type): Likewise.  Adjust calls to other functions
6383         accordingly.
6384         (finish_struct_1): Adjust calls to modified functions.  Set
6385         DECL_VINDEX here.
6386         * cp-tree.h (lang_type_class): Remove vsize.
6387         (CLASSTYPE_VSIZE): Remove.
6388         (lang_decl): Remove thunks.
6389         (DECL_THUNKS): Adjust.
6390         (DECL_VIRTUAL_CONTEXT): Remove.
6391         (duplicate_decls): Don't copy it.
6392         * pt.c (build_template_decl): Don't set it.
6393         (tsubst_decl): Likewise.
6394         * typeck.c (expand_ptrmemfunc_cst): Don't use it.
6396         * class.c (build_vtbl_initializer): Don't use build_vtable_entry.
6397         (build_vtable_entry): Remove.
6398         * cp-tree.h (BINFO_VIRTUALS): Expand documentation.
6399         (lang_decl): Add thunks.
6400         (DECL_THUNKS): New macro.
6401         * decl.c (duplicate_decls): Copy it.
6402         * method.c (make_thunk): Simplify, and add thunks to DECL_THUNKS.
6403         * semantics.c (emit_associated_thunks): Simplify.
6405 2002-10-24  David Edelsohn  <edelsohn@gnu.org>
6407         PR c++/7228
6408         * cp-tree.h (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Check that
6409         lang_type structure exists before accessing field.
6410         (SET_CLASSTYPE_READONLY_FIELDS_NEED_INIT): New macro.
6411         (CLASSTYPE_REF_FIELDS_NEED_INIT): Similar.
6412         (SET_CLASSTYPE_REF_FIELDS_NEED_INIT): New macro.
6413         * class.c (check_field_decls): Use new macros.
6414         * typeck2.c (process_init_constructor): Remove redundant check for
6415         existence of lang_type structure.
6417 2002-10-24  Mark Mitchell  <mark@codesourcery.com>
6419         * class.c (end_of_base): New method.
6420         (end_of_class): Use it.  Check indirect virtual bases.
6422         * class.c (check_field_decls): Fix typo.
6424 2002-10-23  Mark Mitchell  <mark@codesourcery.com>
6426         PR c++/8067
6427         * decl.c (maybe_inject_for_scope_var): Ignore __FUNCTION__ and
6428         related variables.
6430         PR c++/7679
6431         * spew.c (next_token): Do not return an endless stream of
6432         END_OF_SAVED_INPUT tokens.
6433         (snarf_method): Add three END_OF_SAVED_INPUT tokens to the end of
6434         the cached token stream.
6435         (snarf_defarg): Likewise.
6437 2002-10-23  Zack Weinberg  <zack@codesourcery.com>
6439         * cp-lang.c (cp_var_mod_type_p): New: C++ hook for
6440         variably_modified_type_p.
6441         * cp-tree.h: Remove prototype of variably_modified_type_p.
6442         * tree.c (variably_modified_type_p): Remove; now implemented
6443         in language-independent code.
6445 2002-10-22  Mark Mitchell  <mark@codesourcery.com>
6447         PR c++/6579
6448         * spew.c (snarf_parenthesized_expression): New function.
6449         (snarf_block): Use it.
6451 2002-10-22  Richard Henderson  <rth@redhat.com>
6453         * method.c (use_thunk): Always compute vcall_value; assert that
6454         it is not zero.  Use can_output_mi_thunk; use output_mi_thunk
6455         for vcall thunks as well.
6457 2002-10-21  Mark Mitchell  <mark@codesourcery.com>
6459         * class.c (empty_base_at_nonzero_offset_p): New function.
6460         (layout_nonempty_base_or_field): Do not check for conflicts when
6461         laying out a virtual base using the GCC 3.2 ABI.
6462         (build_base_field): Correct checking for presence of empty classes
6463         at nonzero offsets when clearing CLASSTYPE_NEARLY_EMPTY_P.
6465         * class.c (include_empty_classes): Use normalize_rli.
6466         (layout_class_type): Likewise.
6468         * decl.c (reshape_init): Tweak handling of character arrays.
6470         PR c++/8218
6471         * cp-tree.h (lang_type_class): Add contains_empty_class_p.
6472         (CLASSTYPE_CONTAINS_EMPTY_CLASS_P): New macro.
6473         * class.c (check_bases): Update CLASSTYPE_CONTAINS_EMPTY_CLASS_P.
6474         (check_field_decls): Likewise.
6475         (layout_class_type): Likewise.
6476         (finish_struct_1): Initialize it.
6477         (walk_subobject_offsets): Use it to prune searches.
6479 2002-10-20  Mark Mitchell  <mark@codesourcery.com>
6481         * method.c (use_thunk): Compute the vcall index as a HOST_WIDE_INT.
6482         * optimize.c (optimize_function): Replace ASM_OUTPUT_MI_THUNK with
6483         TARGET_ASM_OUTPUT_MI_THUNK in comments.
6485 2002-10-18  Zack Weinberg  <zack@codesourcery.com>
6487         * decl.c (start_decl): Point users of the old initialized-
6488         typedef extension at __typeof__.
6490 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
6492         * Make-lang.in (method.o): Depend on TARGET_H.
6493         * method.c (target.h): Include it.
6494         (use_thunk): Use target hooks.  Use vcall thunks, if available.
6496 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
6498         * class.c (base_derived_from): Make sure return value is a bool.
6500 2002-10-18  Mark Mitchell  <mark@codesourcery.com>
6502         * class.c (find_final_overrider_data_s): Remove overriding_fn and
6503         overriding_base.
6504         (dfs_base_derived_from): New function.
6505         (base_derived_from): Likewise.
6506         (dfs_find_final_overrider): Use base_derived_from.
6507         (find_final_overrider): Adjust.
6509 2002-10-18  Jason Merrill  <jason@redhat.com>
6511         PR c++/8080
6512         * semantics.c (finish_for_cond, finish_while_cond): Don't mess
6513         with condition decls in a template.
6515 2002-10-17  Nathan Sidwell  <nathan@codesourcery.com>
6517         * class.c (add_method): Compare template parms too.
6519 2002-10-17  Mark Mitchell  <mark@codesourcery.com>
6521         PR c++/7584
6522         * class.c (handle_using_decl): Allow the declaration used to be
6523         from an ambiguous base.
6525         * pt.c (convert_template_argument): Revert this change:
6526                 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
6527                 * pt.c (convert_template_argument): Do not fold non-type
6528                 template rguments when inside a template.
6530         * init.c (expand_default_init): Handle brace-enclosed initializers
6531         correctly.
6533 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
6535         * mangle.c (write_expression): Correct handling of enumeration
6536         constants.
6537         (write_template_arg): Likewise.
6538         * pt.c (convert_template_argument): Do not fold non-type template
6539         arguments when inside a template.
6541         PR c++/7478
6542         * cvt.c (convert_to_reference): Allow references as the incoming
6543         type.
6545 2002-10-16  Mark Mitchell  <mark@codesourcery.com>
6547         PR c++/7524
6548         * method.c (do_build_assign_ref): Use cp_build_qualified_type, not
6549         build_qualified_type.
6551 2002-10-15  Richard Henderson  <rth@redhat.com>
6553         * error.c (dump_expr): Use real_to_decimal directly, and with
6554         the new arguments.
6556 2002-10-15  Mark Mitchell  <mark@codesourcery.com>
6558         * decl.c (reshape_init): Fix typo.
6560         * cp-tree.h (operator_name_info_t): Add arity.
6561         * lex.c (init_operators): Initialize it.
6562         * mangle.c (write_conversion_operator_name): New function.
6563         (write_unqualified_name): Use it.
6564         (write_template_args): Accept template arguments as a TREE_LIST.
6565         (write_expression): Adjust handling of qualified names to match
6566         specification.
6568 2002-10-15  Jason Merrill  <jason@redhat.com>
6570         * call.c (call_builtin_trap): New fn.
6571         (convert_arg_to_ellipsis): Use it.  Downgrade error to warning.
6572         (build_call): Don't set current_function_returns_abnormally outside
6573         a function.
6575 2002-10-14  Mark Mitchell  <mark@codesourcery.com>
6577         * class.c (check_field_decls): Remove empty_p parameter.  Instead,
6578         clear CLASSTYPE_EMPTY_P.
6579         (build_base_field): Likewise.
6580         (build_base_fields): Likewise.
6581         (check_bases_and_members): Likewise.
6582         (create_vtbl_ptr): Likewise.
6583         (layout_class_type): Likewise.  Ensure that empty classes have
6584         size zero when used as base classes in the 3.2 ABI.
6585         (finish_struct_1): Initialize CLASSTYPE_EMPTY_P and
6586         CLASSTYPE_NEARLY_EMPTY_P.  Adjust calls to avoid passing empty_p
6587         parameter.
6588         (is_empty_class): Correct definition when using post-3.2 ABI.
6589         * cp-tree.h (lang_type_class): Add empty_p.
6590         (CLASSTYPE_EMPTY_P): New macro.
6592 2002-10-12  Nathan Sidwell  <nathan@codesourcery.com>
6594         * init.c (build_delete): Do not apply save_expr for arrays.
6595         (build_vec_delete): Likewise.
6597 2002-10-14  Mark Mitchell  <mark@codesourcery.com>
6599         * decl.c (layout_var_decl): Call layout_decl even for variables
6600         whose type is an array with unspecified bounds.
6602         PR c++/7176
6603         * lex.c (do_identifier): Add another option for the parsing
6604         parameter.
6605         * parse.y (do_id): Use it.
6607 2002-10-11  Gabriel Dos Reis  <gdr@integrable-solutions.net>
6609         PRs C++/6803, C++/7721 and C++/7803
6610         * decl.c (grokdeclarator): Gracefully handle template-name as
6611         decl-specifier.
6613 2002-10-11  Jason Molenda  <jmolenda@apple.com>
6615         * init.c (build_field_list): Provide uses_unions_p with a default
6616         value.
6618 2002-10-11  Mark Mitchell  <mark@codesourcery.com>
6620         PR c++/5661
6621         * cp-tree.h (variably_modified_type_p): New function.
6622         (grokdeclarator) Tighten check for variably modified types as
6623         fields.
6624         * pt.c (convert_template_argument): Do not allow variably modified
6625         types as template arguments.
6626         * tree.c (variably_modified_type_p): New function.
6628         * NEWS: Document removal of "new X = ..." extension.
6629         * class.c (initialize_array): Set TREE_HAS_CONSTRUCTOR on
6630         brace-enclosed initializers.
6631         * cp-tree.h (CP_AGGREGATE_TYPE_P): New macro.
6632         (initialize_local_var): Remove declaration.
6633         (expand_static_init): Likewise.
6634         * decl.c (next_initializable_field): New function.
6635         (reshape_init): Likewise.
6636         (check_initializer): Use them.  Build dynamic initializer for
6637         aggregates here too.
6638         (initialize_local_var): Simplify, and incorporate cleanup
6639         insertion code as well.
6640         (destroy_local_var): Remove.
6641         (cp_finish_decl): Tidy.
6642         (expand_static_init): Fold checks for whether or not a variable
6643         needs initialization into this function.  Simplify.
6644         * decl2.c (do_static_initialization): Simplify.
6645         * init.c (build_init): Do not set TREE_SIDE_EFFECTS when it will
6646         be done for us automatically.
6647         (expand_default_init): Handle brace-enclosed initializers
6648         correctly.
6649         (expand_aggr_init_1): Remove RTL-generation code.
6650         (build_vec_init): Remove "new X = ..." support.
6651         * parse.y (new_initializer): Likewise.
6652         * rtti.c (get_pseudo_ti_init): Set TREE_HAS_CONSTRUCTOR on
6653         brace-enclosed initializer.
6654         (create_pseudo_type_info): Likewise.
6655         * typeck2.c (store_init_value): Don't try to handle digest_init
6656         being called more than once.
6657         (digest_init): Tidy handling of brace-enclosed initializers.
6659 2002-10-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6661         * decl.c (typename_hash): Use htab_hash_pointer.
6663 2002-10-10  Jim Wilson  <wilson@redhat.com>
6665         * decl.c (duplicate_decls): Don't call decl_attributes.
6667 2002-10-09  Zack Weinberg  <zack@codesourcery.com>
6669         PR c/7353
6670         * decl.c (start_decl): Unconditionally issue error for
6671         'typedef foo = bar'.
6672         (cp_finish_decl): Remove special case for TYPE_DECL with initializer.
6673         (grokdeclarator): Remove redundant error for 'typedef foo = bar'.
6675 2002-10-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6677         * decl2.c (prune_vtable_vardecl): Delete unused function.
6679 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
6681         PR c++/7754
6682         * decl2.c (finish_anon_union): Do not expand anonymous unions when
6683         procesing template functions.
6684         * pt.c (tsubst_decl, case VAR_DECL): Try to complete the variable
6685         type. Call layout_decl.
6686         (tsubst_expr, case DECL_STMT): Handle anonymous unions.
6688 2002-10-07  Richard Henderson  <rth@redhat.com>
6690         * decl2.c, pt.c: Revert c++/7754 fix.
6692 2002-10-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
6694         PR c++/7804
6695         * error.c (dump_expr) [REAL_CST]: Output in decimal format.
6697 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
6699         PR c++/7931
6700         * pt.c (for_each_template_parm_r): Handle BASELINKs.
6702         PR c++/7754
6703         * decl2.c (finish_anon_union): Do not expand anonymous unions when
6704         procesing template functions.
6705         * pt.c (tsubst_decl, case VAR_DECL): Try to complete the variable
6706         type. Call layout_decl.
6707         (tsubst_expr, case DECL_STMT): Handle anonymous unions.
6709 2002-10-03  Mark Mitchell  <mark@codesourcery.com>
6711         PR c++/8006
6712         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Handle instances of template
6713         template parameters.
6714         (globals): Add entity and need_abi_warning.
6715         (decl_is_template_id): Use TYPE_TEMPLATE_INFO, not
6716         CLASSTYPE_TEMPLATE_INFO.
6717         (is_std_substitution): Use CLASSTYPE_TI_TEMPLATE, not
6718         TYPE_TI_TEMPLATE.
6719         (write_prefix): Handle typename types correctly.
6720         (write_template_prefix): Handle template template parameters
6721         correctly.
6722         (start_mangling): Add entity parameter.
6723         (finish_mangling): Warn about names whose mangling will change.
6724         (mangle_decl_string): Adjust.
6725         (mangle_type_string): Likewise.
6726         (mangle_special_for_type): Likewise.
6727         (mangle_ctor_vtbl_for_type): Likewise.
6728         (mangle_thunk): Likewise.
6729         (mangle_guard_variable): Likewise.
6730         (mangle_ref_init_variable): Likewise.
6732 2002-10-02  Mark Mitchell  <mark@codesourcery.com>
6734         PR c++/7188.
6735         * cp-tree.def (CTOR_INITIALIZER): Use one slot, not two.
6736         * cp-tree.h (emit_base_init): Rename to ....
6737         (emit_mem_initializers): ... this.
6738         (expand_member_init): Change prototype.
6739         * init.c (perform_member_init): Compute explicit, rather than
6740         requiring it as a parameter.
6741         (sort_member_init): Rename to ...
6742         (sort_mem_initializers): ... this.  Process bases and data members
6743         together.
6744         (sort_base_init): Remove.
6745         (emit_base_init): Rename to ...
6746         (emit_mem_initializers): ... this.
6747         (expand_aggr_vbase_init_1): Remove.
6748         (construct_virtual_bases): Rename to ...
6749         (construct_virtual_base): ... this.
6750         (expand_member_init): Rework handling of base initializers.
6751         * method.c (do_build_copy_constructor): Use
6752         finish_mem_initializers.
6753         * parse.y (member_init): Adjust calls to expand_member_init.
6754         * pt.c (tsubst_expr): Simplify CTOR_INITIALIZER case.
6755         (tsubst_initializer_list): Use expand_member_init.
6756         * semantics.c (finish_mem_intiailizers): Simplify.
6758 2002-10-02  Matt Austern  <austern@apple.com>
6759         * decl.c (walk_vtables_r): Fixed typo that caused result to
6760         never get a nonzero value.
6762 2002-10-02  Roger Sayle  <roger@eyesopen.com>
6764         PR optimization/6627
6765         * cp-tree.h (enum ptrmemfunc_vbit_where_t): Delete definition
6766         from here, and move it to tree.h.
6767         * decl.c (cxx_init_decl_processing): If storing the vbit
6768         in function pointers, ensure that force_align_functions_log
6769         is atleast one.
6771 2002-10-02  Matt Austern  <austern@apple.com>
6773         * class.c (check_field_decls): Changed warning about const member
6774         variables so that it doesn't get issued for a class aggregate.
6776 2002-10-01  Mark Mitchell  <mark@codesourcery.com>
6778         * decl.c (cp_finish_decl): Make sure array types are laid out,
6779         even if the array bounds are unknown.
6781 2002-10-01  Steve Ellcey  <sje@cup.hp.com>
6783         * class.c (build_vtbl_initializer): Change build_c_cast
6784         to build1.
6786 2002-10-01  Mark Mitchell  <mark@codesourcery.com>
6788         * decl.c (cp_finish_decl): Make sure array types are laid out,
6789         even if the array bounds are unknown.
6791         * decl.c (cp_finish_decl): Correct check for dynamic
6792         initialization of thread-local storage.
6794 2002-09-30  Nathan Sidwell  <nathan@codesourcery.com>
6796         * tree.c (really_overloaded_fn): TEMPLATE_ID_EXPRs are also
6797         overloaded.
6799 2002-09-30  Steve Ellcey  <sje@cup.hp.com>
6801         * class.c (build_vtbl_initializer): Add cast.
6802         (add_vcall_offset_vtbl_entries_1):
6803         Use TARGET_VTABLE_DATA_ENTRY_DISTANCE for offset.
6805 2002-09-30  Mark Mitchell  <mark@codesourcery.com>
6807         * class.c (walk_subobject_offsets): Correct the calculation of
6808         offsets for virtual bases.  Correct the counting of array
6809         elements.
6810         (layout_nonempty_base_or_field): Simplify.  Correct the
6811         calculation of offsets to be propagated through the binfo
6812         hierarchy.
6813         (build_base_field): Avoid creating a FIELD_DECL for empty bases.
6814         Add the FIELD_DECL to TYPE_FIELDS.
6815         (build_base_fields): Adjust accordingly.
6816         (layout_virtual_bases): Use build_base_field.
6817         (end_of_class): Return a tree, not an integer.
6818         (warn_about_ambiguous_direct_bases): Rename to ...
6819         (warn_about_ambiguous_bases): ... this.
6820         (include_empty_classes): New function.
6821         (layout_class_type): Create an alternative version of the type to
6822         be used when as a base class type.  Do not call
6823         finish_record_layout until we are done laying out the class.
6824         * cp-tree.h (lang_type_class): Remove size, size_unit.  Add
6825         as_base.
6826         (CLASSTYPE_SIZE): Reimplement.
6827         (CLASSTYPE_SIZE_UNIT): Likewise.
6828         (CLASSTYPE_ALIGN): Likweise.
6829         (CLASSTYPE_USER_ALIGN): Likewise.
6830         (CLASSTYPE_AS_BASE): New macro.
6831         (DECL_INITIALIZED_P): Likewise.
6832         (extract_init): Remove prototype.
6833         (build_forced_zero_init): Rename to ...
6834         (build_zero_init): ... this.
6835         (force_store_init_value): Remove.
6836         * decl.c (obscure_complex_init): Remove.
6837         (duplicate_decls): Copy DECL_INITIALIZED_P.
6838         (check_initializer): Do not leave junk in DECL_INITIAL.
6839         (cp_finish_decl): Handle zero-initialization of entities with
6840         static storage duration.
6841         * expr.c (extract_init): Remove.
6842         * init.c (build_forced_zero_init): Remove.
6843         (build_zero_init): New function.
6844         (build_default_init): Use it.
6845         (build_field_list): Skip FIELD_DECLs for base subobjects.
6846         (push_base_cleanups): Likewise.
6847         * method.c (do_build_assign_ref): Likewise.
6848         (synthesize_exception_spec): Likewise.
6849         * pt.c (tsubst_decl): Clear DECL_INITIALIZED_P.
6850         (regenerate_decl_from_template): To not set DECL_INITIAL for a
6851         static data member whose initialization took place in its class.
6852         (instantiate_decl): Do not pass an initializer to cp_finish_decl
6853         in that situation.
6854         * search.c (dfs_push_decls): Skip FIELD_DECLs for base subobjects.
6855         (dfs_unuse_fields): Likewise.
6856         * tree.c (pod_type_p): Handle error_mark_node.
6857         (zero_init_p): Likewise.
6858         * typeck.c (lookup_anon_field): Skip FIELD_DECLs for base
6859         subobjects.
6860         * typeck2.c (store_init_value): Remove #if 0'd code.
6861         (force_store_init_value): Remove.
6862         (process_init_constructor): Use build_zero_init.
6864 2002-09-29  Nathan Sidwell  <nathan@codesourcery.com>
6866         PR c++/7788
6867         * rtti.c (unemitted_tinfo_decl_p): Check it has a field.
6869 2002-09-29  Kazu Hirata  <kazu@cs.umass.edu>
6871         * cp-tree.h: Fix comment typos.
6872         * decl.c: Likewise.
6873         * pt.c: Likewise.
6875 2002-09-25  Mark Mitchell  <mark@codesourcery.com>
6877         * cp/class.c (contains_empty_class_p): New method.
6878         (walk_subobject_offsets): Correct computation of field offset.
6879         (layout_empty_base): Correct placement of emtpy base classes.
6880         (layout_class_type): Warn about ABI changes.
6882 2002-09-23  Mark Mitchell  <mark@codesourcery.com>
6884         * cp/class.c (layout_virtual_bases): Do not round the size of the
6885         type to a multiple of the alignment before laying out virtual bases.
6886         (layout_class_type): Correct handling of bit-fields that are wider
6887         than their type inside unions.  Round the size of the type to a
6888         even number of bytes when computing the size without virtual
6889         bases.
6890         * cp/cp-tree.h (abi_version_at_least): New macro.
6892 2002-09-21  Kazu Hirata  <kazu@cs.umass.edu>
6894         * ChangeLog: Follow spelling conventions.
6895         * ChangeLog.2: Likewise.
6896         * call.c: Likewise.
6897         * class.c: Likewise.
6898         * cp-tree.h: Likewise.
6899         * cvt.c: Likewise.
6900         * decl.c: Likewise.
6901         * decl2.c: Likewise.
6902         * except.c: Likewise.
6903         * friend.c: Likewise.
6904         * g++spec.c: Likewise.
6905         * init.c: Likewise.
6906         * lex.c: Likewise.
6907         * mangle.c: Likewise.
6908         * method.c: Likewise.
6909         * operators.def: Likewise.
6910         * optimize.c: Likewise.
6911         * pt.c: Likewise.
6912         * rtti.c: Likewise.
6913         * search.c: Likewise.
6914         * semantics.c: Likewise.
6915         * spew.c: Likewise.
6916         * tree.c: Likewise.
6917         * typeck.c: Likewise.
6919 2002-09-18  Devang Patel  <dpatel@apple.com>
6921         * cp/cp-tree.h: New prototype for walk_vtabls().
6922         * cp/decl.c (walk_vtables_r): New function.
6923         (struct cp_binding_level): Add new members, namespaces,
6924         names_size and vtables.
6925         (add_decl_to_level): Add decl in namespaces or vtables
6926         chain, if conditions match.
6927         (walk_vtables): New function.
6928         (walk_namespaces_r): Travers separate namespace chain
6929         for namespace decls.
6930         (wrapup_globals_for_namespace): Use names_size instead
6931         of list_length().
6932         * cp/decl2.c (finish_file): Use walk_vtables() instead of
6933         walk_globals() to walk vtable decls.
6935 2002-09-18  Nathan Sidwell  <nathan@codesourcery.com>
6937         * decl.c (grokdeclarator): Use assert, not internal_error. Don't
6938         ICE with invalid pointers & references.
6940 2002-09-17  Zack Weinberg  <zack@codesourcery.com>
6942         * Make-lang.in: Remove all references to the demangler.
6943         * cxxfilt.c: Moved to binutils.
6945 2002-09-16  Nathan Sidwell  <nathan@codesourcery.com>
6947         PR c++/7718
6948         * pt.c (tsubst_decl): Remove assert.
6950         Remove DR 295 implementation.
6951         * pt.c (check_cv_quals_for_unify): Disable function & method cases.
6952         * tree.c (cp_build_qualified_type_real): Likewise. Don't warn
6953         about ignoring volatile qualifiers.
6955         * search.c (lookup_member): Correct documentation.
6957 2002-09-16  Geoffrey Keating  <geoffk@apple.com>
6959         * cp-tree.h (union lang_tree_node): Add chain_next option.
6961 2002-09-16  Nathan Sidwell  <nathan@codesourcery.com>
6963         * parse.y (parse_finish_call_expr): Check lookup_member result.
6965         PR c++/7015
6966         * semantic.c (finish_asm_stmt): Fix operand/output_operands
6967         thinko.
6968         * typeck.c (c_expand_asm_operands): Protect from error_mark_node.
6970 2002-09-15  Nathan Sidwell  <nathan@codesourcery.com>
6972         PR c++/7919
6973         * call.c (build_over_call): Convert this pointer for fns found by
6974         using decls.
6976 2002-09-15  Kazu Hirata  <kazu@cs.umass.edu>
6978         * ChangeLog: Follow spelling conventions.
6979         * ChangeLog.1: Likewise.
6981 2002-09-14  Nathan Sidwell  <nathan@codesourcery.com>
6983         PR c++/7768
6984         * pt.c (build_template_decl): Copy DECL_DESTRUCTOR_P.
6986 2002-09-14  Kazu Hirata  <kazu@cs.umass.edu>
6988         * error.c: Fix comment formatting.
6989         * except.c: Likewise.
6990         * expr.c: Likewise.
6991         * friend.c: Likewise.
6992         * g++spec.c: Likewise.
6993         * init.c: Likewise.
6994         * lex.c: Likewise.
6995         * mangle.c: Likewise.
6996         * method.c: Likewise.
6997         * optimize.c: Likewise.
6998         * pt.c: Likewise.
6999         * rtti.c: Likewise.
7000         * search.c: Likewise.
7001         * semantics.c: Likewise.
7002         * spew.c: Likewise.
7003         * tree.c: Likewise.
7004         * typeck.c: Likewise.
7005         * typeck2.c: Likewise.
7007 2002-09-13  Matt Austern  <austern@apple.com>
7009         PR C++/7828
7010         * cp/cp-tree.h, cp/tree.c: New function non_cast_lvalue_p.
7011         * cp/call.c: Change call-by-const-reference mechanism to use
7012         non_cast_lvalue_p when deciding whether the create a temporary.
7013         We need a temporary when passing, e.g. (long) x by const ref.
7015 2002-09-13  Nathan Sidwell  <nathan@codesourcery.com>
7017         * pt.c (unify, ARRAY_TYPE): Element type can be more qualified.
7019 2002-09-13  Kazu Hirata  <kazu@cs.umass.edu>
7021         * decl.c: Fix comment formatting.
7022         * decl2.c: Likewise.
7024 2002-09-12  Kazu Hirata  <kazu@cs.umass.edu>
7026         * call.c: Fix comment formatting.
7027         * class.c: Likewise.
7028         * cp-lang.c: Likewise.
7029         * cp-tree.h: Likewise.
7030         * cvt.c: Likewise.
7032 2002-09-11  Zack Weinberg  <zack@codesourcery.com>
7034         * Make-lang.in: Build cp/cxxfilt.o from $(srcdir)/cp/cxxfilt.c,
7035         and c++filt from cxxfilt.o + version.o + $(LIBDEPS).
7036         * cxxfilt.c: New file: split from libiberty/cplus-dem.c, with
7037         minor adjustments (use version_string, eliminate yet another
7038         duplicate of xmalloc)
7040 2002-09-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7042         * cp-tree.h (require_complete_eh_spec_types): Add prototype.
7044 2002-09-05  Jason Merrill  <jason@redhat.com>
7046         * typeck2.c (add_exception_specifier): Only pedwarn for an
7047         incomplete type.
7048         (require_complete_eh_spec_types): New fn.
7049         (cxx_incomplete_type_diagnostic): Also support pedwarning.
7050         * typeck.c (complete_type_or_diagnostic): Likewise.
7051         * call.c (build_call): Call require_complete_eh_spec_types.
7052         * rtti.c (get_pseudo_ti_desc): Give an error rather than aborting
7053         on an incomplete type.
7055 2002-09-04  Jakub Jelinek  <jakub@redhat.com>
7057         * decl.c (start_cleanup_fn): Clear interface_only before
7058         start_function, restore it afterwards.
7060 2002-09-02  Nathan Sidwell  <nathan@codesourcery.com>
7062         * cp-tree.h (finish_builtin_type): Remove.
7063         * decl2.c (finish_builtin_type): Move to common code.
7064         * decl.c (build_ptrmemfunc_type): Adjust.
7065         * rtti.c (create_pseudo_type_info): Adjust.
7066         (create_tinfo_types): Adjust.
7068 2002-08-31  Jason Merrill  <jason@redhat.com>
7070         * cp-lang.c (cp_expr_size): Allow initialization from a
7071         CONSTRUCTOR.
7073 2002-08-30  Richard Henderson  <rth@redhat.com>
7075         PR opt/7515
7076         * tree.c: Include target.h.
7077         (cp_cannot_inline_tree_fn): Don't auto-inline functions that
7078         don't bind locally.
7079         * Makefile.in (tree.o): Update.
7081 2002-08-27  Mark Mitchell  <mark@codesourcery.com>
7083         * class.c (layout_virtual_bases): Warn about bugs in G++ that
7084         result in incorrect object layouts.
7085         (layout_class_type): Likewise.
7087 2002-08-24  Matt Austern  <austern@apple.com>
7089         * tree.c (lvalue_p_1): Add argument for whether casts of lvalues
7090         are allowable.
7091         (real_lvalue_p): Update caller.
7092         (lvalue_p): Ditto.
7093         (non_cast_lvalue_or_else): New.
7094         * tree.h: Declare it.
7095         * typeck.c (build_unary_op): Use non_cast_lvalue_or_else.
7097 2002-08-22  Mark Mitchell  <mark@codesourcery.com>
7099         * typeck.c (build_class_member_access_expr): Handle COMPOUND_EXPR
7100         and COND_EXPR specially; fix error message output.
7102 2002-08-22  Jason Merrill  <jason@redhat.com>
7104         * pt.c (tsubst_expr): RETURN_EXPR is now RETURN_STMT_EXPR.
7105         * semantics.c (nullify_returns_r): Likewise.
7107 2002-08-17  Gabriel Dos Reis  <gdr@integrable-solutions.net>
7109         Fix PR/7621
7110         * typeck.c (finish_class_member_access_expr): Diagnose cases where
7111         name lookup finds nothing.
7113 2002-08-15  Jason Merrill  <jason@redhat.com>
7115         * semantics.c (finish_then_clause): Remove redundant assignment.
7116         (finish_if_stmt, begin_switch_stmt, finish_switch_stmt): Move the
7117         extra binding level outside the if/switch statement.
7118         (finish_while_cond, finish_for_cond): Rewrite complex condition
7119         into the loop body.
7121 2002-08-15  Alexandre Oliva  <aoliva@redhat.com>
7123         * parse.y (sizeof, alignof, typeof): New non-terminals to
7124         increment skip_evaluation.  Replace terminals with them and
7125         decrement skip_evaluation at the end of rules using them.
7126         * decl2.c (mark_used): Don't assemble_external if
7127         skipping evaluation.
7129 2002-08-15  Gabriel Dos Reis  <gdr@nerim.net>
7131         Fix PR/7504
7132         * parse.y (parse_finish_call_expr): Handle incomplete
7133         type used to name a scope.
7135 2002-08-15  Nathan Sidwell  <nathan@codesourcery.com>
7137         PR c++/7598
7138         * typeck.c (build_unary_op): Fold offsetof idiom. Fixes
7139         regression caused by my 2002-08-08 patch.
7141 2002-08-13  Mark Mitchell  <mark@codesourcery.com>
7143         * decl.c (pushdecl_class_level): Honor requests to bind names to
7144         OVERLOADs.
7146 2002-08-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7148         * decl2.c (build_call_from_tree): Fix uninitialized variable.
7149         * parse.y (parse_finish_call_expr): Likewise.
7150         * repo.c (old_args, old_dir, old_main): Const-ify.
7152 2002-08-11  Gabriel Dos Reis  <gdr@nerim.net>
7154         * decl.c (duplicate_decls): Replace DECL_SOURCE_FILE
7155         DECL_SOURCE_LINE with DECL_SOURCE_LOCATION.
7156         * optimize.c (maybe_clone_body): Likewise.
7157         * pt.c (tsubst_enum): Likewise.
7158         (lookup_template_class): Likewise.
7159         * tree.c (cp_copy_res_decl_for_inlining): Likewise.
7161 2002-08-10  Neil Booth  <neil@daikokuya.co.uk>
7163         * lang-specs.h: Remove -ansi.
7165 2002-08-10  Nathan Sidwell  <nathan@codesourcery.com>
7167         * tree.c (maybe_dummy_object): Replace // with /* */
7169 2002-08-09  Mark Mitchell  <mark@codesourcery.com>
7171         * call.c (standard_conversion): Use build_ptrmem_type.
7172         * cp-tree.h (build_ptrmem_type): New function.
7173         (adjust_result_of_qualified_name_lookup): Likewise.
7174         * decl.c (grokvardecl): Do not look for OFFSET_TYPEs to indicate
7175         static data members.
7176         (build_ptrmem_type): New function.
7177         (grokdeclarator): Do not use build_offset_type when encountering a
7178         qualified name.
7179         * parse.y (parse_finish_call_expr): Use
7180         adjust_result_of_qualified_name_lookup.
7181         * search.c (adjust_result_of_qualified_name_lookup): New function.
7182         * typeck.c (qualify_type_recursive): Use TYPE_PTRMEM_* rather than
7183         accessing OFFSET_TYPEs directly.
7185 2002-08-08  Mike Stump  <mrs@apple.com>
7187         * call.c (add_builtin_candidate): legal -> valid, illegal -> invalid.
7188         (type_decays_to): Likewise.
7189         * class.c (find_final_overrider): Likewise.
7190         (maybe_note_name_used_in_class): Likewise.
7191         * decl.c (current_tmpl_spec_kind): Likewise.
7192         (add_binding): Likewise.
7193         (push_class_binding): Likewise.
7194         (duplicate_decls): Likewise.
7195         (layout_var_decl): Likewise.
7196         (grokfndecl): Likewise.
7197         (grokdeclarator): Likewise.
7198         (check_default_argument): Likewise.
7199         * decl2.c (handle_class_head): Likewise.
7200         * error.c (dump_template_decl): Likewise.
7201         * init.c (build_offset_ref): Likewise.
7202         * pt.c (check_specialization_scope): Likewise.
7203         (determine_specialization): Likewise.
7204         (check_explicit_specialization): Likewise.
7205         (maybe_check_template_type): Likewise.
7206         (process_partial_specialization): Likewise.
7207         (check_default_tmpl_args): Likewise.
7208         (push_template_decl_real): Likewise.
7209         (convert_template_argument): Likewise.
7210         (try_class_unification): Likewise.
7211         (get_bindings_real): Likewise.
7212         (do_decl_instantiation): Likewise.
7213         * semantics.c (begin_function_definition): Likewise.
7214         (finish_member_declaration): Likewise.
7215         (check_multiple_declarators): Likewise.
7216         * typeck.c (comp_array_types): Likewise.
7217         (comptypes): Likewise.
7218         (expr_sizeof): Likewise.
7219         (build_binary_op): Likewise.
7220         (dubious_conversion_warnings): Likewise.
7221         (check_return_expr): Likewise.
7223 2002-08-08  Mark Mitchell  <mark@codesourcery.com>
7225         * typeck.c (build_class_member_access_expr): Do not return
7226         error_mark_node when no error has occurred.
7228 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
7230         * typeck.c (build_component_addr): Remove.
7231         (build_unary_op): Just check it's not a bitfield, and then build
7232         an ADDR_EXPR.
7234 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
7236         * class.c (convert_to_base): Correct check for error_mark_node.
7237         (create_vtable_ptr): Remove unused VFUNS_P parm.
7239 2002-08-08  Nathan Sidwell  <nathan@codesourcery.com>
7241         * cp/Make-lang.in (c++.mostlyclean): Remove coverage files.
7243 2002-08-07  Mark Mitchell  <mark@codesourcery.com>
7245         Rework build_component_ref.
7246         * call.c (build_vfield_ref): Do not go through build_component_ref.
7247         (build_field_call): Use build_class_member_access_expr.
7248         (build_user_type_conversion_1): Use BASELINK_FUNCTIONS.
7249         (build_object_call): Likewise.
7250         * class.c (convert_to_base): New function.
7251         (type_requires_array_cookie): Use BASELINK_FUNCTIONS.
7252         (instantiate_type): Handle BASELINKs.
7253         * cp-tree.def (BASELINK): New tree code.
7254         * cp-tree.h (BASELINK_P): Reimplement.
7255         (SET_BASELINK_P): Remove.
7256         (BASELINK_BINFO): Reimplement.
7257         (BASELINK_FUNCTIONS): Likewise.
7258         (BASELINK_ACCESS_BINFO): Likewise.
7259         (BASELINK_OPTYPE): Likewise.
7260         (convert_to_base): New function.
7261         (name_p): Likewise.
7262         (build_object_ref): Remove.
7263         (build_component_ref_1): Likewise.
7264         (build_component_ref): Likewise.
7265         (build_x_component_ref): Likewise.
7266         (build_class_member_access_expr): New function.
7267         (finish_class_member_access_expr): Likewise.
7268         (build_ptrmemfunc_access_expr): Likewise.
7269         * decl.c (grokdeclarator): Handle BASELINKs.
7270         * decl2. (build_expr_from_tree): Handle COMPONENT_REFs by using
7271         finish_class_member_access_expr.
7272         (arg_assoc): Handle BASELINKs.
7273         (do_class_using_decl): Likewise.
7274         * error.c (dump_decl): Likewise.
7275         (dump_expr): Use build_ptrmemfunc_access_expr.
7276         * except.c (dtor_nothrow): Use CLASSTYPE_DESTRUCTORS to find
7277         destructors.
7278         (build_throw): Use BASELINK_FUNCTIONS.
7279         * init.c (perform_member_init): Use
7280         build_class_member_access_expr.
7281         (build_offset_ref): Handle BASELINKs.  Use
7282         build_class_member_access_expr.
7283         * method.c (hack_identifier): Likewise.
7284         * parse.y (do_id): Use BASELINK, not TREE_LIST.
7285         (primary): Remove uses of build_object_ref.
7286         * pt.c (lookup_template_function): Handle BASELINKs.
7287         (resolve_overloaded_unification): Likewise.
7288         * search.c (build_baselink): Build a BASELINK, not a TREE_LIST.
7289         (lookup_field): Use BASELINK, not TREE_LIST.
7290         (lookup_fnfiels): Likewise.
7291         (setup_class_bindings): Likewise.
7292         * semantics.c (finish_object_call_expr): Do not use
7293         build_method_call when we already know what function is being
7294         called.
7295         * spew.c (identifier_type): Use BASELINK, not TREE_LIST.
7296         * tree.c (really_overloaded_fn): Use OVL_CHAIN for OVERLOADs, not
7297         TREE_CHAIN.
7298         (name_p): New function.
7299         * typeck.c (build_object_ref): Remove.
7300         (build_component_ref_1): Likewise.
7301         (build_x_component_ref): Likewise.
7302         (build_class_member_access_expr): New function.
7303         (finish_class_member_access_expr): Likewise.
7304         (build_ptrmemfunc_access_expr): Likewise.
7305         (get_member_function_from_ptrfunc): Use
7306         build_ptrmemfunc_access_expr.
7307         (build_binary_op): Likewise.
7308         (build_unary_op): Likewise.
7309         (build_ptrmemfunc): Likewise.
7310         (pfn_from_ptrmemfunc): Likewise.
7311         * typeck2.c (build_m_component_ref): Adjust comment.
7313 2002-08-07  Neil Booth  <neil@daikokuya.co.uk>
7315         * Make-lang.in (CXX_C_OBJS): Update.
7316         * cp-lang.c (LANG_HOOKS_DECODE_OPTION): Use c_common_decode_option.
7317         * cp-tree.h (cxx_decode_option): Remove.
7318         * decl2.c (compare_options, lang_f_options, unsupported_options,
7319         cxx_decode_option): Remove.
7321 2002-08-06  Gabriel Dos Reis  <gdr@nerim.net>
7323         * typeck.c (build_x_unary_op): Handle pointer-to-member.
7325 2002-08-05  Geoffrey Keating  <geoffk@redhat.com>
7327         * class.c: Don't include obstack.h.
7328         (popclass):
7329         * decl2.c: Delete bogus comment.
7330         * error.c: Don't include obstack.h.
7331         * except.c: Likewise.
7332         (dump_type): Correct comment.
7333         * method.c: Don't include obstack.h.
7334         * tree.c: Likewise.
7336 2002-08-04  Gabriel Dos Reis  <gdr@nerim.net>
7338         Fix PR/2213
7339         * cvt.c (cp_convert_to_pointer): Reject conversions from integral
7340         expressions to pointer-to-data-member of pointer-to-member-functions.
7342 2002-08-04  Geoffrey Keating  <geoffk@redhat.com>
7344         * cvt.c (ocp_convert): Delete obsolete code.
7345         * parse.y (permanent_obstack): Delete declaration.
7346         * pt.c (permanent_obstack): Delete declaration.
7347         * repo.c (permanent_obstack): Delete declaration.
7348         (open_repo_file): Use xmalloc instead of permanent_obstack.
7349         (init_repo): Use xstrdup instead of permanent_obstack.
7351 2002-08-04  Nathan Sidwell  <nathan@codesourcery.com>
7353         * cp-tree.h (VF_DERIVED_VALUE): Remove.
7354         * class.c (finish_struct_1): Use VF_BINFO_VALUE not VF_DERIVED_VALUE.
7356 2002-08-03  Nathan Sidwell  <nathan@codesourcery.com>
7358         PR 7470.
7359         C++ ABI change - vfunc ordering.
7360         * class.c (add_virtual_function): Remove.
7361         (dfs_modify_all_vtables): Take list of all declared
7362         virtuals. Assign all that are not in primary base.
7363         (check_for_override): Adjust comments.
7364         (create_vtable_ptr): Take single list of virtuals. Build chain
7365         of declared virtuals here.
7366         (layout_class_type): Take single list of virtuals. Adjust.
7367         (finish_struct_1): Keep virtuals on single list. Adjust.
7369 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
7371         * init.c (build_member_call): Use build_new_method_call, not
7372         build_method_call.
7374 2002-08-02  Krister Walfridsson  <cato@df.lth.se>
7376         * Make-lang.in (spew.o, lex.o, pt.o): Add path to parse.h dependencies.
7378 2002-08-02  Mark Mitchell  <mark@codesourcery.com>
7380         * call.c (build_method_call): Issue a more helpful error message
7381         about ambiguous method names.
7383 2002-08-02  Nathan Sidwell  <nathan@codesourcery.com>
7385         * tree.c (build_shared_int_cst): Make cache file scope, and
7386         GTY it.
7388 2002-08-02  Jason Merrill  <jason@redhat.com>
7390         * cp-lang.c (LANG_HOOKS_EXPR_SIZE): Define.
7391         (cp_expr_size): New fn.
7392         * call.c (build_over_call): Lose empty class hackery.
7393         (convert_arg_to_ellipsis): Promote non-POD warning to error.
7394         * typeck.c (build_modify_expr): Don't use save_expr on an lvalue.
7396         * semantics.c (expand_body): Do tree optimization in the function
7397         context, too.
7399 2002-08-01  Neil Booth  <neil@daikokuya.co.uk>
7401         * cp-tree.h: Move all warning and flag declarations to c-common.h.
7402         * decl.c: Move all warning and flag variables to c-common.c.
7403         * decl2.c: Move all warning and flag variables to c-common.c.
7404         * lex.c (flag_digraphs): Remove.
7405         (warn_traditional): Now in c-common.c.
7407 2002-07-31  Mark Mitchell  <mark@codesourcery.com>
7409         * call.c (build_field_call): Do not look up the field by name.
7410         (build_method_call): Simplify.
7411         (struct z_candidate): Add access_path and conversion_path.  Remove
7412         basetype_path.
7413         (convert_class_to_reference): Adjust use of
7414         add_function_candidate.
7415         (add_candidate): Add conversion_path argument.
7416         (add_function_candidate): Use it.
7417         (add_conv_dndidate): Likewise.
7418         (build_builtin_candidate): Likewise.
7419         (add_template_candidate_real): Add conversion_path argument.
7420         (add_template_conv_candidate): Likewise.
7421         (add_template_candidate): Likewise.
7422         (build_user_type_conversion_1): Use it.
7423         (build_new_function_call): Remove name lookup code.  Adjust use of
7424         add_template_candidate and add_function_candidate.
7425         (build_new_op): Likewise.
7426         (convert_like_real): Use build_special_member_call.
7427         (build_over_call): Use cand->conversion_path.
7428         (build_special_member_call): New method.
7429         (build_new_method_call): Remove name lookup code.
7430         * cp-tree.def (OFFSET_REF): Update documentation.
7431         (TEMPLATE_ID_EXPR): Likewise.
7432         * cp-tree.h (BASELINK_ACCESS_BINFO): New macro.
7433         (BASELINK_OPTYPE): Likewise.
7434         (build_new_method_call): Adjust prototype.
7435         (build_special_member_call): New method.
7436         (build_baselink): New method.
7437         (build_offset_ref_call_from_tree): Likewise.
7438         (build_call_from_tree): Likewise.
7439         (finish_qualified_call_expr): Remove.
7440         (finish_call_expr): Adjust prototype.
7441         (build_x_function_call): Remove.
7442         * cvt.c (ocp_convert): Use build_special_member_call.
7443         * decl2.c (reparse_absdcl_as_expr): Use finish_call_expr.
7444         (build_expr_from_tree): Adjust handling for TEMPLATE_ID_EXPR and
7445         CALL_EXPR.
7446         (build_offset_ref_call_from_tree): New function.
7447         (build_call_from_tree): Likewise.
7448         * init.c (expand_cleanup): Use build_special_member_call.
7449         (expand_default_init): Likewise.
7450         (build_member_call): Use finish_call_expr.
7451         (build_new_1): Use build_special_member_call.
7452         (push_base_cleanups): Likewise.
7453         * method.c (do_build_assign_ref): Likewise.
7454         * parse.y (template_id): Do not pass a COMPONENT_REF to
7455         lookup_template_function.
7456         (primary): Use parse_finish_call_epxr, not finish_call_expr.
7457         (parse_finish_call_expr): New function.
7458         * pt.c (lookup_template_function): Add assertions.
7459         * search.c (lookup_base): Allow T to be a binfo.
7460         (build_baselink): New function.
7461         (lookup_member): Use it.
7462         * semantics.c (finish_call_expr): Do not do name lookup.
7463         (finish_object_call_expr): Remove #if 0'd code.
7464         (finish_qualified_call_expr): Remove.
7465         * typeck.c (build_x_function_call): Remove.
7466         (build_static_case): Use build_special_member_call.
7467         * typeck2.c (build_functional_cast): Likewise.
7469 2002-07-30  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
7471         * lang-specs.h: Remove __GXX_ABI_VERSION, moved to gcc.c.
7473 2002-07-30  Gabriel Dos Reis  <gdr@nerim.net>
7475         * cp-tree.h (VF_DERIVED_VALUE): Restore from previous deletion.
7477 2002-07-30  Nathan Sidwell  <nathan@codesourcery.com>
7479         * cp-tree.h (CLASSTYPE_VFIELDS, VF_*, BV_*): Add more
7480         documentation.
7482 2002-07-29  Alan Modra  <amodra@bigpond.net.au>
7484         * cp-tree.h: Comment typo fix.
7486 2002-07-29  Richard Earnshaw  <rearnsha@arm.com>
7488         * spew.c (space_for_token): Allocate zeroed memory for a new token
7489         chunk.
7491 2002-07-27  Roger Sayle  <roger@eyesopen.com>
7493         * decl.c (builtin_function_1): No need to explicitly mark
7494         BUILT_IN_RETURN and BUILT_IN_EH_RETURN as noreturn.
7496 2002-07-27  Roger Sayle  <roger@eyesopen.com>
7498         * decl2.c (cxx_decode_option): Support -fno-builtin-foo.
7500 2002-07-26  Jason Merrill  <jason@redhat.com>
7502         * call.c (build_over_call): Likewise.
7503         (cp_convert_parm_for_inlining): New fn.
7504         (convert_for_arg_passing): New fn.
7505         (convert_default_arg, build_over_call): Use it.
7506         (type_passed_as): New fn.
7507         * pt.c (tsubst_decl): Use it.
7508         * decl2.c (cp_build_parm_decl): New fn.
7509         (build_artificial_parm): Use it.
7510         (start_static_storage_duration_function): Likewise.
7511         * decl.c (start_cleanup_fn, grokdeclarater): Likewise.
7512         (grokparms): Don't mess with DECL_ARG_TYPE.
7513         * typeck.c (convert_arguments): Use convert_for_arg_passing.
7514         * cp-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
7515         Define.
7516         * cp-tree.h: Declare new fns.
7518 2002-07-26  Neil Booth  <neil@daikokuya.co.uk>
7520         * cp-tree.h (flag_operator_names): Remove.
7521         * decl2.c (flag_operator_names): Remove.
7522         (lang_f_options): Remove operator-names.
7523         * lex.c (D_OPNAME): Remove.
7524         (reswords): Remove operator names.
7525         (rid_to_yy): Remove operator names.
7526         (init_reswords): No need to handle D_OPNAME.
7527         * spew.c (read_process_identifier): There are no operator
7528         names.
7530 2002-07-26  Jason Merrill  <jason@redhat.com>
7532         * dump.c (cp_dump_tree): Call c_dump_tree.
7533         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
7535 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
7537         * error.c (print_whitespace): Remove.
7538         * g++spec.c (LIBUNWIND): Move.
7539         * mangle.c (mangled_position, write_signed_number): Remove.
7541 2002-07-25  Neil Booth  <neil@daikokuya.co.uk>
7543         * decl2.c (cxx_decode_option): Similarly.
7545 2002-07-25  Gabriel Dos Reis  <gdr@nerim.net>
7547         * cp-tree.h (cxx_sizeof_nowarn): Now a macro.
7548         (cxx_sizeof_or_alignof_type): Take a third argument.
7549         (cxx_sizeof): Adjust definition.
7550         (cxx_alignof): Likewise.
7551         * init.c (build_delete): Use cxx_sizeof_nowarn to reflect reality.
7552         * typeck.c (cxx_sizeof_or_alignof_type): Take a third argument for
7553         complaining.
7554         (c_sizeof_nowarn): Remove definition.
7555         (build_unary_op): Use cxx_sizeof_nowarn.
7557 2002-07-24  Geoffrey Keating  <geoffk@redhat.com>
7559         * tree.c (cp_build_qualified_type_real): When copying
7560         pointer-to-method types, unshare the record that holds
7561         the cached pointer-to-member-function type.
7563 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
7565         * cp-tree.h (FILE_FUNCTION_PREFIX_LEN): Remove.
7567 2002-07-23  Gabriel Dos Reis  <gdr@nerim.net>
7569         Fix PR/7363:
7570         * typeck.c (cxx_sizeof_or_alignof_type): New function.
7571         (c_sizeof): Remove definition.
7572         (expr_sizeof): Use cxx_sizeof.
7573         * decl2.c (build_expr_from_tree): Use cxx_sizeof_or_alignof_type.
7574         * decl.c (finish_destructor_body): Use cxx_sizeof.
7575         * semantics.c (finish_alignof): Likewise.
7576         (finish_alignof): Use cxx_alignof.
7577         * cp-tree.h (cxx_sizeof, cxx_alignof): New macros.
7578         (cxx_sizeof_or_alignof_type): Declare.
7579         (my_friendly_assert): Move to ../c-common.h.
7581 2002-07-23  Neil Booth  <neil@daikokuya.co.uk>
7583         * class.c, method.c, pt.c, search.c: Don't define obstack macros.
7585 2002-07-22  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7587         PR c++/7347, c++/7348
7588         * cp-tree.h (tsubst_flags_t): Add tf_parsing.
7589         * decl.c (make_typename_type): Use it.
7590         (make_unbound_class_template): Likewise.
7591         (lookup_name_real): Don't call type_access_control if scope is
7592         template parameter dependent.
7593         * parse.y (template_arg): Call make_unbound_class_template with
7594         tf_parsing set.
7595         (nest_name_specifier): Call make_typename_type with tf_parsing set.
7596         (typename_sub0): Likewise.
7597         (typename_sub1): Likewise.
7598         (instantiate_decl): Push class scope.
7599         * pt.c (regenerate_decl_from_template): Call pushclass and popclass
7600         for both static variable and member function template.
7601         (instantiate_decl) Call pushclass and popclass when tsubst'ing type
7602         and arguments.
7603         * search.c (type_access_control): Do type access for TEMPLATE_DECL
7604         too.
7606 2002-07-20  Roger Sayle  <roger@eyesopen.com>
7608         * decl2.c (cxx_decode_option): Simplify -fhandle-exceptions
7609         test by using positive_option.  Make whitespace consistent.
7611 2002-07-20  Gabriel Dos Reis  <gdr@nerim.net>
7613         * spew.c (struct unparsed_test): Replace 'filename' and 'lineno'
7614         members with 'locus'.  Adjust use throughout.
7615         (struct feed):  Likewise.
7616         (alloc_unparsed_test): Change prototype, take a 'const location_t *'.
7617         Adjust use.
7618         (snarf_defarg): Use error(), not error_with_file_and_line().
7620 2002-07-19  Chris Demetriou  <cgd@broadcom.com>
7622         * lang-specs.h (@c++): Include "%2" (cc1plus_spec) wherever
7623         cpp_options is included.
7625 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7627         PR c++/2862, c++/2863
7628         * pt.c (determine_specialization): Compare the length of
7629         TYPE_ARG_TYPES.  Tidy.
7631 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7633         PR c++/3797
7634         * decl.c (duplicate_decls): Don't propagate inlining parameters from
7635         olddecl to newdecl when newdecl is a specialization of the
7636         instantiation olddecl.
7638 2002-07-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7640         PR c++/4802, c++/5387
7641         * decl.c (make_typename_type): Use enforce_access.
7643 2002-07-17  Scott Snyder <snyder@fnal.gov>
7645         PR c++/7320
7646         * rtti.c (get_tinfo_decl): Set DECL_COMDAT.
7648 2002-07-12  Mark Mitchell  <mark@codesourcery.com>
7650         * class.c (add_method): Correct handling of conversion operators.
7652 2002-07-11  Mark Mitchell  <mark@codesourcery.com>
7654         PR c++/7224
7655         * class.c (add_method): Simplify.
7657 2002-07-11  Jason Merrill  <jason@redhat.com>
7659         PR c++/7279
7660         * tree.c (cp_copy_res_decl_for_inlining): Also copy
7661         TREE_ADDRESSABLE.
7663 2002-07-10  Graham Stott  <graham.stott@btinternet.com>
7665         * pt.c (template_parm_this_level_p, push_template_decl_real):
7666         Pass depth as int pointer.
7668 2002-07-11  Tim Josling  <tej@melbpc.org.au>
7670         Remove front end hard coding from gengtype.c.
7672         * config-lang.in (gtfiles): Add files needed for this front end.
7674 2002-07-10  Mark Mitchell  <mark@codesourcery.com>
7676         * cp-tree.h (unqualified_name_lookup_error): Declare it.
7677         (begin_function_definition): Adjust prototype.
7678         * lex.c (unqualified_name_lookup_error): New function, split out
7679         from ...
7680         (do_identifier): ... here.
7681         * parse.y (parse_begin_function_definition): New function.
7682         (fn.def1): Use it.
7683         * semantics.c (begin_function_definition): Accept decl-specifiers
7684         and attributes as separate parameters.
7686 2002-07-10  Jason Merrill  <jason@redhat.com>
7688         PR c++/6255
7689         * decl.c (lookup_name_real): Build a new TYPENAME_TYPE rather than
7690         modifying the old one.
7692 2002-07-09  Mark Mitchell  <mark@codesourcery.com>
7694         * cp-tree.h (constructor_name_p): Declare it.
7695         (check_template_template_default_arg): Likewise.
7696         * class.c (handle_using_decl): Use constructor_name_p.
7697         * decl.c (grokdeclarator): Likewise.
7698         * decl2.c (constructor_name_p): Define it.
7699         * init.c (build_member_call): Use constructor_name_p.
7700         * parse.y (template_parm): Use check_template_template_default_arg.
7701         * pt.c (check_explicit_specialization): Use constructor_name_p.
7702         * semantics.c (check_template_template_default_arg): New function.
7704 2002-07-08  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7706         * pt.c (can_complete_type_without_circularity): Add static to
7707         function definition.
7709 2002-07-08  Mark Mitchell  <mark@codesourcery.com>
7711         * cp-tree.h (have_extern_spec): Declare it
7712         * decl.c (have_extern_spec): Define it.
7713         (start_decl): Eliminate use of used_extern_spec.
7714         (start_function): Likewise.
7715         * parse.y (have_extern_spec): Remove declaration.
7716         (used_extern_spec): Likewise.
7717         (frob_specs): Eliminate use of used_extern_spec.
7718         (.hush_warning): Likewise.
7720 2002-07-07  Mark Mitchell  <mark@codesourcery.com>
7722         * Make-lang.in (cp/parse.o): Depend on decl.h.
7723         * cp-tree.h (do_decl_instantiation): Change prototype.
7724         * parse.y: Include decl.h.
7725         (parse_decl_instantiation): New function.
7726         (explicit_instantiation): Use it.
7727         * pt.c (do_decl_instantiation): Accept a DECL, not a DECLARATOR
7728         and DECLSPECS.
7730 2002-07-07  Roger Sayle  <roger@eyesopen.com>
7732         * error.c (dump_function_name): Use DECL_TEMPLATE_RESULT for
7733         constructor and destructor tests when passed a TEMPLATE_DECL.
7735 2002-07-05  Jason Merrill  <jason@redhat.com>
7737         * cvt.c (cp_convert_to_pointer): Call force_fit_type for null
7738         pointers.
7740         PR optimization/7145
7741         * tree.c (cp_copy_res_decl_for_inlining): Also copy DECL_INITIAL.
7743 2002-07-05  Nathan Sidwell  <nathan@codesourcery.com>
7745         Repair damage on weak-impared targets caused by my previous patch.
7746         * cp-tree.h (import_export_tinfo): Add parameter.
7747         * decl2.c (import_export_tinfo): Add parameter, post adjust
7748         DECL_COMDAT.
7749         * rtti.c (emit_tinfo_decl): DECL_COMDAT is (nearly) always setup by
7750         import_export_tinfo.
7752 2002-07-03  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7754         PR c++/6944
7755         * init.c (build_aggr_init): Remove qualifiers of init before calling
7756         build_vec_init.
7757         (build_vec_init): Flatten multi-dimensional array during cleanup.
7758         (build_vec_delete_1): Abort if the type of each element is array.
7760 2002-07-03  Graham Stott  <graham.stott@btinternet.com>
7762         * pt.c (instantiate_class_template): Fix typo.
7764 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7766         * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
7767         by CVS conflict in my last patch.
7769 2002-07-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7771         PR c++/6716
7772         * pt.c (can_complete_type_without_circularity): New function.
7773         (instantiate_class_template): Use it.
7774         * typeck2.c (cxx_incomplete_type_diagnostic): Improve error
7775         message due to incomplete fields.
7777 2002-07-01  Mark Mitchell  <mark@codesourcery.com>
7779         PR c++/7112
7780         * mangle.c (write_expression): Add mangling for sizeof when
7781         applied to a type.
7782         * operators.def: Remove stale comment.
7784 2002-06-30  Nathan Sidwell  <nathan@codesourcery.com>
7786         * cp-tree.h (CPTI_TINFO_DECL_TYPE): Replace with ...
7787         (CPTI_TYPE_INFO_PTR_TYPE): ... this.
7788         (tinfo_decl_type): Replace with ...
7789         (type_info_ptr_type): ... this.
7790         (import_export_tinfo): Declare.
7791         (tinfo_decl_p): Rename to ...
7792         (unemitted_tinfo_decl_p): ... this.
7793         * decl2.c (import_export_decl): Break out tinfo handling into ...
7794         (import_export_tinfo): ... here. New function.
7795         (finish_file): Adjust.
7796         * rtti.c (TINFO_REAL_NAME): New macro.
7797         (init_rtti_processing): Create the tinfo types.
7798         (get_tinfo_decl_dynamic): Use type_info_ptr_type, get_tinfo_ptr.
7799         (get_tinfo_decl): Adjust.
7800         (get_tinfo_ptr): New function.
7801         (get_type_id): Use it.
7802         (tinfo_base_init): Create vtable decl here, if it doesn't exist.
7803         (ptr_initializer): Use get_tinfo_ptr.
7804         (ptm_initializer): Likewise.
7805         (synthesize_tinfo_var): Break into ...
7806         (get_pseudo_ti_init): ... this. Just create the initializer.
7807         (get_pseudo_ti_desc): .. and this.
7808         (create_real_tinfo_var): Remove.
7809         (create_pseudo_type_info): Don't create the vtable decl here.
7810         (get_vmi_pseudo_type_info): Remove.
7811         (create_tinfo_types): Adjust.
7812         (tinfo_decl_p): Rename to ...
7813         (unemitted_tinfo_decl_p): ... here. Adjust.
7814         (emit_tinfo_decl): Adjust. Create the initializer.
7816 2002-06-27  Mark Mitchell  <mark@codesourcery.com>
7818         PR c++/6695
7819         * pt.c (tsubst_friend_class): Substitute into the context of the
7820         friend before using it.
7822 2002-06-26  Mark Mitchell  <mark@codesourcery.com>
7824         * cp-tree.h (xref_tag): Change prototype.
7825         (handle_class_head): Likewise.
7826         (build_x_component_ref): Likewise.
7827         * decl.c (cxx_init_decl_processing): Adjust call to xref_tag.
7828         (xref_tag): Take attributes as a separate parameter.
7829         (xref_tag_from_type): Adjust call to xref_tag.
7830         * decl2.c (build_expr_from_tree): Adjust call to
7831         build_x_component_ref.
7832         (handle_class_head): Take attributes as a separate parameter.
7833         * parse.y (parse_xref_tag): New function.
7834         (parse_handle_class_head): Likewise.
7835         (primary): Use parse_xref_tag.
7836         (class_head_decl): Use parse_handle_class_head.
7837         (class_head_defn): Likewise.
7838         * rtti.c (init_rtti_processing): Adjust call to xref_tag.
7839         (build_dynamic_cast_1): Likewise.
7840         (create_pseudo_type_info): Likewise.
7841         (emit_support_tinfos): Likewise.
7842         * typeck.c (build_object_ref): Adjust call to
7843         build_x_component_ref.
7844         (build_x_component_ref): Remove protect parameter.
7846 2002-06-25  Mark Mitchell  <mark@codesourcery.com>
7848         * call.c (build_op_delete_call): Use BASELINK_FUNCTIONS.
7849         * class.c (handle_using_decl): Likewise.
7850         (instantiate_type): Likewise.
7851         * cp-tree.h (BASELINK_FUNCTIONS): New macro.
7852         (xref_basetypes): Change prototype.
7853         (begin_mem_initializers): New function.
7854         (get_overloaded_fn): Likewise.
7855         * decl.c (xref_basetypes): Simplify.
7856         * error.c (dump_expr): Use BASELINK_FUNCTIONS.
7857         * init.c (build_offset_ref): Likewise.
7858         * parse.y (base_init): Use begin_mem_initializers().
7859         (structsp): Adjust call to xref_basetypes.
7860         * pt.c (determine_specialization): Use BASELINK_FUNCTIONS.
7861         (instantiate_class_template): Adjust call to xref_basetypes.
7862         * semantics.c (begin_mem_initializers): New function.
7863         * tree.c (is_overloaded_fn): Use BASELINK_FUNCTIONS.
7864         (really_overlaoded_fn): Likewise.
7865         (get_overloaded_fn): New function.'
7866         (get_first_fn): USe BASELINK_FUNCTIONS.
7868 2002-06-24  Mark Mitchell  <mark@codesourcery.com>
7870         * cp-tree.h (SCALAR_TYPE_P): New macro.
7871         (check_for_out_of_scope_variable): New function.
7872         (at_class_scope_p): Likewise.
7873         (finish_fname): Likewise.
7874         * class.c (finish_struct): Use at_function_scope_p.
7875         * decl.c (check_for_out_of_scope_variable): New function, split
7876         out from do_identifier.
7877         (finish_enum): Use at_function_scope_p.
7878         * lex.c (do_identifier): Use check_for_out_of_scope_variable.
7879         * parse.y (VAR_FUNC_NAME): Give it <ttype>.  Use finish_fname.
7880         (primary): Use at_function_scope_p.
7881         * search.c (at_class_scope_p): New function.
7882         * semantics.c (finish_fname): Likewise.
7883         (check_multiple_declarators): Use at_function_scope_p.
7885 2002-06-23  Mark Mitchell  <mark@codesourcery.com>
7887         * parse.y (parse_scoped_id): New function.
7888         (primary): Use it.
7889         * cp-tree.h (do_scoped_id): Adjust declaration.
7890         * lex.c (do_scoped_id): Remove call to yylex.
7891         * decl2.c (build_expr_from_tree): Adjust use of do_scoped_id.
7892         * typeck2.c (add_exception_specifier): Use tree_cons, rather than
7893         expanding it inline.
7895 2002-06-23  Matt Thomas  <matt@3am-software.com>
7897         * decl.c (finish_function): Change "#ifdef VMS_TARGET" to
7898         "#if VMS_TARGET".
7900 2002-06-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7902         * mangle.c (integer_type_codes): Const-ify.
7904 2002-06-20  Richard Henderson  <rth@redhat.com>
7906         PR c++/6747
7907         * typeck.c (mark_addressable): Don't test TREE_ADDRESSABLE early.
7908         Call put_var_into_stack.
7910 2002-06-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7912         * spew.c (remove_last_token): Use ARRAY_SIZE in lieu of explicit
7913         array size calculation.
7915 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7917         PR c++/6892
7918         * pt.c (tsubst_expr): Handle FILE_STMT.
7920 2002-06-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
7922         PR c++/6723
7923         * pt.c (lookup_template_class): Don't build complete argument of
7924         BOUND_TEMPLATE_TEMPLATE_PARM if appeared as a default template
7925         argument.
7927 2002-06-19  Akim Demaille  <akim@epita.fr>
7929         * parse.y (TYPENAME): Rename as tTYPENAME to avoid the clash with
7930         decl.h's TYPENAME.
7931         * spew.c, lex.c: Adjust.
7932         * parse.y (explicit_instantiation): Add empty action to override
7933         the default $$ = $1 where it introduces a type clash.
7935 2002-06-14  Jason Merrill  <jason@redhat.com>
7937         * semantics.c (begin_for_stmt): Push the 'for' scope before
7938         adding the FOR_STMT.
7940         C++ ABI changes.
7941         * class.c (build_base_field): Set DECL_PACKED.
7942         (layout_class_type): Don't use tail padding of PODs.
7943         * mangle.c (write_unqualified_name): Fix template conversion op
7944         mangling.
7946 2002-06-16  Richard Henderson  <rth@redhat.com>
7948         PR opt/6793
7949         * tree.c (cp_cannot_inline_tree_fn): Don't short-circuit test
7950         after template instantiation.
7952 2002-06-16  Richard Henderson  <rth@redhat.com>
7954         * cp-tree.h, decl2.c (flag_ms_extensions): Move to c-common.
7956 2002-06-15  Gabriel Dos Reis  <gdr@codesourcery.com>
7958         * cp-tree.h (compiler_error): Remove declaration.
7959         * lex.c (compiler_error): Remove definition.
7961 2002-06-14  Steve Ellcey  <sje@cup.hp.com>
7963         * g++spec.c (LIBUNWIND): New.
7964         (lang_specific_driver): Add it if USE_UNWIND_EXCEPTIONS is set.
7966 2002-06-13  Jessica Han  <jessica@cup.hp.com>
7968         * class.c (build_vtable): Use TARGET_VTABLE_ENTRY_ALIGN.
7969         (build_vtbl_initializer): Honor TARGET_VTABLE_DATA_ENTRY_DISTANCE.
7970         (build_vbase_offset_vtbl_entries): Likewise.
7971         * rtti.c (build_headof): Likewise.
7972         (get_tinfo_decl_dynamic): Likewise.
7973         (create_pseudo_type_info): Likewise.
7975 2002-06-12  Stan Shebs  <shebs@apple.com>
7977         * mpw-config.in: Remove file, no longer used.
7978         * mpw-make.sed: Ditto.
7980 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
7982         * decl2.c: Update call to cpp_handle_option.
7984 2002-06-07  H.J. Lu  (hjl@gnu.org)
7986         * decl2.c (flag_use_cxa_atexit): Set to DEFAULT_USE_CXA_ATEXIT.
7988 2002-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
7990         * error.c (cp_error_at): Fix typo.
7992 2002-06-04  Gabriel Dos Reis  <gdr@codesourcery.com>
7994         * error.c (cp_diagnostic_starter): Adjust call.
7995         (maybe_print_instantiation_context): Change prototype to take a
7996         'diagnostic_info *'.
7997         (print_instantiation_full_context): Likewise.
7998         (print_instantiation_partial_context): Likewise.
7999         (cp_diagnostic_starter): Likewise.
8000         (cp_diagnostic_finalizer): Likewise.
8001         (cp_print_error_function): Likewise.
8002         (cp_printer): Take a secondary parameter as a 'text_info *'.
8003         Remove output_state savings.  Adjust calls.
8005 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
8007         * pt.c (inline_parm_levels): Mark for GC.
8009         * mangle.c (start_mangling): Allocate G.substitutions here...
8010         (init_mangle): ... rather than here.
8011         (finish_mangling): Clear the varray pointer when done with it.
8012         * spew.c (yylexstring): Don't use VARRAY_FREE.
8013         * search.c (bfs_walk): Don't use VARRAY_FREE.
8014         * decl2.c (pending_statics): Use gengtype to mark.
8015         (deferred_fns): Likewise.
8016         (ssdf_decls): Likewise.
8017         (init_decl2): Delete.
8018         * decl.c (pop_from_top_level): Don't use VARRAY_FREE.
8019         (cxx_init_decl_processing): Don't call init_decl2.
8020         (cxx_pop_function_context): Don't use VARRAY_FREE.
8021         * cp-tree.h (struct saved_scope): No need for special marking
8022         of varrays.
8023         (struct language_function): Likewise.
8024         (local_classes): Use gengtype to mark.
8025         (init_decl2): Delete prototype.
8026         * class.c (init_class_processing): Don't use
8027         ggc_add_tree_varray_root.
8028         (build_vtbl_initializer): Don't use VARRAY_FREE.
8030         * decl.c (typename_compare): Don't use same_type_p.
8032         * decl.c: Include hashtab.h instead of hash.h.
8033         (typename_hash): Update to use htab_h.
8034         (typename_compare): Likewise.
8035         (typename_htab): Use gengtype to mark.
8036         (build_typename_type): Update to use htab_h.
8037         * Make-lang.in (cp/decl.o): Use HASHTAB_H instead of hash.h.
8039         * Make-lang.in (gt-cp-tree.h): New rule.
8040         (cp/tree.o): Depend on gt-cp-tree.h.
8041         * config-lang.in (gtfiles): Add cp/tree.c.
8042         * tree.c: Include gt-cp-tree.h.
8043         (list_hash_table): Use gengtype to mark.
8044         (init_tree): Use gengtype to mark trees.
8046         * Make-lang.in (cp/decl.o): Add debug.h dependency.
8047         * call.c (struct z_candidate): Use gengtype.
8048         (USER_CONV_CAND): Use WRAPPER_ZC.
8049         (convert_class_to_reference): Use build_zc_wrapper.
8050         (build_type_conversion_1): Likewise.
8051         (build_over_call): Use WRAPPER_ZC.
8052         (add_warning): Use build_zc_wrapper.
8053         * cp-lang.c (LANG_HOOKS_MARK_TREE): Delete.
8054         * cp-tree.h (struct lang_identifier): Use gengtype.
8055         (struct template_parm_index_s): Likewise.
8056         (struct ptrmem_cst): Likewise.
8057         (struct tree_binding): Likewise.
8058         (struct tree_overload): Likewise.
8059         (struct tree_srcloc): Likewise.
8060         (struct tree_wrapper): Likewise.  Also modify to have a pointer
8061         to struct z_candidate rather than void.
8062         (enum cp_tree_node_structure_enum): New.
8063         (union lang_tree_node): New.
8064         (cxx_mark_tree): Delete prototype.
8065         (cp_tree_node_structure): New prototype.
8066         (build_ptr_wrapper): Delete prototype.
8067         (build_int_wrapper): Delete prototype.
8068         (build_zc_wrapper): New prototype.
8069         * decl.c: Include debug.h
8070         (cxx_mark_tree): Delete.
8071         (cp_tree_node_structure): New.
8072         * tree.c (build_ptr_wrapper): Delete.
8073         (build_int_wrapper): Delete.
8074         (build_zc_wrapper): New.
8076         * cp-tree.h [! ENABLE_TREE_CHECKING] (LANG_TYPE_PTRMEM_CHECK):
8077         Correct typo.  Patch from k_fukui@highway.ne.jp.
8079         * semantics.c (current_stmt_tree): Update for change to
8080         struct language_function.
8081         (finish_mem_initializers): Likewise.
8082         * decl.c (cxx_init_decl_processing): Don't set mark_lang_status.
8083         * cp-tree.h (struct language_function): Rename from
8084         cp_language_function.  Change all uses.
8085         (cp_function_chain): Don't need to cast.
8087         * class.c (duplicate_tag_error): Reset discriminator.
8088         (check_bases_and_members): Update for data structure changes.
8089         * cp-tree.h (struct lang_id2): Use gengtype.
8090         (flagged_type_tree): Likewise.
8091         (SET_LANG_ID): Use GGC on struct lang_id2.
8092         (struct cp_language_function): Use gengtype.  Remove field
8093         'x_vcalls_possible_p'.
8094         (current_vcalls_possible_p): Delete.
8095         (struct lang_type_header): New.
8096         (struct lang_type_class): Rename from struct lang_type.  Include
8097         struct lang_type_header.
8098         (struct lang_type_ptrmem): New.
8099         (struct lang_type): New.
8100         (LANG_TYPE_CLASS_CHECK): New.  Use it in all the appropriate macros.
8101         (LANG_TYPE_PTRMEM_CHECK): New.  Use it in all the appropriate macros.
8102         (TYPE_SET_PTRMEMFUNC_TYPE): Set discriminator, update for changes.
8103         (struct lang_decl_flags): Use gengtype.  Add discriminators.
8104         (struct lang_decl): Use gengtype.  Add and use discriminators.
8105         Update the macros that reference moved fields.
8106         (LANG_DECL_U2_CHECK): New function.  Use it when appropriate.
8107         (SET_DECL_THUNK_P): Set discriminator too.
8108         (clear_inline_text_obstack): Delete prototype.
8109         (finish_inline_definitions): Delete prototype.
8110         (mark_pending_inlines): Delete prototype.
8111         (lang_check_failed): New prototype.
8112         * decl.c (struct named_label_use_list): Use gengtype.
8113         (struct named_label_list): Likewise.
8114         (mark_binding_level): Delete.
8115         (mark_named_label_lists): Delete.
8116         (push_local_name): Set discriminator on DECL_LANG_SPECIFIC.
8117         (cxx_init_decl_processing): Use generated marker routine.
8118         (begin_destructor_body): Delete dead set to
8119         current_vcalls_possible_p.
8120         (mark_lang_function): Delete.
8121         (mark_cp_function_context): Delete.
8122         (lang_mark_tree): Use generated marker routines.
8123         * decl2.c (start_objects): Set discriminator when setting
8124         GLOBAL_INIT_PRIORITY.
8125         * lex.c (retrofit_lang_decl): Set discriminators.
8126         (copy_lang_type): Update for changes to lang_type structure.
8127         (cp_make_lang_type): Set discriminator.
8128         * parse.y: Use gengtype on YYLVAL.  Don't use dots in identifiers.
8129         * search.c: Include ggc.h.
8130         * semantics.c (anon_aggr_type_p): Use the macro, don't hand-code it.
8131         (finish_inline_definitions): Delete.
8132         * spew.c (struct token): Use gengtype.
8133         (struct token_chunk): New.
8134         (struct unparsed_text): Use gengtype.  Store tokens in chunks.
8135         (struct feed): Use gengtype.
8136         (feed_obstack): Delete.
8137         (feed): Mark as GC root.
8138         (pending_inlines): Mark as GC root.
8139         (pending_inlines_tail): Likewise.
8140         (processing_these_inlines): Likewise.
8141         (token_obstack): Make static.
8142         (first_token): Likewise.
8143         (init_spew): Don't initialize deleted things; use gengtype for roots.
8144         (clear_inline_text_obstack): Delete.
8145         (feed_input): Use GC for struct feed.  Update for changes to
8146         struct unparsed_text.
8147         (mark_pending_inlines): Delete.
8148         (next_token): Rename from add_token.  Change all callers.  Update
8149         for changes to struct unparsed_text.
8150         (space_for_token): New.
8151         (remove_last_token): New.
8152         (alloc_unparsed_text): New.
8153         (snarf_block): Take an unparsed_text.  Update for changes to struct
8154         unparsed_text.
8155         (snarf_method): Update for changes to struct unparsed_text.
8156         (snarf_defarg): Update for changes to struct unparsed_text.
8157         * tree.c (lang_check_failed): New.
8159         * Make-lang.in (gt-cp-call.h gt-cp-decl2.h gt-cp-parse.h
8160         gt-cp-pt.h gt-cp-repo.h gt-cp-spew.h): New rules.
8161         (cp/spew.o): Add dependency on gt-<filename>.h.
8162         (cp/decl2.o): Add dependency on gt-<filename>.h.
8163         (cp/call.o): Add dependency on gt-<filename>.h.
8164         (cp/pt.o): Add dependency on gt-<filename>.h.
8165         (cp/repo.o): Add dependency on gt-<filename>.h.
8166         (cp/parse.o): Add dependency on gt-<filename>.h.
8167         * call.c: Use gengtype for roots.
8168         * config-lang.in (gtfiles): Add cp-tree.h decl.h lex.h call.c
8169         decl2.c parse.y pt.c repo.c spew.c.
8170         * cp-tree.h: Use gengtype for roots.
8171         (struct saved_scope): Use GGC, gengtype.
8172         (cp_parse_init): Delete prototype.
8173         (init_pt): Delete prototype.
8174         * decl.c: Use gengtype for roots.
8175         (mark_saved_scope): Delete.
8176         (cxx_init_decl_processing): Don't call deleted initilisation
8177         routines.
8178         (signed_size_zero_node): Delete, unused.
8179         * decl.h: Use gengtype for roots.
8180         * decl2.c: Use gengtype for roots.
8181         * lex.h: Use gengtype for roots.
8182         * parse.y: Use gengtype for roots.
8183         (cp_parse_init): Delete.
8184         * pt.c: Use gengtype for roots.
8185         (init_pt): Delete.
8186         * repo.c: Use gengtype for roots.
8187         * spew.c: Use gengtype for roots.
8189         * Make-lang.in: Allow for filename changes.  Add gtype-cp.h.
8190         (cp/decl.o): Add dependency on gtype-cp.h.
8191         * decl.c: Remove use of add_deletable_root, use GTY marker instead.
8192         Include gtype-cp.h.  Allow for filename changes.
8194         * Make-lang.in (cp/gt-decl.h): Generate using gengtype.
8195         (cp/decl.o): Add cp/gt-decl.h dependency.
8196         * config-lang.in (gtfiles): New.
8197         * tree.h: Rename struct binding_level to struct cp_binding_level.
8198         * decl.c: Rename struct binding_level to struct cp_binding_level.
8199         Include cp/gt-decl.h.
8200         (struct cp_binding_level): Use gengtype.
8201         (make_binding_level): Use GGC on struct cp_binding_level.
8202         (mark_binding_level): Use gt_ggc_m_cp_binding_level.
8203         (cxx_init_decl_processing): Mark free_binding_level as
8204         deletable.
8206         * decl.c (mark_cp_function_context): Update calling sequence.
8208         * decl.c (start_function): Don't free 'struct
8209         cp_language_function'.
8210         (pop_cp_function_context): Likewise.
8211         (save_function_data): Allocate it using GC.
8212         * semantics.c (genrtl_start_function): Don't free 'struct
8213         cp_language_function'.
8215 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
8217         * lang-specs.h: Use cpp_debug_options.
8219 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
8221         * mangle.c, tree.c: Include real.h.
8222         * Make-lang.in: Update dependency lists.
8224 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
8226         * lex.c: Don't include c-lex.h.
8227         * parse.y, spew.c: Don't include c-lex.h; include c-pragma.h.
8229 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
8231         * spew.c (yyungetc, snarf_block): Remove indent_level handling.
8233 2002-05-22  Richard Henderson  <rth@redhat.com>
8235         * decl.c (obscure_complex_init): Check for VAR_DECL
8236         before using DECL_THREAD_LOCAL.
8238 2002-05-22  Richard Henderson  <rth@redhat.com>
8240         * decl.c (check_tag_decl): Handle RID_THREAD.
8241         (obscure_complex_init): Reject run-time init of tls.
8242         (grokvardecl, grokdeclarator): Handle RID_THREAD.
8243         * lex.c (reswords): Add __thread.
8244         (rid_to_yy): Map RID_THREAD to SCSPEC.
8246 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
8248         * cp-lang.c (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
8249         * cp-tree.h (cxx_post_options): Kill.
8250         * cp-lex.c (cxx_post_options): Kill.
8252 2002-05-21  Richard Henderson  <rth@redhat.com>
8254         * lex.c (rid_to_yy): Add RID_THREAD.
8256 2002-05-21  Alexandre Oliva  <aoliva@redhat.com>
8258         * init.c (build_vec_init): Test for trivial copy-assignment when
8259         copy-assigning arrays.
8261 2002-05-20  Andreas Jaeger  <aj@suse.de>
8263         * init.c (build_default_init): Remove unused variable.
8265 2002-05-20  Alexandre Oliva  <aoliva@redhat.com>
8267         * call.c (any_strictly_viable): New.
8268         (build_new_op): Use it for COMPOUND_EXPR and ADDR_EXPRs.
8270 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8272         * error.c (dump_type) [TYPEOF_TYPE]: Fix parenthesis printing.
8274 2002-05-19  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8276         PR c++/186, DR 259
8277         * pt.c (do_decl_instantiation): Don't complain explicit
8278         instantiation after explicit specialization.
8279         (do_type_instantiation): Likewise.
8281 2002-05-19  Alexandre Oliva  <aoliva@redhat.com>
8283         * cp-tree.h (complete_type_or_diagnostic): Changed prototype,
8284         renamed from...
8285         (complete_type_or_else): ... this.  Redefined as macro.
8286         (cxx_incomplete_type_diagnostic): Declare.
8287         (cxx_incomplete_type_error): Define as macro.
8288         * init.c (build_delete): Warn about incomplete types other than
8289         void, and use the built-in operator delete for them.
8290         * typeck.c (complete_type_or_diagnostic): Renamed from
8291         complete_type_or_else.  Added warn_only argument, passed to...
8292         * typeck2.c (cxx_incomplete_type_diagnostic): ... this.  Print
8293         warnings or errors depending on new warn_only argument.  Renamed
8294         from...
8295         (cxx_incomplete_type_error): ... this.  New implementation in
8296         terms of cxx_incomplete_type_diagnostic.
8298 2002-05-18  Jason Merrill  <jason@redhat.com>
8300         PR c++/6611
8301         * decl2.c (import_export_decl): If we clear
8302         DECL_NOT_REALLY_EXTERN, make sure DECL_EXTERNAL is set.
8304 2002-05-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
8306         PR c++/6620
8307         * pt.c (verify_class_unification): Don't check if PARM is template
8308         parameter dependent.  Simplify.
8309         (unify) [TEMPLATE_PARM_INDEX]: Handle when ARG is a template
8310         parameter dependent expression.
8312 2002-05-14  Jason Merrill  <jason@redhat.com>
8314         * rtti.c (get_tinfo_decl): Don't call comdat_linkage.
8315         Do set DECL_COMDAT.
8316         (synthesize_tinfo_var): Take the public decl.
8317         (create_real_tinfo_var): Likewise.  Check DECL_COMDAT.
8318         (emit_tinfo_decl): Adjust.  Call import_export_decl.
8319         * decl2.c (import_export_decl): Simplify tinfo decl handling.
8321 2002-05-14  Alexandre Oliva  <aoliva@redhat.com>
8323         * cp-tree.h (struct lang_type): Added non_zero_init.
8324         (CLASSTYPE_NON_ZERO_INIT_P): New macro.
8325         (zero_init_p, force_store_init_value, build_forced_zero_init): Declare.
8326         * class.c (check_field_decls): Test non_zero_init.
8327         * cvt.c (convert_to_pointer_force): Use cp_convert_to_pointer for
8328         zero-to-NULL conversions.
8329         * decl.c (obscure_complex_init): Don't reset DECL_INITIAL of a
8330         type that needs zero-initialization without zeros.
8331         (check_initializer_decl): Compute zero-initializer for types
8332         that require a non-trivial one.
8333         * init.c (build_forced_zero_init): New function.
8334         (build_default_init): Use it.
8335         * tree.c (zero_init_p): New function.
8336         * typeck2.c (force_store_init_value): New function.
8337         (process_init_constructor): Create non-trivial zero-initializers
8338         for array members and class fields.
8340 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
8342         * lang-specs.h: Remove redundant -lang-c++.
8344 2002-05-13  Jason Merrill  <jason@redhat.com>
8346         * class.c (build_vtbl_ref_1): Use fixed_type_or_null.
8347         (fixed_type_or_null): See through reference vars.
8348         (build_base_path): Vtable contents are constant.
8349         * typeck.c (get_member_function_from_ptrfunc): Likewise.
8351 2002-05-12  Jason Merrill  <jason@redhat.com>
8353         * cp-lang.c (ok_to_generate_alias_set_for_type): Backend-created
8354         structs are safe.
8356 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
8358         * cp-tree.h (flag_ansi): Remove.
8359         * decl2.c (flag_ansi): Remove.
8360         (cxx_decode_option): Set flag_iso and flag_undef.
8362 2002-05-09  Jason Merrill  <jason@redhat.com>
8364         * typeck.c (get_member_function_from_ptrfunc): Reorganize.
8365         Use subtraction rather than a bitmask to get the index.
8366         * cvt.c (cp_convert_to_pointer): Bail on an error_mark_node.
8368         * pt.c (tsubst_expr) [ASM_STMT]: Copy ASM_INPUT_P.
8370 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
8372         * Make-lang.in (decl2.o): Update.
8373         * cp-tree.h (warn_multichar): Remove.
8374         * decl2.c: Include c-common.h.
8375         (warn_multichar): Remove.
8377 2002-05-03  Jason Merrill  <jason@redhat.com>
8379         * tree.c (build_cplus_array_type): Only const and volatile get
8380         special handling.
8382         * decl.c (BOOL_TYPE_SIZE): Move default to defaults.h.
8384 2002-04-30  Mark Mitchell  <mark@codesourcery.com>
8386         ABI change, returning simple classes from functions.
8387         * class.c (finish_struct_bits): Only mark TREE_ADDRESSABLE if
8388         TYPE_HAS_TRIVIAL_INIT_REF is false or
8389         TYPE_HAS_NONTRIVIAL_DESTRUCTOR is true.
8391 2002-04-30  Jason Merrill  <jason@redhat.com>
8393         PR debug/6436
8394         * decl.c (grokdeclarator): Don't override TYPE_NAME of an
8395         anonymous class with a typedef if there are attributes.
8397 2002-04-29  Paul Eggert  <eggert@twinsun.com>
8399         * parse.y (nomods_initdcl0): Replace $<ttype>3 with $<ttype>$.
8401 2002-04-29  Jakub Jelinek  <jakub@redhat.com>
8403         PR c++/6477
8404         * decl.c (follow_tag_typedef): Check if TYPE_NAME (original) is
8405         non-NULL first.
8407 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
8409         PR c++/6492
8410         * pt.c (tsubst_friend_class): If the friend has an explicit scope,
8411         enter that scope before name lookup.
8413         PR c++/6486
8414         * method.c (do_build_copy_constructor): Avoid building
8415         cv-qualified reference types.
8417 2002-04-29  Nathan Sidwell  <nathan@codesourcery.com>
8419         PR c++/5719
8420         * decl.c (grok_op_properties): Assignment ops don't have to return
8421         by value. operator% should.
8423 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
8425         PR c/6343
8426         * decl.c (duplicate_decls): Call merge_weak.
8428 2002-04-26  Richard Henderson  <rth@redhat.com>
8430         * parse.y (malloced_yyss, malloced_yyvs): New.
8431         (yyoverflow): Re-add.  Set them.
8432         (free_parser_stacks): New.
8434 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
8436         PR c++/6497
8437         * method.c (do_build_assign_ref): Pass a derivation to
8438         build_method_call when calling base class assignment operators.
8440 2002-04-26  Richard Henderson  <rth@redhat.com>
8442         * parse.y (yyoverflow): Revert.
8444 2002-04-26  Richard Henderson  <rth@redhat.com>
8446         PR c/3581
8447         * parse.y (string): Remove.  Update all uses to use STRING
8448         instead, and not call combine_strings.
8449         * rtti.c (tinfo_name): Use fix_string_type.
8450         * semantics.c (finish_asm_stmt): Don't call combine_strings.
8451         * spew.c (yylexstring): New.
8452         (read_token): Use it.
8454 2002-04-25  Richard Henderson  <rth@redhat.com>
8456         PR c/2161
8457         * parse.y (yyoverflow): New.
8459 2002-04-25  Jason Merrill  <jason@redhat.com>
8461         PR c++/5607
8462         * search.c (check_final_overrider): No longer static.
8463         * class.c (update_vtable_entry_for_fn): Call it.
8464         * cp-tree.h: Adjust.
8466 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
8468         * cp-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
8469         * cp-tree.h (cxx_set_yydebug): Die.
8470         * lex.c (YYDEBUG): Get from c-lex.h.
8471         (cxx_set_yydebug): Remove.
8472         * parse.y: Include c-lex.h.
8473         (YYDEBUG): Get from c-lex.h.
8475 2002-04-24  Mark Mitchell  <mark@codesourcery.com>
8477         PR c++/6438.
8478         * cvt.c (convert_to_void): Don't unconditionally make COND_EXPRs
8479         void.
8481 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
8483         * cp-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
8484         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE):
8485         Redefine.
8486         * cp-tree.h (cp_attribute_table): Rename.
8487         * decl.c (lang_attribute_table): Remove declaration.
8488         (cxx_init_decl_processing): Don't set it.
8489         * tree.c (cp_attribute_table): Rename.
8491 2002-04-24  Jason Merrill  <jason@redhat.com>
8493         PR c++/6331
8494         * method.c (do_build_copy_constructor): Use cp_build_qualified_type.
8495         * typeck.c (build_modify_expr): Allow arrays to differ in cv-quals.
8496         The pedwarn for array assignment is now unconditional.
8497         * tree.c (build_cplus_array_type_1): Still process simple array types
8498         normally in templates.
8500         PR c++/6395
8501         * decl.c (make_rtl_for_nonlocal_decl): Don't mess with #pragma i/i
8502         stuff for comdats.
8504 2002-04-23  Jakub Jelinek  <jakub@redhat.com>
8506         * parse.y (check_class_key): Allow KEY to be union/enum/struct/class
8507         node with attributes.
8509 2002-2-23  David O'Brien  <obrien@FreeBSD.org>
8511         * g++spec.c (MATH_LIBRARY_PROFILE, LIBSTDCXX_PROFILE): Add.
8512         Use MATH_LIBRARY_PROFILE and LIBSTDCXX_PROFILE if profile flag given.
8514 2002-04-23  Mark Mitchell  <mark@codesourcery.com>
8516         PR c++/6256:
8517         * pt.c (tsubst_friend_class): Handle templates with explicit
8518         nested names.
8520         PR c++/6331:
8521         * typeck.c (merge_types): Remember the cv-qualification of pointer
8522         types when merging them.
8524 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
8526         * cp-lang.c (LANG_HOOKS_FUNCTION_INIT,
8527         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_MARK): Redefine.
8528         * cp-tree.h (cxx_push_function_context, cxx_pop_function_context,
8529         cxx_mark_function_context): New.
8530         * decl.c (push_cp_function_context, pop_cp_function_context,
8531         mark_cp_function_context): Rename for consistency.
8532         (cxx_init_decl_processing): Don't set old hooks.
8534 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
8536         * call.c (convert_type_from_ellipsis): Rename, update.
8537         * cp-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
8538         * cp-tree.h (convert_type_from_ellipsis): Rename.
8539         * decl.c (cxx_init_decl_processing): Don't set hook.
8541 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
8543         * call.c (build_new_method_call): Update.
8544         * cp-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
8545         * cp-tree.h (cxx_incomplete_type_error): New.
8546         * decl.c (grokdeclarator, grokparms): Update.
8547         * decl2.c (check_classfn): Update.
8548         * pt.c (tsubst): Update.
8549         * typeck.c (complete_type_or_else, expr_sizeof,
8550         decay_conversion): Update.
8551         * typeck2.c (incomplete_type_error): Rename.
8552         (add_exception_specifier): Update.
8554 2002-04-18  Jason Merrill  <jason@redhat.com>
8556         PR c++/5658
8557         * search.c (setup_class_bindings): A class template qualifies as a
8558         type binding.
8560 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
8562         PR c++/6316
8563         * decl2.c (finish_file): Clear DECL_EXTERNAL in a separate loop
8564         before expanding.
8566 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
8568         * init.c (begin_init_stmts): Remove commented out code.
8569         (finish_init_stmts): Set STMT_EXPR_NO_SCOPE.
8570         * semantics.c (begin_gobal_stmt_expr): Adjust call to
8571         expand_start_stmt_expr.
8573 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
8575         * decl.c (register_dtor_fn): Pass the address of dso_handle, not
8576         dso_handle itself, to __cxa_atexit.
8578 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
8580         * error.c (cxx_print_error_function): Adjust call to macros.
8582 2002-04-14  Jakub Jelinek  <jakub@redhat.com>
8584         * class.c (layout_virtual_bases): Do all dsize computation on trees.
8586 2002-04-14  Jason Merrill  <jason@redhat.com>
8588         * typeck.c (get_member_function_from_ptrfunc): Don't do
8589         gratuitious division and multiplication on
8590         ptrmemfunc_vbit_in_delta targets.
8592 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
8594         PR c++/5373.
8595         * semantics.c (finish_expr_stmt): Remember the type of the
8596         expression before any conversions are performed.
8598 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
8600         PR c++/5189.
8601         * call.c (add_template_candidate_real): Do not treat member
8602         templates as copy constructors.
8604 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
8606         * decl.c (duplicate_decls): Do not copy the RTL for a variable
8607         declaration if the old variable had an incomplete type and the new
8608         variable does not.
8609         (complete_vars): Do not call layout_decl for completed variables.
8611 2002-04-12  Richard Sandiford  <rsandifo@redhat.com>
8613         * decl.c (duplicate_decls): Don't try to unify an implicit typedef
8614         with an explicit one.
8615         (follow_tag_typedef): New.
8616         (lookup_tag): Use it to extract the tag of an explicit typedef.
8617         (xref_tag): Likewise.
8619 2002-04-11  Andrew Haley  <aph@redhat.com>
8621         * typeck.c (type_after_usual_arithmetic_conversions):
8622         If two types have the same variant, return immediately.
8623         When two floating-point operands are the same precision:
8624           convert to float if one of the operands is float;
8625           if neither operand is one of the standard types, return the type
8626           of the first operand.
8628 2002-04-10  Nathan Sidwell  <nathan@codesourcery.com>
8630         PR c++/5507
8631         * decl.c (make_typename_type): Remove implicit typenameness.
8633 2002-04-09  Jason Merrill  <jason@redhat.com>
8635         PR optimization/6189
8636         * semantics.c (genrtl_start_function): Don't free
8637         DECL_SAVED_FUNCTION_DATA for inline functions.
8639         * init.c (build_member_call): For now, don't convert to
8640         intermediate base if it would cause an error.
8642 2002-04-08  Paolo Carlini  <pcarlini@unitus.it>
8644         * parse.y (namespace_qualifier, maybe_identifier,
8645         begin_explicit_instantiation, end_explicit_instantiation,
8646         apparent_template_type, .finish_template_type,
8647         do_id, maybe_init, defarg_again, component_decl_1):
8648         Add ending ';', in accordance with POSIX.
8650 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
8652         PR c++/5571
8653         * class.c (layout_class_type): Remember incomplete static
8654         variables.
8655         (finish_struct_1): Call complete_vars, not
8656         hack_incomplete_structures.
8657         * cp-tree.h (hack_incomplete_structures): Rename to ...
8658         (complete_vars): ... this.
8659         (struct saved_scope): Remove incomplete.
8660         (namespace_scope_incomplete): Remove.
8661         * decl.c (struct binding_level): Remove incomplete.
8662         (incomplete_vars): New variable.
8663         (mark_binding_level): Don't mark incomplete.
8664         (print_binding_level): Don't print it.
8665         (mark_saved_scope): Don't mark incomplete.
8666         (pushdecl): Use maybe_register_incopmlete_var.
8667         (cxx_init_decl_processing): Register incomplete_vars for GC.
8668         (start_decl_1): Clarify error message.
8669         (hack_incomplete_vars): Remove.
8670         (maybe_register_incomplete_var): New function.
8671         (complete_vars): Likewise.
8673 2002-04-06  Jason Merrill  <jason@redhat.com>
8675         PR c++/4934
8676         * error.c (dump_expr) [CONVERT_EXPR]: Make sure TREE_TYPE (t) is
8677         set before checking it.
8679         PR c++/525
8680         * init.c (build_member_call): Use build_scoped_ref.
8681         (resolve_offset_ref): Likewise.
8682         * call.c (build_scoped_method_call): Likewise.
8683         * tree.c (maybe_dummy_object): Kludge around current_class_type being
8684         wrong.
8685         * typeck2.c (build_scoped_ref): Return the binfo via binfo_p parm.
8686         * cp-tree.h: Adjust.
8688         * init.c (push_base_cleanups): Just use build_scoped_method_call.
8690         PR c++/6179
8691         * method.c (implicitly_declare_fn): Pass unqualified type to
8692         synthesize_exception_spec.
8694 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
8696         * cp-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
8697         * cvt.c: Update comment.
8698         * init.c (expand_cleanup_for_base): Update.
8699         * semantics.c (finish_parenthesized_expr): Update.
8700         * typeck.c (cp_truthvalue_conversion): Update.
8702 2002-04-04  Jason Merrill  <jason@redhat.com>
8704         * semantics.c (finish_eh_cleanup): New fn.
8705         * cp-tree.h: Add prototype.
8706         * init.c (perform_member_init, expand_cleanup_for_base): Use
8707         finish_eh_cleanup.
8708         * cp-tree.def (SUBOBJECT, CTOR_STMT): Remove.
8709         * cp-tree.h: Remove references.
8710         * decl.c (begin_constructor_body, end_constructor_body): Likewise.
8711         * dump.c (cp_dump_tree): Likewise.
8712         * pt.c (tsubst_expr): Likewise.
8713         * semantics.c (genrtl_ctor_stmt, genrtl_subobject): Remove.
8714         (cp_expand_stmt): Remove handling of CTOR_STMT and SUBOBJECT.
8715         * tree.c (cp_statement_code_p): Likewise.
8717         * init.c (build_new_1): Set CLEANUP_EH_ONLY on deleting cleanup.
8719         PR c++/5636
8720         * semantics.c (nullify_returns_r): Just set CLEANUP_EH_ONLY on
8721         cleanup for nrv.
8723         PR c++/5104
8724         * typeck.c (comptypes) [FUNCTION_TYPE]: Don't compare exception
8725         specifiers.
8726         [METHOD_TYPE]: Use same code as FUNCTION_TYPE.
8728 2002-04-03  Richard Henderson  <rth@redhat.com>
8730         * cp-lang.c (cxx_warn_unused_global_decl): New.
8731         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
8733 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
8735         * cp-lang.c (LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): Redefine.
8736         * tree.c (init_tree): Don't set hook.
8738 2002-04-03  Roger Sayle  <roger@eyesopen.com>
8740         PR c++/5998:
8741         * decl.c (duplicate_decls): Don't mess with assembler names when
8742         redeclaring builtin functions as static.
8744 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
8746         * call.c (build_addr_func): Update.
8747         * class.c (resolve_address_of_overloaded_function): Update.
8748         * cp-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
8749         * cp-tree.h (cxx_mark_addressable): New.
8750         * decl.c (register_dtor_fn, cxx_maybe_build_cleanup): Update.
8751         * decl2.c (build_cleanup): Update.
8752         * except.c (build_throw): Update.
8753         * init.c (resolve_offset_ref): Update.
8754         * pt.c (convert_nontype_argument): Update.
8755         * semantics.c (finish_asm_stmt, simplify_affr_init_exprs_r): Update.
8756         * typeck.c (decay_conversion, build_array_ref, build_unary_op,
8757         unary_complex_lvalue): Update.
8758         (mark_addressable): Rename.
8760 2002-04-01  Roger Sayle  <roger@eyesopen.com>
8762         PR c++/5998:
8763         * decl.c (duplicate_decls):  Overwrite the RTL when (and only
8764         when) overwriting a built-in function.  Don't use COPY_DECL_RTL,
8765         but follow the SET_DECL_RTL idiom used elsewhere in the function.
8767 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
8769         * cp-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
8770         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
8771         * decl.c (grokdeclarator): Update.
8772         * mangle.c (write_integer_cst): Update.
8773         * typeck.c (build_binary_op): Update.
8775 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
8777         * cp-lang.c (LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
8778         * lex.c (cxx_init): Don't set hook.
8780 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
8782         * Make-lang.in (error.o): Update.
8783         * cp-lang.c (LANG_HOOKS_PRINT_ERROR_FUNCTION): Redefine.
8784         * cp-tree.h (struct diagnostic_context): Predeclare.
8785         (cxx_print_error_function): New.
8786         * error.c: Include langhooks-def.h.
8787         (lang_print_error_function): Rename.  Update.
8788         (init_error): Don't set hook.
8790 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
8792         * cp-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
8793         Redefine.
8794         * cvt.c (cp_convert_to_pointer, type_promotes_to): Use new hooks.
8795         * decl.c (finish_enum): Similarly.
8796         * error.c (dump_type): Similarly.
8797         * lex.c (cxx_init): Similarly.
8798         * mangle.c (write_builtin_type): Similarly.
8799         * typeck.c (comptypes): Similarly.
8801 2002-03-28  Roger Sayle  <roger@eyesopen.com>
8803         PR c++/5998:
8804         * decl.c (cxx_init_decl_processing): Re-enable built-in functions
8805         in the g++ front-end.
8806         (duplicate_decl): Allow redefinition of anticipated built-ins.
8807         Fix inlining problem by over-writing the old DECL_RTL.
8808         (lookup_namespace_name): Fail to find an identifier in the
8809         specified namespace if its still anticipated.
8810         (builtin_function_1): New function split out from builtin_function
8811         to create a builtin in the current namespace with given context.
8812         (builtin_function): Call builtin_function_1 to define the
8813         appropriate builtins in both the std and global namespaces.
8814         (select_decl): Don't test for anticipated decls here.
8815         (unqualified_namespace_lookup): Instead ignore them whilst
8816         searching through scopes and namespaces.
8817         * decl2.c (do_nonmember_using_decl): If a using declaration
8818         specifies an anticipated built-in function, mark it as no longer
8819         anticipated in that scope.
8820         (ambiguous_decl):  Avoid resolving to an anticipated decl.
8821         * lex.c (do_scoped_id): Fail to find an identifier in the global
8822         namespace if its still anticipated.
8824 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
8826         * cp-lang.c (LANG_HOOKS_MAKE_TYPE): Redefine.
8827         * cp-tree.h (cp_make_lang_type): Rename.
8828         * lex.c (cp_make_lang_type): Rename.
8829         (make_aggr_type): Update.
8830         * tree.c (init_tree): Don't set make_lang_type_fn.
8832 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
8834         PR c++/6073
8835         * class.c (finish_struct_1): Update static field's DECL_MODE even
8836         if its type is a variant of t.
8838 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
8840         * cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
8841         * cp-tree.h (cxx_insert_default_attributes): New.
8842         * decl.c (insert_default_attributes): Rename.
8844 2002-03-27  Mark Mitchell  <mark@codesourcery.com>
8846         PR c++/4884
8847         * call.c (build_op_delete_call): Allow for the fact the placement
8848         may be a COMPOUND_EXPR.
8850 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
8852         * cp-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
8853         * cp-tree.h (init_cplus_expand): Remove.
8854         (cxx_expand_expr): New.
8855         * expr.c (cplus_expand_expr): Rename cxx_expand_expr,
8856         fix prototype.
8857         (init_cplus_expand): Remove.
8858         * lex.c (cxx_init): Don't call init_cplus_expand.
8860 2002-03-26  Mark Mitchell  <mark@codesourcery.com>
8862         PR c++/4884.
8863         * init.c (build_new_1): Allow for the fact the result of
8864         build_function_call may be a COMPOUND_EXPR.
8866 2002-03-26  Nathan Sidwell  <nathan@codesourcery.com>
8868         PR c++/5682
8869         * cp-tree.h (BINFO_PRIMARY_P): Explain meaning better.
8870         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
8871         (dfs_skip_nonprimary_vbases_markedp): Remove.
8872         * search.c (get_shared_vbase_if_not_primary): Remove.
8873         (dfs_skip_nonprimary_vbases_unmarkedp): Remove.
8874         (dfs_skip_nonprimary_vbases_markedp): Remove.
8875         (dfs_unmarked_real_bases_queue_p): Just get the canonical binfo.
8876         (dfs_marked_real_bases_queue_p): Likewise.
8878 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
8880         * cp-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
8881         * cp-tree.h (cxx_mark_tree): New.
8882         * decl.c (lang_mark_tree): Rename cxx_mark_tree.
8884 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
8886         * cp-tree.h (cxx_maybe_build_cleanup): New.
8887         * decl.c (destroy_local_var, hack_incomplete_structures): Update.
8888         (maybe_build_cleanup): Rename cxx_maybe_build_cleanup.
8889         * tree.c (build_target_expr): Update.
8890         * cp-lang.c (LANG_HOOKS_MAYBE_BUILD_CLEANUP): Redefine.
8892 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
8894         * decl2.c (cxx_decode_option): Handle -E.
8895         * lang-specs.h (default_compilers): Preprocess with cc1plus.
8896         * lex.c (cxx_init): Exit quickly if c_common_init returns NULL.
8898 2002-03-23  Jakub Jelinek  <jakub@redhat.com>
8900         PR c++/6037
8901         * decl.c (start_enum): Don't set TREE_ADDRESSABLE on TREE_LIST node.
8903 2002-03-23  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
8905         * error.c (dump_type): Be careful about implicit typenames.
8907 2002-03-21  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
8909         PR C++/3656
8910         * semantics.c (finish_base_specifier): Handle erronous base
8911         classes.
8913 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
8915         * error.c: Always use REAL_VALUE_TO_DECIMAL; don't test
8916         REAL_IS_NOT_DOUBLE.
8918 2002-03-22  Jeff Knaggs  <jknaggs@redhat.com>
8920         * typeck.c (get_member_function_from_ptrfunc): Scale idx down to
8921         an index into the vtable_entry array regardless of
8922         TARGET_PTRMEMFUNC_VBIT_LOCATION.
8924 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
8926         * tree.c (cp_cannot_inline_tree_fn): Same.
8928 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
8930         * cp-tree.h (pushdecl, pushlevel, poplevel, set_block,
8931         insert_block, getdecls, global_bindings_p): New.
8933 2002-03-20  Nathan Sidwell  <nathan@codesourcery.com>
8935         PR c++/4361
8936         * mangle.c (struct globals) Add internal_mangling_p member.
8937         (write_template_param): Do internal mangling, if needed.
8938         (mangle_conv_op_name_for_type): Request internal mangling.
8940 2002-03-20  Jason Merrill  <jason@redhat.com>
8942         PR c++/2136
8943         * init.c (build_delete): Check access for a member op delete here.
8944         * decl2.c (delete_sanity): Not here.
8946 2002-03-19  Jason Merrill  <jason@redhat.com>
8948         PR c++/5118
8949         * class.c (get_vfield_name): Use the constructor_name.
8951 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
8953         * cp-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
8954         * cp-tree.h (lang_printable_name): Rename.
8955         * error.c (lang_decl_name): Use new hook.
8956         * lex.c (cxx_init): Remove old hook.
8957         * pt.c (tsubst_decl): Use new hook.
8958         * tree.c (lang_printable_name): Rename.
8960 2002-03-18  Eric Botcazou  <ebotcazou@multimania.com>
8962         PR c++/3882
8963         * pt.c (tsubst_decl): Move __PRETTY_FUNCTION__ handling...
8964         (tsubst_expr) [DECL_STMT]: ...here. And substitute the initializer
8965         only after recording the declaration.
8967 2002-03-18  Jason Merrill  <jason@redhat.com>
8969         PR c++/2039
8970         * init.c (resolve_offset_ref): Hand off to build_component_ref.
8972         PR c++/4222, c++/5995
8973         * call.c (build_over_call): Fix empty class logic.
8975         PR c++/3870
8976         * cp-tree.h (struct saved_scope): Add last_parms field.
8977         * decl.c (maybe_push_to_top_level): Save last_function_parms.
8978         (pop_from_top_level): Restore it.
8980         PR c++/4377
8981         * mangle.c (write_expression): Strip NOP_EXPRs sooner.  Also strip
8982         NON_LVALUE_EXPRs.
8984         PR c++/4003
8985         * pt.c (tsubst_friend_function): Use decl_namespace_context.
8987         PR c++/3948 -- C++ ABI change, followup to 2001-12-18 patch.
8988         * class.c (finish_struct_bits): Also set TREE_ADDRESSABLE for a
8989         type with a nontrivial destructor.
8991 2002-03-17  Jason Merrill  <jason@redhat.com>
8993         PR c++/4460
8994         * class.c (build_base_path): Virtual base layout is fixed in
8995         in-charge [cd]tors.
8997 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
8999         * cp-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
9000         * parse.y (yyparse): Remove macro.
9002 2002-03-17  Jason Merrill  <jason@redhat.com>
9004         PR c++/5757
9005         * init.c (build_new_1): Pass the right pointer to op delete.
9007 2002-03-16  Nathan Sidwell  <nathan@codesourcery.com>
9009         PR c++/4361
9010         * cp-tree.h (CLASSTYPE_METHOD_VEC): Document where templated
9011         conversion operators go.
9012         (struct lang_decl_flags): Add template_conv_p and unused
9013         bitfields.
9014         (DECL_TEMPLATE_CONV_FN_P): New macro.
9015         * call.c (build_user_type_conversion_1): Don't check second type
9016         conversion of overload set first.
9017         * class.c (add_method): Make sure templated conversion operators
9018         all end up on slot 2.
9019         * lex.c (do_identifier): A conversion operator token might be
9020         satisfied by a templated conversion operator.
9021         * pt.c (check_explicit_specialization): Use
9022         CLASSTYPE_FIRST_CONVERSION_SLOT.
9023         (template_parm_this_level_p): New function.
9024         (push_template_decl_real): Determine DECL_TEMPLATE_CONV_FN_P.
9025         * search.c (lookup_fnfields_1): Template conversions will be on
9026         the first slot.
9027         * typeck.c (build_component_ref): Preserve the type of an
9028         conversion operator name on the overload type.
9029         (build_x_function_call): Retrieve the conversion operator name.
9031 2002-03-15  Richard Henderson  <rth@redhat.com>
9033         * init.c (build_new_1): Use size_binop instead of cp_build_binary_op.
9035 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
9037         * cp-tree.h (CLEANUP_DECL): Remove.
9038         (CLEANUP_EXPR): Likewise.
9039         * decl.c (destroy_local_var): Simplify.
9040         (maybe_build_cleanup): Tidy.
9041         * dump.c (cp_dump_tree): Remove handling of CLEANUP_STMT.
9042         * semantics.c (cp_expand_stmt): Likewise.
9043         * cp/tree.c (cp_statement_code_p): Likewise.
9045 2002-03-15  Jason Merrill  <jason@redhat.com>
9047         PR c++/5857
9048         * decl.c (duplicate_decls): Use merge_types instead of common_type.
9049         * typeck.c (common_type): Just hand off to
9050         type_after_usual_arithmetic_conversions and
9051         composite_pointer_type.
9052         (merge_types): New fn.
9053         (commonparms): Use it instead of common_type.
9054         (type_after_usual_arithmetic_conversions): Also handle COMPLEX_TYPE.
9055         (composite_pointer_type): Also handle attributes.
9056         * cp-tree.h: Declare merge_types.
9058         * decl.c (make_rtl_for_nonlocal_decl): Also defer COMDAT
9059         variables.
9060         * decl2.c (maybe_make_one_only): Also mark the decl as needed.
9062 2002-03-14  Richard Henderson  <rth@redhat.com>
9064         * decl.c: Include c-pragma.h.
9065         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
9066         * Make-lang.in: Update dependencies.
9068 2002-03-14  Jakub Jelinek  <jakub@redhat.com>
9070         PR c++/5908
9071         * call.c (build_over_call): Set TREE_NO_UNUSED_WARNING too.
9072         * cvt.c (convert_to_void): Preserve TREE_NO_UNUSED_WARNING.
9074 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
9076         * mangle.c (write_builtin_type): Handle 128-bit integers even if
9077         they are not a standard integer type.
9079 2002-03-12  Richard Sandiford  <rsandifo@redhat.com>
9081         * cp-tree.h (init_init_processing): Remove declaration.
9082         * init.c (BI_header_type, init_init_processing): Remove old ABI stuff.
9083         * decl.c (cxx_init_decl_processing): Don't call init_init_processing.
9085 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9087         * cp-lang.c (tree_code_type, tree_code_length, tree_code_name):
9088         Define.
9089         * decl.c (duplicate_decls): Use TREE_CODE_LENGTH, not
9090         tree_code_length.
9091         * lex.c (cplus_tree_code_type, cplus_tree_code_length,
9092         cplus_tree_code_name): Delete.
9093         (cxx_init): Don't call add_c_tree_codes, instead set
9094         lang_unsafe_for_reeval.  Don't try to copy into the various
9095         tree_code arrays.
9097 2002-03-12  Nathan Sidwell  <nathan@codesourcery.com>
9099         PR c++/5659
9100         * decl.c (xref_tag): Don't set CLASSTYPE_DECLARED_CLASS here.
9101         * decl2.c (handle_class_head): Set CLASSTYPE_DECLARED_CLASS for
9102         definitions.
9104 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
9106         Revert 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>,
9107         DR209 is now not a defect.
9108         * cp-tree.h (skip_type_access_control): Remove.
9109         * decl.c (grokdeclarator): Do type access control for friend
9110         declarations.
9111         * semantics.c (decl_type_access_control): Don't reset
9112         current_type_lookups.
9113         (save_type_access_control): Always save the lookups.
9114         (skip_type_access_control): Remove.
9115         (finish_class_definition): Don't change type_lookups.
9117 2002-03-11  Nathan Sidwell  <nathan@codesourcery.com>
9119         Revert 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>,
9120         It is incorrect.
9121         * typeck.c (build_static_cast): Compare non-qualified types
9122         with pointer to member conversions.
9124 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
9125             Daniel Berlin  <dan@dberlin.org>
9127         * cp-lang.c (ok_to_generate_alias_set_for_type): New function.
9128         (cxx_get_alias_set): Use it.
9130 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9132         * cp-tree.h (stabilize_expr): Prototype.
9134 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
9136         * cp-tree.h (CLEAR_BINFO_MARKED): Make both parts of
9137         conditional return void.
9139 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
9141         * cp-lang.c (LANG_HOOKS_UNSAVE): Redefine.
9142         * cp-tree.h (cxx_unsave): New.
9143         * tree.c (cp_unsave): Rename cxx_unsave, update prototype.
9144         (init_tree): Update.
9146 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9148         * decl.c (cxx_init_decl_processing): Use ARRAY_SIZE in lieu of
9149         explicit sizeof/sizeof.
9150         * decl2.c (cxx_decode_option): Likewise.
9151         * lex.c (init_reswords, REDUCE_LENGTH, TOKEN_LENGTH): Likewise.
9153 2002-03-02  Nathan Sidwell  <nathan@codesourcery.com>
9155         PR c++/775
9156         * decl.c (lookup_tag): Only reject enum/class mismatch, not
9157         class/union mismatch.
9158         * parse.y (check_class_key): New function.
9159         (structsp): Call it.
9161 2002-03-01  Michael Matz  <matz@suse.de>
9163         * typeck.c (cp_pointer_int_sum): Complete inner type which is
9164         used later by size_in_bytes().
9166 2002-03-01  Phil Edwards  <pme@gcc.gnu.org>
9168         * cp-tree.h:  Require __GNUC__ to be #defined.
9169         (build_init):  Add missing prototype.
9171 2002-03-01  Jason Merrill  <jason@redhat.com>
9173         * except.c: Don't include decl.h or obstack.h.  Do include
9174         tree-inline.h.
9175         (build_throw): Destroy temporaries from the thrown
9176         expression before calling __cxa_throw.  Construct a thrown
9177         temporary directly into the exception object.
9178         (stabilize_throw_expr): New function.
9179         (wrap_cleanups_r): New function.
9180         * tree.c (stabilize_expr): New function.
9181         * init.c (build_init): New function.
9182         * Make-lang.in (cp/except.o): Adjust .h deps.
9184 2002-02-28  Jason Merrill  <jason@redhat.com>
9186         * search.c (lookup_base_r): Don't clear is_non_public just because
9187         we found a friendly scope.
9189         * decl.c (finish_function): Only warn about missing return
9190         statement with -Wreturn-type.
9192 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
9194         * class.c (build_clone): Update.
9195         * cp-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
9196         * cp-tree.h (cxx_dup_lang_specific_decl): New.
9197         * lex.c (copy_lang_decl): Rename cxx_dup_lang_specific_decl.
9198         (copy_decl): Update.
9199         * method.c (make_thunk): Update.
9201 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
9203         * decl2.c: Delete traditional-mode-related code copied from
9204         the C front end but not used, or used only to permit the
9205         compiler to link.
9207 2002-02-24 Craig Rodrigues  <rodrigc@gcc.gnu.org>
9209         PR c++/4093
9210         * cp-tree.h (SET_BINFO_MARKED): Cast false part of condition
9211         to void.
9213 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
9215         PR other/5746
9216         * semantics.c (finish_switch_cond): Don't call get_unwidened
9217         if error_mark_node.
9219 2002-02-22  Nathan Sidwell  <nathan@codesourcery.com>
9221         PR c++/2645, DR 295
9222         * cp-tree.h (tsubst_flags_t): Add tf_ignore_bad_quals,
9223         tf_keep_type_decl.
9224         (make_typename_type): Use tsubst_flags_t.
9225         * decl.c (make_typename_type): Adjust. Return non-artificial
9226         TYPE_DECLs, if required.
9227         (grokdeclarator): Simplify CVR qualification handling. Allow bad
9228         qualifiers on typedef types.
9229         * decl2.c (handle_class_head): Adjust make_typename_type call.
9230         * parse.y (nested_name_specifier): Likewise.
9231         (typename_sub0): Likewise.
9232         (typename_sub1): Likewise.
9233         * pt.c (convert_template_argument): Adjust make_typename_type
9234         return value.
9235         (tsubst): Adjust cp_build_qualified_type_real calls.
9236         (check_cv_quals_for_unify): Cope with allowing bad qualifications
9237         on template type parms.
9238         (instantiate_decl): Recheck substitutions to give warnings on bad
9239         qualifications.
9240         * tree.c (cp_build_qualified_type_real): Use tf_allow_bad_quals.
9242 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
9244         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
9246         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
9247         unless DECL_ALWAYS_INLINE.
9249 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
9251         * typeck.c (cp_pointer_int_sum): Renamed from
9252         pointer_int_sum, call pointer_int_sum.
9254 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
9256         * decl.c (duplicate_decls): Return 0 if issued error about
9257         redeclaration.
9259 2002-02-19  Jason Merrill  <jason@redhat.com>
9261         ABI change: Mangle `void (A::*)() const' as
9262         M1AKFvvE, not MK1AFvvE.
9263         * mangle.c (write_function_type): Write cv-quals for member
9264         function type here.
9265         (write_pointer_to_member_type): Not here.
9267 2002-02-18  Jason Merrill  <jason@redhat.com>
9269         * pt.c (do_type_instantiation): Don't pedwarn if in_system_header.
9270         (do_decl_instantiation): Likewise.
9272 2002-02-17  Craig Rodrigues  <rodrigc@gcc.gnu.org>
9274         PR c++/5685
9275         * decl.c (duplicate_decls): Make warning unconditional
9276         if duplicate default argument declarations are present.
9278 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
9280         * typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
9281         shortening.
9283 2002-02-15  Nathan Sidwell  <nathan@codesourcery.com>
9285         * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
9286         remove incorrect comment. Move #if 0'd code to common path. Use
9287         IMPLICIT_TYPENAME_P. Simplify & reformat ARRAY_TYPE duplication.
9289 2002-02-13  Jason Merrill  <jason@redhat.com>
9291         * decl.c (builtin_function): Set TREE_THIS_VOLATILE on return fns.
9292         (finish_function): Don't warn if current_function_returns_null.
9294         * typeck2.c (digest_init): Do handle values of vector type.
9296         * typeck2.c (digest_init, process_init_constructor): Treat vectors
9297         like arrays.
9299 2002-02-11  Jason Merrill  <jason@redhat.com>
9301         * parse.y (reserved_declspecs): Don't handle attributes.
9302         (reserved_typespecquals): Handle them here.
9303         * Make-lang.in (parse.c): Adjust expected conflicts.
9305 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
9307         * parse.y (primary, primary_no_id): Use compstmt_or_stmtexpr
9308         instead of compstmt.
9309         (compstmt_or_stmtexpr): Renamed from compstmt.
9310         (compstmt): In addition to compstmt_or_stmtexpr clear last_expr_type.
9312 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
9314         Rename instantiate_type_flags to tsubst_flags_t & expand use.
9315         * cp-tree.h (instantiate_type_flags): Rename to ...
9316         (tsubst_flags_t): ... here. Rename itf_complain to tf_error,
9317         add tf_warning flag.
9318         (instantiate_type): Adjust prototype.
9319         (tsubst, tsubst_expr, tsubst_copy, lookup_template_class,
9320         do_type_instantiation, cp_build_qualified_type_real): Likewise.
9321         cp_build_qualified_type: Adjust.
9322         * class.c (instantiate_type): Adjust parameter. Rename itf_* to
9323         tf_*.
9324         * call.c (standard_conversion): Rename itf_* to tf_*.
9325         (reference_binding): Likewise.
9326         (convert_like_real): Likewise.
9327         * cvt.c (cp_convert_to_pointer): Likewise.
9328         (convert_to_reference): Likewise.
9329         * decl.c (lookup_namespace_name): Use tf_* flags.
9330         (make_typename_type): Likewise.
9331         (grokdeclarator): Likewise.
9332         * pt.c (convert_nontype_argument): Adjust COMPLAIN usage.
9333         (coerce_template_template_parms, convert_template_argument,
9334         coerce_template_parms, maybe_get_template_decl_from_type_decl,
9335         lookup_template_class, tsubst_friend_function, tsubst_friend_class,
9336         instantiate_class_template, tsubst_template_arg_vector,
9337         tsubst_template_parms, tsubst_aggr_type, tsubst_default_argument,
9338         tsubst_decl, tsubst_arg_types, tsubst_function_type,
9339         tsubst_call_declarator_parms, tsubst, tsubst_copy, tsubst_expr,
9340         instantiate_template, fn_type_unification,
9341         resolve_overloaded_unification, verify_class_unification,
9342         unify, get_bindings_real, do_type_instantiation,
9343         regenerate_decl_from_template, instantiate_decl,
9344         tsubst_initializer_list, tsubst_enum,
9345         get_mostly_instantiated_function_type,
9346         invalid_nontype_parm_type_p): Likewise.
9347         * tree.c (cp_build_qualified_type_real): Likewise.
9348         * typeck.c (build_binary_op): Rename itf_* to tf_*.
9349         (build_ptrmemfunc): Likewise.
9350         (convert_for_assignment): Likewise.
9352 2002-02-07  Nathan Sidwell  <nathan@codesourcery.com>
9354         PR c++/109
9355         * decl.c (grokdeclarator): Allow friend declarations from
9356         dependent types.
9357         * decl2.c (handle_class_head): Don't push into template parm contexts.
9358         * pt.c (push_template_decl_real): Template parm contexts are never
9359         being defined.
9361 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
9363         * class.c: Include target.h.
9364         (check_bitfield_decl): Disregard EMPTY_FIELD_BOUNDARY,
9365         BITFIELDS_NBYTES_LIMITED and PCC_BITFIELD_TYPE_MATTERS for MS
9366         bit-field layout.
9367         * Make-lang.in: Adjust deps.
9369 2002-02-05  Jason Merrill  <jason@redhat.com>
9371         * error.c (dump_type): Be more helpful about VECTOR_TYPE.
9373 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
9375         * semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
9376         (finish_switch_cond): Set SWITCH_TYPE.
9378 2002-02-04  Richard Henderson  <rth@redhat.com>
9380         * method.c (use_thunk): Always initialize the block tree.  Reindent.
9381         * semantics.c (expand_body): Emit thunks after function, not before.
9383 2002-02-04  Jason Merrill  <jason@redhat.com>
9385         * decl.c (start_function): Call cplus_decl_attributes immediately
9386         after grokdeclarator.
9388         * decl.c (start_function): Combine DECL_RESULT handling code.
9390 2002-02-03  Jason Merrill  <jason@redhat.com>
9392         * xref.c: Remove.
9393         * Make-lang.in (CXX_OBJS): Remove cp/xref.o
9394         (cp/xref.o): Remove dependencies.
9395         * class.c (finish_struct_1, check_methods): Don't call xref fns.
9396         (finish_struct_1): Likewise.
9397         * friend.c (make_friend_class): Likewise.
9398         * lex.c (cxx_init, cxx_finish, extract_interface_info): Likewise.
9399         * spew.c (read_process_identifier): Likewise.
9401 2002-02-01  Jason Merrill  <jason@redhat.com>
9403         PR c++/4872
9404         * decl.c (finish_function): Warn about a non-void function with
9405         no return statement and no abnormal exit.
9406         * cp-tree.h (struct cp_language_function): Add returns_abnormally.
9407         (current_function_returns_abnormally): New macro.
9408         * call.c (build_call): Set it.
9410         * typeck.c (build_component_ref): Always complain about offsetof
9411         constructs on non-PODs.  Only make it an error for members of
9412         virtual bases.
9414         * error.c (dump_scope): Don't add TFF_DECL_SPECIFIERS.
9415         (dump_function_decl): Always dump parms.
9417         * decl2.c (finish_static_data_member_decl): Complain about a local
9418         class with a static data member.
9420         PR c++/4286
9421         * search.c (lookup_field_1): Don't xref a static data member
9422         just because we looked it up.
9424 2002-01-31  Jason Merrill  <jason@redhat.com>
9426         * Make-lang.in (parse.c): Handle .output file.
9428         PR c++/3395
9429         * decl.c (xref_tag): Remember early attributes in TYPE_ATTRIBUTES,
9430         not TREE_TYPE.
9431         * semantics.c (finish_class_definition): Adjust.
9433         Allow attributes in parms and casts.
9434         * parse.y (named_parm): Don't strip attrs.
9435         (declmods): Remove 'attributes' production.
9436         (nonempty_cv_qualifiers): Accept attributes.
9437         (ATTRIBUTE): Give precedence.
9438         * decl.c (groktypename): Handle attributes.
9439         (grokparms): Likewise.
9441 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
9443         * decl2.c (cxx_decode_option): Pass 0 as last argument to
9444         cpp_handle_option.
9445         * lang-specs.h: Use cpp_unique_options instead of cpp_options
9446         when used together with cc1_options.
9448 2002-01-29  Nathan Sidwell  <nathan@codesourcery.com>
9450         PR c++/5132
9451         * typeck2.c (digest_init): Make sure non-array core type is
9452         instantiated.
9453         * decl2.c (reparse_absdcl_as_casts): Just store the type in the
9454         constructor, rather than build a new one.
9455         (build_expr_from_tree, CONSTRUCTOR case): Be careful with the
9456         PURPOSE of constructor elts.
9458 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
9460         * Make-lang.in (parse.c): Adjust expected number of
9461         shift-reduce conflicts.
9462         (decl.o): Depend on diagnostic.h.
9463         * decl.c: Include diagnostic.h.
9464         (grokdeclarator): Check for null pointer.
9465         (finish_function): Don't abort when
9466         current_binding_level->parm_flag != 1, if errors have
9467         occurred; throw away the statement tree and extra binding
9468         levels, and continue.
9469         * lex.c (note_list_got_semicolon): Check for null pointer.
9470         * method.c (hack_identifier): Just return error_mark_node if
9471         value is error_mark_node.
9472         * parse.y (primary: TYPEID(type_id)): No need to use
9473         TYPE_MAIN_VARIANT here.
9474         (handler_seq): Accept an empty list of catch clauses and
9475         generate a fake handler block to avoid later crashes.
9476         (ansi_raise_identifier): Accept the error token too.
9477         * semantics.c (begin_class_definition,
9478         finish_class_definition): Check for error_mark_node.
9480 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
9482         * typeck2.c (friendly_abort): Delete definition.
9483         * cp-tree.h (friendly_abort): Don't prototype.
9484         (my_friendly_assert): Use fancy_abort.
9486 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
9488         * cp-tree.h (my_friendly_abort): Remove.
9490 2002-01-23  Jakub Jelinek  <jakub@redhat.com>
9492         * spew.c (pending_inlines, pending_inlines_tail,
9493         processing_these_inlines): Make static.
9494         (mark_pending_inlines): Remove static.
9495         (begin_parsing_inclass_inline): If in function, save pi
9496         for GC to cp_function_chain->unparsed_inlines instead.
9497         (process_next_inline): Likewise.
9498         * cp-tree.h (struct cp_language_function): Add unparsed_inlines.
9499         (mark_pending_inlines): Add prototype.
9500         * decl.c (spew_debug): Remove unused extern.
9501         (mark_lang_function): Call mark_pending_inlines.
9503 2002-01-23  Craig Rodrigues  <rodrigc@gcc.gnu.org>
9505         * call.c, class.c, decl.c, decl2.c, error.c, expr.c, friend.c,
9506         init.c, lex.c, mangle.c, method.c, pt.c, repo.c, rtti.c, search.c,
9507         semantics.c, spew.c, tree.c, typeck.c, typeck2.c, xref.c:
9508         Change my_fancy_abort() to abort().
9510 2002-01-23  Jason Merrill  <jason@redhat.com>
9512         PR c++/5453
9513         * class.c (fixed_type_or_null): Fix thinko.
9515         PR c++/3331
9516         * init.c (resolve_offset_ref): Use build_indirect_ref.
9518         * decl2.c (grokclassfn): Don't set DECL_REGISTER on 'this'.
9520 2002-01-22  Jason Merrill  <jason@redhat.com>
9522         * parse.y (function_body): Suppress the block for the outermost
9523         curly braces.
9524         * decl.c (pushdecl): Don't try to skip it.
9525         (begin_function_body): Keep the block we create, not the next one.
9526         * init.c (emit_base_init): Don't mess with keep_next_level.
9528         * class.c (build_base_path): Tweak formatting.
9530 2002-01-19  Nathan Sidwell  <nathan@codesourcery.com>
9532         Fix regression introduced with patch for c++/775
9533         * parse.y (class_head_defn): Check for template specializations
9534         with a different class-key.
9536 2002-01-17  Jason Merrill  <jason@redhat.com>
9538         * decl.c (begin_constructor_body, begin_destructor_body): New fns.
9539         (begin_function_body): Call them and keep_next_level.
9540         * init.c (emit_base_init): Call keep_next_level.
9541         * semantics.c (setup_vtbl_ptr): Lose.
9542         * cp-tree.h (struct cp_language_function): Remove vtbls_set_up_p.
9543         (vtbls_set_up_p): Lose.
9544         * pt.c (tsubst_expr, CTOR_INITIALIZER): Call emit_base_init.
9545         * method.c (do_build_copy_constructor): Likewise.
9546         (synthesize_method): Call finish_mem_initializers.
9547         * parse.y (nodecls): Likewise.
9549         * error.c (dump_type_suffix): Print the exception specs before
9550         recursing.
9551         (dump_function_decl): Here, too.
9553         * cp-tree.h (TMPL_PARMS_DEPTH): Cast to signed HOST_WIDE_INT.
9555 2002-01-10  Ira Ruben   <ira@apple.com>
9557         PR c++/907
9558         * decl.c (start_method): Handle attrlist.
9560 2002-01-10  Jakub Jelinek  <jakub@redhat.com>
9562         * decl2.c (max_tinst_depth): Increase default limit to 500.
9564 2002-01-10  Graham Stott  <grahams@redhat.com>
9566         * spew.c (YYCHAR): Uppercase macro parameter and add
9567         parenthesis.
9568         (YYCODE): Likewise.
9569         (NAME): Uppercase macro parameter.
9571 2002-01-09  Graham Stott  <grahams@redhat.com>
9573         * decl.h (grokdeclarator): Wrap long line.
9575         * semantics.c (FINISH_COND): Uppercase macro paramaters and
9576         add parenthesis.
9578 2002-01-08  Graham Stott  <grahams@redhat.com>
9580         * xref.c (FILE_NAME_ABSOLUTE_P): Add parenthesis.
9581         (PALLOC): Uppercase macro parameter and whitespace.
9582         (SALLOC): Uppercase macro parameter.
9583         (SFREE): Uppercase macros parameter, add parenthese and
9584         whitespace.
9585         (STREQL): Uppercase macro parameter and whitespace.
9586         (STRNEQ): Likewise.
9587         (STRLSS): Likewise.
9588         (STRLEQ): Likewise.
9589         (STRGTR): Likewise.
9590         (STRGEQ): Likewise.
9592         * call.c (convert_like): Add parenthesis and wrap.
9593         (convert_like_with_context): Likewise.
9594         (ICS_RANK): Whitespace.
9595         (NEED_TEMPORARY_P): Remove parenthesis.
9597         * class.c (VTT_TOP_LEVEL_P): Uppercase macro parameter and
9598         whitespace.
9599         (VTT_MARKED_BINFO_P): Likewise.
9601         * decl.c (BINDING_LEVEL): Add parenthesis.
9602         (DEF_OPERATOR): Likewise.
9604         * mangle.c (MANGLE_TRACE): Add parenthesis.
9605         (MANGLE_TRACE_TREE): Likewise.
9606         (write_signed_number): Likewise.
9607         (write_unsigned_number): Likewise.
9609         * pt.c (ccat): Uppercase macro parameter.
9610         (cat): Likewise
9612         * search.c (SET_BINFO_ACCESS): Add parenthesis.
9614 2002-01-07  Jason Merrill  <jason@redhat.com>
9616         * decl2.c (coerce_new_type): Downgrade error for size_t mismatch
9617         to pedwarn.
9619         PR c++/3536
9620         * method.c (make_thunk): If !flag_weak, give the thunk the
9621         function's linkage.
9622         (use_thunk): Here, too.
9624 2002-01-07  Graham Stott  <grahams@redhat.com>
9626         * error.c: Update copyright date.
9627         (print_scope_operator): Add parenthesis.
9628         (print_left_paren): Likewise.
9629         (print_right_paren): Likewise.
9630         (print_left_bracket): Likewise.
9631         (print_right_bracket): Likewise.
9632         (print_template_argument_list_start): Likewise.
9633         (print_template_argument_list_end): Likewise.
9634         (print_non_consecutive_character): Likewise.
9635         (print_tree_identifier): Likewise.
9636         (print_identifier): Likewise.
9637         (NEXT_CODE): Uppercase macro parameter.
9638         (ident_fndecl): Delete unused.
9639         (GLOBAL_THING): Likewise.
9641 2002-01-06  Graham Stott  <grahams@redhat.com>
9643         * cp-tree.h (VAR_OR_FUNCTION_DECL_CHECK): Add parenthesis.
9644         (VAR_FUNCTION_OR_PARM_DECL_CHECK): Likewise.
9645         (VAR_TEMPL_TYPE_OR_FUNCTION_DECL_CHECK) Likewise.
9646         (RECORD_OR_UNION_TYPE_CHECK): Likewise.
9647         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Likewise.
9648         (C_IS_RESERVED_WORD): Uppercase macro parameter.
9649         (C_RID_YYCODE) Likewise.
9650         (ptrmem_cst): Use rtx.
9651         (LOCAL_BINDING_P): Add whitespace.
9652         (INHERITED_VALUE_BINDING_P): Likewise.
9653         (BINDING_SCOPE): Wrap long line.
9654         (BINDING_HAS_LEVEL_P): Remove parenthesis.
9655         (BINDING_VALUE): Wrap long line.
9656         (BINDING_TYPE): Whitespace.
9657         (IDENTIFIER_GLOBAL_VALUE): Add parenthesis.
9658         (SET_IDENTIFIER_GLOBAL_VALUE): Likewise.
9659         (IDENTIFIER_NAMESPACE_VALUE): Likewise.
9660         (SET_IDENTIFIER_NAMESPACE_VALUE: Likewise.
9661         (same_type_p): Uppercase macro parameters.
9662         (same_type_ignoring_top_level_qualifiers_p): Likewise.
9663         (OVL_FUNCTION): Wrap long line.
9664         (OVL_CHAIN): Whitespace.
9665         (OVL_CURRENT): Add parenthesis and whitespace.
9666         (OVL_NEXT): Whitespace.
9667         (OVL_USED): Likewise.
9668         (IDENTIFIER_TYPE_VALUE): Likewise.
9669         (REAL_IDENTIFIER_TYPE_VALUE): Remove parenthesis.
9670         (SET_IDENTIFIER_TYPE_VALUE): Add parenthesis and whitespace.
9671         (LANG_ID_FIELD): Whitespace.
9672         (SET_LANG_ID(NODE,VALUE,NAME): Likewise.
9673         (IDENTIFIER_LABEL_VALUE): Whitespace and wrap.
9674         (SET_IDENTIFIER_LABEL_VALUE): Whitespace.
9675         (IDENTIFIER_IMPLICIT_DECL): Whitespace and wrap.
9676         (SET_IDENTIFIER_IMPLICIT_DECL); Whitespace.
9677         (IDENTIFIER_ERROR_LOCUS): Whitespace and wrap.
9678         (SET_IDENTIFIER_ERROR_LOCUS); Whitespace.
9679         (IDENTIFIER_VIRTUAL_P): Likewise.
9680         (IDENTIFIER_OPNAME_P): Likewise.
9681         (IDENTIFIER_TYPENAME_P): Remove parenthesis.
9682         (C_TYPE_FIELDS_READONLY): Uppercase macro parameters.
9683         (C_SET_EXP_ORIGINAL_CODE): Likewise.
9684         (TYPE_ASSEMBLER_NAME_STRING): Wrap long line.
9685         (TYPE_ASSEMBLER_NAME_LENGTH): Likewise.
9686         (IS_AGGR_TYPE): Uppercase macro parameter.
9687         (CLASS_TYPE_P): Likewise.
9688         (IS_AGGR_TYPE_CODE): Uppercase macro parameter and parenthesis.
9689         (IS_AGGR_TYPE_2): Whitespace.
9690         (TAGGED_TYPE_P): Uppercase macro parameter.
9691         (TYPE_BUILT_IN): Whitespace.
9692         (TYPE_FOR_JAVA): Likewise.
9693         (FUNCTION_ARG_CHAIN): Remove parenthesis.
9694         (FUNCTION_FIRST_USER_PARMTYPE): Add parenthesis.
9695         (FUNCTION_FIRST_USER_PARAM): Likewise.
9696         (PROMOTES_TO_AGGR_TYPE): Whitespace.
9697         (DERIVED_FROM_P): Add parenthesis and wrap.
9698         (UNIQUELY_DERIVED_FROM_P): Likewise.
9699         (ACCESSIBLY_UNIQUELY_DERIVED_P): Likewise.
9700         (PUBLICLY_UNIQUELY_DERIVED_P): Likewise.
9701         (CLASSTYPE_USE_TEMPLATE): Whitespace.
9702         (CLASSTYPE_INLINE_FRIENDS): Remove parenthesis.
9703         (TYPE_GETS_DELETE): Add parenthesis.
9704         (TYPE_HAS_CONVERSION): Add parenthesis and wrap.
9705         (TYPE_HAS_ASSIGN_REF): Likewise,
9706         (TYPE_HAS_CONST_ASSIGN_REF): Likewise.
9707         (TYPE_HAS_INIT_REF): Likewise.
9708         (TYPE_HAS_CONST_INIT_REF): Likewise.
9709         (TYPE_BEING_DEFINED): Likewise.
9710         (TYPE_LANG_SPECIFIC): Likewise.
9711         (CLASSTYPE_RTTI): Likewise.
9712         (TYPE_OVERLOADS_CALL_EXPR): Likewise.
9713         (TYPE_OVERLOADS_ARRAY_REF): Likewise.
9714         (TYPE_OVERLOADS_ARROW): Likewise.
9715         (TYPE_USES_MULTIPLE_INHERITANCE): Likewise.
9716         (TYPE_USES_VIRTUAL_BASECLASSES): Add parenthesis.
9717         (CLASSTYPE_METHOD_VEC): Likewise.
9718         (CLASSTYPE_MARKED_N): Likewise.
9719         (CLASSTYPE_MARKED): Likewise.
9720         (CLASSTYPE_MARKED2): Likewise.
9721         (CLASSTYPE_MARKED3): Likewise.
9722         (CLASSTYPE_MARKED4): Likewise.
9723         (CLASSTYPE_MARKED5): Likewise.
9724         (CLASSTYPE_MARKED6): Likewise.
9725         (SET_CLASSTYPE_MARKED): Whitespace.
9726         (CLEAR_CLASSTYPE_MARKED): Likewise.
9727         (SET_CLASSTYPE_MARKED2): Likewise.
9728         (CLEAR_CLASSTYPE_MARKED2): Likewise.
9729         (SET_CLASSTYPE_MARKED3): Likewise.
9730         (CLEAR_CLASSTYPE_MARKED3): Likewise.
9731         (SET_CLASSTYPE_MARKED4): Likewise.
9732         (CLEAR_CLASSTYPE_MARKED4): Likewise.
9733         (SET_CLASSTYPE_MARKED5): Likewise.
9734         (CLEAR_CLASSTYPE_MARKED5): Likewise.
9735         (SET_CLASSTYPE_MARKED6): Likewise.
9736         (CLEAR_CLASSTYPE_MARKED6): Likewise.
9737         (CLASSTYPE_TAGS): Likewise.
9738         (CLASSTYPE_VSIZE): Likewise.
9739         (CLASSTYPE_VBASECLASSES): Likewise.
9740         (CANONICAL_BINFO): Add parenthesis.
9741         (CLASSTYPE_SIZE(NODE): Likewise.
9742         (CLASSTYPE_SIZE_UNIT): Likewise.
9743         (CLASSTYPE_ALIGN(NODE): Likewise.
9744         (CLASSTYPE_USER_ALIGN): Likewise.
9745         (TYPE_JAVA_INTERFACE): Likewise.
9746         (CLASSTYPE_PURE_VIRTUALS): Likewise.
9747         (CLASSTYPE_NEEDS_VIRTUAL_REINIT): Whitespace and wrap.
9748         (TYPE_HAS_DEFAULT_CONSTRUCTOR): Likewise.
9749         (CLASSTYPE_HAS_MUTABLE): Likewise.
9750         (CLASSTYPE_FRIEND_CLASSES): Likewise. Likewise.
9751         (CLASSTYPE_DECLARED_CLASS): Whitespace and wrap.
9752         (CLASSTYPE_READONLY_FIELDS_NEED_INIT): Likewise.
9753         (CLASSTYPE_REF_FIELDS_NEED_INIT): Likewise.
9754         (CLASSTYPE_INTERFACE_ONLY): Likewise.
9755         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
9756         (CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
9757         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
9758         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
9759         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
9760         (CLASSTYPE_DEBUG_REQUESTED): Whitespace and wrap.
9761         (BINFO_UNSHARED_MARKED): Whitespace.
9762         (BINFO_MARKED): Whitespace and wrap.
9763         (SET_BINFO_MARKED): Likewise.
9764         (CLEAR_BINFO_MARKED): Likewise.
9765         (BINFO_VTABLE_PATH_MARKED): Likewise.
9766         (SET_BINFO_VTABLE_PATH_MARKED): Likewise.
9767         (CLEAR_BINFO_VTABLE_PATH_MARKED): Likewise.
9768         (BINFO_SUBVTT_INDEX): Remove parenthesis.
9769         (BINFO_VPTR_INDEX): Likewise.
9770         (BINFO_PRIMARY_BASE_OF): Likewise,
9771         (CLASSTYPE_VFIELDS): Whitespace.
9772         (VF_DERIVED_VALUE): Wrap long line.
9773         (NAMESPACE_LEVEL): Whitespace.
9774         (CAN_HAVE_FULL_LANG_DECL_P): Remove parenthesis.
9775         (DEFARG_POINTER): Whitespace.
9776         (DECL_NEEDED_P): Remove parenthesis.
9777         (DECL_LANGUAGE): Whitespace.
9778         (SET_DECL_LANGUAGE): Add parenthesis.
9779         (DECL_CONSTRUCTOR_P): Whitespace and wrap.
9780         (DECL_OVERLOADED_OPERATOR_P): Remove parenthesis.
9781         (DECL_IN_AGGR_P): Whitespace.
9782         (DECL_FRIEND_P): Likewise.
9783         (DECL_BEFRIENDING_CLASSES): Likewise.
9784         (DECL_STATIC_FUNCTION_P): Whitespace and wrap.
9785         (DECL_NONCONVERTING_P): Whitespace.
9786         (DECL_PURE_VIRTUAL_P): Likewise.
9787         (DECL_NEEDS_FINAL_OVERRIDER_P): Likewise.
9788         (DECL_PENDING_INLINE_INFO): Whitespace.
9789         (DECL_SORTED_FIELDS): Likewise.
9790         (DECL_DEFERRED_FN): Likewise.
9791         (DECL_TEMPLATE_INFO): Likewise.
9792         (CLASSTYPE_TEMPLATE_INFO): Whitespace and wrap.
9793         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO); Likewise.
9794         (SET_TYPE_TEMPLATE_INFO): Add parenthesis.
9795         (TMPL_ARGS_LEVEL): Likewise.
9796         (SET_TMPL_ARGS_LEVEL): Likewise.
9797         (INNERMOST_TEMPLATE_PARMS): Whitespace.
9798         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter.
9799         (INTEGRAL_CODE_P(CODE): Add parenthesis.
9800         (CP_INTEGRAL_TYPE_P): Remove parenthesis.
9801         (TYPE_HAS_CONSTRUCTOR): Whitespace.
9802         (TREE_HAS_CONSTRUCTOR): Likewise.
9803         (TYPE_HAS_DESTRUCTOR): Likewise.
9804         (TYPE_HAS_REAL_ASSIGN_REF): Likewise.
9805         (TYPE_HAS_COMPLEX_ASSIGN_REF): Likewise.
9806         (TYPE_HAS_ABSTRACT_ASSIGN_REF): Likewise.
9807         (TYPE_HAS_COMPLEX_INIT_REF): Likewise.
9808         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): Likewise.
9809         (TYPE_PTRMEMFUNC_P): Likewise.
9810         (TYPE_PTRMEMFUNC_FLAG): Likewise.
9811         (TYPE_GET_PTRMEMFUNC_TYPE): Likewise.
9812         (TYPE_SET_PTRMEMFUNC_TYPE): Likewise.
9813         (TYPE_PTRMEM_CLASS_TYPE): Remove parenthesis.
9814         (TYPE_PTRMEM_POINTED_TO_TYPE): Likewise.
9815         (DECL_ACCESS): Whitespace.
9816         (DECL_GLOBAL_CTOR_P): Remove parenthesis.
9817         (DECL_GLOBAL_DTOR_P): Likewise.
9818         (GLOBAL_INIT_PRIORITY): Likewise.
9819         (DECL_TEMPLATE_PARMS): Likewise.
9820         (DECL_TEMPLATE_RESULT): Likewise.
9821         (DECL_TEMPLATE_INSTANTIATIONS): Likewise.
9822         (DECL_TEMPLATE_SPECIALIZATIONS): Likewise.
9823         (DECL_IMPLICIT_TYPEDEF_P): Remove parenthesis.
9824         (SET_DECL_IMPLICIT_TYPEDEF_P): Likewise.
9825         (PRIMARY_TEMPLATE_P): Add parenthesis.
9826         (DECL_USE_TEMPLATE): Whitespace.
9827         (CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
9828         (SET_CLASSTYPE_IMPLICIT_INSTANTIATION): Likewise.
9829         (CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
9830         (SET_CLASSTYPE_EXPLICIT_INSTANTIATION): Likewise.
9831         (CALL_DECLARATOR_PARMS): Remove parenthesis.
9832         (CALL_DECLARATOR_QUALS): Likewise.
9833         (CALL_DECLARATOR_EXCEPTION_SPEC): Likewise.
9834         (TEMP_NAME_P): Wrap.
9835         (VFIELD_NAME_P): Likewise.
9836         (B_SET): Uppercase macro parameters and add parenthesis.
9837         (B_CLR): Likewise.
9838         (B_TST): Likewise.
9839         (LOOKUP_NAMESPACES_ONLY): Uppercase macro parameters.
9840         (LOOKUP_TYPES_ONLY): Uppercase macro parameters.
9841         (LOOKUP_QUALIFIERS_ONLY): Uppercase macro parameters.
9842         (same_or_base_type_p): Likewise.
9843         (cp_deprecated): Likewise.
9845 2002-01-05  Richard Henderson  <rth@redhat.com>
9847         * semantics.c (expand_body): Revert last change.
9849 2002-01-04  Jason Merrill  <jason@redhat.com>
9851         PR c++/4122
9852         * class.c (update_vtable_entry_for_fn): Set delta to zero for a
9853         lost primary.
9855         * class.c (build_vtbl_initializer): Check for a lost primary
9856         before calculating the vtable entry to throw away.
9858 2002-01-02  Jason Merrill  <jason@redhat.com>
9860         * semantics.c (expand_body): Call outlining_inline_function when
9861         emitting an inline function out of line.
9863 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9865         PR c++/5116, c++/764 reversion
9866         * call.c (build_new_op): Revert the instantiations. They are
9867         incorrect.
9869 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9871         PR c++/5089
9872         * decl2.c (reparse_absdcl_as_casts): Don't warn about casts to void.
9874 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9876         PR c++/3716
9877         * pt.c (tsubst_aggr_type): Move pmf handling into tsubst.
9878         (tsubst, case POINTER_TYPE): Handle pmfs here.
9879         (tsubst, case OFFSET_TYPE): Check it is not an offset to
9880         reference. If it is offset to FUNCTION_TYPE, create a METHOD_TYPE.
9882 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9884         PR c++/35
9885         * cp-tree.h (DECL_LANG_FLAG_0): Used for PARM_DECL too.
9886         (DECL_TEMPLATE_PARM_P): A PARM_DECL might be one too.
9887         * pt.c (process_template_parm): SET_DECL_TEMPLATE_PARM_P on the
9888         PARM_DECL.
9889         (tsubst_template_parms): Break up loop statements.
9890         (tsubst_decl, case PARM_DECL): Copy DECL_TEMPLATE_PARM_P. Template
9891         parm PARM_DECLs don't get promoted.
9893 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9895         PR c++/5123
9896         * typeck.c (build_component_ref): Cope with a TEMPLATE_ID_EXPR.
9897         (build_x_function_call): Cope with a COMPONENT_REF containing a
9898         TEMPLATE_ID_EXPR.
9900 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9902         PR c++/5213
9903         * pt.c (convert_template_argument): Be more careful determining
9904         when RECORD_TYPE templates are or are not templates.
9906 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9908         PR c++/775
9909         * cp-tree.h (handle_class_head): Adjust prototype.
9910         * decl2.c (handle_class_head): Add DEFN_P and NEW_TYPE_P
9911         parameters. Use for all class heads.
9912         * parse.y (named_class_head_sans_basetype, named_class_head,
9913         named_complex_class_head_sans_basetype,
9914         named_class_head_sans_basetype_defn,
9915         unnamed_class_head): Remove.
9916         (class_head, class_head_apparent_template): Recognize class heads
9917         (class_head_decl, class_head_defn): New reductions. Process class
9918         heads.
9919         (structsp): Adjust class definition and class declaration
9920         reductions.
9921         (maybe_base_class_list): Give diagnostic on empty list.
9923 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9925         PR c++/4379
9926         * typeck.c (build_x_unary_op): Don't destroy the OFFSET_REF on a
9927         single non-static member.
9928         (unary_complex_lvalue): If it cannot be a pointer to member, don't
9929         make it so. Check it is not pointer to reference.
9931 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9933         PR c++/5132
9934         * decl2.c (reparse_absdcl_as_casts): Don't digest_init if we
9935         are processing a template decl.
9937 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
9939         PR c++/5116, c++/764
9940         * call.c (build_new_op): Make sure template class operands are
9941         instantiated. Simplify arglist construction.
9943 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
9945         * call.c (build_user_type_conversion_1): Use my_friendly_assert
9946         rather than if ... abort.
9947         * cvt.c (convert_to_reference): Likewise.
9948         * semantics.c (setup_vtbl_ptr): Likewise.
9949         * pt.c (lookup_template_class): Comment typo.
9951 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
9953         PR c++/5125
9954         * pt.c (push_template_decl_real): Make sure DECL has
9955         DECL_LANG_SPECIFIC.
9957 2001-12-29  Nathan Sidwell  <nathan@codesourcery.com>
9959         PR c++/335
9960         * init.c (resolve_offset_ref): Copy cv qualifiers of this pointer
9961         for non-reference fields.
9962         * typeck.c (require_complete_type): Use resolve_offset_ref).
9964 2001-12-26  Nathan Sidwell  <nathan@codesourcery.com>
9966         PR c++/196
9967         * parse.y (bad_parm): Better diagnostic when given a SCOPE_REF.
9969 2001-12-24  Nathan Sidwell  <nathan@codesourcery.com>
9971         PR c++/160
9972         * typeck.c (build_modify_expr): Remove old unreachable code & tidy
9973         up. Don't stabilize_references when initializing a reference.
9975 2001-12-23  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9977         * decl2.c (lang_f_options): Const-ify.
9979 2001-12-20  Joseph S. Myers  <jsm28@cam.ac.uk>
9981         * config-lang.in (diff_excludes): Remove.
9983 2001-12-19  Nathan Sidwell  <nathan@codesourcery.com>
9985         PR c++/90
9986         * typeck.c (build_function_call_real): Use original function
9987         expression for errors.
9989 2001-12-18  Jason Merrill  <jason@redhat.com>
9991         PR c++/3242
9992         * class.c (add_method): Do compare 'this' quals when trying to match a
9993         used function.  Don't defer to another used function.
9995 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
9997         * pt.c (instantiate_clone): Remove, fold into ...
9998         (instantiate_template): ... here. Simplify by removing mutual
9999         recursion.
10000         * typeck2.c (build_m_component_ref): Don't cv qualify the function
10001         pointed to by a pointer to function.
10002         * class.c (delete_duplicate_fields_1): Typo.
10004 2001-12-18  Jason Merrill  <jason@redhat.com>
10006         C++ ABI change: destroy value arguments in caller.
10007         * semantics.c (genrtl_start_function, genrtl_finish_function): Don't
10008         create an extra binding level for the parameters.
10009         * decl.c (store_parm_decls): Don't do parameter cleanups.
10011 2001-12-18  Nathan Sidwell  <nathan@codesourcery.com>
10013         * call.c (build_new_method_call): Use '%#V'.
10014         * error.c (cv_to_string): Use V parameter to determine padding.
10016 2001-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
10018         * call.c, decl2.c, init.c: Use "built-in" and "bit-field"
10019         spellings in messages.
10021 2001-12-17  Zack Weinberg  <zack@codesourcery.com>
10023         * cp-tree.h: Delete #defines for cp_error, cp_warning,
10024         cp_pedwarn, and cp_compiler_error.
10025         * call.c, class.c, cp-tree.h, cvt.c, decl.c, decl2.c, error.c,
10026         except.c, friend.c, init.c, lex.c, method.c, parse.y, pt.c,
10027         rtti.c, search.c, semantics.c, spew.c, tree.c, typeck.c,
10028         typeck2.c: Change calls to the above macros to use their
10029         language-independent equivalents: error, warning, pedwarn, and
10030         internal_error respectively.
10032 2001-12-16  Neil Booth  <neil@daikokuya.demon.co.uk>
10034         * decl2.c (finish_file): Remove back_end_hook.
10036 2001-12-16  Joseph S. Myers  <jsm28@cam.ac.uk>
10038         * ChangeLog.1, ChangeLog.2, ChangeLog, NEWS, call.c, class.c,
10039         cp-tree.h, decl.c, decl2.c, except.c, operators.def, optimize.c,
10040         pt.c, rtti.c, semantics.c, typeck.c: Fix spelling errors.
10042 2001-12-15  Joseph S. Myers  <jsm28@cam.ac.uk>
10044         * lang-options.h: Use American spelling in messages.
10046 2001-12-13  Jason Merrill  <jason@redhat.com>
10048         * Make-lang.in (parse.h): Separate rule, just depend on parse.c.
10050         Use cleanups to run base and member destructors.
10051         * init.c (push_base_cleanups): New function, split out from...
10052         (build_delete): ...here.  Lose !TYPE_HAS_DESTRUCTOR code.
10053         * decl.c (finish_destructor_body): Move vbase destruction code to
10054         push_base_cleanups.
10055         (begin_function_body, finish_function_body): New fns.
10056         (finish_function): Move [cd]tor handling and call_poplevel to
10057         finish_function_body.
10058         (pushdecl): Skip the new level.
10059         * semantics.c (genrtl_try_block): Don't call end_protect_partials.
10060         (setup_vtbl_ptr): Call push_base_cleanups.
10061         * method.c (synthesize_method): Call {begin,end}_function_body.
10062         * pt.c (tsubst_expr): Handle COMPOUND_STMT_BODY_BLOCK.
10063         * cp-tree.h: Declare new fns.
10064         * parse.y (function_body, .begin_function_body): New nonterminals.
10065         (fndef, pending_inline, function_try_block): Use function_body.
10066         (ctor_initializer_opt, function_try_block): No longer has a value.
10067         (base_init): Remove .set_base_init token.
10068         (.set_base_init, compstmt_or_error): Remove.
10069         * Make-lang.in (parse.c): Expect two fewer s/r conflicts.
10071         * optimize.c (maybe_clone_body): Fix parameter updating.
10073 2001-12-12  Jason Merrill  <jason@redhat.com>
10075         * decl.c (store_parm_decls): Remove parms_have_cleanups cruft.
10076         * semantics.c (genrtl_start_function): Don't pass
10077         parms_have_cleanups or push an extra binding level.
10078         (genrtl_finish_function): Lose cleanup_label cruft.
10080         * cp-tree.h (struct cp_language_function): Remove x_ctor_label.
10081         (ctor_label): Remove.
10082         * semantics.c (finish_return_stmt): Lose ctor_label support.
10083         * decl.c (finish_constructor_body, mark_lang_function): Likewise.
10084         * typeck.c (check_return_expr): Check DECL_DESTRUCTOR_P, not
10085         dtor_label.
10087         * call.c (build_new_method_call): Let resolves_to_fixed_type_p
10088         check for [cd]tors.
10089         * class.c (fixed_type_or_null, case INDIRECT_REF): Fix.
10091         * decl.c (finish_function): Check VMS_TARGET, not VMS.
10093         * decl.c (start_cleanup_fn): Remove redundant pushlevel.
10094         (end_cleanup_fn): And poplevel.
10096         * semantics.c (setup_vtbl_ptr): Always build a CTOR_INITIALIZER
10097         if we're in a template.
10099 2001-12-12  Jakub Jelinek  <jakub@redhat.com>
10101         * cp-tree.h (DESTRUCTOR_DECL_PREFIX, DESTRUCTOR_NAME_P,
10102         ANON_PARMNAME_FORMAT, ANON_PARMNAME_P, DESTRUCTOR_NAME_FORMAT,
10103         THIS_NAME_P): Delete.
10104         * spew.c (read_process_identifier): Remove DESTRUCTOR_NAME_P,
10105         THIS_NAME_P and ANON_PARMNAME_P tests from warning about clash
10106         with internal naming scheme.
10107         * error.c (dump_decl): Remove DESTRUCTOR_NAME_P use.
10109 2001-12-12  Nathan Sidwell  <nathan@codesourcery.com>
10111         * decl.c (grokdeclarator): Deprecated implicit typename use.
10113 2001-12-11  Nathan Sidwell  <nathan@codesourcery.com>
10115         PR g++/51
10116         * parse.y (frob_specs): Indicate it is a language linkage which
10117         contained the extern.
10118         * decl.c (grokdeclarator): Allow extern language linkage with
10119         other specifiers.
10121 2001-12-10  Nathan Sidwell  <nathan@codesourcery.com>
10123         PR g++/72
10124         * decl.c (add_binding): Don't reject duplicate typedefs involving
10125         template parameters.
10127 2001-12-10  Neil Booth  <neil@daikokuya.demon.co.uk>
10129         * parse.y, semantics.c: Similarly.
10131 2001-12-09  Nathan Sidwell  <nathan@codesourcery.com>
10133         PR g++/87
10134         * cp-tree.h (DECL_COPY_CONSTRUCTOR_P): Use copy_fn_p.
10135         (copy_args_p): Rename to ...
10136         (copy_fn_p): ... here.
10137         (grok_special_member_properties): New function.
10138         (grok_op_properties): Lose VIRTUALP parameter.
10139         (copy_assignment_arg_p): Remove.
10140         * call.c (build_over_call): Use copy_fn_p.
10141         * decl.c (grokfndecl): Reformat. Adjust call to
10142         grok_op_properties.
10143         (copy_args_p): Rename to ...
10144         (copy_fn_p): ... here. Reject template functions. Check for pass
10145         by value.
10146         (grok_special_member_properties): Remember special functions.
10147         (grok_ctor_properties): Don't remember them here, just check.
10148         (grok_op_properties): Likewise.
10149         (start_method): Call grok_special_member_properties.
10150         * decl2.c (grokfield): Likewise.
10151         (copy_assignment_arg_p): Remove.
10152         (grok_function_init): Don't remember abstract assignment here.
10153         * pt.c (instantiate_class_template): Call
10154         grok_special_member_properties.
10155         (tsubst_decl): Adjust grok_op_properties call.
10157 2001-12-08  Aldy Hernandez  <aldyh@redhat.com>
10159         * lex.c (rid_to_yy): Add RID_CHOOSE_EXPR and
10160         RID_TYPES_COMPATIBLE_P.
10162 2001-12-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
10164         * semantics.c (simplify_aggr_init_exprs_r): Add DIRECT_BIND flag in
10165         call to build_aggr_init.
10166         * cp-tree.h (DIRECT_BIND): Document new use of DIRECT_BIND.
10168 2001-12-08  Neil Booth  <neil@daikokuya.demon.co.uk>
10170         * parse.y: Replace uses of the string non-terminal with STRING.
10171         Don't perform string concatentaion here.
10172         (string): Remove non-terminal.
10173         * semantics.c (finish_asm_stmt): Don't concatenate strings here.
10175 2001-12-05  Jason Merrill  <jason@redhat.com>
10177         * cp-lang.c (LANG_HOOKS_TREE_INLINING_START_INLINING): Define.
10178         (LANG_HOOKS_TREE_INLINING_END_INLINING): Define.
10179         * tree.c (cp_start_inlining, cp_end_inlining): New fns.
10180         * pt.c (push_tinst_level): No longer static.
10181         * cp-tree.h: Declare them.
10183         * init.c (resolve_offset_ref): Don't check access for the base
10184         conversion to access a FIELD_DECL.
10186         * cp-tree.h (TYPE_REFFN_P): New macro.
10187         * decl.c (bad_specifiers): Check it, too.
10189         * rtti.c (create_pseudo_type_info): Set CLASSTYPE_INTERFACE_ONLY
10190         on the __*_type_info type if we haven't seen a definition.
10192 2001-12-05  Neil Booth  <neil@daikokuya.demon.co.uk>
10194         * decl.c: Include c-common.h.
10195         (shadow_warning): Move to c-common.c.
10197 2001-12-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10199         * decl.c (duplicate_decls): Don't copy DECL_NO_CHECK_MEMORY_USAGE.
10201 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
10203         * pt.c (end_template_parm_list): Clear TREE_CHAIN of each parm.
10205 2001-12-04  Nathan Sidwell  <nathan@codesourcery.com>
10207         PR g++/164
10208         * init.c (sort_base_init): Allow binfos to be directly specified.
10209         * method.c (do_build_copy_constructor): Explicitly convert to the
10210         base instance.
10211         (do_build_assign_ref): Likewise.
10213 2001-12-03  Hans-Peter Nilsson  <hp@bitrange.com>
10215         * decl.c (xref_basetypes): Don't use C99 construct in tag_code
10216         declaration and initialization.
10218 2001-12-03  Neil Booth  <neil@daikokuya.demon.co.uk>
10220         * typeck2.c: Remove leading capital from diagnostic messages, as
10221         per GNU coding standards.
10223 2001-12-03  Mumit Khan  <khan@nanotech.wisc.edu>
10225         PR c++/3394
10226         * decl.c (xref_basetypes): Handle attributes between
10227         'class' and name.
10229 2001-12-03  Nathan Sidwell  <nathan@codesourcery.com>
10231         PR g++/3381
10232         * parse.y (named_complex_class_head_sans_basetype): Add new
10233         reduction.
10234         * Make-lang.in (parse.c): Adjust expected conflict count.
10236 2001-12-03  Jason Merrill  <jason@redhat.com>
10238         * class.c (finish_vtbls): Fill in BINFO_VPTR_FIELD in the
10239         immediate binfos for our virtual bases.
10241 2001-12-02  Neil Booth  <neil@daikokuya.demon.co.uk>
10243         * call.c (build_java_interface_fn_ref): Similarly.
10244         * except.c (is_admissible_throw_operand): Similarly.
10245         * init.c (build_java_class_ref): Similarly.
10246         * xref.c (open_xref_file): Similarly.
10248 2001-12-01  Neil Booth  <neil@daikokuya.demon.co.uk>
10250         * class.c (finish_struct): Remove trailing periods from messages.
10251         * decl.c (check_tag_decl): Similarly.
10252         * lex.c (cxx_set_yydebug): Similarly.
10253         * typeck2.c (friendly_abort): Similarly.
10255 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
10257         PR c++/3048
10258         * cp-tree.h (ovl_member): Remove.
10259         * decl2.c (merge_functions): Handle extern "C" functions
10260         specially.
10261         * tree.c (ovl_member): Remove.
10263 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
10265         PR c++/4842
10266         * class.c (get_basefndecls): Take an IDENTIFIER_NODE, not a
10267         FUNCTION_DECL, as input.
10268         (mark_overriders): Remove.
10269         (warn_hidden): Rework for the new ABI.
10271 2001-11-29  Mark Mitchell  <mark@codesourcery.com>
10273         PR c++/3471
10274         * call.c (convert_like_real): Do not build additional temporaries
10275         for rvalues of class type.
10277 2001-11-28  Nathan Sidwell  <nathan@codesourcery.com>
10279         * cp-tree.h (UNIQUELY_DERIVED_FROM_P): Use lookup base.
10280         (ACCESSIBLY_UNIQUELY_DERIVED_FROM_P): Likewise.
10281         (PUBLICLY_UNIQUELY_DERIVED_FROM_P: Likewise.
10282         (DERIVED_FROM_P): Likewise.
10283         (enum base_access): Renumber, add ba_quiet bit mask.
10284         (get_binfo): Remove.
10285         (get_base_distance): Remove.
10286         (binfo_value): Remove.
10287         (ACCESSIBLY_DERIVED_FROM_P): Remove.
10288         * call.c (standard_conversion): Use lookup_base.
10289         * class.c (strictly_overrides): Likewise.
10290         (layout_virtual_bases): Likewise.
10291         (warn_about_ambiguous_direct_bases): Likewise.
10292         (is_base_of_enclosing_class): Likewise.
10293         (add_vcall_offset_vtbl_entries_1): Likewise.
10294         * cvt.c (build_up_reference): Adjust comment.
10295         * init.c (build_member_call): Reformat.
10296         * search.c (get_binfo): Remove.
10297         (get_base_distance_recursive): Remove.
10298         (get_base_distance): Remove.
10299         (lookup_base_r): Tweak.
10300         (lookup_base): Add ba_quiet control. Complete the types here.
10301         (covariant_return_p): Use lookup_base.
10302         * tree.c (binfo_value): Remove.
10303         (maybe_dummy_object): Use lookup_base.
10304         * typeck.c (build_static_cast): Use lookup_base.
10305         (get_delta_difference): Likewise.
10306         * typeck2.c (binfo_or_else): Use lookup_base.
10307         (build_scoped_ref): Add back error_mark_check.
10308         (build_m_component_ref): Use lookup_base.
10310 2001-11-29  Joseph S. Myers  <jsm28@cam.ac.uk>
10312         * Make-lang.in (c++.generated-manpages): New dummy target.
10314 2001-11-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10316         * Make-lang.in (cp-lang.o): Depends on c-common.h.
10317         * cp-lang.c (c-common.h): Include.
10318         (LANG_HOOKS_EXPAND_CONSTANT, LANG_HOOKS_SAFE_FROM_P): New hooks.
10319         * decl.c (cxx_init_decl_processing): Don't set lang_safe_from_p.
10320         * expr.c (init_cplus_expand): Don't set lang_expand_constant.
10322 2001-11-26  Neil Booth  <neil@daikokuya.demon.co.uk>
10324         * decl2.c (c_language): Move to c-common.c.
10325         * lex.c (cxx_post_options, cxx_init_options): Use c-common.c
10326         functions.
10327         (cxx_init): Update.
10329 2001-11-26  Jason Merrill  <jason@redhat.com>
10331         * call.c (joust): Remove COND_EXPR hack.
10333 2001-11-25  Aldy Hernandez  <aldyh@redhat.com>
10335         * search.c (lookup_base_r): Declare bk in variable declaration
10336         space.
10338 2001-11-25  Nathan Sidwell  <nathan@codesourcery.com>
10340         PR g++/3145
10341         * class.c (build_vbase_pointer): Remove.
10342         (build_vbase_path): Remove.
10343         (build_base_path): New function.
10344         * cp-tree.h (base_access, base_kind): New enumerations.
10345         (build_base_path): Declare.
10346         (convert_pointer_to_real): Remove.
10347         (convert_pointer_to): Remove.
10348         (lookup_base): Declare.
10349         (convert_pointer_to_vbase): Remove.
10350         * call.c (build_scoped_method_call): Use lookup_base &
10351         build_base_path instead of convert_pointer_to_real,
10352         get_base_distance & get_binfo.
10353         (build_over_call): Likewise.
10354         * cvt.c (cp_convert_to_pointer): Likewise.
10355         (convert_to_pointer_force): Likewise.
10356         (build_up_reference): Likewise.
10357         (convert_pointer_to_real): Remove.
10358         (convert_pointer_to): Remove.
10359         * init.c (dfs_initialize_vtbl_ptrs): Use build_base_path
10360         instead of convert_pointer_to_vbase & build_vbase_path.
10361         (emit_base_init): Use build_base_path instead of
10362         convert_pointer_to_real.
10363         (expand_virtual_init): Lose unrequired conversions.
10364         (resolve_offset_ref): Use lookup_base and build_base_path
10365         instead of convert_pointer_to.
10366         * rtti.c (build_dynamic_cast_1): Use lookup_base &
10367         build_base_path instead of get_base_distance & build_vbase_path.
10368         * search.c (get_vbase_1): Remove.
10369         (get_vbase): Remove.
10370         (convert_pointer_to_vbase): Remove.
10371         (lookup_base_r): New function.
10372         (lookup_base): New function.
10373         * typeck.c (require_complete_type): Use lookup_base &
10374         build_base_path instead of convert_pointer_to.
10375         (build_component_ref): Likewise.
10376         (build_x_function_call): Likewise.
10377         (get_member_function_from_ptrfunc): Likewise.
10378         (build_component_addr): Likewise.
10379         * typeck2.c (build_scoped_ref): Likewise.
10381 2001-11-22  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
10383         * cp-tree.h (CP_TYPE_QUALS): Removed.
10384         * decl.c (cxx_init_decl_processing): Don't set lang_dump_tree.
10385         * cp-lang.c: Set LANG_HOOKS_TREE_DUMP_DUMP_TREE_FN and
10386         LANG_HOOKS_TREE_DUMP_TYPE_QUALS_FN.
10387         * dump.c (cp_dump_tree): Use void* dump_info argument to match
10388         lang-hooks prototype.
10389         * call.c, cp-tree.h, cvt.c, decl.c, init.c, mangle.c, method.c, pt.c,
10390         rtti.c, semantics.c, tree.c, typeck.c, typeck2.c: All references to
10391         CP_TYPE_QUALS changed to cp_type_quals.
10392         * Make-lang.in: References to c-dump.h changed to tree-dump.h.
10393         (CXX_C_OBJS): Remove c-dump.o.
10395 2001-11-21  Mark Mitchell  <mark@codesourcery.com>
10397         PR c++/3637
10398         * pt.c (lookup_template_class): Ensure that all specializations
10399         are registered on the list corresponding to the most general
10400         template.
10402 2001-11-20  Mark Mitchell  <mark@codesourcery.com>
10404         * call.c (non_reference): Add documentation.
10405         (convert_class_to_reference): Do not strip reference types
10406         from conversion operators.
10407         (maybe_handle_ref_bind): Simplify.
10408         (compare_ics): Correct handling of references.
10410 2001-11-19  John Wilkinson <johnw@research.att.com>
10412         * dump.c (dump_op): New function.
10413         (cp_dump_tree): Dump CLASSTYPE_TEMPLATE_SPECIALIZATION.  Use
10414         dump_op.  Dump DECL_MUTABLE, access and staticness for VAR_DECLs.
10415         DECL_PURE_VIRTUAL_P, DECL_VIRTUAL_P,
10417 2001-11-19  Mark Mitchell  <mark@codesourcery.com>
10419         PR4629
10420         * semantics.c (finish_sizeof): Make sure that expression created
10421         while processing a template do not have a type.
10422         (finish_alignof): Likewise.
10423         * typeck.c (c_sizeof): Likewise.
10424         (expr_sizeof): Likewise.
10426 2001-11-18  Neil Booth  <neil@daikokuya.demon.co.uk>
10428         * lex.c (cxx_finish): Call c_common_finish.
10429         (finish_parse): Remove.
10431 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10433         * decl.c (create_array_type_for_decl): Check if NAME is NULL_TREE
10434         when displaying error message about missing array bounds.
10436 2001-11-17  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10438         * mangle.c (write_expression): Handle CAST_EXPR, STATIC_CAST_EXPR,
10439         CONST_CAST_EXPR.
10440         * operators.def: Add CAST_EXPR, STATIC_CAST_EXPR, CONST_CAST_EXPR.
10442 2001-11-16  Neil Booth  <neil@daikokuya.demon.co.uk>
10444         * cp-tree.h (print_class_statistics): Restore.
10446 2001-11-15  Jason Merrill  <jason@redhat.com>
10448         * method.c (use_thunk): Don't emit debugging information for thunks.
10450         * parse.y: Add ... IDENTIFIER SCOPE and ... PTYPENAME SCOPE expansions.
10451         * decl.c (make_typename_type): Handle getting a class template.
10452         * search.c (lookup_field_r): A class template is good enough for
10453         want_type.
10455         * call.c (convert_like_real): Only use cp_convert for the bad part.
10456         (standard_conversion): Also allow bad int->enum.
10457         * typeck.c (ptr_reasonably_similar): Also allow functions to
10458         interconvert.  Pointers to same-size integers are reasonably
10459         similar.
10461         * cvt.c (convert_to_void): If we build a new COND_EXPR, always
10462         give it void type.
10464 2001-11-15  Nathan Sidwell  <nathan@codesourcery.com>
10466         PR g++/3154
10467         * init.c (sort_base_init): Remove unreachable code.
10468         (expand_member_init): Adjust comment to reflect reality. Simplify
10469         and remove unreachable code.
10471 2001-11-15  Neil Booth  <neil@daikokuya.demon.co.uk>
10473         * cp-tree.h (init_reswords, cxx_init_decl_processing): New.
10474         (cxx_init): Update prototype.
10475         * decl.c (init_decl_processing): Rename.  Move null node init
10476         to its creation time.
10477         * lex.c (cxx_init_options): Update.
10478         (cxx_init): Combine with old init_parse; also call
10479         cxx_init_decl_processing.
10481 2001-11-14  Richard Sandiford  <rsandifo@redhat.com>
10483         * decl.c (check_initializer): Try to complete the type of an
10484         array element before checking whether it's complete.  Don't
10485         complain about arrays with complete element types but an
10486         unknown size.
10487         (cp_finish_decl): Build the hierarchical constructor before
10488         calling maybe_deduce_size_from_array_init.
10490 2001-11-14  Joseph S. Myers  <jsm28@cam.ac.uk>
10492         * Make-lang.in: Change all uses of $(manext) to $(man1ext).
10494 2001-11-13  Nathan Sidwell  <nathan@codesourcery.com>
10496         PR g++/4206
10497         * parse.y (already_scoped_stmt): Remove.
10498         (simple_stmt, WHILE & FOR): Use implicitly_scoped_stmt.
10500 2001-11-12  H.J. Lu <hjl@gnu.org>
10502         * cvt.c (ocp_convert): Don't warn the address of a weak
10503         function is always `true'.
10505 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
10507         * cp-lang.c (LANG_HOOKS_PRINT_DECL, LANG_HOOKS_PRINT_TYPE,
10508         LANG_HOOKS_PRINT_STATISTICS, LANG_HOOKS_PRINT_XNODE,
10509         LANG_HOOKS_PRINT_IDENTIFIER, LANG_HOOKS_SET_YYDEBUG): Override.
10510         * cp-tree.h (print_class_statistics): Remove.
10511         (cxx_print_statistics, cxx_print_xnode, cxx_print_decl, cxx_print_type,
10512         cxx_print_identifier, cxx_set_yydebug): New.
10513         * lex.c (set_yydebug): Rename c_set_yydebug.
10514         * ptree.c (print_lang_decl, print_lang_type, print_lang_identifier,
10515         lang_print_xnode): Rename.
10516         * tree.c (print_lang_statistics): Rename.
10518 2001-11-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10520         * class.c (dump_array): Fix format specifier warning.
10522 2001-11-09  Neil Booth  <neil@daikokuya.demon.co.uk>
10524         * cp-lang.c (LANG_HOOKS_NAME): Override.
10525         (struct lang_hooks): Constify.
10526         * lex.c (cxx_init_options): Update.
10527         (lang_identify): Remove.
10528         * parse.y (language_string): Remove.
10530 2001-11-08  Andreas Franck  <afranck@gmx.de>
10532         * Make-lang.in (CXX_INSTALL_NAME, GXX_CROSS_NAME,
10533         DEMANGLER_CROSS_NAME): Handle program_transform_name the way
10534         suggested by autoconf.
10535         (GXX_TARGET_INSTALL_NAME, CXX_TARGET_INSTALL_NAME): Define.
10536         (c++.install-common): Use the transformed target alias names.
10538 2001-11-06  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
10540         * Make-lang.in: Update.
10541         * cp-lang.c: Include langhooks-def.h.
10543 2001-11-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10545         * pt.c (tsubst_copy): Call tsubst for TYPEOF_EXPR.
10547 2001-11-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10549         * lex.c (copy_lang_type): Add static prototype.
10551 2001-11-02  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10553         * pt.c (unify): Handle SCOPE_REF.
10555 2001-11-01  Jakub Jelinek  <jakub@redhat.com>
10557         * tree.c (cp_copy_res_decl_for_inlining): Adjust
10558         DECL_ABSTRACT_ORIGIN for the return variable.
10560 2001-10-31  Zack Weinberg  <zack@codesourcery.com>
10562         *  Make-lang.in: Replace $(INTL_TARGETS) with po-generated.
10564 2001-10-28  Joseph S. Myers  <jsm28@cam.ac.uk>
10566         * ChangeLog.1, ChangeLog.2, ChangeLog, class.c, decl2.c, search.c,
10567         semantics.c, spew.c: Fix spelling errors.
10569 2001-10-27  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10571         * decl2.c (validate_nonmember_using_decl): Handle NAMESPACE_DECL.
10573 2001-10-25  Zack Weinberg  <zack@codesourcery.com>
10575         * cp-lang.c: Redefine LANG_HOOKS_CLEAR_BINDING_STACK to
10576         pop_everything.
10578 2001-10-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10580         * cp-lang.c (cxx_get_alias_set): New function.
10581         Point LANG_HOOKS_GET_ALIAS_SET to it.
10583 2001-10-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10585         * cp-tree.def (UNBOUND_CLASS_TEMPLATE): New tree node.
10586         * cp-tree.h (make_unbound_class_template): Prototype new function.
10587         * decl.c (make_unbound_class_template): New function.
10588         * decl2.c (arg_assoc_template_arg): Handle UNBOUND_CLASS_TEMPLATE.
10589         * error.c (dump_type): Likewise.
10590         * mangle.c (write_type): Likewise.
10591         * parse.y (template_parm): Likewise.
10592         (template_argument): Use make_unbound_class_template.
10593         * pt.c (convert_template_argument): Handle UNBOUND_CLASS_TEMPLATE.
10594         (tsubst): Likewise.
10595         (tsubst_copy): Likewise.
10596         (unify): Likewise.
10597         * tree.c (walk_tree): Likewise.
10598         * typeck.c (comptypes): Likewise.
10600 2001-10-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10602         * xref.c (GNU_xref_member): Use safe-ctype macros and/or fold
10603         extra calls into fewer ones.
10605 2001-10-18  Alexandre Oliva  <aoliva@redhat.com>
10607         * decl.c (duplicate_decls): Propagate DECL_UNINLINABLE.
10608         Warn when merging inline with attribute noinline.
10609         (start_decl, start_function): Warn if inline and attribute
10610         noinline appear in the same declaration.
10612 2001-10-16  H.J. Lu <hjl@gnu.org>
10614         * cp-tree.h (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): Defined
10615         for tree checking disabled.
10617 2001-10-16  Hans-Peter Nilsson  <hp@axis.com>
10619         * cp-tree.h (VFIELD_NAME_FORMAT) [NO_DOLLAR_IN_LABEL &&
10620         NO_DOT_IN_LABEL]: Adjust to match VFIELD_NAME.
10622 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
10624         * pt.c (UNIFY_ALLOW_MAX_CORRECTION): Define.
10625         (unify): Only handle MINUS_EXPR specially if the above flag is set
10626         and the subtracted constant is 1.  Clear the flag on recursive calls.
10627         Set it when unifying the maximum value in an INTEGER_TYPE's range.
10629 2001-10-15  Richard Sandiford  <rsandifo@redhat.com>
10631         * decl.c (bad_specifiers): Don't allow exception specifications
10632         on any typedefs.
10634 2001-10-14  Neil Booth  <neil@daikokuya.demon.co.uk>
10636         * cp/lex.c (init_cp_pragma): Similarly.
10638 2001-10-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10640         * pt.c (lookup_template_class): Build complete template arguments
10641         for BOUND_TEMPLATE_TEMPLATE_PARM.
10643 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10645         * cp-tree.h (TYPE_BINFO): Update comment.
10646         (BOUND_TEMPLATE_TEMPLATE_PARM_TYPE_CHECK): New macro.
10647         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Use template_info.
10648         (TYPENAME_TYPE_FULLNAME): Use TYPE_FIELDS.
10649         (copy_type): Prototype new function.
10650         * lex.c (copy_lang_decl): Gather tree node statistics.
10651         (copy_lang_type): New function.
10652         (copy_type): Likewise.
10653         (cp_make_lang_type): Create lang_type for
10654         BOUND_TEMPLATE_TEMPLATE_PARM.  Set TYPE_BINFO for TYPENAME_TYPE
10655         and BOUND_TEMPLATE_TEMPLATE_PARM.
10656         * pt.c (tsubst): Use copy_type instead of copy_node.
10657         * search.c (lookup_field_1): Ignore TYPENAME_TYPE.
10659 2001-10-12  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10661         * pt.c (determine_specialization): Ignore functions without
10662         DECL_TEMPLATE_INFO.
10664 2001-10-12  Nathan Sidwell  <nathan@codesourcery.com>
10666         PR g++/4476
10667         * typeck2.c (abstract_virtuals_error): Ignore incomplete classes.
10669 2001-10-11  Jason Merrill  <jason_merrill@redhat.com>
10671         * typeck2.c (store_init_value): Don't re-digest a bracketed
10672         initializer.
10674         * class.c (finish_struct_anon): Use TYPE_ANONYMOUS_P instead of
10675         ANON_AGGR_TYPE_P.
10677 2001-10-11  Richard Henderson  <rth@redhat.com>
10679         * class.c (build_vtable_entry_ref): Create a VTABLE_REF instead
10680         of an asm statement.
10681         (build_vtbl_ref_1): Split out from build_vtbl_ref.
10682         (build_vfn_ref): Use it to handle vtable descriptors before
10683         calling build_vtable_entry_ref.
10684         * decl2.c (output_vtable_inherit): Use assemble_vtable_inherit.
10686 2001-10-10  Richard Henderson  <rth@redhat.com>
10688         * parse.y (asm_operand): Allow named operands.
10689         * semantics.c (finish_asm_stmt): Tweek for changed location
10690         of the operand constraint.
10692 2001-10-09  Jason Merrill  <jason_merrill@redhat.com>
10694         * call.c (standard_conversion): Add bad conversion between
10695         integers and pointers.
10696         (convert_like_real): Don't use convert_for_initialization for bad
10697         conversions; complain here and use cp_convert.
10698         (build_over_call): Don't handle bad conversions specially.
10699         (perform_implicit_conversion): Allow bad conversions.
10700         (can_convert_arg_bad): New fn.
10701         * cp-tree.h: Declare it.
10702         * typeck.c (convert_for_assignment): Use it.
10703         (ptr_reasonably_similar): Any target type is similar to void.
10705 2001-10-08  Alexandre Oliva  <aoliva@redhat.com>
10707         * Make-lang.in (CXX_OBJS): Added cp-lang.o.
10708         (cp/cp-lang.o): New rule.
10709         * cp-tree.h: Declare hooks.
10710         * tree.c: Make hooks non-static.
10711         (init_tree): Don't initialize hooks here.
10712         * lex.c: Likewise.  Move definition of lang_hooks to...
10713         * cp-lang.c: ... new file.
10715 2001-10-08  Richard Henderson  <rth@redhat.com>
10717         * cp-tree.h (struct lang_decl_flags): Remove declared_inline.
10718         (DECL_DECLARED_INLINE_P): Use the bit in struct c_lang_decl.
10720 2001-10-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10722         * class.c (build_vtable_entry_ref): Const-ify.
10723         * decl.c (predefined_identifier,
10724         initialize_predefined_identifiers): Likewise.
10725         * init.c (build_new_1): Likewise.
10726         * lex.c (cplus_tree_code_type, cplus_tree_code_length, resword):
10727         Likewise.
10729 2001-10-05  Alexandre Oliva  <aoliva@redhat.com>
10731         * optimize.c (struct inline_data): Moved to ../tree-inline.c.
10732         (INSNS_PER_STMT): Likewise.
10733         (remap_decl, remap_block, copy_scopy_stmt, copy_body_r): Likewise.
10734         (copy_body, initialize_inlined_parameters): Likewise.
10735         (declare_return_variable, inlinable_function_p): Likewise.
10736         (expand_call_inline, expand_calls_inline): Likewise.
10737         (optimize_inline_calls, clone_body): Likewise.
10738         * tree.c (walk_tree): Moved to ../tree-inline.c.
10739         (walk_tree_without_duplicates): Likewise.
10740         (copy_tree_r, remap_save_expr): Likewise.
10742 2001-10-04  Alexandre Oliva  <aoliva@redhat.com>
10744         * Make-lang.in (cp/decl.o, cp/tree.o): Depend on tree-inline.h.
10745         (cp/pt.o, cp/semantics.o, cp/optimize.o): Likewise.
10746         * cp-tree.h (lang_decl): Moved inlined_fns to tree_decl.
10747         (TREE_READONLY_DECL_P, DECL_INLINED_FNS): Moved to ../tree.h.
10748         (flag_inline_trees): Moved declaration to ../tree-inline.h.
10749         (walk_tree): Moved declaration to ../tree-inline.h.
10750         (walk_tree_without_duplicates, copy_tree_r): Likewise.
10751         (remap_save_expr): Likewise.
10752         * decl.c: Include tree-inline.h.
10753         (lang_mark_tree): Don't mark inlined_fns.
10754         * decl2.c (flag_inline_trees): Moved defn to ../tree-inline.c.
10755         * optimize.c: Include tree-inline.h.
10756         (optimize_inline_calls): Move declaration to ../tree.h, as
10757         non-static.
10758         (remap_decl): Use language-independent constructs and hooks.
10759         (remap_block, copy_body_r, declare_return_variable): Likewise.
10760         (inlinable_function_p): Likewise.  Don't test for
10761         DECL_LANG_SPECIFIC before DECL_INLINED_FNS as inlined_fns is
10762         no longer language-specific.
10763         (optimize_inline_calls): Likewise.  Make it non-static.  Moved
10764         call of dump_function to...
10765         (optimize_function): Here...
10766         (clone_body): New function, extracted from...
10767         (maybe_clone_body): ... here.  Build decl_map locally and pass
10768         it on to clone_body.
10769         * pt.c, semantics.c: Include tree-inline.h.
10770         * tree.c: Likewise.
10771         (cp_walk_subtrees): New language-specific hook for tree inlining.
10772         (cp_cannot_inline_tree_fn, cp_add_pending_fn_decls,
10773         cp_is_overload_p, cp_auto_var_in_fn_p,
10774         cp_copy_res_decl_for_inlining): Likewise.
10775         (walk_tree): Move language-specific constructs into...
10776         (cp_walk_subtrees): this new function.
10777         (copy_tree_r): Use language-independent constructs and hooks.
10778         (init_tree): Initialize tree inlining hooks.
10779         (remap_save_expr): Adjust prototype so that the declaration
10780         does not require the definition of splay_tree.
10782 2001-10-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
10784         * rtti.c (get_tinfo_decl): Call typeinfo_in_lib_p with the type used
10785         to build the declaration instead of the declaration itself.
10787 2001-10-02  Jason Merrill  <jason_merrill@redhat.com>
10789         * decl2.c (cxx_decode_option): Add 'else'.
10791         * spew.c (end_input): No longer static.
10792         * cp-tree.h: Declare it.
10793         * parse.y (datadef): Add "error END_OF_SAVED_INPUT" expansion.
10795 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
10797         * call.c (build_over_call), typeck.c (build_function_call_real):
10798         Pass type attributes to check_function_format rather than name or
10799         assembler name.  Don't require there to be a name or assembler
10800         name to check formats.
10802 2001-10-02  Joseph S. Myers  <jsm28@cam.ac.uk>
10804         * decl.c (init_decl_processing): Don't call
10805         init_function_format_info.  Initialize lang_attribute_table
10806         earlier.
10807         (builtin_function): Call decl_attributes.
10808         (insert_default_attributes): New.
10810 2001-10-01  Jason Merrill  <jason_merrill@redhat.com>
10812         * decl.c (grokdeclarator): Copy array typedef handling from C
10813         frontend.
10815         * decl.c (grokdeclarator): Copy too-large array handling from C
10816         frontend.
10818 2001-09-29  Alexandre Oliva  <aoliva@redhat.com>
10820         * config-lang.in (target_libs): Added target-gperf, so that we
10821         don't try to build it if C++ is disabled.
10823 2001-09-23  Zack Weinberg  <zack@codesourcery.com>
10825         * Make-lang.in (CXX_OBJS): Take out cp/errfn.o.
10826         (cp/errfn.o): Delete rule.
10827         (cp/error.o): Depend on flags.h.
10828         * errfn.c: Delete file.
10829         * cp-tree.h: Declare warn_deprecated.  Remove definitions of
10830         TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS,
10831         and TFF_TEMPLATE_DEFAULT_ARGUMENTS. #define cp_error, cp_warning,
10832         cp_pedwarn, and cp_compiler_error to error, warning, pedwarn, and
10833         internal_error respectively.  Make cp_deprecated into a macro.
10834         Don't define cp_printer typedef or declare cp_printers.
10835         * error.c: Include flags.h.
10836         Delete: struct tree_formatting_info, print_function_argument_list,
10837         print_declaration, print_expression, print_function_declaration,
10838         print_function_parameter, print_type_id, print_cv_qualifier_seq,
10839         print_type_specifier_seq, print_simple_type_specifier,
10840         print_elaborated_type_specifier, print_rest_of_abstract_declarator,
10841         print_parameter_declaration_clause, print_exception_specification,
10842         print_nested_name_specifier, and definition of cp_printers.
10843         (locate_error): New function.
10844         (cp_error_at, cp_warning_at, cp_pedwarn_at): Moved here and
10845         rewritten in terms of locate_error and diagnostic.c.
10846         (cp_tree_printer): Rename cp_printer; wire up to *_to_string
10847         instead of deleted print_* routines.  Handle %C, %L, %O, %Q also.
10848         (init_error): Adjust to match.
10850 2001-09-22  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10852         * Make-lang.in (CXX_C_OBJS): Add attribs.o.
10854 2001-09-21  Richard Henderson  <rth@redhat.com>
10856         * class.c (set_vindex): Mind TARGET_VTABLE_USES_DESCRIPTORS.
10857         (build_vtbl_initializer): Likewise.
10858         (build_vfn_ref): New.
10859         * cp-tree.h: Declare it.
10860         * call.c (build_over_call): Use it.
10861         * decl2.c (mark_vtable_entries): Mark FDESC_EXPR.
10862         * typeck.c (get_member_function_from_ptrfunc): Mind descriptors.
10864 2001-09-21  J"orn Rennecke <amylaar@redhat.com>
10866         * decl.c (grokdeclarator): Use C syntax for attr_flags declaration.
10868 2001-09-21  Joseph S. Myers  <jsm28@cam.ac.uk>
10870         Table-driven attributes.
10871         * decl.c: Rename DECL_MACHINE_ATTRIBUTES to DECL_ATTRIBUTES.
10872         * decl2.c (cplus_decl_attributes): Only take one attributes
10873         parameter.
10874         * cp-tree.c (cplus_decl_attributes): Update prototype.
10875         * class.c (finish_struct), decl.c (start_decl, start_function),
10876         decl2.c (grokfield), friend.c (do_friend), parse.y
10877         (parse_bitfield): Update calls to cplus_decl_attributes.
10878         * decl.c (grokdeclarator): Take a pointer to a single ordinary
10879         attribute list.
10880         * decl.h (grokdeclarator): Update prototype.
10881         * decl2.c (grokfield): Take a single ordinary attribute list.
10882         * friend.c (do_friend): Likewise.
10883         * decl.c (shadow_tag, groktypename, start_decl,
10884         start_handler_parms, grokdeclarator, grokparms, start_function,
10885         start_method), decl2.c (grokfield, grokbitfield, grokoptypename),
10886         parse.y (parse_field, parse_bitfield, component_decl_1), pt.c
10887         (process_template_parm, do_decl_instantiation): Pass single
10888         ordinary attribute lists around.
10889         * decl.c (grokdeclarator): Correct handling of nested attributes.
10890         Revert the patch
10891         1998-10-18  Jason Merrill  <jason@yorick.cygnus.com>
10892                 * decl.c (grokdeclarator): Embedded attrs bind to the right,
10893                 not the left.
10894         .
10895         * cp-tree.h (cp_valid_lang_attribute): Remove declaration
10896         (cp_attribute_table): Declare.
10897         * decl.c (valid_lang_attribute): Don't define.
10898         (lang_attribute_table): Define.
10899         (init_decl_processing): Initialize lang_attribute_table instead of
10900         valid_lang_attribute.
10901         * tree.c (cp_valid_lang_attribute): Remove.
10902         (handle_java_interface_attribute, handle_com_interface_attribute,
10903         handle_init_priority_attribute): New functions.
10904         (cp_attribute_table): New array.
10905         * decl2.c (import_export_class): Don't use
10906         targetm.valid_type_attribute.
10908 2001-09-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
10910         * Make-lang.in (cp/error.o): Depend on real.h
10911         * error.c: #include "real.h"
10913 2001-09-15  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10915         * mangle.c (mangle_conv_op_name_for_type): Use concat in lieu of
10916         xmalloc/strcpy/strcat.
10918 2001-09-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10920         * decl.c (warn_extern_redeclared_static, cp_make_fname_decl):
10921         Const-ification.
10922         * pt.c (tsubst_decl): Likewise.
10924 2001-09-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
10926         * decl2.c (lang_f_options): Const-ification.
10927         * lex.c (cplus_tree_code_name): Likewise.
10928         * spew.c (yyerror): Likewise.
10930 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
10932         PR c++/3986
10933         * class.c (force_canonical_binfo_r): Check & move an indirect
10934         primary base first.
10935         (force_canonical_binfo): Check that it's not already
10936         canonical.
10937         (mark_primary_virtual_base): Remove BINFO parameter.
10938         (mark_primary_bases): Adjust, set BINFO_LOST_PRIMARY_P here.
10940 2001-09-06  Nathan Sidwell  <nathan@codesourcery.com>
10942         Remove TYPE_NONCOPIED_PARTS.
10943         * cp-tree.h (CLASSTYPE_INLINE_FRIENDS): Map onto
10944         CLASSTYPE_PURE_VIRTUALS.
10945         (TYPE_RAISES_EXCEPTIONS): Map onto TYPE_BINFO.
10946         * class.c (duplicate_tag_error): Remove TYPE_NONCOPIED_PARTS.
10947         (layout_class_type): Don't call fixup_inline_methods here ...
10948         (finish_struct_1): ... call it here.
10950 2001-09-04  Mark Mitchell  <mark@codesourcery.com>
10952         * decl.c (duplicate_decls): Remove code deadling with
10953         DECL_SAVED_INSNS.
10954         * decl2.c (finish_file): Likewise.
10955         * pt.c (instantiate_decl): Likewise.
10956         * semantics.c (expand_body): Don't defer local functions if
10957         they wouldn't be deferred for some other reason.  Don't
10958         generate RTL for functions that will not be emitted.
10959         (genrtl_start_function): Remove code deadling with
10960         DECL_SAVED_INSNS.
10961         (genrtl_finish_function): Likewise.
10963 2001-09-04  Nathan Sidwell  <nathan@codesourcery.com>
10965         PR c++/4203
10966         * call.c (build_over_call): Do not optimize any empty base
10967         construction.
10969 2001-08-31  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
10971         * error.c (dump_template_decl): Output template parameters
10972         together with their specifiers.
10973         Output `class' prefix for template template parameter.
10974         (dump_decl): Fix formatting.
10976 2001-08-30  Kurt Garloff  <garloff@suse.de>
10978         * optimize.c (inlinable_function_p): Allow only smaller single
10979         functions. Halve inline limit after reaching recursive limit.
10981 2001-08-30  Joern Rennecke <amylaar@redhat.com>
10982             Jason Merrill  <jason_merrill@redhat.com>
10984         * class.c (build_vtable_entry_ref): Subtract in char*, not
10985         ptrdiff_t.
10987 2001-08-23  Jason Merrill  <jason_merrill@redhat.com>
10989         * tree.c (cp_build_qualified_type_real): Use get_qualified_type.
10990         (build_cplus_array_type): Use cp_build_qualified_type, not
10991         TYPE_MAIN_VARIANT, to get an unqualified version.
10993         * decl2.c (grok_alignof): Lose.
10994         (build_expr_from_tree): Use expr_sizeof and c_alignof_expr.
10995         * typeck.c (c_alignof): Lose.
10996         * semantics.c (finish_sizeof, finish_alignof): New.
10997         * parse.y: Use them.
10998         * cp-tree.h: Declare them.
11000 2001-08-22  Jason Merrill  <jason_merrill@redhat.com>
11002         * pt.c (tsubst_expr): Hand off to the TREE_CHAIN of a statement.
11003         Don't loop in COMPOUND_STMT, FOR_STMT or TRY_BLOCK.
11004         * tree.c (cp_statement_code_p): A TAG_DEFN is a statement.
11006 2001-08-19  Jakub Jelinek  <jakub@redhat.com>
11008         * typeck2.c (add_exception_specifier): Only require complete type if
11009         not in processing template declaration.
11011 2001-08-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11013         * decl.c: Cast argument to size_t, not HOST_WIDE_INT, in calls to
11014         GNU_xref_start_scope and GNU_xref_end_scope.
11016         * tree.c (TYPE_HASH): Moved to ../tree.h.
11018 2001-08-16  Mark Mitchell  <mark@codesourcery.com>
11020         * cvt.c (convert_to_void): Preserve TREE_SIDE_EFFECTS
11021         on COMPOUND_EXPRs.
11023 2001-08-14  Richard Henderson  <rth@redhat.com>
11025         * class.c, cp-tree.h (build_vfn_ref): Remove.
11026         * call.c, rtti.c: Replace all refernces with build_vtbl_ref.
11028 2001-08-13  Mark Mitchell  <mark@codesourcery.com>
11030         * call.c (build_over_call): Mark COMPOUND_EXPRs generated for
11031         empty class assignment as having side-effects to avoid
11032         spurious warnings.
11034 2001-08-13  Zack Weinberg  <zackw@panix.com>
11036         * Make-lang.in (cp/except.o): Add libfuncs.h to dependencies.
11037         * except.c: Include libfuncs.h.
11039 2001-08-11  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
11041         * decl.c (grokdeclarator): Clarify diagnostic message.
11043 2001-08-13  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11045         * decl2.c (do_nonmember_using_decl): Replace using directive
11046         with using declaration in the error message.
11048 2001-08-11  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11050         * pt.c (maybe_fold_nontype_arg): Use TREE_TYPE of ARG as the
11051         criterion to avoid rebuilding expression tree instead of
11052         processing_template_decl.
11054 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
11056         Support named return value optimization for inlines, too.
11057         * decl.c (finish_function): Nullify returns here.
11058         * semantics.c (genrtl_start_function): Not here.
11059         (cp_expand_stmt): Don't mess with CLEANUP_STMTs.
11060         (nullify_returns_r): No longer static.  Just clear RETURN_EXPR.
11061         Also nullify the CLEANUP_STMT for the nrv.
11062         * cp-tree.h: Declare it.
11063         * optimize.c (declare_return_variable): Replace the nrv with the
11064         return variable.
11065         * typeck.c (check_return_expr): Be more flexible on alignment check.
11066         Ignore cv-quals when checking for a matching type.
11068 2001-08-09  Richard Henderson  <rth@redhat.com>
11070         * decl2.c (finish_objects): Use target hooks instead of
11071         assemble_constructor and assemble_destructor.
11073 2001-08-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
11075         * g++spec.c (lang_specific_driver): Quote argument after `-Xlinker'.
11077 2001-08-07  Nathan Sidwell  <nathan@codesourcery.com>
11079         PR c++/3820
11080         Stop using TYPE_NONCOPIED_PARTS.
11081         * call.c (build_over_call): Be careful when copy constructing
11082         or assigning to an empty class.
11083         * class.c (check_bases_and_members): It has a
11084         COMPLEX_ASSIGN_REF if it has a vptr.
11085         (layout_class_type): Don't add empty class padding to
11086         TYPE_NONCOPIED_PARTS.
11087         (finish_struct_1): Don't add the VFIELD either.
11088         * cp-tree.h (TYPE_HAS_TRIVIAL_INIT_REF): Mention _copy_
11089         initialization.
11091 2001-08-07  Jason Merrill  <jason_merrill@redhat.com>
11093         * tree.c (walk_tree): Walk siblings even if !walk_subtrees.
11095 2001-08-06  Richard Henderson  <rth@redhat.com>
11097         * decl2.c (finish_objects): Pass a symbol_ref and priority to
11098         assemble_{constructor,destructor}.  Remove priority handling.
11100 2001-08-05  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
11102         Don't allow template-id in using-declaration.
11103         * decl2.c (validate_nonmember_using_decl): Handle template-ids.
11104         (do_class_using_decl): Likewise.
11106 2001-08-04  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
11108         * cp/spew.c (read_token): No need to pop buffers.
11110 2001-08-02  Stan Shebs  <shebs@apple.com>
11112         * cp-tree.h (FNADDR_FROM_VTABLE_ENTRY): Remove, no longer used.
11113         (fnaddr_from_vtable_entry): Remove decl.
11114         * method.c (use_thunk): Update comment.
11116 2001-08-01  Andrew Cagney  <ac131313@redhat.com>
11118         * repo.c (get_base_filename): Change return value to const char
11119         pointer.
11121 2001-08-02  Nathan Sidwell  <nathan@codesourcery.com>
11123         Kill -fhonor-std.
11124         * NEWS: Document.
11125         * cp-tree.h (flag_honor_std): Remove.
11126         (CPTI_FAKE_STD): Remove.
11127         (std_node): Remove comment about it being NULL.
11128         (fake_std_node): Remove.
11129         * decl.c (in_fake_std): Remove.
11130         (walk_namespaces_r): Remove fake_std_node check.
11131         (push_namespace): Remove in_fake_std code.
11132         (pop_namespace): Likewise.
11133         (lookup_name_real): Remove fake_std_node check.
11134         (init_decl_processing): Always create std_node. Always add
11135         std:: things there.
11136         (builtin_function): Always put non '_' fns in std.
11137         * decl2.c (flag_honor_std): Remove.
11138         (lang_f_options): Remove honor-std.
11139         (unsupported_options): Add honor-std.
11140         (set_decl_namespace): Remove fake_std_node check.
11141         (validate_nonmember_using_decl): Likewise.
11142         (do_using_directive): Likewise.
11143         (handle_class_head): Likewise.
11144         * dump.c (cp_dump_tree): Likewise.
11145         * except.c (init_exception_processing): Adjust.
11146         * init.c (build_member_call): Remove fake_std_node check.
11147         (build_offset_ref): Likewise.
11148         * lang-options.h: Remove -fhonor-std, -fno-honor-std.
11149         * rtti.c (init_rtti_processing): Adjust.
11151 2001-07-31  Alexandre Petit-Bianco  <apbianco@redhat.com>
11153         * tree.c (cp_tree_equal): WITH_CLEANUP_EXPR node to use its second
11154         operand while calling cp_tree_equal.
11156 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
11158         The 3.0 ABI no longer has vbase pointer fields.
11159         * cp-tree.h (VBASE_NAME, VBASE_NAME_FORMAT, VBASE_NAME_P,
11160         FORMAT_VBASE_NAME): Remove.
11161         * method.c (do_build_copy_constructor): Adjust.
11162         (do_build_assign_ref): Adjust.
11163         * search.c (lookup_field_r): Adjust.
11164         * typeck.c (build_component_ref): Adjust.
11166         The 3.0 ABI always has a vtable pointer at the start of every
11167         polymorphic class.
11168         * rtti.c (build_headof_sub): Remove.
11169         (build_headof): Adjust.
11170         (get_tinfo_decl_dynamic): No need to check flag_rtti
11171         here. Adjust.
11172         (create_real_tinfo_var): Explain why we need a hidden name.
11174 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
11176         PR c++/3631
11177         * class.c (update_vtable_entry_for_fn): The fixed adjustment
11178         of a virtual thunk should be from declaring base.
11180 2001-07-31  Nathan Sidwell  <nathan@codesourcery.com>
11182         * class.c (dfs_ctor_vtable_bases_queue_p): Always walk into
11183         the shared virtual base, so preserving inheritance graph order.
11185 2001-07-30  Andreas Jaeger  <aj@suse.de>
11187         * decl2.c: Remove unused var global_temp_name_counter.
11189 2001-07-28  Richard Henderson  <rth@redhat.com>
11191         * method.c (pending_inlines): Remove.
11193 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
11195         * class.c (mark_primary_virtual_base): Don't adjust base
11196         offsets here.
11197         (dfs_unshared_virtual_bases): Adjust them here.
11198         (mark_primary_bases): Explain why we adjust at the end.
11200 2001-07-27  Nathan Sidwell  <nathan@codesourcery.com>
11202         * class.c (finish_struct_1): When copying the primary base's
11203         VFIELD, make sure we find it is at offset zero.
11205 2001-07-26  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11207         * pt.c (tsubst_template_parms): Call maybe_fold_nontype_arg and
11208         tsubst_expr for default template arguments.
11210 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
11212         PR c++/3621
11213         * spew.c (yylex): Only copy the token's lineno, if it is
11214         nonzero.
11216 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
11218         PR c++/3624
11219         * call.c (resolve_args): Simplify, call
11220         convert_from_reference.
11221         (build_new_op): Resolve and convert from reference ARG1
11222         earlier. Adjust ARG2 & ARG3 resolve and conversion.
11224 2001-07-26  Nathan Sidwell  <nathan@codesourcery.com>
11226         * decl.c (last_function_parm_tags): Remove.
11227         (current_function_parm_tags): Remove.
11228         (init_decl_processing): Adjust.
11229         (start_function): Adjust.
11230         (store_parm_decls): Adjust.
11232         PR c++/3152
11233         * decl.c (grokdeclarator): Detect when a function typedef is
11234         declaring a function, and create last_function_parms correctly.
11236 2001-07-25  Jason Merrill  <jason_merrill@redhat.com>
11238         * call.c (joust): Only prefer a non-builtin candidate to a builtin
11239         one if they have the same signature.
11241         * cvt.c (build_up_reference): Take DECL parm.  Check TREE_STATIC on
11242         it rather than toplevel_bindings_p.  Give it a mangled name if static.
11243         (convert_to_reference): Adjust.
11244         * decl2.c (get_temp_name): Lose.
11245         * mangle.c (mangle_ref_init_variable): New fn.
11246         (mangle_guard_variable): Strip the ref-init header.
11247         * cp-tree.h: Adjust.
11248         * decl.c (cp_finish_decl): Add the DECL_STMT after processing the
11249         initializer.
11250         (grok_reference_init): Always use DECL_INITIAL.
11252 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
11254         PR c++/3416
11255         * call.c (build_conditional_expr): Recheck args after
11256         conversions.
11257         * cp-tree.h (build_conditional_expr): Move to correct file.
11258         * typeck.c (decay_conversion): Diagnose any unknown types
11259         reaching here.
11260         (build_binary_op): Don't do initial decay or default
11261         conversions on overloaded functions.
11262         (build_static_cast): Don't do a decay conversion here.
11264 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
11266         PR c++/3543
11267         * typeck.c (condition_conversion): Resolve an OFFSET_REF.
11268         * expr.c (cplus_expand_expr): An OFFSET_REF should never get here.
11270 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
11272         * class.c (build_vtbl_or_vbase_field): Remove, move into ...
11273         (create_vtbl_ptr): ... here.
11275 2001-07-25  Nathan Sidwell  <nathan@codesourcery.com>
11277         * class.c (build_vbase_offset_vbtl_entries): Look for
11278         non-primary base of which we are a sub vtable.
11280 2001-07-24  Phil Edwards  <pme@sources.redhat.com>
11282         * semantics.c (finish_this_expr):  Remove unused code.
11284 2001-07-24  Nathan Sidwell  <nathan@codesourcery.com>
11286         Simplify rtti, now we've only one ABI.
11287         * cp-tree.h (cp_tree_index): Remove CPTI_TINFO_DECL_ID,
11288         CPTI_TINFO_VAR_ID.
11289         (tinfo_decl_id, tinfo_var_id): Remove.
11290         (get_typeid_1): Remove.
11291         * rtti.c
11292         (init_rtti_processing): Remove tinfo_decl_id & tinfo_var_id.
11293         (typeid_ok_p): New function.
11294         (build_type_id): Call typeid_ok_p. Don't call tinfo_from_decl.
11295         (get_tinfo_decl): Remove old abi documentation.
11296         (tinfo_from_decl): Remove.
11297         (get_type_id): Call typeid_ok_p. Absorb get_typeid_1.
11298         (get_typeid_1): Remove.
11299         (get_base_offset): Remove.
11300         (synthesize_tinfo_var): Absorb get_base_offset.
11301         (create_real_tinfo_var): Don't use tinfo_decl_id.
11303 2001-07-23  Graham Stott  <grahams@redhat.com>
11305         * cp/class.c (type_requires_array_cookie): Fix use of uninitialized
11306         variable has_two_argument_delete_p.
11308 2001-07-21  Nathan Sidwell  <nathan@codesourcery.com>
11310         Remove flag_vtable_thunk. It is always on for the 3.0 ABI.
11311         * cp-tree.h (CPTI_DELTA2_IDENTIFIER): Remove.
11312         (CPTI_INDEX_IDENTIFIER): Remove.
11313         (CPT_PFN_OR_DELTA2_IDENTIFIER): Remove.
11314         (delta2_identifier): Remove.
11315         (index_identifier): Remove.
11316         (pfn_or_delta2_identifier): Remove.
11317         (flag_vtable_thunks): Remove.
11318         (VTABLE_DELTA2_NAME): Remove.
11319         (VTABLE_INDEX_NAME): Remove.
11320         (FNADDR_FROM_VTABLE_ENTRY): Adjust.
11321         (vfunc_ptr_type_node): Adjust.
11322         (VTABLE_NAME_PREFIX): Adjust.
11323         (build_vfn_ref): Lose first parameter.
11324         (fixup_all_virtual_upcast_offsets): Remove.
11325         * decl.c (initialize_predefined_identifiers): Remove
11326         delta2_identifier, index_identifier, pfn_or_delta2_identifier.
11327         (init_decl_processing): Remove no-vtable-thunk code.
11328         * decl2.c (flag_vtable_thunks): Remove.
11329         (mark_vtable_entries): Remove no-vtable-thunk code.
11330         * error.c (dump_decl): Remove no-vtable-thunk code.
11331         (dump_expr): Adjust ptr to member function code.
11332         * init.c (initialize_vtable_ptrs): Remove no-vtable-thunk
11333         code.
11334         * rtti.c (build_headof): Remove no-vtable-thunk code.
11335         (get_tinfo_decl_dynamic): Adjust build_vfn_ref call.
11336         * search.c (get_base_distance): Remove expand_upcast_fixups case.
11337         (virtual_context) Remove.
11338         (expand_upcast_fixups): Remove.
11339         (fixup_virtual_upcast_offsets): Remove.
11340         (fixup_all_virtual_upcast_offsets): Remove.
11341         * typeck.c (get_member_function_from_ptrfunc): Remove
11342         no-vtable-thunk code.
11343         * call.c (build_over_call): Adjust call to build_vfn_ref.
11344         * class.c (build_vfn_ref): Lose first parameter. Remove
11345         no-vtable-thunk code.
11346         (build_rtti_vtbl_entries): Remove no-vtable-thunk code.
11347         (build_vtable_entry): Remove no-vtable-thunk code.
11349 2001-07-20  Nathan Sidwell  <nathan@codesourcery.com>
11351         Remove old-abi remnants. Remove comments about old abi
11352         behavior. Remove references to 'new-abi' in comments.
11353         * cp-tree.h: Adjust comments.
11354         (vbase_offsets_in_vtable_p): Delete.
11355         (vcall_offsets_in_vtable_p): Delete.
11356         (vptrs_present_everywhere_p): Delete.
11357         (all_overridden_vfuns_in_vtables_p): Delete.
11358         (merge_primary_and_secondary_vtables_p): Delete.
11359         (TYPE_CONTAINS_VPTR_P): Adjust.
11360         (VTT_NAME_PREFIX): Remove.
11361         (CTOR_VTBL_NAME_PREFIX): Remove.
11362         (init_vbase_pointers): Remove.
11363         * class.c: Adjust coments.
11364         (build_vbase_pointer_fields): Delete.
11365         (build_vbase_pointer): Remove old-abi code.
11366         (build_secondary_vtable): Likewise.
11367         (modify_all_vtables): Likewise.
11368         (create_vtable_ptr): Likewise.
11369         (layout_class_type): Likewise.
11370         (finish_struct_1): Likewise.
11371         (finish_vtbls): Likewise.
11372         (dfs_finish_vtbls): Delete.
11373         (build_vbase_offset_vtbl_entries): Remove old-abi code.
11374         * cvt.c: Adjust comments.
11375         * decl.c: Adjust comments.
11376         * decl2.c: Adjust comments.
11377         * init.c: Adjust comments.
11378         (construct_virtual_bases): Remove old-abi code.
11379         * lang-specs.h: Remove -fno-new-abi.
11380         * mangle.c: Adjust comments.
11381         * rtti.c: Adjust comments.
11382         (get_base_offset): Remove old-abi-code.
11383         * search.c: Adjust comments.
11384         (dfs_init_vbase_pointers): Remove.
11385         (dfs_vtable_path_unmark): Remove.
11386         (init_vbase_pointers): Remove.
11387         * semantics.c: Adjust comments.
11388         (emit_associated_thunks): Remove old-abi code.
11389         * typeck.c: Adjust comments.
11391 2001-07-20  Daniel Berlin  <dan@cgsoftware.com>
11393         * Make-lang.in (cp/optimize.o): Depend on $(PARAMS_H), not
11394         params.h.
11396 2001-07-19  Mark Mitchell  <mark@codesourcery.com>
11398         * class.c (finish_struct_anon): Forbid nested classes.
11400 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
11402         * decl2.c: Don't include dwarfout.h and dwarf2out.h.
11403         * optimize.c: Include debug.h.
11404         (maybe_clone_body): Use debug hook.
11405         * semantics.c: Include debug.h.
11406         (expand_body): Use debug hook.
11408 2001-07-19  Neil Booth  <neil@daikokuya.demon.co.uk>
11410         * spew.c (read_token, yyerror): Remove CPP_INT, CPP_FLOAT cases.
11412 2001-07-18  Mark Mitchell  <mark@codesourcery.com>
11414         * class.c (type_requires_array_cookie): New function.
11415         (check_methods): Don't try to figure out whether the type needs a
11416         cookie here.
11417         (check_bases_and_members): Set TYPE_VEC_NEW_USES_COOKIE here.
11418         * cp-tree.h (TYPE_VEC_DELETE_TAKES_SIZE): Remove.
11419         (TYPE_VEC_NEW_USES_COOKIE): Reimplement.
11420         * pt.c (instantiate_class_template): Don't set
11421         TYPE_VEC_DELETE_TAKES_SIZE.
11422         * NEWS: Document ABI changes from GCC 3.0.
11424 2001-07-18  Xavier Delacour <xavier@fmaudio.net>,
11425             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
11427         * NEWS (Changes in GCC 3.0): Fix typo.
11429 2001-07-13  Joseph S. Myers  <jsm28@cam.ac.uk>
11431         * decl2.c (cplus_decl_attributes): Take a pointer to the node to
11432         which attributes are to be attached, and a flags argument.  Update
11433         call to decl_attributes.
11434         (grokfield): Update call to decl_attributes.
11435         * class.c (finish_struct): Update call to cplus_decl_attributes.
11436         * cp-tree.h (cplus_decl_attributes): Update prototype.
11437         * decl.c (start_decl, grokdeclarator, start_function): Update
11438         calls to decl_attributes and cplus_decl_attributes.
11439         * friend.c (do_friend): Update call to cplus_decl_attributes.
11440         * parse.y (parse_bitfield): Update call to cplus_decl_attributes.
11442 2001-07-12  Mark Mitchell  <mark@codesourcery.com>
11444         * decl.c (make_rtl_for_nonlocal_decl): Set DECL_C_HARD_REGISTER
11445         for `register' variables with an asm-specification.
11447 2001-07-11  Mark Mitchell  <mark@codesourcery.com>
11449         * semantics.c (finish_asm_stmt): Mark the output operands
11450         to an asm addressable, if necessary.
11452 2001-07-11  Ben Elliston  <bje@redhat.com>
11454         * Revert this change -- there is a subtle bug.
11456         PR c++/80
11457         * decl.c (finish_enum): New "attributes" argument; pass it to
11458         cplus_decl_attributes.  Use a narrower type if the enum is packed.
11459         * cp-tree.h (finish_enum): Adjust prototype.
11460         * parse.y (enum_head): New non-terminal.
11461         (structsp): Use it. Enums now may be preceded or followed by
11462         optional attributes -- pass their chained tree to finish_enum().
11463         * pt.c (tsubst_enum): Pass NULL_TREE for the new argument.
11465 2001-07-10  Mark Mitchell  <mark@codesourcery.com>
11467         * pt.c (tsubst_decl): Set DECL_CONTEXT for namespace-scope
11468         variables.
11470 2001-07-10  Jason Merrill  <jason_merrill@redhat.com>
11472         * semantics.c (cp_expand_stmt): Fix for null
11473         current_function_return_value.
11475 2001-07-10  Jan van Male  <jan.vanmale@fenk.wau.nl>
11477         * call.c (build_op_delete_call): Initialize fn.
11478         (convert_like_real): Delete conditional.
11479         (joust): Initialize *w and *l.
11480         * class.c: Add prototype for binfo_ctor_vtable.
11481         (get_primary_binfo): Initialize result.
11482         * init.c (build_java_class_ref): Initialize name.
11484 2001-07-09  Erik Rozendaal  <dlr@acm.org>
11486         * typeck.c (unary_complex_lvalue): Do not duplicate the
11487         argument to modify, pre-, or post-increment when used as an
11488         lvalue and when the argument has side-effects.
11490 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
11492         * decl.c (start_decl): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
11493         (start_function): Don't call SET_DEFAULT_DECL_ATTRIBUTES.  Call
11494         cplus_decl_attributes even if attrs is NULL.
11495         * friend.c (do_friend): Don't call SET_DEFAULT_DECL_ATTRIBUTES.
11497 2001-07-08  Joseph S. Myers  <jsm28@cam.ac.uk>
11499         * decl.c (grokdeclarator), decl2.c (cplus_decl_attributes): Update
11500         calls to decl_attributes.
11502 2001-07-06  Ira Ruben   <ira@apple.com>
11504         * cp-tree.def (TEMPLATE_DECL): Update comment. DECL_RESULT should
11505         be DECL_TEMPLATE_RESULT.
11507 2001-07-05  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11509         * cp-tree.h (copy_template_template_parm): Rename to ...
11510         (bind_template_template_parm): ... here.
11511         * tree.c (copy_template_template_parm): Rename to ...
11512         (bind_template_template_parm): ... here.  Remove the case when
11513         NEWARGS is NULL_TREE.
11514         (copy_tree_r): Don't copy TEMPLATE_TEMPLATE_PARM and
11515         BOUND_TEMPLATE_TEMPLATE_PARM.
11516         * pt.c (lookup_template_class): Adjust.
11518 2001-07-05  Jason Merrill  <jason_merrill@redhat.com>
11520         * cvt.c (convert_lvalue): New fn.
11521         * cp-tree.h: Declare it.
11522         * method.c (do_build_assign_ref): Use it.
11523         (do_build_copy_constructor): Convert parm to base types
11524         before calling base constructors.
11526         * typeck.c (check_return_expr): Check DECL_ALIGN instead of
11527         DECL_USER_ALIGN.  Check flag_elide_constructors instead of
11528         optimize.
11529         * semantics.c (cp_expand_stmt): Don't destroy the named return value.
11531 2001-07-02  Nathan Sidwell  <nathan@codesourcery.com>
11533         * optimize.c (optimize_inline_calls): New function, broken out
11534         of ...
11535         (optimize_function): ... here. Call it. Don't inline if it is
11536         a thunk.
11537         (dump_function): Print name of dump flag causing this dump.
11538         * semantics.c (expand_body): Move thunk inline check to
11539         optimize_function.
11541 2001-06-29  Joseph S. Myers  <jsm28@cam.ac.uk>
11543         * typeck.c (COMP_TYPE_ATTRIBUTES): Don't define.
11544         (comptypes): Use target.comp_type_attributes.
11546 2001-06-29  Nathan Sidwell  <nathan@codesourcery.com>
11548         * cp-tree.h (flag_dump_class_layout): Remove unneeded declaration.
11550 2001-06-28  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
11552         * error.c (lang_print_error_function): Add a `diagnostic_context *'
11553         parameter. Tweak.
11555 2001-06-27  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
11557         * decl2.c (import_export_class): Update.
11559 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
11561         * error.c (init_error): Adjust settings.
11563 2001-06-26  Gabriel Dos Reis  <gdr@codesourcery.com>
11565         * error.c (init_error): Adjust settings.
11567 2001-06-19  Richard Sandiford  <rsandifo@redhat.com>
11569         * except.c (initialize_handler_parm): Expect __cxa_begin_catch to
11570         return pointers to data members by reference rather than by value.
11572 2001-06-18  Jason Merrill  <jason_merrill@redhat.com>
11574         Implement the Named Return Value optimization.
11575         * cp-tree.h (struct cp_language_function): Add x_return_value.
11576         (current_function_return_value): Now a macro.
11577         * decl.c: Don't define it.
11578         (define_label, finish_case_label): Don't clear it.
11579         (init_decl_processing): Don't register it with GC.
11580         * semantics.c (genrtl_finish_function): Don't check it for
11581         no_return_label.  Copy the RTL from the return value to
11582         current_function_return_value and walk, calling...
11583         (nullify_returns_r): ...this new fn.
11584         * typeck.c (check_return_expr): Set current_function_return_value.
11586 2001-06-15  Jason Merrill  <jason_merrill@redhat.com>
11588         * class.c (dfs_accumulate_vtbl_inits): Just point to the base we're
11589         sharing a ctor vtable with.  Merge code for cases 1 and 2.
11590         (binfo_ctor_vtable): New fn.
11591         (build_vtt_inits, dfs_build_secondary_vptr_vtt_inits): Use it.
11593 2001-06-14  Jason Merrill  <jason_merrill@redhat.com>
11595         * class.c (dfs_find_final_overrider): Fix logic.
11597         * class.c (update_vtable_entry_for_fn): Uncomment optimization to use
11598         virtual thunk instead of non-virtual.
11599         (get_matching_virtual): Uncomment.
11601         * pt.c (unify): Don't recurse between the POINTER_TYPE and the
11602         OFFSET_TYPE.  If we're adding cv-quals, the extra ones would be on
11603         PARM, not ARG.
11605 2001-06-14  Nathan Sidwell  <nathan@codesourcery.com>
11607         * class.c (dfs_accumulate_vtbl_inits): For case 2 & 3, make sure
11608         we've not emerged from the hierarchy of RTTI_BINFO on reaching
11609         a non-virtual base.
11611 2001-06-13  Mark Mitchell  <mark@codesourcery.com>
11613         * NEWS: Update release number.
11615 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
11617         PR c++/3130, c++/3131, c++/3132
11618         * cp-tree.h (BINFO_UNSHARED_MARKED): New #define.
11619         * class.c (force_canonical_binfo_r): Move
11620         BINFO_UNSHARED_MARKED, BINFO_LOST_PRIMARY_P. Don't move
11621         virtual bases unless they're primary and what they're primary
11622         too has been moved.
11623         (dfs_unshared_virtual_bases): Use BINFO_UNSHARED_MARKED. Cope
11624         with morally virtual bases. Duplicate BINFO_LOST_PRIMARY_P and
11625         BINFO_PRIMARY_BASE_OF. Clear BINFO_VTABLE for all but the most
11626         derived binfo.
11627         (mark_primary_bases): Use BINFO_UNSHARED_MARKED.
11628         (layout_nonempty_base_or_field): Add most derived type
11629         parameter. Adjust.
11630         (layout_empty_base): Likewise.
11631         (build_base_field): Likewise.
11632         (build_base_fields): Likewise.
11633         (propagate_binfo_offsets): Add most derived type
11634         parameter. Skip non canonical virtual bases too.
11635         (dfs_set_offset_for_unshared_vbases): Don't skip primary
11636         bases. Do skip canonical bases.
11637         (layout_virtual_bases): Adjust.
11638         (layout_class_type): Adjust.
11639         (dfs_get_primary_binfo): Build list of virtual primary base
11640         candidates.
11641         (get_primary_binfo): Check that the shared virtual primary
11642         base candidate was found first.
11643         (accumulate_vtbl_inits): Don't do anything for non-vptr
11644         containing binfos. For case 1 primary virtual bases, keep
11645         checking that we've not emerged from the hierarchy of RTTI_BINFO.
11647 2001-06-12  Nathan Sidwell  <nathan@codesourcery.com>
11649         PR c++/3089
11650         * class.c (dfs_accumulate_vtbl_inits): Always walk down the
11651         hierarchy looking for primary bases for a ctor
11652         vtable. Recursively call oneself, if we meet our primary via
11653         this route and haven't met it yet via inheritance graph order.
11655 2001-06-11  Mark Mitchell  <mark@codesourcery.com>
11657         * lang-options.h: Emit documentation for -fno-honor-std, not
11658         -fhonor-std.
11660 2001-06-10  Alexandre Oliva  <aoliva@redhat.com>
11662         * typeck.c (get_member_function_from_ptrfunc) [vbit_in_delta]:
11663         Don't clobber delta.
11664         (expand_ptrmemfunc_cst) [ptrmemfunc_vbit_in_delta]: Adjust pfn.
11666 2001-06-10  Mark Mitchell <mark@codesourcery.com>
11667             Gabriel Dos Reis  <gdr@codesourcery.com>
11669         * Make-lang.in (cp/call.o): Depend on diagnostic.h
11670         (cp/typeck.o): Depend on diagnostic.h
11671         (cp/typeck2.o): Depend on diagnostic.h
11672         (cp/repo.o): Depend on dignostic.h
11673         * typeck.c: #include diagnostic.h
11674         (convert_for_initialization): Remove extern declaration for
11675         warningcount and errorcount.
11677         * call.c: #include diagnostic.h
11678         (convert_like_real): Remove extern declaration for warnincount and
11679         errorcount.
11681         * repo.c: #include diagnostic.h
11682         * typeck2.c: #include diagnostic.h
11684 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
11686         * decl.c (duplicate_decls): Fix DECL_TEMPLATE_RESULT thinko
11687         in previous change.
11689 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
11691         PR c++/2929
11692         * friend.c (do_friend): Use push_decl_namespace for classes at
11693         namespace scope.
11695 2001-06-08  Nathan Sidwell  <nathan@codesourcery.com>
11696             Jason Merrill <jason_merrill@redhat.com>
11698         PR c++/3061
11699         * class.c (build_secondary_vtable): Use assert, rather than an error
11700         message.
11701         (dfs_fixup_binfo_vtbls): BINFO_VTABLE might be NULL.
11702         (dfs_accumulate_vtbl_inits): A lost primary virtual base may
11703         be between ORIG_BINFO and RTTI_BINFO, but neither of them.
11704         Don't set BINFO_VTABLE for a primary virtual base.
11706 2001-06-07  Mark Mitchell  <mark@codesourcery.com>
11708         * decl.c (duplicate_decls): Update source position information
11709         when a template function is defined.
11711 2001-06-07  Phil Edwards  <pme@sources.redhat.com>
11713         * lang-specs.h:  Move -D_GNU_SOURCE to config/linux.h.
11715 2001-06-07  Nathan Sidwell  <nathan@codesourcery.com>
11717         PR c++/2914
11718         * decl.c (pushtag): Don't push into a complete type's scope.
11720 2001-06-06  Jason Merrill  <jason_merrill@redhat.com>
11722         * cp-tree.h (THUNK_GENERATE_WITH_VTABLE_P): Lose.
11723         (struct lang_decl_flags): Lose generate_with_vtable_p.
11724         (BV_GENERATE_THUNK_WITH_VTABLE_P): Lose.
11725         * class.c (copy_virtuals): Adjust.
11726         * decl2.c (mark_vtable_entries): Adjust.
11727         * method.c (make_thunk, build_vtable_entry): Adjust.
11728         * class.c (update_vtable_entry_for_fn): Only look as far as the
11729         first defining class.
11730         (build_vtbl_initializer): Put nothing in the slot for a function only
11731         defined in a lost primary virtual base.
11732         (add_vcall_offset_vtbl_entries_1): Use the same code for
11733         the lost primary case and the normal case.
11734         (dfs_unshared_virtual_bases): Don't lose a non-virtual primary base.
11735         (get_vfield_offset, get_derived_offset): Lose.
11736         (dfs_find_final_overrider): Use look_for_overrides_here.
11737         (get_matching_virtual): New fn.
11738         * semantics.c (emit_associated_thunks): Check BV_USE_VCALL_INDEX_P,
11739         not BV_VCALL_INDEX.
11740         * search.c (look_for_overrides_here): Split out from...
11741         (look_for_overrides_r): Here.
11743         * class.c (find_final_overrider): Return error_mark_node on error.
11745         * decl2.c (key_method): #if 0 accidental change.
11747 2001-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
11749         * call.c (convert_default_arg): Use INTEGRAL_TYPE_P.
11750         (build_over_call): Likewise.
11751         * decl.c (grokparms): Likewise.
11752         * pt.c (tsubst_decl): Likewise.
11753         * typeck.c (convert_arguments): Likewise.
11755 2001-06-05  Mark Mitchell  <mark@codesourcery.com>
11757         * semantics.c (begin_class_definition): Robustify.
11759         * pt.c (instantiate_decl): Tell the repository code about the
11760         clones, not the cloned functions.
11761         * repo.c (repo_template_used): Explicitly instantiate the cloned
11762         function, not the clones.
11764 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
11766         * call.c (build_user_type_conversion_1): Set ICS_USER_FLAG and
11767         ICS_BAD_FLAG on created conversion.
11768         (compare_ics): Break out rank.
11770 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
11772         * decl.c (xref_tag): Remove extraneous %s on dependent name
11773         lookup warning.
11775 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
11777         * class.c (layout_vtable_decl): Fix off by one error on
11778         build_index_type.
11779         (build_vtt): Likewise.
11780         (build_ctor_vtbl_group): Likewise.
11782 2001-06-05  Nathan Sidwell  <nathan@codesourcery.com>
11784         * class.c (maybe_indent_hierarchy): New function.
11785         (dump_class_hierarchy_r): Add flags. Dump extra binfo
11786         information, if enabled. Use maybe_indent_hierarchy. Adjust
11787         output format.
11788         (dump_class_hierarchy): Adjust prototype. Adjust output format.
11789         (dump_array, dump_vtable, dump_vtt): New functions.
11790         (finish_struct_1): Adjust hierarchy dumping.
11791         (initialize_vtable): Call dump_vtable.
11792         (build_vtt): Call dump_vtt.
11793         (build_ctor_vtbl_group): Call dump_vtable.
11794         * decl2.c (flag_dump_class_layout): Remove.
11795         (cxx_decode_option): Remove dump translation unit
11796         and dump class hierarchy check. Call dump_switch_p.
11797         (finish_file): Adjust dumping.
11798         (dump.c): Only dump base classes if not TDF_SLIM.
11799         Only dump namespace members if not TDF_SLIM.
11800         * optimize.c (dump_function): New function.
11801         (optimize_function): Call dump_function.
11802         * semantics.c (expand_body): Use dump_enabled_p.
11804 2001-06-01  Nathan Sidwell  <nathan@codesourcery.com>
11806         PR g++/2936
11807         Part missed from first commit
11808         * decl2.c (finish_anon_union): Copy context.
11810 2001-05-30  Nathan Sidwell  <nathan@codesourcery.com>
11812         PR g++/2936
11813         * optimize.c (remap_decl): Remap anonymous aggregate members too.
11815 2001-05-26  Nathan Sidwell  <nathan@codesourcery.com>
11817         PR g++/2823
11818         * semantics.c (expand_body): Don't optimize thunks.
11820 2001-05-25  Sam TH  <sam@uchicago.edu>
11822         * cp-tree.h lex.h: Fix header include guards.
11824 2001-05-25  Mark Mitchell <mark@codesourcery.com>
11826         * decl.c (init_decl_processing): Tweak.
11828 2001-05-24  Mark Mitchell  <mark@codesourcery.com>
11830         * decl.c (duplicate_decls): Tidy.
11831         (init_decl_processing): Always set flag_no_builtin.
11833 2001-05-24  Nathan Sidwell  <nathan@codesourcery.com>
11835         PR c++/2184
11836         * decl2.c (do_local_using_decl): Push the decls, even in a
11837         template.
11839 2001-05-22  Mark Mitchell  <mark@codesourcery.com>
11841         * optimize.c (initialize_inlined_parameters): Don't set
11842         TREE_READONLY for a VAR_DECL taking the place of an inlined
11843         PARM_DECL.
11845 2001-05-22  Jason Merrill  <jason_merrill@redhat.com>
11847         * class.c, cp-tree.h, rtti.c: Remove com_interface attribute support.
11848         * tree.c (cp_valid_lang_attribute): Warn about use of com_interface
11849         attribute.
11851 2001-05-22  Joseph S. Myers  <jsm28@cam.ac.uk>
11853         * parse.y: Refer to compound literals as such, not as
11854         constructor-expressions.
11856 2001-05-21  Mark Mitchell  <mark@codesourcery.com>
11858         * call.c (build_op_delete_call): Ignore exception-specifications
11859         when looking for matching delete operators.
11860         * init.c (build_new_1): Compute whether or not the allocation
11861         function used is a placement allocation function or not, and
11862         communicate this information to build_op_delete_call.
11864 2001-05-21  Jason Merrill  <jason_merrill@redhat.com>
11866         * class.c (build_vtable_entry_ref): Lose vtbl parm.  Fix for new abi.
11867         (build_vtbl_ref): Adjust.
11868         (dfs_accumulate_vtbl_inits): Set TREE_CONSTANT on the vtable address.
11869         * decl2.c (lang_f_options): Remove huge-objects, vtable-thunks.
11870         Re-add vtable-gc.
11871         (unsupported_options): Correspondingly.
11873         * decl2.c (maybe_make_one_only): Check flag_weak, not
11874         supports_one_only().
11876         * cp-tree.def (START_CATCH_STMT): Lose.
11877         * dump.c (cp_dump_tree): Don't dump it.  Do dump HANDLER_PARMS.
11878         * tree.c (cp_statement_code_p): Don't case it.
11879         * semantics.c (cp_expand_stmt): Likewise.
11880         * cp-tree.h (START_CATCH_TYPE): Lose.
11881         (HANDLER_TYPE): New.
11882         * except.c (expand_start_catch_block): Don't start any blocks.
11883         Return the type.
11884         (expand_end_catch_block): Don't end any blocks.
11885         * parse.y (handler): Don't pass anything from finish_handler_parms
11886         to finish_handler.
11887         * pt.c (tsubst_expr): Likewise.
11888         * semantics.c (begin_handler): Call note_level_for_catch here.
11889         (finish_handler_parms): Don't return anything.
11890         (genrtl_catch_block, begin_catch_block): Lose.
11891         (genrtl_handler): Call expand_start_catch here.
11893 2001-05-18  Jason Merrill  <jason_merrill@redhat.com>
11895         * class.c (build_vtable): Set DECL_ASSEMBLER_NAME for vtables here.
11896         (get_vtable_decl, build_vtt): Not here.
11898 2001-05-20  Nathan Sidwell  <nathan@codesourcery.com>
11900         PR c++/2781
11901         * optimize.c (update_cloned_parm): Copy addressability and other
11902         flags.
11904 2001-05-20  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
11906         * pt.c (determine_specialization): Ignore artificial functions.
11908 2001-05-20  Neil Booth  <neil@daikokuya.demon.co.uk>
11910         * cp-tree.h (struct lang_identifier, C_RID_YYCODE): Update.
11911         (C_RID_CODE): Remove.
11912         * lex.c (cxx_init_options): Call set_identifier_size.  Update.
11913         (init_parse): Don't do it here.
11915 2001-05-18  Diego Novillo  <dnovillo@redhat.com>
11917         * decl2.c (finish_objects): Use the original SYMBOL_REF from the
11918         function declaration to avoid stripping the symbol's attributes.
11920 2001-05-18  Nathan Sidwell  <nathan@codesourcery.com>
11922         * decl.c (pushdecl): Adjust error string.
11923         (xref_tag): Adjust friend class injection warning. Remove the
11924         inherited name from the class shadowed scope.
11926 2001-05-17  Mark Mitchell  <mark@codesourcery.com>
11928         * except.c (cp_protect_cleanup_actions): New function.
11929         (init_exception_processing): Don't set protect_cleanup_actions
11930         here.  Do set lang_protect_cleanup_actions.
11932 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
11934         * spew.c (read_token): Call yyerror on all unexpected tokens.
11936 2001-05-16  Nathan Sidwell  <nathan@codesourcery.com>
11938         * init.c (member_init_ok_or_else): Take a tree rather than
11939         string for name.
11940         (expand_member_init): Adjust.
11942 2001-05-14  Nick Clifton  <nickc@cambridge.redhat.com>
11944         * decl.c (duplicate_decls): Suppress warning about duplicate
11945         decls if the first decl is a friend.
11947 2001-05-12  Zack Weinberg  <zackw@stanford.edu>
11949         * except.c (choose_personality_routine): Export.  Add
11950         explanatory comment.  Take an enum languages, not a boolean.
11951         (initialize_handler_parm): Adjust to match.
11952         * cp-tree.h: Prototype choose_personality_routine.
11953         * lex.c (handle_pragma_java_exceptions): New function.
11954         (init_cp_pragma): Register #pragma GCC java_exceptions.
11956 2001-05-12  Neil Booth  <neil@cat.daikokuya.demon.co.uk>
11958         * method.c (build_mangled_C99_name): Remove unused prototype.
11960 2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
11962         * cp-tree.h (ptrmemfunc_vbit_where_t): Declare type.
11963         * typeck.c (get_member_function_from_ptrfunc,
11964         build_ptrmemfunc, expand_ptrmemfunc_cst): Take
11965         TARGET_PTRMEMFUNC_VBIT_LOCATION into account.
11967         Reverted Geoff Keating's 2001-05-03's patch.
11969 2001-05-11  Ira Ruben   <ira@apple.com>
11971         * cp/cp-tree.h (C_EXP_ORIGINAL_CODE): Delete; declared in c-common.h.
11973 2001-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
11975         * cp-tree.h (finish_label_expr, lookup_label): Delete.
11976         * parse.y: Update for '&&'; don't issue warning here.
11977         * semantics.c (finish_label_expr): Delete.
11979 2001-05-07  Mark Mitchell  <mark@codesourcery.com>
11981         * splay-tree.h (splay_tree_max): New function.
11982         (splay_tree_min): Likewise.
11984 2001-05-03  Geoffrey Keating  <geoffk@redhat.com>
11986         * cp-tree.h (enum cp_tree_index): Add CPTI_PFN_VFLAG_IDENTIFIER.
11987         (pfn_vflag_identifier): Define.
11988         Update comment about layout of pointer functions.
11989         (build_ptrmemfunc1): Update prototype.
11990         (expand_ptrmemfunc_cst): Update prototype.
11991         * decl.c (initialize_predefined_identifiers): Initialize
11992         pfn_vflag_identifier.
11993         (build_ptrmemfunc_type): When FUNCTION_BOUNDARY < 16, add
11994         an extra field to the type.
11995         * expr.c (cplus_expand_constant): Pass 'flag' between
11996         expand_ptrmemfunc_cst and build_ptrmemfunc1.
11997         * typeck.c (get_member_function_from_ptrfunc): When
11998         FUNCTION_BOUNDARY < 16, look at additional field to determine
11999         if a pointer-to-member is a real pointer or a vtable offset.
12000         (build_ptrmemfunc1): Add new parameter to contain extra field.
12001         (build_ptrmemfunc): Pass the extra field around.
12002         (expand_ptrmemfunc_cst): Add new parameter to return extra field.
12003         (pfn_from_ptrmemfunc): Ignore the extra field.
12005 2001-05-03  Mark Mitchell  <mark@codesourcery.com>
12007         * cp-tree.h (flag_inline_trees): Update documentation.
12008         * decl.c (init_decl_processing): Adjust handling of
12009         flag_inline_functions and flag_inline_trees to support -O3.
12010         (grokfndecl): Set DECL_INLINE on all functions if that's what
12011         the user requested.
12012         (save_function_data): Clear DECL_INLINE in
12013         current_function_cannot_inline is non-NULL.
12014         * decl2.c (flag_inline_trees): Update documentation.
12016 2001-05-03  Nathan Sidwell  <nathan@codesourcery.com>
12018         * dump.c (cp_dump_tree, USING_STMT case): New case.
12019         * tree.c (cp_statement_code_p): Add USING_STMT.
12020         * decl2.c (do_using_directive): Add the using directive statement.
12022         * tree.c (walk_tree): Reformat an if block.
12024 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
12026         * decl.c (compute_array_index_type): Don't try to do anything with
12027         the indices when processing a template.
12029 2001-05-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12031         * call.c: NULL_PTR -> NULL.
12032         * class.c: Likewise.
12033         * cvt.c: Likewise.
12034         * decl.c: Likewise.
12035         * decl2.c: Likewise.
12036         * except.c: Likewise.
12037         * init.c: Likewise.
12038         * rtti.c: Likewise.
12039         * search.c: Likewise.
12040         * tree.c: Likewise.
12041         * typeck.c: Likewise.
12042         * typeck2.c: Likewise.
12044 2001-05-02  Mark Mitchell  <mark@codesourcery.com>
12046         * decl2.c (do_using_directive): Revert previous patch.
12048 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
12050         * cp-tree.def (USING_STMT): New statement node.
12051         * cp-tree.h (USING_STMT_NAMESPACE): New macro.
12052         * decl2.c (do_using_directive): Add USING_STMT to statement
12053         tree. Don't emit errors when processing template decl.
12054         * pt.c (tsubst_expr, USING_STMT case): New case.
12055         * semantics.c (cp_expand_stmt, USING_STMT case): New case.
12057 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
12059         * call.c (build_new_op): Convert args from reference here.
12060         (build_conditional_expr): Don't convert here.
12062 2001-05-01  Nathan Sidwell  <nathan@codesourcery.com>
12064         * spew.c (last_token_id): New static variable.
12065         (read_token): Set it here.
12066         (yyerror): Use it here.
12068 2001-04-30  Richard Henderson  <rth@redhat.com>
12070         * cvt.c: Downcase C_PROMOTING_INTEGER_TYPE_P invocations.
12071         * decl.c: Likewise.
12073 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
12075         * gxxint.texi: Remove.
12076         * Make-lang.in: Remove all traces of gxxint.texi.
12078 2001-04-30  Mark P Mitchell  <mark@codesourcery.com>
12080         * decl2.c (start_static_initialization_or_destruction): Correct
12081         logic to handle the -fno-use-cxa-atexit case.
12083 2001-04-30  Mark Mitchell  <mark@codesourcery.com>
12085         * optimize.c (update_cloned_parm): New function.
12086         (maybe_clone_body): Use it.  Update the `this' parameter too.
12088 2001-04-29  Joseph S. Myers  <jsm28@cam.ac.uk>
12090         * decl2.c (unsupported_options): Add new-abi.
12091         * lang-options.h: Remove no longer supported options.
12093 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
12095         * except.c (can_convert_eh): Don't check template parms,
12096         typename types etc.
12098 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
12100         * optimize.c (maybe_clone_body): Copy parameter names and locations.
12102 2001-04-27  Nathan Sidwell  <nathan@codesourcery.com>
12104         * cp-tree.h (adjust_clone_args): Prototype new function.
12105         * class.c (adjust_clone_args): New function.
12106         * decl.c (start_function): Call it for in charge ctors.
12108 2001-04-26  Mark Mitchell  <mark@codesourcery.com>
12110         * method.c (use_thunk): Make sure that thunks really are emitted
12111         when requested.
12113 2001-04-26  Nathan Sidwell <nathan@codesourcery.com>
12115         * mangle.c (write_chars): New macro.
12116         (hwint_to_ascii): New function
12117         (write_number): Use it.
12118         (write_integer_cst): Deal with really big numbers.
12120 2001-04-25  Mark Mitchell  <mark@codesourcery.com>
12122         * optimize.c (maybe_clone_body): Copy TREE_PUBLIC before emitting
12123         the clone.
12125 2001-04-25  Nathan Sidwell  <nathan@codesourcery.com>
12127         * decl.c (grokdeclarator): Set context of namespace scope
12128         TYPE_DECLS.
12130 2001-04-24  Zack Weinberg  <zackw@stanford.edu>
12132         * cp/optimize.c: Include hashtab.h.
12133         (struct inline_data): Add tree_pruner.
12134         (expand_call_inline, expand_calls_inline): Use it when calling
12135         walk_tree.
12136         (optimize_function): Initialize and free tree_pruner.
12138 2001-04-24  Nathan Sidwell <nathan@codesourcery.com>
12140         Lazy __FUNCTION__ generation.
12141         * cp-tree.def (FUNCTION_NAME): Remove.
12142         * cp-tree.h (function_name_declared_p): Remove.
12143         (cp_fname_init): Prototype.
12144         * decl.c (init_decl_processing): Don't generate __FUNCTION__ et al ids,
12145         don't call declare_function_name. Call start_fname_decls.
12146         (cp_make_fname_decl): Adjust parameters. Generate the name. Don't
12147         clobber the line number.
12148         (cp_fname_init): New function.
12149         (start_function): Call start_fname_decls.
12150         (finish_function): Call finish_fname_decls.
12151         * lex.c (reswords): Add slots for __FUNCTION__ et al.
12152         (rid_to_yy): Add mappings for __FUNCTION__ et al.
12153         * optimize.c (maybe_clone_body): Remove function_name_declared_p.
12154         * parse.y (VAR_FUNC_NAME): New token.
12155         (primary): Add VAR_FUNC_NAME.
12156         * pt.c (tsubst_decl): Adjust a DECL_PRETTY_FUNCTION_P's
12157         generation.
12158         (tsubst, FUNCTION_NAME case): Remove.
12159         (tsubst_copy, FUNCTION_NAME case): Remove.
12160         (tsubst_expr, DECL_STMT case): Be careful with a
12161         DECL_PRETTY_FUNCTION_P.
12162         (instantiate_decl): Remove function_name_declared_p.
12163         * semantics.c (begin_compound_statement): Don't call
12164         declare_function_name here.
12165         (setup_vtbl_ptr). Don't save & restore function_name_declared_p.
12166         (finish_translation_unit): Call finish_fname_decls.
12167         (expand_body): Remove function_name_declared_p.
12168         * typeck2.c (digest_init): Allow any ERROR_MARK.
12170 2001-04-24  Nathan Sidwell  <nathan@codesourcery.com>
12172         * pt.c (tsubst_decl): Use VOID_TYPE_P.
12173         * semantics.c: Fix some typos.
12175 2001-04-23  Phil Edwards  <pme@sources.redhat.com>
12177         * cp/decl2.c (flag_honor_std):  Always initialize to 1.
12179 2001-04-22  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12181         * xref.c (GNU_xref_file): Use concat in lieu of xmalloc/sprintf.
12183 2001-04-23  Jason Merrill  <jason_merrill@redhat.com>
12185         * except.c (build_throw): Wrap the initialization of the exception
12186         object in a MUST_NOT_THROW_EXPR.
12187         (do_free_exception): #if 0.
12189 2001-04-20  Mark Mitchell  <mark@codesourcery.com>
12191         * cp-tree.h (finish_enum): Change prototype.
12192         * decl.c (finish_enum): Reorganize.
12193         * parse.y (structsp): Adjust calls to finish_enum.
12195 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
12197         * tree.c (cp_tree_equal): Adjust final switch formatting. Add
12198         't' case.
12200 2001-04-20  Nathan Sidwell  <nathan@codesourcery.com>
12202         * class.c (dfs_unshared_virtual_bases): Add ATTRIBUTE_UNUSED.
12203         (layout_empty_base): Return at end flag.
12204         (build_base_field): Likewise.
12205         (build_base_fields): Likewise.
12206         (layout_virtual_bases): Don't add 1 to eoc value.
12207         (end_of_class): Use full size for empty bases.
12208         (layout_class_type): Clear CLASSNEARLY_EMPTY_P if we appended
12209         empty bases. Don't add 1 to eoc value. Only add trailing padding
12210         if we're an empty class with no empty bases.
12211         (dump_class_hierarchy): Dump size and alignment.
12213 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
12215         * call.c (maybe_handle_ref_bind): Copy ICS_USER_FLAG and
12216         ICS_BAD_FLAG.
12218 2001-04-20  Jakub Jelinek  <jakub@redhat.com>
12220         * search.c (lookup_field_r): If looking for type and non-TYPE_DECL
12221         is found, look first if name does not match the structure name.
12223 2001-04-19  Mark Mitchell  <mark@codesourcery.com>
12225         * cp-tree.h (DECL_LANGUAGE): Don't assume DECL_LANG_SPECIFIC is
12226         set.
12227         (SET_DECL_LANGUAGE): New macro.
12228         * decl.c (duplicate_decls): Use SET_DECL_LANGUAGE.
12229         (pushdecl): Likewise.
12230         (build_library_fn_1): Likewise.
12231         (build_cp_library_fn): Likewise.
12232         (grokfndecl): Likewise.
12233         (grokvardecl): Mark `extern "C"' variables as having C linkage.
12234         * decl2.c (grokclassfn): Use SET_DECL_LANGUAGE.
12235         * lex.c (retrofit_lang_decl): Likewise.
12236         * mangle.c (mangle_decl_string): Don't mangle the names of
12237         variables declared with C language linkage.
12238         * semantics.c (finish_member_declaration): Use SET_DECL_LANGUAGE.
12240 2001-04-18  John David Anglin  <dave@hiauly1.hia.nrc.ca>
12242         * semantics.c (simplify_aggr_init_exprs_r): Don't restore
12243         flag_access_control from uninitialized storage.
12245 2001-04-15  Mark Mitchell  <mark@codesourcery.com>
12247         * cp-tree.h (TYPE_PTRMEM_CLASS_TYPE): Improve documentation.
12248         * mangle.c (write_pointer_to_member_type): Fix mangling of
12249         pointers to cv-qualified member function types.
12251         * init.c (build_delete): Create a SAVE_EXPR for the address if
12252         we're going to use it more than once.
12254 2001-04-13  Mark Mitchell  <mark@codesourcery.com>
12256         * cp-tree.h (DELTA2_FROM_PTRMEMFUNC): Remove.
12257         (expand_ptremfunc_cst): Change prototype.
12258         (delta2_from_ptrmemfunc): Remove.
12259         * expr.c (cplus_expand_constant): Adjust call to
12260         expand_ptrmemfunc_cst.
12261         * typeck.c (build_ptrmemfunc1): Simplify.
12262         (build_ptrmemfunc): Make sure that casting a PTRMEM_CST still
12263         results in a constant.
12264         (expand_ptrmemfunc_cst): Remove idx and delta2 parameters.
12265         (delta2_from_ptrmemfunc): Remove.
12266         (pfn_from_ptrmemfunc): Adjust call to expand_ptrmemfunc_cst.
12268 2001-04-12  Jason Merrill  <jason_merrill@redhat.com>
12270         * cp-tree.h (decl_namespace_list): New macro.
12271         (struct saved_scope): Add decl_ns_list.
12272         * decl.c (mark_saved_scope): Mark it.
12273         * decl2.c: Lose static decl_namespace_list.
12274         (init_decl2): Don't save it.
12276 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12278         * cp-tree.h (warn_return_type, yylex): Delete redundant
12279         declarations.
12281         * decl.c (current_class_depth, global_namespace): Likewise.
12283         * decl2.c (current_class_depth, flag_gnu_xref): Likewise
12285         * repo.c (flag_use_repository): Likewise.
12287 2001-04-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12289         * cp-tree.h (pedantic, convert, global_bindings_p, insert_block,
12290         set_block, pushdecl, getdecls, gettags, init_decl_processing,
12291         maybe_build_cleanup, copy_lang_decl, prep_stmt, lvalue_p,
12292         lvalue_or_else, print_lang_statistics, comp_target_types,
12293         unsigned_type, signed_type, signed_or_unsigned_type,
12294         build_function_call, mark_addressable, incomplete_type_error):
12295         Delete redundant declarations.
12297 2001-04-11  Jason Merrill  <jason_merrill@redhat.com>
12299         * cp-tree.h (TYPE_LINKAGE_IDENTIFIER): New macro.
12300         (TYPE_ANONYMOUS_P): New macro.
12301         (TAGGED_TYPE_P): New macro.
12302         * decl.c (check_tag_decl): Use TYPE_ANONYMOUS_P.
12303         (grokfndecl, grokvardecl, grokdeclarator): Likewise.
12304         * tree.c (no_linkage_helper): Likewise.
12305         * semantics.c (begin_class_definition): Likewise.
12306         * pt.c (convert_template_argument): Likewise.
12307         * lex.c (check_for_missing_semicolon): Likewise.
12309 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
12311         * class.c (dfs_unshared_virtual_bases): New function.
12312         (mark_primary_bases): Call it.
12313         (check_bases): Ignore virtual bases when determining
12314         nearly-emptiness.
12316 2001-04-12  Nathan Sidwell  <nathan@codesourcery.com>
12318         * method.c (make_thunk): Clear DECL_CLONED_FUNCTION.
12320 2001-04-11  Mark Mitchell  <mark@codesourcery.com>
12322         * optimize.c (maybe_clone_body): Copy DECL_NUM_STMTS from the
12323         cloned function to the clone.
12325 2001-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12327         * Make-lang.in (cp/semantics.o): Depend on $(EXPR_H).
12329         * semantics.c: Include expr.h.
12331 2001-04-11  Nathan Sidwell  <nathan@codesourcery.com>
12333         * method.c (implicitly_declare_fn): Commonize code for copy ctor
12334         and assignment op. Set TREE_USED for parameter.
12336 2001-04-10  Mark Mitchell  <mark@codesourcery.com>
12338         * class.c (find_final_overrider_data): Add `candidates'.
12339         (dfs_find_final_overrider): Don't issue error messages
12340         prematurely.
12341         (find_final_overrider): Issue error messages here.
12342         (build_base_field): Don't warn about amgibuous direct bases here.
12343         (warn_about_ambiguous_direct_bases): New function.
12344         (layout_class_type): Use it.
12346 2001-04-10  Richard Henderson  <rth@redhat.com>
12348         * typeck.c (build_array_ref): Push the array reference inside
12349         COMPOUND_EXPR and COND_EXPR.
12351 2001-04-05  Mark Mitchell  <mark@codesourcery.com>
12353         * cp-tree.h (DECL_THIS_INLINE): Rename to DECL_DECLARED_INLINE_P.
12354         * decl.c (duplicate_decls): Adjust accordingly.
12355         (maybe_commonize_var): Likewise.
12356         (grokfndecl): Likewise.
12357         (start_function): Likewise.
12358         (start_method): Likewise.
12359         * decl2.c (key_method): Likewise.
12360         (import_export_decl): Likewise.
12361         * method.c (implicitly_declare_fn): Likewise.
12362         * optimize.c (maybe_clone_body): Likewise.
12364 2001-04-05  Benjamin Kosnik  <bkoz@redhat.com>
12366         * lang-specs.h: Add __DEPRECATED.
12368 2001-04-05  J"orn Rennecke <amylaar@redhat.com>
12370         * search.c (get_dynamic_cast_base_type): When building a new
12371         constant, set its type to ssizetype.
12373 2001-04-04  Jakub Jelinek  <jakub@redhat.com>
12375         * optimize.c (expand_call_inline): Only add newly inlined statements
12376         into inlined_stmts.
12378 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
12380         * cp-tree.h (OPERATOR_ASSIGN_FORMAT): Remove.
12381         (OPERATOR_FORMAT): Likewise.
12382         (OPERATOR_TYPENAME_FORMAT): Likewise.
12383         * operators.def: Remove old name-mangling information.
12384         * decl.c (grok_op_properties): Adjust accordingly.
12385         * lex.c (init_operators): Likewise.
12386         * rtti.c (get_tinfo_decl): Issue error messages about types that
12387         have variable size.
12389 2001-04-03  Mark Mitchell  <mark@codesourcery.com>
12391         * decl2.c (import_export_decl): Don't call import_export_class
12392         when processing an inline member function.
12393         * semantics.c (expand_body): Call import_export_decl before
12394         emitting inline functions.
12396 2001-03-28  Richard Henderson  <rth@redhat.com>
12398         IA-64 ABI Exception Handling:
12399         * cp-tree.def (EH_SPEC_BLOCK): New.
12400         (MUST_NOT_THROW_EXPR): New.
12401         * cp-tree.h: Update changed function declarations.
12402         (CPTI_PUSH_EXCEPTION_IDENTIFIER): Remove.
12403         (CPTI_CALL_UNEXPECTED): New.
12404         (struct cp_language_function): Rename x_eh_spec_try_block
12405         to x_eh_spec_block.
12406         (EH_SPEC_STMTS, EH_SPEC_RAISES): New.
12407         * decl.c (current_binding_level): If no current function
12408         bindings, revert to scope_chain.
12409         (initialize_predefined_identifiers): Remove __cp_push_exception.
12410         (store_parm_decls): Use begin_eh_spec_block.
12411         (finish_function): Use finish_eh_spec_block.
12412         (mark_lang_function): Update for name changes.
12413         * decl2.c (finish_file): No mark_all_runtime_matches.
12414         * dump.c (cp_dump_tree): Handle new tree codes.
12415         * error.c (dump_expr) [BIND_EXPR]: Fix typo.
12416         * except.c (catch_language_init, catch_language): Remove.
12417         (init_exception_processing): Don't set language code.
12418         Initialize call_unexpected_node, protect_cleanup_actions,
12419         eh_personality_libfunc, lang_eh_runtime_type.
12420         (call_eh_info, push_eh_info, get_eh_info, get_eh_value): Remove.
12421         (get_eh_type, get_eh_caught, get_eh_handlers): Remove.
12422         (prepare_eh_type): Split out type canonicalizations ...
12423         (build_eh_type_type): ... from here.
12424         (build_eh_type_type_ref): Remove.
12425         (mark_all_runtime_matches): Remove.
12426         (build_exc_ptr): New.
12427         (do_begin_catch, do_end_catch): New.
12428         (do_pop_exception): Remove.
12429         (build_terminate_handler): Remove.
12430         (choose_personality_routine): Split out language choice from ...
12431         (initialize_handler_parm): ... here.
12432         Use MUST_NOT_THROW_EXPR.
12433         (expand_start_catch_block): Use do_begin_catch.  Simplify Java
12434         exception object handling.
12435         (expand_start_eh_spec, expand_end_eh_spec): Remove.
12436         (expand_exception_blocks, alloc_eh_object): Remove.
12437         (begin_eh_spec_block, finish_eh_spec_block): New.
12438         (do_allocate_exception, do_free_exception): New.
12439         (expand_throw): Merge into ...
12440         (build_throw): ... here.  Update for abi.
12441         * expr.c (cplus_expand_expr): No expand_internal_throw.
12442         Handle MUST_NOT_THROW_EXPR.
12443         * pt.c (tsubst_expr): Handle EH_SPEC_BLOCK.
12444         * semantics.c (*) Update for except.h name changes.
12445         (genrtl_try_block): No protect_with_terminate.
12446         (genrtl_eh_spec_block): New.
12447         (genrtl_handler): Don't emit the goto here.
12448         (cp_expand_stmt): Handle EH_SPEC_BLOCK.
12449         (genrtl_finish_function): Don't expand_exception_blocks.
12450         * tree.c (cp_statement_code_p): Handle EH_SPEC_BLOCK.
12452 2001-03-28  Richard Henderson  <rth@redhat.com>
12454         * decl.c (struct named_label_list): Rename eh_region to
12455         in_try_scope, add in_catch_scope.
12456         (struct binding_level): Rename eh_region to is_try_scope,
12457         add is_catch_scope.
12458         (note_level_for_try): Rename from note_level_for_eh.
12459         (note_level_for_catch): New.
12460         (poplevel): Copy both is_try_scope and is_catch_scope to
12461         the named_label_list struct.
12462         (check_previous_goto_1): Don't check for catch block via
12463         DECL_ARTIFICIAL; use in_try_scope instead.
12464         (check_goto): Likewise.
12465         * cp-tree.h (note_level_for_try, note_level_for_catch): Declare.
12466         * except.c (expand_start_catch_block): Call note_level_for_catch.
12467         * semantics.c (begin_compound_stmt): Update for note_level_for_try.
12469 2001-03-27  Richard Henderson  <rth@redhat.com>
12471         * except.c: Use USING_SJLJ_EXCEPTIONS instead of
12472         exceptions_via_longjmp.
12474 2001-03-27  Phil Edwards  <pme@sources.redhat.com>
12476         * pt.c (check_default_tmpl_args):  Make error messages clearer.
12478 2001-03-26  Phil Edwards  <pme@sources.redhat.com>
12480         * error.c:  Also undefine 'A' macro used for cp_printers definition.
12482 2001-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12484         * Make-lang.in: Depend on $(SYSTEM_H), not system.h.
12486 2001-03-26  Mike Yang <yang@research.att.com>
12487             Mark Mitchell  <mark@codesourcery.com>
12489         * dump.c (dump_access): New function.
12490         (cp_dump_tree): Use it.  Dump basetype information for class
12491         types.
12493 2001-03-26  Mark Mitchell  <mark@codesourcery.com>
12495         * Makefile.in (optimize.o): Depend on params.h.
12496         (duplicate_decls): Copy DECL_NUM_STMTS, not DECL_FRAME_SIZE.
12497         (init_decl_processing): Set flag_no_inline when doing
12498         inlining-on-trees.
12499         * optimize.c: Include params.h.
12500         (struct inline_data): Improve documentation of FNS.  Add
12501         FIRST_INLINED_FN, INLINED_STMTS, and CLONING_P.
12502         (INSNS_PER_STMT): New macro.
12503         (remap_block): Use CLONING_P.
12504         (inlinable_function_p): Don't inline big functions.
12505         (expand_call_inline): Keep track of how much inlining we've done.
12506         (optimize_function): Set FIRST_INLINED_FN.
12507         (maybe_clone_body): Set CLONING_P.
12508         * semantics.c (simplify_aggr_init_exprs_r): Fix typing problems in
12509         tree nodes.
12510         (genrtl_finish_function): Clear DECL_DEFER_OUTPUT before calling
12511         rest_of_compilation.  Clear DECL_RTL for local variables
12512         afterwards.
12513         (clear_decl_rtl): New function.
12515 2001-03-26  Nathan Sidwell  <nathan@codesourcery.com>
12517         Implement DR 209
12518         * cp-tree.h (skip_type_access_control,
12519         reset_type_access_control): Prototype.
12520         * decl.c (grokdeclarator): Access of friends is not checked.
12521         * parse.y (component_decl_list): Reset type access control.
12522         * semantics.c (decl_type_access_control): Clear
12523         current_type_lookups.
12524         (save_type_access_control): Don't save if not deferring.
12525         (skip_type_access_control, reset_type_access_control): New
12526         functions.
12527         (begin_class_definition): Do type access control for basetypes.
12528         Start deferred access control.
12529         (finish_class_definition): Resume immediate access control if
12530         this is a local class.
12532 2001-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12534         * class.c (add_method): Use memcpy/memmove, not bcopy.
12536         * decl.c (duplicate_decls): Likewise.
12538 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
12540         * mangle.c (write_discriminator): Use `_0' for discriminator 1,
12541         not `_'.
12543 2001-03-23  Jakub Jelinek  <jakub@redhat.com>
12545         * decl.c (local_names): Define.
12546         (push_local_name): New.
12547         (grok_reference_init): Return init if initializing static reference
12548         variable with non-constant instead of emitting it.
12549         Move expand_static_init call to cp_finish_decl.
12550         (layout_var_decl): Call push_local_name.
12551         (maybe_commonize_var): Allow inlining functions even if they have
12552         static local variables, use comdat_linkage for them if flag_weak.
12553         (check_initializer): Call obscure_complex_init if
12554         grok_reference_init returned nonzero.
12555         (save_function_data): Clear x_local_names.
12556         (pop_cp_function_context): Free x_local_names.
12557         (mark_inlined_fns): Remove.
12558         (mark_lang_function): Mark x_local_names.
12559         (lang_mark_tree): Don't mark DECL_ACCESS for DECL_DISCRIMINATOR_P.
12560         Mark inlined_fns as tree, remove call to mark_inlined_fns.
12561         * class.c (alter_access): Ensure DECL_ACCESS is never set if
12562         DECL_DISCRIMINATOR_P.
12563         * cp-tree.h (cp_language_function): Add x_local_names.
12564         (lang_decl_flags): Add discriminator into u2.
12565         (lang_decl_inlined_fns): Remove.
12566         (lang_decl): inlined_fns is now a TREE_VEC.
12567         (DECL_DISCRIMINATOR_P, DECL_DISCRIMINATOR): Define.
12568         * optimize.c (inlinable_function_p): DECL_INLINED_FNS is now a
12569         TREE_VEC, not a custom structure.
12570         (optimize_function): Likewise.
12571         * mangle.c (discriminator_for_local_entity): Discriminate among
12572         VAR_DECL local entities.
12573         * search.c (dfs_access_in_type): If DECL_DISCRIMINATOR_P, DECL_ACCESS
12574         is not valid.
12576 2001-03-22  Bryce McKinlay  <bryce@albatross.co.nz>
12578         Add support for Java interface method calls.
12579         * cp-tree.h (struct lang_type): Add java_interface flag.
12580         (TYPE_JAVA_INTERFACE): New macro.
12581         * tree.c (cp_valid_lang_attribute): Handle "java_interface" attribute
12582         by setting TYPE_JAVA_INTERFACE.
12583         * call.c (java_iface_lookup_fn): New static.
12584         (build_over_call): If calling a method declared in a
12585         TYPE_JAVA_INTERFACE, call build_java_interface_fn_ref to generate the
12586         expression which resolves the function address.
12587         (build_java_interface_fn_ref): New function.
12589 2001-03-22  Richard Henderson  <rth@redhat.com>
12591         * Make-lang.in (cp/except.o): Don't depend on insn-flags.h.
12592         * except.c: Don't include it.
12594 2001-03-22  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
12595             based on an idea from Joe Buck <jbuck@synopsys.com>
12597         * parse.y (bad_decl, template_arg_list_ignore, arg_list_ignore):
12598         New nonterminals.
12599         (data_def, component_decl): Add reductions to bad_decl.
12601 2001-03-22  Jakub Jelinek  <jakub@redhat.com>
12603         * method.c (do_build_assign_ref): Don't use build_modify_expr for
12604         anonymous aggregates, since they don't have assignment operator
12605         method.
12606         * decl.c (fixup_anonymous_aggr): Disallow ctors, dtors and copy
12607         assignment operators for anonymous structure fields.
12609 2001-03-21  Jason Merrill  <jason@redhat.com>
12611         * pt.c (instantiate_decl): Abort if we see a member constant
12612         instantiation that doesn't already have its initializer.
12613         Downgrade explicit instantiation without definition to pedwarn.
12615         * cp-tree.h (DECL_TINFO_FN_P, SET_DECL_TINFO_FN_P): Remove.
12616         * class.c (build_vtable_entry): Don't check DECL_TINFO_FN_P.
12617         (import_export_decl): Check tinfo_decl_p, not DECL_TINFO_FN_P.
12619         * cp-tree.h (CLASSTYPE_VTABLE_NEEDS_WRITING): Remove.
12620         (pending_vtables): Remove.
12621         * decl2.c (pending_vtables): Remove.
12622         (import_export_vtable): Use CLASSTYPE_INTERFACE_ONLY, not
12623         CLASSTYPE_VTABLE_NEEDS_WRITING.
12624         (import_export_class): Likewise.
12625         (init_decl2): Don't mark pending_vtables.
12626         * lex.c (handle_pragma_vtable): Just sorry.
12627         * pt.c (instantiate_class_template): Don't mess with
12628         CLASSTYPE_VTABLE_NEEDS_WRITING.
12629         (mark_class_instantiated): Likewise.
12630         * ptree.c (print_lang_type): Don't print it.
12631         * semantics.c (begin_class_definition): Don't set it.
12633         * pt.c (template_tail): Replace with last_pending_template.
12634         (maybe_templates, maybe_template_tail): Remove.
12635         (add_pending_template): Adjust.
12636         (instantiate_pending_templates): Adjust.
12638         * cp-tree.h (struct saved_scope): Remove lang_stack field.
12639         (current_lang_stack): Remove.
12640         * decl.c (maybe_push_to_top_level): Don't initialize it.
12641         (duplicate_decls): Use current_lang_depth.
12642         (xref_basetypes): Likewise.
12643         * class.c (current_lang_depth): New fn.
12644         (push_lang_context): Use more varray functionality.
12645         (pop_lang_context): Likewise.
12647         * error.c (GLOBAL_THING): Always use '__'.
12649 2001-03-21  Mark Mitchell  <mark@codesourcery.com>
12651         * class.c (build_clone): Clear DECL_ASSEMBLER_NAME.
12653         * mangle.c (mangle_decl_string): Mangle the names of overloaded
12654         operators, even when they have `extern "C"' linkage.
12656 2001-03-19  Mark Mitchell  <mark@codesourcery.com>
12658         * class.c (get_vtable_decl): Use SET_DECL_ASSEMBLER_NAME,
12659         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
12660         where it's not necessary.
12661         (add_method): Remove optimization involving comparison of
12662         DECL_ASSEMBLER_NAME.
12663         (build_vtbl_or_vbase_field): Use SET_DECL_ASSEMBLER_NAME,
12664         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
12665         where it's not necessary.
12666         (check_methods): Likewise.
12667         (build_clone): Likewise.
12668         (built_vtt): Likewise.
12669         * cp-tree.h (DECL_NEEDED_P): Likewise.
12670         * decl.c (pushtag): Likewise.
12671         (duplicate_decls): Likewise.
12672         (pushdecl): Likewise.
12673         (builtin_function): Likewise.
12674         (build_library_fn_1): Set DECL_LANGUAGE for library functions.
12675         (build_cp_library_fn): Likewise.
12676         (maybe_commonize_var): Use SET_DECL_ASSEMBLER_NAME,
12677         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
12678         where it's not necessary.
12679         (make_rtl_for_nonlocal_decl): Likewise.
12680         (cp_finish_decl): Likewise.
12681         (grokfndecl): Likewise.
12682         (grokvardecl): Likewise.
12683         (grokdeclarator): Likewise.
12684         (start_function): Likewise.
12685         (cp_missing_return_ok_p): Likewise.
12686         * decl2.c (grokclassfn): Likewise.
12687         (check_classfn): Likewise.
12688         (finish_static_data_member_decl): Likewise.
12689         (grokfield): Likewise.
12690         * error.c (GLOBAL_IORD_P): Remove.
12691         (dump_global_iord): Improve output.
12692         (dump_decl): Avoid using DECL_ASSEMBLER_NAME.
12693         * except.c (nothrow_libfn_p): Summarily reject any function not in
12694         namespace-scope.
12695         * init.c (build_java_class_ref): Don't explicitly set
12696         DECL_ASSEMBLER_NAME after calling mangle_decl.
12697         * mangle.c (mangle_decl_string): Handle extern "C" functions.
12698         (mangle_decl): Set the DECL_ASSEMBLER_NAME for the decl.
12699         * method.c (set_mangled_name_for_decl): Don't explicitly set
12700         DECL_ASSEMBLER_NAME after calling mangle_decl.
12701         (make_thunk): Explicitly set the DECL_ASSEMBLER_NAME and
12702         IDENTIFIER_GLOBAL_VALUE for the thunk.
12703         * pt.c (set_mangled_name_for_template_decl): Remove.
12704         (check_explicit_specialization): Don't use it.
12705         (looup_template_class): Don't set DECL_ASSEMBLER_NAME.
12706         (tsubst_friend_function): Likewise.
12707         (tsubst_decl): Likewise.
12708         (regenerate_decl_from_template): Use COPY_DECL_ASSEMBLER_NAME.
12709         * rtti.c (get_tinfo_decl): Use SET_DECL_ASSEMBLER_NAME,
12710         COPY_DECL_ASSEMBLER_NAME, etc.  Don't set DECL_ASSEMBLER_NAME
12711         where it's not necessary.
12712         (tinfo_base_init): Likewise.
12713         (create_real_tinfo_var): Likewise.
12714         * search.c (looup_field_1): Likewise.
12715         * semantics.c (finish_named_return_value): Likewise.
12716         * tree.c (init_tree): Set lang_set_decl_assembler_name.
12718 2001-03-15  Gabriel Dos Reis  <gdr@codesourcery.com>
12720         Correct semantics restrictions checking in throw-expression.
12721         * except.c (is_admissible_throw_operand): New function.
12722         (build_throw): Use it.
12724 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
12726         * decl.c (cp_make_fnname_decl): Set DECL_IGNORED_P on __FUNCTION__
12727         and its ilk.
12729 2001-03-14  Mark Mitchell  <mark@codesourcery.com>
12731         * class.c (build_clone): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
12732         * cp-tree.h (DECL_IN_MEMORY_P): Likewise.
12733         * decl.c (duplicate_decls): Likewise.
12734         (builtin_function): Likewise.
12735         (build_library_fn): Likewise.
12736         (build_cp_library_fn): Likewise.
12737         (check_initializer): Likewise.
12738         (cp_finish_decl): Likewise.
12739         * decl2.c (grokfield): Likewise.
12740         (grok_function_init): Remove #if 0'd code.
12741         (finish_anon_union): Use COPY_DECL_RTL, DECL_RTL_SET_P, etc.
12742         * friend.c (do_friend): Likewise.
12743         * init.c (get_temp_regvar): Likewise.
12744         * method.c (make_thunk): Likewise.
12745         * pt.c (tsubst_friend_function): Likewise.
12746         (tsubst_decl): Likewise.
12747         (regenerate_decl_from_template): Likewise.
12748         * semantics.c (genrtl_named_return_value): Likewise.
12749         (expand_body): Likewise.
12750         (genrtl_finish_function): Likewise.
12751         * tree.c (cp_tree_equal): Likewise.
12753 2001-03-12  Nathan Sidwell  <nathan@codesourcery.com>
12755         * call.c (convert_like_real): Add extra semantics to INNER
12756         parameter. Don't convert to temporary if a user conversion
12757         gives us an lvalue that we're about to bind to a reference.
12758         Set INNER to indicate pending reference binding on recursive
12759         calls.
12761 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
12763         * cp/lex.c: Delete duplicate pending_lang_change.
12765 2001-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
12767         * cp/lex.c (handle_pragma_interface, handle_pragma_implementation):
12768         Similarly.
12769         * cp/repo.c (get_base_filename, open_repo_file): Similarly.
12770         * cp/cp-tree.h: Remove file_name_nondirectory prototype.
12772 2001-03-09  Zack Weinberg  <zackw@stanford.edu>
12774         * Make-lang.in: Add dependencies on $(TM_P_H) as appropriate.
12776 2001-03-08  Stan Shebs  <shebs@apple.com>
12778         * cp-tree.h (set_identifier_local_value): Remove unused decl.
12780 2001-03-06  Zack Weinberg  <zackw@stanford.edu>
12782         * spew.c: Remove references to CPP_OSTRING.
12784 2001-03-06  Andrew Haley  <aph@redhat.com>
12786         * typeck.c (convert_arguments): Check that we have an fndecl.
12788 2001-03-05  Andrew Haley  <aph@redhat.com>
12790         * typeck.c (convert_arguments): Don't do ellipsis conversion for
12791         __built_in_constant_p.
12793 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
12795         * typeck.c (build_static_cast): Allow enum to enum conversions
12796         as per DR 128.
12798 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
12800         * class.c (check_field_decls): Pointers to member do not a
12801         non-pod struct make, as per DR 148.
12803 2001-03-02  Nathan Sidwell  <nathan@codesourcery.com>
12805         * call.c (joust): cp_pedwarn when using gnu extension concerning
12806         worst conversion sequences.
12808 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
12810         * decl.c: Replace all uses of 'boolean' with 'bool'.
12812 2001-03-01  Zack Weinberg  <zackw@stanford.edu>
12814         * lang-specs.h: Add zero initializer for cpp_spec field to
12815         all array elements that need one.  Don't put an #ifdef inside
12816         the initializer list; set a default for CPLUSPLUS_CPP_SPEC and
12817         use it.
12819 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
12821         Implement using decls inside template functions.
12822         * decl2.c (validate_nonmember_using_decl): Don't special case
12823         fake_std_node in the global namespace. Don't reject early when
12824         processing a template.
12825         (do_local_using_decl): Add to statement tree. Don't do further
12826         processing when building a template.
12827         * pt.c (tsubst_expr, DECL_STMT case): Deal with USING_DECLs.
12829 2001-03-01  Nathan Sidwell  <nathan@codesourcery.com>
12831         * decl2.c (do_nonmember_using_decl): Don't complain if we find
12832         same function. Do complain about ambiguating extern "C"
12833         declarations.
12835 2001-02-28  Nathan Sidwell  <nathan@codesourcery.com>
12837         Remove floating point and complex type template constant parms.
12838         * pt.c (convert_nontype_argument): Remove REAL_TYPE and
12839         COMPLEX_TYPE extensions.
12840         (invalid_nontype_parm_type_p): Likewise.
12842 2001-02-27  Jeffrey Oldham  <oldham@codesourcery.com>
12844         * except.c (call_eh_info): Revert "match_function"'s type.
12846 2001-02-27  Nathan Sidwell  <nathan@codesourcery.com>
12848         Fix ctor vtable vcall offsets.
12849         * class.c (struct vtbl_init_data_s): Add rtti_binfo member.
12850         (build_rtt_vtbl_entries): Lose RTTI_BINFO parameter.
12851         (get_matching_base): Remove.
12852         (get_original_base): New function.
12853         (build_vtbl_initializer): Initialize vid.rtti_binfo.
12854         Use a virtual thunk for a ctor vtable with an index
12855         (add_vcall_offset_vtbl_entries_1): Check if binfo has lost a
12856         primary base within a constructor vtable. Only set
12857         BV_VCALL_INDEX when not a constructor vtable. Adjust vcall offset
12858         when primary base has been lost.
12859         * cp-tree.h (BINFO_VIRTUALS): Remove ambiguity from comment.
12861 2001-02-26  Jeffrey Oldham  <oldham@codesourcery.com>
12863         * call.c (joust): Ensure more_specialized()'s argument length
12864         parameter has correct value for constructors.
12866 2001-02-26  Nathan Sidwell  <nathan@codesourcery.com>
12868         * except.c (call_eh_info): Cleanup generation of cp_eh_info struct.
12870         * decl.c (mark_inlined_fns): Prototype.
12872 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
12874         * spew.c (yylex): Correct handling of friends.
12876 2001-02-22  Mark Mitchell  <mark@codesourcery.com>
12878         * mangle.c (write_encoding): Pass write_function_type the
12879         FUNCTION_DECL for the function being encoded.
12880         (write_function_type): Pass it along to write_bare_function_type.
12881         (write_bare_function_type): Pass it along to write_method_parms.
12882         (write_method_parms): Don't mangle the compiler-generated
12883         parameters to a constructor or destructor.
12885 2001-02-22  Andreas Jaeger  <aj@suse.de>
12887         * optimize.c: Include toplev.h for
12888         note_deferral_of_defined_inline_function prototype.
12890 2001-02-22  Jakub Jelinek  <jakub@redhat.com>
12892         * cp-tree.h (struct lang_decl_inlined_fns): New.
12893         (struct lang_decls): Add inlined_fns.
12894         (DECL_INLINED_FNS): New macro.
12895         * optimize.c (struct inline_data): Add inlined_fns.
12896         (declare_return_variable): Use VARRAY_ACTIVE_SIZE macro.
12897         (inlinable_function_p): Likewise, fix typo in comment,
12898         function is not inlinable if it already inlined function currently
12899         being optimized.
12900         (expand_call_inline): Add fn to inlined_fns if necessary.
12901         (optimize_function): Initialize inlined_fns.
12902         Save inlined_fns into DECL_INLINED_FNS after expanding inlines.
12903         * decl.c (mark_inlined_fns): New function.
12904         (lang_mark_tree): Call it.
12906 2001-02-21  Jason Merrill  <jason@redhat.com>
12908         * cp-tree.h (struct lang_decl_flags): Remove uninlinable flag.
12909         (DECL_UNINLINABLE): Move to middle-end.
12911         * class.c (clone_function_decl): Set DECL_ABSTRACT on original fn.
12912         * decl.c (duplicate_decls): Preserve DECL_ABSTRACT.
12913         * class.c (build_clone): Set DECL_ABSTRACT_ORIGIN for the clone.
12914         * optimize.c (maybe_clone_body): Set DECL_ABSTRACT_ORIGIN for the
12915         parms and outer BLOCK.  note_deferral_of_defined_inline_function.
12917         * method.c (implicitly_declare_fn): Don't set DECL_ARTIFICIAL on
12918         second parm of op=.
12920 2001-02-19  Mark Mitchell  <mark@codesourcery.com>
12922         * decl2.c (set_decl_namespace): Allow explicit instantiations in
12923         any namespace.
12925 2001-02-18  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
12927         * optimize.c (expand_call_inline): Don't walk subtrees of type
12928         nodes.
12930 2001-02-18  Mark Mitchell  <mark@codesourcery.com>
12932         * class.c (add_vcall_offset_vtbl_entries_1): Only add one entry
12933         for a destructor.
12935 2001-02-18  Jason Merrill  <jason@redhat.com>
12937         Do put the VTT parameter in DECL_ARGUMENTS.
12938         * cp-tree.h (struct cp_language_function): Add x_vtt_parm.
12939         (current_vtt_parm): New macro.
12940         (struct lang_decl_flags): Add has_vtt_parm_p, remove vtt_parm.
12941         (DECL_HAS_VTT_PARM_P): New macro.
12942         (DECL_VTT_PARM): Remove.
12943         (FUNCTION_FIRST_USER_PARMTYPE, FUNCTION_FIRST_USER_PARM): New macros.
12944         * decl.c (duplicate_decls): Only copy the operator code if
12945         appropriate.
12946         (start_function): Set current_vtt_parm.
12947         (lang_mark_tree): Don't mark vtt_parm.
12948         * decl2.c (maybe_retrofit_in_chrg): Do add the VTT parm to
12949         DECL_ARGUMENTS.  Set DECL_HAS_VTT_PARM_P.
12950         * class.c (build_clone): Maybe remove the VTT parm.
12951         * optimize.c (maybe_clone_body): Set up the VTT parm.
12952         * pt.c (copy_default_args_to_explicit_spec): Preserve the VTT parm.
12953         * call.c (build_over_call): Just allow the VTT arg.
12954         * method.c (make_thunk): Don't set DECL_VTT_PARM.
12955         (do_build_copy_constructor): Use FUNCTION_FIRST_USER_PARM.
12956         (synthesize_method): Use FUNCTION_FIRST_USER_PARMTYPE.
12957         * decl.c (grokdeclarator, copy_args_p, grok_ctor_properties): Likewise.
12958         * error.c (dump_function_decl): Likewise.
12959         * call.c (build_user_type_conversion_1, convert_like_real): Abort
12960         if we try to call a constructor with in-charge or VTT parms.
12961         * method.c (skip_artificial_parms_for): New fn.
12962         * call.c (add_function_candidate, build_over_call): Call it.
12963         * call.c (build_new_method_call): Use current_vtt_parm.
12964         * init.c (expand_virtual_init): Likewise.
12965         * class.c (same_signature_p): No longer static.
12966         * cp-tree.h: Declare it.
12967         * search.c (look_for_overrides_r): Use it.
12969 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
12971         * cp-tree.h (new_abi_rtti_p): Remove.
12972         (name_mangling_version): Likewise.
12973         (flag_do_squangling): Likewise.
12974         * class.c (build_rtti_vtbl_entries): Remove old ABI support.
12975         * decl.c (grokfndecl): Likewise.
12976         * decl2.c (name_mangling_version): Remove.
12977         (flag_do_squangling): Likewise.
12978         (lang_f_options): Remove `squangle'.
12979         (unsupported_options): Add `squangle'.
12980         (cxx_decode_option): Issue a warning about uses of
12981         -fname-mangling-version.
12982         (finish_file): Remove old ABI support.
12983         * pt.c (check_explicit_specialization): Likewise.
12984         (tsubst_decl): Likewise.
12985         * rtti.c (init_rtti_processing): Likewise.
12986         (build_headof): Likewise.
12987         (get_tinfo_decl_dynamic): Likewise.
12988         (tinfo_from_decl): Likewise.
12989         (build_dynamic_cast_1): Likewise.
12990         (synthesize_tinfo_var): Likewise.
12991         * init.c (build_new): Allow enumeration types for the array-bounds
12992         in a direct-new-declarator.
12994         * semantics.c (finish_typeof): Resolve OFFSET_REFs.
12996         * pt.c (check_explicit_specialization): Copy TREE_PRIVATE and
12997         TREE_PROTECTED from the template being specialized.
12999 2001-02-17  Jason Merrill  <jason@redhat.com>
13001         * decl2.c (build_artificial_parm): Set TREE_READONLY.
13003         * decl.c (bad_specifiers): Allow throw specs on things with
13004         pointer-to-function or -member-function type.
13005         * init.c (build_default_init): Don't use a CONSTRUCTOR to initialize
13006         a pmf.
13008 2001-02-17  Mark Mitchell  <mark@codesourcery.com>
13010         * call.c (check_dtor_name): Handle template names correctly.
13012 2001-02-16  Jason Merrill  <jason@redhat.com>
13014         * cp-tree.h (DECL_USE_VTT_PARM): Remove.
13015         * decl2.c (maybe_retrofit_in_chrg): Don't create it.
13016         * optimize.c (maybe_clone_body): Don't substitute it.
13017         * call.c (build_new_method_call): Check in_chrg instead.
13018         * init.c (expand_virtual_init): Likewise.
13020 2001-02-16  Gabriel Dos Reis  <gdr@codesourcery.com>
13022         * decl.c (check_tag_decl): Make sure a typedef for an anonymous
13023         class-type introduces at least a type-name.
13025 2001-02-16  Jakub Jelinek  <jakub@redhat.com>
13027         * call.c (convert_like_real): Create a temporary for non-lvalue.
13029 2001-02-16  Jeffrey Oldham  <oldham@codesourcery.com>
13031         * cp-tree.h: Fix typos in comments.
13033 2001-02-16  Jason Merrill  <jason@redhat.com>
13035         * optimize.c (remap_block): If we're compiling a clone, pass the
13036         new block to insert_block.
13038 2001-02-16  Mark Mitchell  <mark@codesourcery.com>
13040         * semantics.c (finish_asm_stmt): Robustify.
13042 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
13044         * pt.c (push_template_decl_real): Don't remangle the name of a
13045         class template.
13047 2001-02-15  Jim Meyering  <meyering@lucent.com>
13049         * Make-lang.in (c++.install-common): Depend on installdirs.
13050         (c++.install-info): Likewise.
13051         (c++.install-man): Likewise.
13053 2001-02-15  Mark Mitchell  <mark@codesourcery.com>
13055         * typeck2.c (build_m_component_ref): Robustify.
13057 2001-02-15  Alexandre Oliva  <aoliva@redhat.com>
13059         * friend.c (do_friend): Don't take the nested [template] class
13060         into account when deciding whether to warn about the friend
13061         function not referring to a template function.
13063 2001-02-14  Jakub Jelinek  <jakub@redhat.com>
13065         * typeck.c (build_unary_op): Clarify error message.
13067 2001-02-08  Aldy Hernandez  <aldyh@redhat.com>
13069         * parse.y (component_constructor_declarator): allow optional
13070         parentheses around constructor class name.
13072 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
13074         * cp-tree.h (setup_vtbl_ptr): Move prototype to semantics.c
13075         section.
13076         * init.c (emit_base_init): Remove incorrect comment about
13077         virtual bases.
13078         * method.c (make_thunk): Fix comment alignment.
13080 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
13082         Kill remnants of this is variable.
13083         * cp-tree.h (flag_this_is_variable): Remove.
13084         * decl2.c (flag_this_is_variable): Remove.
13085         * class.c (fixed_type_or_null): Add cdtor parm. Adjust.
13086         (build_vbase_path): The path is non-static, even in a cdtor.
13087         (resolves_to_fixed_type_p): Add additional return value.
13088         * search.c (init_vbase_pointers): Adjust.
13089         * tree.c (lvalue_p_1): Adjust.
13090         * typeck.c (mark_addressable): Adjust.
13092 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
13094         * pt.c (unify): Don't check cv quals of array types.
13096 2001-02-14  Nathan Sidwell  <nathan@codesourcery.com>
13098         * tree.c (cp_build_qualified_type_real): Use CP_TYPE_QUALS to
13099         check whether we already have the type.
13101 2001-02-13  Mark Mitchell  <mark@codesourcery.com>
13103         * cp-tree.h (CLASSTYPE_DESTRUCTORS): Fix typo in comment.
13104         * call.c (build_op_delete_call): Simplify to remove duplicate
13105         code.
13106         * class.c (clone_function_decl): Don't build the deleting variant
13107         of a non-virtual destructor.
13108         * decl.c (finish_destructor_body): Don't call delete if this is a
13109         non-virtual destructor.
13110         * init.c (build_delete): Explicitly call `operator delete' when
13111         deleting an object with a non-virtual destructor.
13113 2001-02-13  Jason Merrill  <jason@redhat.com>
13115         * lang-specs.h: Add more __EXCEPTIONS.
13117 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
13119         * typeck2.c (process_init_constructor): Check
13120         TREE_HAS_CONSTRUCTOR before issuing missing init warning.
13122 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
13124         * pt.c (maybe_adjust_types_for_deduction, DEDUCE_ORDER case):
13125         Remove spurious information in comment. Allow further
13126         adjustments of REFERENCE_TYPE args.
13128 2001-02-12  Nathan Sidwell  <nathan@codesourcery.com>
13130         * errfn.c (cp_deprecated): Tweak diagnostic text.
13131         * parse.y (new_initializer): Deprecate initializer lists
13132         extension.
13134 2001-02-12  Mark Mitchell  <mark@codesourcery.com>
13136         Remove old ABI support.
13138 2001-02-11  Mark Mitchell  <mark@codesourcery.com>
13140         * decl2.c (flag_vtable_thunks): Always set it to 1.
13141         (flag_new_abi): Likewise.
13142         * lang-specs.h: Remove conditional on ENABLE_NEW_GXX_ABI.
13144         * Makefile.in (g++spec.o): Fix typo.
13146 2001-02-09  Jason Merrill  <jason@redhat.com>
13148         * lang-specs.h: Restore definition of __EXCEPTIONS.
13150 2001-02-08  Jason Merrill  <jason@redhat.com>
13152         * search.c (shared_member_p): New function.
13153         (lookup_field_r): Use it.
13154         * cp-tree.h (SHARED_MEMBER_P): Remove.
13156         * method.c (process_overload_item): Handle template-dependent array
13157         bounds.
13158         * pt.c (type_unification_real): If we end up with undeduced nontype
13159         parms, try again.
13161         * decl.c (lookup_name_real): Tweak warning to refer to decls, not
13162         types.
13164         * typeck2.c (friendly_abort): Don't say anything if we have
13165         earlier errors or sorries.
13167         * decl.c (check_tag_decl): Notice attempts to redefine bool and
13168         wchar_t.  Ignore if in_system_header.
13170         * decl.c (maybe_push_cleanup_level): New fn...
13171         (start_decl_1): ...split out from here.
13172         * cvt.c (build_up_reference): Use it.
13173         * cp-tree.h: Declare it.
13175 2001-02-07  Mark Mitchell  <mark@codesourcery.com>
13177         * lang-specs.h: Use CPLUSPLUS_CPP_SPEC for the preprocessor
13178         spec.
13180 2001-02-06  Nathan Sidwell  <nathan@codesourcery.com>
13182         * pt.c (lookup_template_class): Make sure it's a primary
13183         template or template_template_parm when called from the parser.
13184         (instantiate_template_class): Add assertion.
13186 2001-02-05  Alexandre Oliva  <aoliva@redhat.com>
13188         * method.c (build_mangled_name) [old abi]: Protect flush_repeats()
13189         from error_mark_node.
13191 2001-02-05  Nathan Sidwell  <nathan@codesourcery.com>
13193         Fix specification and implementation bugs in V3 ABI
13194         construction vtables.
13195         * cp-tree.h (flag_dump_class_layout): New flag.
13196         (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH_P): Remove.
13197         (BINFO_LOST_PRIMARY_P): New flag.
13198         (SET_BINFO_NEW_VTABLE_MARKED): Adjust asserts.
13199         (BINFO_PRIMARY_MARKED_P): Rename to ...
13200         (BINFO_PRIMARY_P): ... here.
13201         (binfo_via_virtual): New prototype.
13202         * decl2.c (flag_dump_class_layout): New flag.
13203         (cxx_decode_option): Set it. Adjust -fdump-translation-unit to
13204         use `=' as a file name separator.
13205         * init.c (dfs_initialize_vtbl_ptrs): Walk into virtual primary
13206         bases.
13207         (build_vtbl_address): If this is a virtual primary base, then
13208         get the vtbl of what it is ultimately primary for.
13209         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Adjust
13210         for BINFO_PRIMARY_P.
13211         (dfs_skip_nonprimary_vbases_markedp): Likewise.
13212         (get_shared_vbase_if_not_primary): Likewise.
13213         (dfs_get_pure_virtuals): Likewise.
13214         (expand_upcast_fixups): Likewise.
13215         (fixup_virtual_upcast_offsets): Likewise.
13216         (dfs_find_vbase_instance): Likewise.
13217         (find_vbase_instance): Likewise.
13218         (binfo_from_vbase): Adjust comment to reflect reality.
13219         (binfo_via_virtual): New function.
13220         * class.c (VTT_TOP_LEVEL_P, VTT_MARKED_BINFO_P): New macros
13221         for binfo walking during VTT construction.
13222         (dfs_mark_primary_bases): Remove.
13223         (force_canonical_binfo_r): New function.
13224         (force_canonical_binfo): New function.
13225         (mark_primary_virtual_base): New function.
13226         (mark_primary_bases): Walk in inheritance graph order, use
13227         mark_primary_virtual_base.
13228         (determine_primary_base): Use some more intermediate variables.
13229         (dfs_find_final_overrider): Don't check for overriding along a
13230         virtual path.
13231         (dfs_modify_vtables): Walk into primary virtual bases too.
13232         (walk_subobject_offsets): Adjust for BINFO_PRIMARY_P.
13233         (build_base_fields): Likewise.
13234         (dfs_set_offset_for_unshared_vbases): Likewise.
13235         (layout_virtual_bases): Likewise.
13236         (end_of_class): Likewise.
13237         (finish_struct_1): Call dump_class_hierarchy, if requested.
13238         (dfs_get_primary_binfo): Use BINFO_TYPE for binfos.
13239         (dump_class_hierarchy_r): Add stream parameter. Emit more information.
13240         (dump_class_hierarchy): Add file parameter. Append to file, if
13241         required.
13242         (finish_vtbls): Adjust accumulate_vtbl_inits call.
13243         Use canonical base for virtual bases.
13244         (build_vtt): Add more comments. Adjust build_vtt_inits call.
13245         (build_vtt_inits): Remove VIRTUAL_VTTS_P parm.
13246         Only set BINFO_VPTR_INDEX on top level. Use VTT_TOP_LEVEL_P,
13247         VTT_MARKED_BINFO_P for binfo walking. Use canonical vbase for
13248         virtual VTTs.
13249         (dfs_build_secondary_vptr_vtt_inits): Extract VTT_TOP_LEVEL_P
13250         from DATA.  We want virtual primary bases and all bases via virtual.
13251         Only set BINFO_VPTR_INDEX for top level. Look up from a primary
13252         virtual base when not a construction vtable.
13253         (dfs_ctor_vtable_bases_queue_p): New DFS predicate.
13254         (build_ctor_vtbl_group): Adjust accumulate_vtbl_inits call.
13255         Use canonical bases when processing virtual bases.
13256         (accumulate_vtbl_inits): We're interested in any base via a
13257         virtual path.
13258         (dfs_accumulate_vtbl_inits): If this is a primary virtual base
13259         within a construction vtable, determine what is being overridden.
13260         (build_vtbl_initializer): Add more comments
13261         (add_vcall_offset_vtbl_entries_1): Adjust comment.
13262         (build_rtti_vtbl_entries): Check if the base has lost its
13263         primary.
13265 2001-02-05  Mark Mitchell  <mark@codesourcery.com>
13267         * Makefile.in (g++spec.o): Adjust use of DRIVER_DEFINES.
13269 2001-02-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13271         * decl.c (pushdecl): Call abort instead of fatal.
13272         * except.c (decl_is_java_type): Call fatal_error instead of fatal.
13273         * init.c (build_new_1): Likewise.
13274         (build_java_class_ref): Call internal_error and fatal_error, not fatal.
13275         * decl.c (build_typename_type): hash_table_init now returns void.
13276         decl.c (init_decl_processing): Make an error non-fatal.
13278 2001-02-04  Mark Mitchell  <mark@codesourcery.com>
13280         * cp-tree.h (CLASSTYPE_INTERFACE_UNKNOWN): Fix formatting.
13281         Document.
13282         (CLASSTYPE_INTERFACE_KNOWN): Likewise.
13283         (SET_CLASSTYPE_INTERFACE_UNKNOWN_X): Likewise.
13284         (SET_CLASSTYPE_INTERFACE_UNKNOWN): Likewise.
13285         (SET_CLASSTYPE_INTERFACE_KNOWN): Likewise.
13286         * decl.c (maybe_commonize_var): Use the new name-mangling where
13287         appropriate.
13288         * decl2.c (comdat_linkage): Enhance comments.  Make all
13289         compiler-generated things static, if COMDAT is not available.
13290         (get_tinfo_decl): Do not make typeinfo objects that belong in the
13291         library COMDAT.
13292         (tinfo_base_init): Use the correct mangled name for typeinfo
13293         strings, and push them into the global scope.
13294         (typeinfo_in_lib_p): New function.
13295         (synthesize_tinfo_var): Use it.
13296         (create_real_tinfo_var): Likewise.
13298 2001-02-03  Jakub Jelinek  <jakub@redhat.com>
13300         * decl.c (push_class_binding): Use context_for_name_lookup instead
13301         of CP_DECL_CONTEXT.
13302         * search.c (context_for_name_lookup): Remove static.  Check for NULL
13303         context in the loop.
13304         * cp-tree.h (context_for_name_lookup): Add prototype.
13306 2001-02-02  Jakub Jelinek  <jakub@redhat.com>
13308         * cp-tree.h (build_expr_ptr_wrapper, can_free): Remove.
13309         * tree.c (build_expr_ptr_wrapper, can_free, permanent_obstack):
13310         Remove.
13311         * call.c (convert_class_to_reference, build_user_type_conversion_1,
13312         add_warning): Change build_expr_ptr_wrapper to build_ptr_wrapper.
13314 2001-02-02  Mark Mitchell  <mark@codesourcery.com>
13316         * Make-lang.in (g++spec.o): Add DRIVER_DEFINES to the list
13317         of macros used when compiling g++spec.c.
13318         * g++spec.c (lang_specific_driver): Link with the shared
13319         libgcc by default.
13321 2001-01-29  Joseph S. Myers  <jsm28@cam.ac.uk>
13323         * decl2.c (build_expr_from_tree), lex.c (make_pointer_declarator,
13324         make_reference_declarator, make_call_declarator), method.c
13325         (implicitly_declare_fn), parse.y (namespace_using_decl,
13326         notype_unqualified_id, expr_or_declarator, new_type_id,
13327         after_type_declarator, direct_after_type_declarator,
13328         notype_declarator, complex_notype_declarator,
13329         complex_direct_notype_declarator, qualified_id,
13330         notype_qualified_id, overqualified_id, direct_new_declarator,
13331         absdcl, direct_abstract_declarator, conversion_declarator), pt.c
13332         (tsubst), semantics.c (begin_constructor_declarator): Use build_nt
13333         instead of build_parse_node.
13335 2001-01-28  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13337         * cp-tree.h (cp_tree_index): Delete CPTI_MINUS_ONE.
13338         (minus_one_node): Moved to top level gcc directory.  Renamed
13339         to integer_minus_one_node.
13341         * init.c (init_init_processing): Don't set minus_one_node.
13342         (build_vec_init): Use integer_minus_one_node.
13344         * rtti.c (get_tinfo_decl_dynamic): Likewise.
13346 2001-01-28  Jakub Jelinek  <jakub@redhat.com>
13348         * optimize.c (copy_body_r): If MODIFY_EXPR has both arguments
13349         identical and they would be replaced with constant, remove
13350         MODIFY_EXPR from the tree.
13352 2001-01-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13354         * Make-lang.in: Remove all dependencies on defaults.h.
13355         * call.c: Don't include defaults.h.
13356         * decl.c: Likewise.
13357         * decl2.c: Likewise.
13358         * except.c: Likewise.
13359         * pt.c: Likewise.
13360         * rtti.c: Likewise.
13361         * tree.c: Likewise.
13362         * typeck.c: Likewise.
13364 2001-01-25  Jakub Jelinek  <jakub@redhat.com>
13366         * mangle.c (write_mangled_name, write_encoding): Mangle overloaded
13367         operators even in "C" linkage.
13368         * method.c (set_mangled_name_for_decl): Likewise.
13369         * decl.c (grokfndecl): Call set_mangled_name_for_decl even for
13370         overloaded operators in "C" linkage.
13372 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
13374         * pt.c (tsubst_decl): Remove IN_DECL parameter.
13375         (tsubst_arg_types): Check parameter is not void.
13376         (tsubst): Adjust tsubst_decl call.
13378 2001-01-24  Nathan Sidwell  <nathan@codesourcery.com>
13380         * call.c (add_builtin_candidate): Quote std properly, from
13381         previous change.
13383 2001-01-23  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13385         * pt.c (check_explicit_specialization): Clone constructors and
13386         destructors.
13388 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
13390         * decl.c (grokdeclarator): Don't presume DECL_LANG_SPECIFIC
13391         indicates anything special about template depth. Make sure we
13392         only count the user visible template classes.
13394 2001-01-23  Nathan Sidwell  <nathan@codesourcery.com>
13396         * call.c (build_conv): Typo in comment.
13397         (add_builtin_candidate): Add more explanation.
13398         Remove extra test for ENUMERAL_TYPE in {PRE,POST}INCREMENT_EXPR.
13399         Allow ENUMERAL_TYPEs for relops and eqops. Add both candidates
13400         when we have enumeral types.
13401         (add_builtin_candidates): Add more explanation. Add ENUMERAL_TYPE
13402         candidates for relops and eqops.
13403         (joust): Simplify control flow. Allow a non-template user
13404         function to hide a builtin.
13406 2001-01-22  Nathan Sidwell  <nathan@codesourcery.com>
13408         * cp-tree.h (unification_kind_t): Add DEDUCE_ORDER.
13409         (more_specialized): Add deduction parameter.
13410         * call.c (joust): Adjust more_specialized call.
13411         * pt.c (UNIFY_ALLOW_OUTER_MORE_CV_QUAL,
13412         UNIFY_ALLOW_OUTER_LESS_CV_QUAL): New unify flags.
13413         (get_bindings_order): Remove.
13414         (get_bindings_real): Add DEDUCE parameter.
13415         (maybe_adjust_types_for_deduction): Return extra unify flags. Do
13416         REFERENCE_TYPE jig for DEDUCE_ORDER.
13417         (type_unification_real): Deal with DEDUCE_ORDER. Use result of
13418         maybe_adjust_types_for_deduction.
13419         (more_specialized): Add DEDUCE parameter. Call get_bindings_real
13420         directly.
13421         (try_one_overload): Use result of maybe_adjust_types_for_deduction.
13422         (check_cv_quals_for_unify): Use new unify qualifier flags.
13423         (unify): Clear new unify qualifier flags.
13424         (get_bindings_real): Add DEDUCE parameter.
13425         (get_bindings): Adjust call to get_bindings_real.
13426         (get_bindings_overload): Likewise.
13427         (most_specialized_instantiation): Adjust call to
13428         more_specialized.
13430 2001-01-19  Jason Merrill  <jason@redhat.com>
13432         * decl2.c (flag_vtable_thunks): Also depend on ENABLE_NEW_GXX_ABI.
13434         * decl.c (init_decl_processing): Just force -fvtable-thunks on if
13435         -fnew-abi.
13437 2001-01-19  Ute Pelkmann  <scope.muc@t-online.de>
13439         * decl2.c (arg_assoc_class): Fix double iteration logic.
13441 2001-01-19  Jason Merrill  <jason@redhat.com>
13443         * init.c (build_delete): Always call convert_force to strip cv-quals.
13445         * decl2.c (flag_new_abi): Depend on ENABLE_NEW_GXX_ABI.
13446         * lang-specs.h: Default ABI depends on ENABLE_NEW_GXX_ABI.
13447         * g++spec.c: Don't look at ENABLE_NEW_GXX_ABI.
13449 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
13451         * search.c (get_vbase_1): Count only virtual bases.
13453 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
13455         * class.c (duplicate_tag_error): Robustify flag clearing.
13457 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
13459         * cp-tree.h (lookup_template_class): Add complain parm.
13460         * decl.c (lookup_namespace_name): Adjust call to
13461         lookup_template_class.
13462         (make_typename_type): Likewise.
13463         * semantics.c (finish_template_type): Likewise.
13464         * pt.c (lookup_template_class): Add complain parm. Adjust.
13465         (tsubst_aggr_type): Pass COMPLAIN down to lookup_template_class.
13466         (tsubst): Likewise.
13468 2001-01-19  Nathan Sidwell  <nathan@codesourcery.com>
13470         * pt.c (copy_default_args_to_explicit_spec): Preserve
13471         object's CV quals. Reorganize.
13473 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
13475         * typeck.c (build_modify_expr): Say `initialization' for
13476         INIT_EXPRs.
13477         * init.c (build_default_init): Convert to enumeral type, if
13478         needed.
13480 2001-01-18  Jakub Jelinek  <jakub@redhat.com>
13482         * parse.y (nomods_initdcl0): Properly set things up for
13483         initdcl0_innards.
13485 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
13487         * pt.c (UNIFY_ALLOW_OUTER_LEVEL): New unify flag.
13488         (type_unification_real): Set it.
13489         (unify): Use it.
13491 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
13493         * decl.c (finish_destructor_body): Convert to vbase pointer here.
13495 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
13497         * semantics.c (begin_class_definition): Check we're not inside a
13498         template parm list.
13500 2001-01-18  Nathan Sidwell  <nathan@codesourcery.com>
13502         * tree.c (walk_tree, TREE_LIST): Don't walk the TREE_PURPOSE of
13503         BASELINK_P.
13505 2001-01-16  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13507         * typeck.c (build_function_call_real): Call fold on the CALL_EXPR.
13508         * call.c (build_over_call): Add comment.
13510 2001-01-16 Daniel Berlin <dberlin@redhat.com>
13512         * cvt.c (ocp_convert): Handle vector type conversion
13513         * typeck2.c (digest_init): Handle vector type initializations
13515 2001-01-16  Phil Edwards  <pme@sources.redhat.com>
13517         * g++spec.c:  Don't add libraries needlessly if -fsyntax-only
13518           was given.
13520 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
13522         * pt.c (check_nontype_parm): Rename to ...
13523         (invalid_nontype_parm_type_p): ... here.
13524         (process_template_parm): Adjust.
13525         (convert_template_argument): Adjust.
13527 2001-01-15  Nathan Sidwell  <nathan@codesourcery.com>
13529         * pt.c (check_nontype_parm): New function.
13530         (process_template_parm): Use it.
13531         (convert_template_argument): Use it.
13532         (convert_nontype_argument, RECORD_TYPE): Assert it's a ptr to
13533         member.
13535 2001-01-14  Jeffrey Oldham  <oldham@codesourcery.com>
13537         * tree.c: Add defaults.h
13538         (cp_valid_lang_attribute): Incorporate SUPPORTS_INIT_PRIORITY.
13539         * Make-lang.in (cp/tree.o): Add defaults.h.
13541 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
13543         * Make-lang.in (CXX_C_OBJS): Add c-format.o.
13545 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
13547         * g++.1: Change to be ".so man1/gcc.1".
13549 2001-01-13  Joseph S. Myers  <jsm28@cam.ac.uk>
13551         * Make-lang.in (c++.info, c++.install-info): Build and install g++
13552         internals info.
13553         (c++.uninstall, c++.maintainer-clean): Remove g++ internals info.
13554         ($(srcdir)/cp/g++int.info): New target.
13555         * gxxint.texi: Add info directory entry.  Use @@ in email address.
13556         * .cvsignore: Update.
13558 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
13560         * typeck.c (build_c_cast): Do template processing earlier.
13561         Always pedwarn on array casts.
13563 2001-01-12  Nathan Sidwell  <nathan@codesourcery.com>
13565         * friend.c (make_friend_class): Make sure a templated class is
13566         actually a template.
13568 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
13570         * decl2.c (get_guard): Set linkage from guarded decl.
13572 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
13574         * call.c (convert_default_arg): Check for unprocessed
13575         DEFAULT_ARG.
13576         * cp-tree.h (replace_defarg): Move to spew.c.
13577         (maybe_snarf_defarg, add_defarg_fn, do_pending_defargs): Move to
13578         spew.c, which is where they really are.
13579         (done_pending_defargs): Declare.
13580         (unprocessed_defarg_fn): Declare.
13581         * decl.c (replace_defarg): Move to spew.c
13582         * parse.y (structsp): Call done_pending_defargs.
13583         * spew.c (defarg_fns): Rearrange list structure.
13584         (defarg_fnsdone): New static variable.
13585         (defarg_depfns): New static variable.
13586         (init_spew): Adjust.
13587         (add_defarg_fn): Store the type in TREE_TYPE.
13588         (do_pending_defargs): Detect and deal with ordering constraints
13589         and circularity.
13590         (done_pending_defargs): New function.
13591         (unprocessed_defarg_fn): New function.
13592         (replace_defarg): Moved from decl.c. Robustify. Don't save
13593         if circularity detected.
13595 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
13597         * pt.c (unify): Check array has a domain, before checking
13598         whether it is variable sized.
13600 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
13602         * decl.c (grokparms): Unobfuscate and get correct diagnostic for
13603         parameters with pointers to arrays of unknown bound.
13605 2001-01-11  Nathan Sidwell  <nathan@codesourcery.com>
13607         * parse.y (template_parm_header, template_spec_header): New
13608         reductions. Split out from ...
13609         (template_header): ... here. Use them.
13610         (template_template_parm): Use template_parm_header.
13611         * semantics.c (finish_template_template_parm): Add assert.
13613 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
13615         * mangle.c (write_builtin_type): Fix thinko.
13617         * pt.c (copy_default_args_to_explicit_spec_1): New function.
13618         (copy_default_args_to_explicit_spec): Likewise.
13619         (check_explicit_specialization): Use it.
13621         * class.c (finish_struct_1):  Remove last argument in call to
13622         make_decl_rtl; use make_function_rtl instead of make_decl_rtl.
13623         * decl.c (builtin_function): Likewise.
13624         (build_cp_library_fn): Likewise.
13625         (check_initializer): Likewise.
13626         (make_rtl_for_nonlocal_decl): Likewise.
13627         (cp_finish_decl): Likewise.
13628         (start_function): Likewise.
13629         * decl2.c (finish_anon_union): Likewise.
13630         * friend.c (do_friend): Likewise.
13631         * init.c (build_java_class_ref): Likewise.
13632         * method.c (make_thunk): Likewise.
13633         * pt.c (tsubst_friend_function): Likewise.
13634         * semantics.c (expand_body): Likewise.
13636 2001-01-10  Mark Mitchell  <mark@codesourcery.com>
13638         * cp-tree.h (DECL_CLONED_FUNCTION_P): Avoid wild reads by not
13639         looking at DECL_CLONED_FUNCTION for non-functions.
13641 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
13643         * error.c (dump_template_parameter): Use parm to determine how
13644         to print default value.
13646 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
13648         * class.c (duplicate_tag_error): Clear more flags.
13650 2001-01-10  Nathan Sidwell  <nathan@codesourcery.com>
13652         * call.c (build_new_method_call): Use binfo_for_vbase.
13654 2001-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
13656         * cp-tree.h (flag_cond_mismatch): Don't declare.
13657         * decl2.c (flag_cond_mismatch): Don't define.
13658         (lang_f_options): Remove cond-mismatch.
13659         (unsupported_options): Add cond-mismatch.
13661 2001-01-09  Nathan Sidwell  <nathan@codesourcery.com>
13663         * class.c (handle_using_decl): Reject using of constructor name
13664         of sourcing class. Allow injecting of a method with same name as
13665         nested class. Fixup error messages.
13667 2001-01-09  Joseph S. Myers  <jsm28@cam.ac.uk>
13669         * decl2.c (lang_decode_option): Handle -Wformat=2.
13671 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
13673         * cp-tree.h (lang_decl_flags): Rename defined_in_class to
13674         initialized_in_class.
13675         (DECL_DEFINED_IN_CLASS_P): Rename to ...
13676         (DECL_INITIALIZED_IN_CLASS_P): ... here, to reflect true meaning.
13677         * decl.c (duplicate_decls): Preseve DECL_INITIALIZED_IN_CLASS_P.
13678         (cp_finish_decl): Adjust for DECL_INITIALIZED_IN_CLASS_P.
13679         * pt.c (check_default_tmpl_args): Adjust for
13680         DECL_INITIALIZED_IN_CLASS_P.
13681         (instantiate_class_template): Likewise.
13682         (instantiate_decl): Check DECL_INITIALIZED_IN_CLASS_P.
13684         * class.c (finish_struct): Constify saved_filename.
13686 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
13688         * class.c (duplicate_tag_error): Adjust diagnostic.
13689         (finish_struct): Locally set location to start of struct.
13690         * decl.c (fixup_anonymous_aggr): Use cp_error_at.
13692 2001-01-08  Nathan Sidwell  <nathan@codesourcery.com>
13694         * decl.c (struct binding_level): Adjust class_shadowed comments
13695         to reflect reality.
13696         (push_class_level_binding): Adjust comments to reflect reality.
13697         Set IDENTIFIER_CLASS_VALUE when replacing an existing binding.
13698         Don't set TREE_VALUE on the class_shadowed list.
13700 2001-01-07  Alexandre Petit-Bianco  <apbianco@cygnus.com>
13702         * decl2.c (acceptable_java_type): Allow references too.
13703         * init.c (build_java_class_ref): When using the new ABI, search
13704         `class$' and have it mangled with `mangle_decl.'
13705         * mangle.c (write_java_integer_type_codes): New function.
13706         (write_builtin_type): Detect and mangle Java integer and real
13707         types.
13709 2001-01-07  Mark Mitchell  <mark@codesourcery.com>
13711         * decl2.c (grokfield): Don't accept `asm' specifiers for
13712         non-static data members.
13714 2001-01-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
13716         * expr.c (cplus_expand_expr): Don't reset `target'.
13718 2001-01-07  Neil Booth  <neil@daikokuya.demon.co.uk>
13720         * cp/decl2.c (cxx_post_options): Call cpp_post_options.
13722 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
13724         * parse.y (template_datadef): Check for error_mark_node.
13726 2001-01-05  Nathan Sidwell  <nathan@codesourcery.com>
13728         * cp-tree.def (DEFAULT_ARG): Make `x' class.
13730 2001-01-04  Joseph S. Myers  <jsm28@cam.ac.uk>
13732         * decl.c (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE): Don't define.
13733         (record_builtin_type): Make non-static.
13734         (flag_short_double): Don't declare.
13735         (init_decl_processing): Remove the creation of many tree nodes now
13736         in c_common_nodes_and_builtins.
13737         (build_void_list_node): New function.
13738         * decl2.c (flag_short_double, flag_short_wchar): Don't define.
13739         * cp-tree.h (flag_short_wchar): Don't declare.
13741 2001-01-04  Mark Mitchell  <mark@codesourcery.com>
13743         * call.c (build_conv): Don't use build1 for USER_CONV.
13744         * pt.c (tsubst_copy): Or for PREINCREMENT_EXPR and similar nodes.
13746 2001-01-03  Joseph S. Myers  <jsm28@cam.ac.uk>
13748         * lex.c (lang_init): Call c_common_lang_init.
13750 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
13752         * search.c (lookup_fnfields_here): Remove.
13753         (look_for_overrides_r): Use lookup_fnfields_1.
13754         Ignore functions from using declarations.
13756 2001-01-03  Nathan Sidwell  <nathan@codesourcery.com>
13758         Implement exceptions specifiers for implicit member functions.
13759         * cp-tree.h (merge_exceptions_specifiers): Declare new function.
13760         * method.c (synthesize_exception_spec): New function.
13761         (locate_dtor, locate_ctor, locate_copy): New functions.
13762         (implicitly_declare_fn): Generate the exception spec too.
13763         * search.c (check_final_overrider): Check artificial functions
13764         too.
13765         * typeck2.c (merge_exception_specifiers): New function.
13767 2001-01-03  Jason Merrill  <jason@redhat.com>
13769         * init.c (build_default_init): New fn.
13770         (perform_member_init): Split out from here.
13771         (build_new_1): Use it.  Simplify initialization logic.
13772         (build_vec_init): Take an array, rather than a pointer and maxindex.
13773         Speed up simple initializations.  Don't clean up if we're assigning.
13774         * cp-tree.h: Adjust.
13775         * decl2.c (do_static_initialization): Remove TREE_VEC case.
13776         * parse.y (new_initializer): Return void_zero_node for ().
13777         * typeck.c (build_modify_expr): Handle getting a CONSTRUCTOR.
13778         * typeck2.c (digest_init): Only complain about user-written
13779         CONSTRUCTORs.
13781 2000-12-22  Mike Stump  <mrs@wrs.com>
13783         * decl2.c: (max_tinst_depth): Increase to 50.
13785 2001-01-02  Mark Mitchell  <mark@codesourcery.com>
13787         * class.c (invalidate_class_lookup_cache): Zero the
13788         previous_class_values.
13789         * cp-tree.h (TMPL_PARMS_DEPTH): Use TREE_INT_CST_LOW, not
13790         TREE_INT_CST_HIGH.
13791         (CLASSTYPE_TEMPLATE_LEVEL): Likewise.
13792         * decl.c (free_bindings): New variable.
13793         (push_binding): Don't create a new binding if we have one on the
13794         free list.
13795         (pop_binding): Put old bindings on the free list.
13796         (init_decl_processing): Use size_int, not build_int_2.
13797         Register free_bindings as a GC root.
13798         (cp_make_fname_decl): Use size_int, not build_int_2.
13799         (push_inline_template_parms_recursive): Likewise.
13800         (end_template_parm_list): Likewise.
13801         (for_each_template_parm): Do not use walk_tree_without_duplicates.
13802         (tsubst_template_parms): Use size_int, not build_int_2.
13803         (tsubst): Likewise.
13804         * rtti.c (get_vmi_pseudo_type_info): Likewise.
13806 2001-01-02  Richard Henderson  <rth@redhat.com>
13808         * parse.y (asm): Set ASM_INPUT_P.
13810 2001-01-02  Jason Merrill  <jason@redhat.com>
13812         * tree.c (cp_valid_lang_attribute): Don't set CLASSTYPE_COM_INTERFACE
13813         for v3 ABI.
13815         * typeck.c (cp_truthvalue_conversion): New fn.
13816         * cvt.c (ocp_convert): Use it.
13818         * cp-tree.h: Lose c-common.c decls.
13820         * typeck.c (build_unary_op): Restore old &a.f diagnostic code.
13821         * cvt.c (convert_to_void): Use type_unknown_p.
13823         * typeck.c (strip_all_pointer_quals): Also strip quals from
13824         pointer-to-member types.
13826         * Make-lang.in (cp/TAGS): Use --no-globals.  Ignore parse.c, and treat
13827         parse.y as C.
13829         * call.c (build_new_method_call): Do evaluate the object parameter
13830         when accessing a static member.
13831         * typeck.c (build_component_ref): Likewise.
13833 2001-01-02  Andreas Jaeger  <aj@suse.de>
13835         * decl.c (cp_missing_noreturn_ok_p): New.
13836         (init_decl_processing): Set lang_missing_noreturn_ok_p.
13838 2000-12-29  Jakub Jelinek  <jakub@redhat.com>
13840         * decl.c (init_decl_processing): Fix sign of wchar_type_node.
13842 2000-12-29  Mark Mitchell  <mark@codesourcery.com>
13844         * class.c (pushclass): Remove #if 0'd code.
13845         * cp-tree.h (overload_template_name): Remove.
13846         * decl.c (store_bindings): Simplify.
13847         (pop_from_top_level): Likewise.
13848         * pt.c (overload_template_name): Remove.
13849         (instantiate_decl): Don't call push_to_top_level if it's not
13850         needed.
13852 2000-12-28  Mark Mitchell  <mark@codesourcery.com>
13854         * pt.c (register_local_specialization): Don't return a value.
13855         (lookup_template_class): Use move-to-front heuristic when looking
13856         up template instantiations.
13857         (instantiate_decl): Only push_to_top_level when we're actually
13858         going to instantiate the template.
13860 2000-12-29  Hans-Peter Nilsson  <hp@bitrange.com>
13862         * search.c (binfo_for_vtable): Return least derived class, not
13863         most.  Handle secondary vtables.
13865 2000-12-22  Jason Merrill  <jason@redhat.com>
13867         * pt.c (more_specialized): Don't optimize len==0.
13868         (fn_type_unification): If we're adding the return type, increase len.
13870         * typeck.c (build_binary_op): Fix pmf comparison logic.
13872         * call.c (joust): Use DECL_NONSTATIC_MEMBER_FUNCTION_P, not
13873         DECL_STATIC_FUNCTION_P.
13875         * semantics.c (genrtl_finish_function): Don't try to jump to
13876         return_label unless it exists.
13878         In partial ordering for a call, ignore parms for which we don't have
13879         a real argument.
13880         * call.c (joust): Pass len to more_specialized.
13881         (add_template_candidate_real): Strip 'this', pass len.
13882         * pt.c (more_specialized): Pass len down.  Lose explicit_args parm.
13883         (get_bindings_order): New fn.  Pass len down.
13884         (get_bindings_real): Strip 'this', pass len.
13885         (fn_type_unification): Likewise.
13886         (type_unification_real): Succeed after checking 'len' args.
13887         (most_specialized_instantiation): Lose explicit_args parm.
13888         * class.c (resolve_address_of_overloaded_function): Strip 'this',
13889         pass len.
13891 2000-12-21  Jason Merrill  <jason@redhat.com>
13893         * pt.c (tsubst_decl): A FUNCTION_DECL has DECL_RESULT, not
13894         DECL_TEMPLATE_RESULT.
13896         * search.c (lookup_field_r): Call lookup_fnfields_1, not
13897         lookup_fnfields_here.
13899         * parse.y (typename_sub2): Return the TYPE_DECL, not the type.
13901         * call.c (build_object_call): Also allow conversions that return
13902         reference to pointer to function.
13903         (add_conv_candidate): Handle totype being ref to ptr to fn.
13904         (build_field_call): Also allow members of type reference to function.
13905         Lose support for calling pointer to METHOD_TYPE fields.
13907         * error.c (dump_expr): Handle *_CAST_EXPR.
13909         * typeck2.c (build_scoped_ref): Always convert to the naming class.
13911         * tree.c (break_out_cleanups): Lose.
13912         * cp-tree.h: Remove prototype.
13913         * typeck.c (build_component_ref): Don't break_out_cleanups.
13914         (build_compound_expr): Likewise.
13915         * semantics.c (finish_expr_stmt): Likewise.
13917 2000-12-20  Richard Henderson  <rth@redhat.com>
13919         * cp-tree.h: Update declarations.
13920         * decl.c (finish_case_label): Return the new stmt node.
13921         * semantics.c (finish_goto_stmt): Likewise.
13922         (finish_expr_stmt, finish_return_stmt): Likewise.
13923         (finish_break_stmt, finish_continue_stmt): Likewise.
13924         (finish_asm_stmt): Likewise.
13925         * parse.y (already_scoped_stmt): Set STMT_LINENO.
13926         (compstmt, implicitly_scoped_stmt, stmt): Likewise.
13927         (simple_if, simple_stmt): Return the new stmt node.
13928         (save_lineno): New.
13930 2000-12-18  Joseph S. Myers  <jsm28@cam.ac.uk>
13932         * cp-tree.h: Don't declare warn_long_long.
13934 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13936         * tree.c (no_linkage_helper): Use CLASS_TYPE_P instead of
13937         IS_AGGR_TYPE.
13939 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13941         * pt.c (unify): Handle when both ARG and PARM are
13942         BOUND_TEMPLATE_TEMPLATE_PARM.
13944 2000-12-15  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13946         * pt.c (reduce_template_parm_level): Set DECL_ARTIFICIAL and
13947         DECL_TEMPLATE_PARM_P.
13949 2000-12-15  Jason Merrill  <jason@redhat.com>
13951         * init.c (build_new_1): Reorganize.  Now with 100% fewer SAVE_EXPRs!
13953         * init.c (build_new_1): Don't strip quals from type.
13955         * decl.c (pushdecl): Don't check for linkage on a non-decl.
13957         * call.c (build_op_delete_call): See through ARRAY_TYPEs.
13959         * call.c (build_new_function_call): Lose space before paren in
13960         error message.
13961         (build_new_method_call): Likewise.
13963         * typeck2.c (build_m_component_ref): Propagate quals from datum.
13965 2000-12-14  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
13967         * pt.c (check_explicit_specialization): Propagate default
13968         function arguments to explicit specializations.
13970 2000-12-13  DJ Delorie  <dj@redhat.com>
13972         * typeck.c (build_binary_op): Do signed/unsigned warnings for >?
13973         and <? operators.
13975 2000-12-08  Jason Merrill  <jason@redhat.com>
13977         * error.c (dump_function_name): Don't let the user see __comp_ctor.
13979         Clean up copy-initialization in overloading code.
13980         * call.c (build_user_type_conversion_1): Die if we are asked to
13981         convert to the same or a base type.
13982         (implicit_conversion): Avoid doing so.  Lose reference binding code.
13983         (convert_like_real): Treat BASE_CONV and RVALUE_CONV as implicit
13984         direct-initialization.  Also do direct-init part of copy-init.
13985         (build_user_type_conversion): Don't provide context to convert_like.
13986         * cvt.c (ocp_convert): build_user_type_conversion will now provide
13987         the constructor call for copy-init.
13989         * pt.c (tsubst_decl): Call clone_function_decl here if this is an
13990         instantiation of a member template.
13991         (do_decl_instantiation): Not here.
13993 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
13995         * class.c (check_field_decls): Don't special case anonymous
13996         fields in error messages.
13997         (note_name_declared_in_class): Use %D on diagnostic.
13999         * tree.c (pod_type_p): Use strip_array_types.
14000         (cp_valid_lang_attribute): Likewise.
14001         * typeck.c (cp_type_quals): Strip arrays separately, to avoid
14002         multiple evaluations.
14003         (cp_has_mutable_p): Use strip_array_types.
14005 2000-12-07  Nathan Sidwell  <nathan@codesourcery.com>
14007         * cp-tree.h (sufficient_parms_p): Declare new function.
14008         * call.c (sufficient_parms_p): New function, broken out of ...
14009         (add_function_candidate): ... here. Use it.
14010         (add_conv_candidate): Use it.
14011         * decl.c (grok_ctor_properties): Use it.
14013 2000-12-07  Jakub Jelinek  <jakub@redhat.com>
14015         * optimize.c (copy_body_r): Set STMT_IS_FULL_EXPR_P on EXPR_STMT.
14017 2000-12-07  Joseph S. Myers  <jsm28@cam.ac.uk>
14019         * decl2.c (lang_decode_option): Handle -Wformat-security.
14021 2000-12-06  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
14023         * pt.c (verify_class_unification): New function.
14024         (get_class_bindings): Use it.
14025         (try_class_unification): Tidy.
14026         (unify): Handle when argument of a template-id is not
14027         template parameter dependent.
14028         (template_args_equal): Handle when TREE_CODE's do not match.
14030 2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
14032         * lang-specs.h (c++): When invoking the stand-alone preprocessor
14033         for -save-temps, pass all relevant -Defines to it, and then don't
14034         pass them to cc1plus.
14036 2000-12-05  Will Cohen  <wcohen@redhat.com>
14038         * decl.c (finish_case_label): Cleared
14039         more_cleanups_ok in surrounding function scopes.
14040         (define_label): Likewise.
14042 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
14044         * cp-tree.h (IDENTIFIER_VIRTUAL_P): Document.
14045         (get_matching_virtual): Remove.
14046         (look_for_overrides): Declare new function.
14047         * decl.c (grokfndecl): Don't set IDENTIFIER_VIRTUAL_P or
14048         DECL_VINDEX here.
14049         * class.c (check_for_override): Move base class iteration code
14050         to look_for_overrides.
14051         * search.c (next_baselink): Remove.
14052         (get_virtuals_named_this): Remove.
14053         (get_virtual_destructor): Remove.
14054         (tree_has_any_destructors_p): Remove.
14055         (struct gvnt_info): Remove.
14056         (check_final_overrider): Remove `virtual' from error messages.
14057         (get_matching_virtuals): Remove. Move functionality to ...
14058         (look_for_overrides): ... here, and ...
14059         (look_for_overrides_r): ... here. Set DECL_VIRTUAL_P, if found
14060         to be overriding.
14062 2000-12-05  Nathan Sidwell  <nathan@codesourcery.com>
14064         * typeck.c (get_delta_difference): If via a virtual base,
14065         return zero.
14066         * cvt.c (cp_convert_to_pointer): If via a virtual base, do no
14067         adjustment.
14069 2000-12-04  Richard Henderson  <rth@redhat.com>
14071         * error.c (dump_tree): Use output_add_string not OB_PUTS.
14073 2000-12-04  Jason Merrill  <jason@redhat.com>
14075         * mangle.c (write_type): Mangle VECTOR_TYPE with "U8__vector".
14076         (write_builtin_type): Pass intSI_type_node and the like through
14077         type_for_mode.
14078         * method.c (process_overload_item): Mangle VECTOR_TYPEs with 'o'.
14079         Pass intSI_type_node and the like through type_for_mode.
14080         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE like COMPLEX_TYPE.
14081         * pt.c (tsubst, unify): Likewise.
14082         * tree.c (walk_tree): Likewise.
14083         * error.c (dump_type): Likewise.
14084         (dump_type_prefix, dump_type_suffix): Don't bother with VECTOR_TYPE.
14086         * Make-lang.in: Tweak top comment for emacs.
14087         (cp/TAGS): Restore.
14089         * except.c (expand_throw): Use push_throw_library_fn for _Jv_Throw.
14091         * class.c (clone_function_decl): Robustify.
14093 2000-12-04  Michael Matz  <matzmich@cs.tu-berlin.de>
14095         * decl.c (store_bindings): Only search in the non modified
14096         old_bindings for duplicates.
14098 2000-12-04  Nathan Sidwell  <nathan@codesourcery.com>
14100         * error.c (dump_function_decl): Use DECL_VIRTUAL_P, not
14101         TYPE_POLYMORPHIC_P.
14103         * typeck.c (build_static_cast): Remove unused variable.
14105 2000-12-01  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
14107         * pt.c: Fix typo in comment.
14109 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
14111         * decl2.c (warn_format): Remove definition.
14112         (lang_decode_option): Handle -Wformat-nonliteral,
14113         -Wno-format-extra-args and -Wno-format-y2k.  Use set_Wformat.
14115 2000-12-01  Joseph S. Myers  <jsm28@cam.ac.uk>
14117         * decl.c (WINT_TYPE, INTMAX_TYPE, UINTMAX_TYPE): Don't define.
14118         (init_decl_processing): Don't create string_type_node,
14119         const_string_type_node, wint_type_node, intmax_type_node,
14120         uintmax_type_node, default_function_type, ptrdiff_type_node and
14121         unsigned_ptrdiff_type_node.  Adjust position of call to
14122         c_common_nodes_and_builtins.
14123         (identifier_global_value): New function.
14125 2000-12-01  Nathan Sidwell  <nathan@codesourcery.com>
14127         * call.c (standard_conversion): Reject pointer to member
14128         conversions from ambiguous, inaccessible or virtual bases.
14129         * typeck.c (build_static_cast): Don't check pointers to members
14130         specially.
14132 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
14134         * method.c (do_build_copy_constructor): Preserve cv
14135         qualifications when accessing source object members.
14136         (do_build_assign_ref): Likewise. Remove separate diagnostics for
14137         unnamed fields.
14139 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
14141         * method.c (do_build_assign_ref): Construct appropriately
14142         CV-qualified base reference. Don't allow const casts in base
14143         conversion.
14145 2000-11-30  Nathan Sidwell  <nathan@codesourcery.com>
14147         * call.c (build_over_call): Use VOID_TYPE_P. Don't die on
14148         incomplete return type.
14150 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
14152         * parse.y (base_class.1): Produce a _TYPE not a _DECL.
14153         * semantics.c (finish_base_specifier): Accept a _TYPE not a
14154         _DECL.
14156 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
14158         * spew.c (yyerror): Cope if yylval.ttype is NULL.
14160 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
14162         * decl.c (grokdeclarator): Diagnose undefined template contexts.
14164 2000-11-28  Nathan Sidwell  <nathan@codesourcery.com>
14166         * decl.c (grokdeclarator): Do type access control on friend
14167         class.
14169 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
14171         * decl.c (grokfndecl): Undo COMPONENT_REF damage caused by
14172         bison parser ickiness.
14173         * pt.c (tsubst_friend_function): Enter namespace scope when
14174         tsubsting the function name.
14175         * cp-tree.h (DECL_TI_TEMPLATE): Update comment to reflect reality.
14177 2000-11-27  Nathan Sidwell  <nathan@codesourcery.com>
14179         * cp-tree.h (binfo_from_vbase): Return the virtual base's binfo.
14180         * cvt.c (cp_convert_to_pointer): Add force parameter.
14181         Allow conversions via virtual base if forced.
14182         (convert_to_pointer_force): Adjust call to cp_convert_to_pointer.
14183         (ocp_convert): Likewise.
14184         * search.c (binfo_from_vbase): Return the virtual base's binfo.
14185         * typeck.c (get_delta_difference): Adjust handling of virtual
14186         bases.
14188 2000-11-26  Mark Mitchell  <mark@codesourcery.com>
14190         * tree.c (struct list_hash): Remove.
14191         (list_hash_table): Make it be an htab.
14192         (struct list_proxy): New type.
14193         (list_hash_eq): New function.
14194         (list_hash_pieces): Renamed from ...
14195         (list_hash): ... this.
14196         (list_hash_lookup): Remove.
14197         (list_hash_add): Remove.
14198         (hash_tree_cons): Use the generic hashtable.
14199         (mark_list_hash): Remove.
14200         (init_tree): Create the hashtable.
14202 2000-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
14204         * method.c (build_mangled_C9x_name): Rename to
14205         build_mangled_C99_name.  Change C9X references in comments to
14206         refer to C99.
14208 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
14210         * parse.y (unary_expr): Move VA_ARG from here ...
14211         (primary): ... to here.
14213 2000-11-24  Nathan Sidwell  <nathan@codesourcery.com>
14215         * semantics.c (finish_id_expr): If type is error_mark, return
14216         error_mark.
14218 2000-11-23  Nathan Sidwell  <nathan@codesourcery.com>
14220         * pt.c (lookup_template_class): Simplify loop exit constructs.
14221         Cope when there is no partial instantiation of a template
14222         template member.
14224 2000-11-23  J"orn Rennecke <amylaar@redhat.com>
14226         * Make-lang.in (g++spec.o, cxxmain.o): Depend on $(CONFIG_H).
14228 2000-11-22  Mark Mitchell  <mark@codesourcery.com>
14230         * mangle.c (mangle_conv_op_name_for_type): Don't use `__op'
14231         prefix.
14233         * pt.c (do_decl_instantiate): Explicitly clone constructors and
14234         destructors that haven't already been cloned.
14236 2000-11-20  Richard Henderson  <rth@redhat.com>
14238         * parse.y (yyparse_1): Rename the parser entry point.
14240 2000-11-20  Alex Samuel  <samuel@codesourcery.com>
14242         * mangle.c (write_name): Use <unscoped-name> for names directly in
14243         function scope.
14244         (write_unscoped_name): Accept names directly in function scope.
14246 2000-11-20  Nathan Sidwell  <nathan@codesourcery.com>
14248         * lex.c (rid_to_yy, RID_EXPORT): Make unique keyword.
14249         * parse.y (extdef): Add EXPORT reduction.
14250         * spew.c (yylex): Don't skip export here.
14252 2000-11-19  Mark Mitchell  <mark@codesourcery.com>
14254         * decl.c (init_decl_processing): Correct name of pure virtual
14255         function under the new ABI.
14256         * rtti.c (throw_bad_cast): Likewise, for bad cast function.
14257         (throw_bad_typeid): Likewise for bad typeid function.
14259 2000-11-18  Mark Mitchell  <mark@codesourcery.com>
14261         * decl.c (grokparms): Don't even function types of `void' type,
14262         either.
14263         * mangle.c (write_type): Don't crash when confronted with the
14264         error_mark_node.
14266         * decl.c (grokparms): Don't create parameters of `void' type.
14268 2000-11-17  Zack Weinberg  <zack@wolery.stanford.edu>
14270         * lex.c (mark_impl_file_chain): Delete.
14271         (init_parse): Remove call to ggc_add_string_root.  No need to
14272         ggc_strdup a string constant.  Do not add impl_file_chain to GC
14273         roots.
14274         (handle_pragma_implementation): No need to ggc_strdup main_filename.
14276 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
14278         * pt.c (tsubst_expr, DECL_STMT): Instantiate decl's type.
14280 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
14282         * cp-tree.h (PARMLIST_ELLIPSIS_P): New macro.
14283         * decl.c (grokdeclarator): Don't reject void parms here.
14284         (require_complete_types_for_parms): Simplify, use
14285         complete_type_or_else.
14286         (grokparms): Remove bitrot. Remove funcdef parm.
14287         Deal with ellipsis parm lists here.
14288         * semantics.c (finish_parmlist): Don't append void_list_node
14289         here. Set PARMLIST_ELLIPSIS_P.
14291 2000-11-17  Nathan Sidwell  <nathan@codesourcery.com>
14293         * typeck2.c (incomplete_type_error): Reorganize to avoid
14294         excessive diagnostics.
14296 2000-11-16  Zack Weinberg  <zack@wolery.stanford.edu>
14298         * lex.c (struct impl_files, internal_filename): Constify a char *.
14300 2000-11-16  Mark Mitchell  <mark@codesourcery.com>
14302         * mangle.c (write_special_name_constructor): Don't generate
14303         assembler junk when confronted with an old-style constructor.
14304         (write_special_name_destructor): Likewise.
14305         (mangle_decl_string): Do it here instead.
14307 2000-11-16  Nathan Sidwell  <nathan@codesourcery.com>
14309         * call.c (op_error): Make error messages clearer.
14311 2000-11-15  Mark Mitchell  <mark@codesourcery.com>
14313         * decl.c (wrapup_globals_for_namespace): Don't mark things
14314         TREE_ASM_WRITTEN when they're not.
14316 2000-11-15  Jason Merrill  <jason@redhat.com>
14318         * typeck2.c (friendly_abort): Uncount the error before handing
14319         off to fancy_abort.
14321 2000-11-15  Nathan Sidwell  <nathan@codesourcery.com>
14323         * typeck.c (lookup_anon_field): Cope with qv qualifiers.
14325 2000-11-14  Mark Mitchell  <mark@codesourcery.com>
14327         * class.c (build_vtbl_initializer): Fix typo in comment.
14328         * typeck.c (expr_sizeof): Don't crash on errors.
14330 2000-11-14  Jim Wilson  <wilson@redhat.com>
14332         * lang-specs.h: Add %2 after %(cc1_options).
14334 2000-11-14  Richard Henderson  <rth@redhat.com>
14336         * typeck.c (c_sizeof): Be strict about casting result value
14337         back to c_size_type_node.
14338         (expr_sizeof, c_sizeof_nowarn, c_alignof): Likewise.
14340 2000-11-13  Joseph S. Myers  <jsm28@cam.ac.uk>
14342         * typeck.c (build_unary_op): Use boolean_increment from
14343         c-common.c, moving the relevant code there.
14345 2000-11-11  Jason Merrill  <jason@redhat.com>
14347         * typeck.c (mark_addressable): Don't call put_var_into_stack.
14349         * decl.c (maybe_commonize_var): Set DECL_UNINLINABLE for statics
14350         in inlines.
14352 2000-11-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14354         * decl.c (grokdeclarator, save_function_data): Use memcpy, not bcopy.
14355         * lex.c (copy_lang_decl): Likewise.
14357 2000-11-09  Mark Mitchell  <mark@codesourcery.com>
14359         * dump.c (cp_dump_tree): Don't dump function bodies here.
14361         * Make-lang.in (CXX_C_OBJS): Add c-dump.o.
14362         (dump.o): Update dependency list.
14363         * cp-tree.h (DECL_MAYBE_TEMPLATE): Remove.
14364         (flag_dump_translation_unit): Likewise.
14365         (CP_TYPE_QUALS): Adjust definition.
14366         (DECL_C_BIT_FIELD): Remove.
14367         (SET_DECL_C_BIT_FIELD): Likewise.
14368         (CLEAR_DECL_C_BIT_FIELD): Likewise.
14369         (add_maybe_template): Likewise.
14370         (strip_array_types): Likewise.
14371         (dump_node_to_file): Likewise.
14372         (cp_dump_tree): New function.
14373         * decl.c (init_decl_processing): Set lang_dump_tree.
14374         * decl2.c (flag_dump_translation_unit): Remove.
14375         * dump.c: Move most of it to ../c-dump.c.
14376         (cp_dump_tree): New function.
14377         * pt.c (add_maybe_template): Remove.
14378         * typeck.c (strip_array_types): Likewise.
14380 2000-11-07  Eric Christopher  <echristo@redhat.com>
14382         * decl.c (init_decl_processing): Change definition of
14383         __wchar_t to wchar_t.  Remove artificial declaration of
14384         wchar_t.
14385         * lex.c: Change instances of __wchar_t to wchar_t.
14387 2000-11-09  Nathan Sidwell  <nathan@codesourcery.com>
14389         * lex.c (do_identifier): Don't lookup_name for operators.
14390         * parse.y (operator): Save looking_for_typename.
14391         (unoperator): Restore it.
14392         * spew.c (frob_opname): Use nth_token for lookahead.
14394 2000-11-08  Nathan Sidwell  <nathan@codesourcery.com>
14396         * decl.c (grok_op_properties): Always use coerce_new_type and
14397         coerce_delete_type.
14398         * decl2.c (coerce_new_type): Use c_size_type_node. Preserve
14399         exception specification. Tidy up.
14400         (coerce_delete_type): Preserve exception specification. Tidy up.
14402 2000-11-07  Joseph S. Myers  <jsm28@cam.ac.uk>
14404         * class.c (duplicate_tag_error, build_vtbl_initializer), decl.c
14405         (push_binding_level), error.c (cp_tree_printer), pt.c
14406         (process_partial_specialization, tsubst_template_arg_vector),
14407         search.c (lookup_member): Use memset () instead of bzero ().
14409 2000-11-07  Nathan Sidwell  <nathan@codesourcery.com>
14411         * decl.c (build_ptrmemfunc_type): Allow error_mark_node.
14413 2000-11-05  Joseph S. Myers  <jsm28@cam.ac.uk>
14415         * Make-lang.in (c++.distdir): Remove.
14417 2000-11-04  Mark Mitchell  <mark@codesourcery.com>
14419         * decl2.c (do_nonmember_using_decl): Allow `extern "C"'
14420         declarations from different namespaces to be combined.
14422 2000-11-03  Zack Weinberg  <zack@wolery.stanford.edu>
14424         * decl.c: Include tm_p.h.
14426 2000-11-03  Joseph S. Myers  <jsm28@cam.ac.uk>
14428         * tree.c (cp_tree_equal): Use memcmp () instead of bcmp ().
14430 2000-11-02  Joseph S. Myers  <jsm28@cam.ac.uk>
14432         * dump.c (dequeue_and_dump), lex.c (interface_strcmp), method.c
14433         (build_overload_value), repo.c (open_repo_file), xref.c
14434         (open_xref_file): Use strchr () and strrchr () instead of index ()
14435         and rindex ().
14437 2000-11-01  Bernd Schmidt  <bernds@redhat.co.uk>
14439         * call.c (build_over_call): Call fold on the CALL_EXPR.
14441 2000-11-01  Gabriel Dos Reis  <gdr@codesourcery.com>
14443         * error.c (dump_template_decl): Separate template hearders with
14444         space not comma.
14446 2000-10-31  Gabriel Dos Reis  <gdr@codesourcery.com>
14448         * error.c: Move TFF_ macros into cp-tree.h.  Throughout, replace
14449         TS_* flags with corresponding TFF_*.  Adjust prototypes of
14450         functions (which used to take a tree_string_flags) to take an int.
14452         * cp-tree.h (enum tree_string_flags): Remove
14453         (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE, TFF_CLASS_SCOPE,
14454         TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPEDEF, TFF_DECL_SPECIFIERS,
14455         TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
14456         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
14457         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS,
14458         TFF_TEMPLATE_NAME, TFF_EXPR_IN_PARENS, TFF_SCOPE): New macros.
14459         (type_as_string, decl_as_string, expr_as_string,
14460         context_as_string): Adjust prototype.
14462         * class.c (dump_class_hierarchy_r): Use TFF_PLAIN_IDENTIFIER
14463         instead of TS_PLAIN.
14465         * pt.c (mangle_class_name_for_template): Use TFF_CHASE_TYPEDEF
14466         instead of TF_CHASE_TYPEDEFS. Use TFF_PLAIN_IDENTIFIER instead of
14467         plain `0'.
14469 2000-10-30  Mark Mitchell  <mark@codesourcery.com>
14471         * cp-tree.h (DECL_EXTERNAL_LINKAGE_P): New macro.
14472         (linkage_kind): New enumeration.
14473         (decl_linkage): New function.
14474         * decl2.c (comdat_linkage): Extend comment.
14475         * error.c (dump_function_decl): Print the arguments used to
14476         instantiate a template, even when not printing the type of the
14477         function.
14478         * pt.c (convert_nontype_argument): Use DECL_EXTERNAL_LINKAGE_P,
14479         not TREE_PUBLIC, to test for external linkage.
14480         * tree.c (decl_linkage): New function.
14482 2000-10-28  Mark Mitchell  <mark@codesourcery.com>
14484         * pt.c (instantiate_decl): Always instantiate static data members
14485         initialized in-class.
14487 2000-10-27  Zack Weinberg  <zack@wolery.stanford.edu>
14489         * Make-lang.in: Move all build rules here from Makefile.in,
14490         adapt to new context.  Wrap all rules that change the current
14491         directory in parentheses.  Expunge all references to $(P).
14492         When one command depends on another and they're run all at
14493         once, use && to separate them, not ;.  Add OUTPUT_OPTION to
14494         all object-file generation rules.  Delete obsolete variables.
14496         * Makefile.in: Delete.
14497         * config-lang.in: Delete outputs= line.
14499 2000-10-26  Gabriel Dos Reis  <gdr@codesourcery.com>
14501         * error.c (dump_function_decl): Print no space between
14502         `ptr-operator' the `type-specifier' of the return type.
14503         (dump_type_prefix): Make sure we put space at the appropriate
14504         place.
14506 2000-10-23  Jason Merrill  <jason@redhat.com>
14508         * call.c (equal_functions): Also call decls_match for extern "C" fns.
14510 2000-10-22  Jason Merrill  <jason@redhat.com>
14512         * call.c (build_conditional_expr): Use ocp_convert to force
14513         rvalue conversion.
14515 2000-10-22  Mark Mitchell  <mark@codesourcery.com>
14517         * call.c (standard_conversion): Use RVALUE_CONVs for all
14518         expressions that satisfy lvalue_p, not just those that satisfy
14519         real_lvalue_p.
14521         * optimize.c (copy_body_r): Don't treat CALL_EXPRs specially.
14523         * typeck.c (c_sizeof): Return an expression of `size_t' type,
14524         not one with TYPE_IS_SIZETYPE set.
14525         (dubious_conversion_warnings): Remove special-case code.
14527 2000-10-21  Geoffrey Keating  <geoffk@cygnus.com>
14529         * decl2.c (arg_assoc_type): Handle VECTOR_TYPE.
14530         * error.c (dump_type): Handle VECTOR_TYPE like POINTER_TYPE.
14531         (dump_type_prefix): Print vector-of-int as 'int vector'.
14532         (dump_type_suffix): Handle VECTOR_TYPE like POINTER_TYPE.
14533         * tree.c (walk_tree): Handle VECTOR_TYPE.
14535         * decl.c (init_decl_processing): Call MD_INIT_BUILTINS.
14537 2000-10-21  Jason Merrill  <jason@redhat.com>
14539         * parse.y (operator): Set got_object from got_scope.
14540         Set looking_for_typename.
14541         * decl.c (lookup_name_real): Clear val after setting from_obj.
14542         Reorganize diagnostic.
14544 2000-10-20  Jason Merrill  <jason@redhat.com>
14546         * tree.c (walk_tree): Don't walk into default args.
14548         * error.c (dump_expr): Use host_integerp.
14550 2000-10-20  David Edelsohn  <edelsohn@gnu.org>
14552         * typeck2.c (abstract_virtuals_error): Use "because" instead of
14553         "since" in error message.
14555 2000-10-20  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14557         * typeck.c (dubious_conversion_warning): Suppress if TYPE_IS_SIZETYPE.
14559 2000-10-20  Jeffrey Oldham  <oldham@codesourcery.com>
14561         * decl.c (revert_static_member_fn): Fixed typo.
14563 2000-10-19  Mark Mitchell  <mark@codesourcery.com>
14565         * class.c (subobject_offset_fn): New type.
14566         (dfs_record_base_offsets): Remove.
14567         (record_base_offsets): Likewise.
14568         (dfs_search_base_offsets): Likewise.
14569         (record_subobject_offset): New function.
14570         (check_subobject_offset): Likewise.
14571         (walk_subobject_offsets): Likewise.
14572         (record_subobject_offsets): Likewise.
14573         (layout_conflict_p): Reimplement.
14574         (layout_nonempty_base_or_field): Correct handling of type
14575         conflicts during layout.
14576         (layout_empty_base): Likewise.
14577         (build_base_field): Adjust to handle new representation of empty
14578         base offset table.
14579         (build_base_fields): Likewise.
14580         (layout_virtual_bases): Likewise.
14581         (splay_tree_compare_integer_csts): New function.
14582         (layout_class_type): Use a splay_tree, rather than a varray, to
14583         represent the offsets of empty bases.
14585         * cp-tree.h (DECL_ANTICIPATED): Don't require a FUNCTION_DECL.
14586         * decl.c (select_decl): Don't return declarations that are
14587         DECL_ANTICIPATED.
14589 2000-10-18  Mark Mitchell  <mark@codesourcery.com>
14591         * cp-tree.h (cp_tree_index): Add CPTI_FAKE_STD.
14592         (fake_std_node): New macro.
14593         * decl.c (in_std): Rename to ...
14594         (in_fake_std): ... this.
14595         (flag_no_builtin): Remove.
14596         (flag_no_nonansi_builtin): Likewise.
14597         (walk_namespaces_r): Use fake_std_node.
14598         (push_namespace): Use std_identifier.
14599         (pop_namespace): Use in_fake_std.
14600         (lookup_name_real): Use fake_std_node.
14601         (init_decl_processing): When -fhonor-std, create the `std'
14602         namespace.  Don't create a dummy fake_std_node in that case.
14603         Adjust call to c_common_nodes_and_builtins.  Use std_identifier.
14604         (builtin_function): Put builtins whose names don't begin
14605         with `_' in the std namespace.
14606         * decl2.c (flag_no_builtin): Remove.
14607         (flag_no_nonansi_builtin): Likewise.
14608         (set_decl_namespace): Use fake_std_node.
14609         (validate_nonmember_using_decl): Likewise.
14610         (do_using_directive): Likewise.
14611         (handle_class_head): Likewise.
14612         * dump.c (dequeue_and_dump): Likewise.
14613         * except.c (init_exception_processing): Use std_identifier.
14614         * init.c (build_member_call): Use fake_std_node.
14615         * rtti.c (init_rtti_processing): Use std_identifier.
14617 2000-10-17  Mark Mitchell  <mark@codesourcery.com>
14619         * cp-tree.h (back_end_hook): Remove declaration.
14620         * decl2.c (back_end_hook): Remove definition.
14622         * dump.c (dequeue_and_dump): Dump TREE_USED.
14624 2000-10-17  Brad Lucier <lucier@math.purdue.edu>
14626         * spew.c (snarf_defarg): Cast 2nd arg to obstack_blank to (int).
14628 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
14630         * decl.c (WINT_TYPE): Define.
14631         (init_decl_processing): Create types unsigned_ptrdiff_type_node,
14632         c_size_type_node, signed_size_type_node and wint_type_node.
14634 2000-10-17  Joseph S. Myers  <jsm28@cam.ac.uk>
14636         * decl2.c (warn_missing_format_attribute): New variable.
14637         (lang_decode_option): Decode -Wmissing-format-attribute.
14639 2000-10-16  Mark Mitchell  <mark@codesourcery.com>
14641         * typeck.c (qualify_type): Remove.
14642         (composite_pointer_type): Fix handling of conversions to `cv void*'.
14644 2000-10-14  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14646         * Makefile.in (parse.c, parse.h): Fix think-o in last patch.
14648 2000-10-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14650         * Makefile.in (parse.c, parse.h): Create atomically.
14652 2000-10-12  Mark Mitchell  <mark@codesourcery.com>
14654         * class.c (current_obstack): Remove.
14655         * decl.c (ggc_p): Remove.
14656         (start_decl): Don't use decl_tree_cons.
14657         (grokdeclarator): Don't use build_decl_list.
14658         (start_function): Don't use decl_tree_cons.
14659         (finish_function): Don't mess with obstacks.
14660         * decl2.c (grok_x_components): Don't use build_decl_list.
14661         * lex.c (make_call_declarator): Don't call decl_tree_cons.
14662         (implicitly_declare_fn): Don't call build_decl_list.
14663         * parse.y (frob_specs): Don't call build_decl_list or
14664         decl_tree_cons.
14665         (expr_or_declarator_intern): Don't call decl_tree_cons.
14666         (primary): Don't call build_decl_list.
14667         (fcast_or_absdcl): Likewise.
14668         (typed_declspecs): Don't call decl_tree_cons.
14669         (reserved_declspecs): Don't call build_decl_list.
14670         (declmods): Likewise.
14671         (reserved_typespecquals): Likewise.
14672         (aggr): Likewise.
14673         (new_type_id): Likewise.
14674         (cv_qualifiers): Likewise.
14675         (after_type_declarator_intern): Likewise.
14676         (notype_declarator_intern): Likewise.
14677         (absdcl_intern): Likewise.
14678         (named_parm): Likewise.
14679         * pt.c (most_specialized_class): Likewise.
14680         * repo.c (temporary_obstack): Make it a structure, not a pointer.
14681         (init_repo): Initialize it.
14682         * search.c (current_obstack): Remove.
14683         * typeck2.c (add_exception_specifier): Don't call build_decl_list.
14685 2000-10-09  Richard Henderson  <rth@cygnus.com>
14687         * Make-lang.in (CXX_EXTRA_HEADERS): Remove.
14688         (c++ language support bits for libgcc): Remove.
14689         (c++.clean): Remove cplib2.txt cleanup.
14690         * config-lang.in (headers, lib2funcs): Remove.
14692         * exception.cc, new.cc, new1.cc, new2.cc: Remove files.
14693         * tinfo.cc, tinfo.h, tinfo2.cc, vec.cc: Remove files.
14694         * inc/cxxabi.h, inc/exception, inc/new: Remove files.
14695         * inc/new.h, inc/typeinfo: Remove files.
14697 2000-10-08  Joseph S. Myers  <jsm28@cam.ac.uk>
14699         * decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
14700         defined.
14701         (init_decl_processing): Initialize intmax_type_node and
14702         uintmax_type_node.
14704 2000-10-06  Richard Henderson  <rth@cygnus.com>
14706         * cp-tree.h (struct cp_language_function): Remove x_result_rtx.
14707         (original_result_rtx): Remove.
14708         * decl.c (save_function_data): Don't clear x_result_rtx.
14709         (mark_lang_function): Don't mark it either.
14710         * expr.c (fixup_result_decl): Remove.
14711         * semantics.c (genrtl_named_return_value): Frob the return decl
14712         before calling emit_local_var.
14713         (genrtl_finish_function): Don't call fixup_result_decl.
14714         Always emit the jump to return_label.
14716 2000-10-06  Nathan Sidwell  <nathan@codesourcery.com>
14718         * pt.c (lookup_template_class): Set current access for enum.
14719         (tsubst_enum): Set file & line for enum decl.
14721         * spew.c (yylex): Remove unused variable.
14723 2000-10-05  Richard Henderson  <rth@cygnus.com>
14725         * semantics.c (genrtl_finish_function): Don't init or check
14726         can_reach_end; remove noreturn and return value checks.
14728 2000-10-05  Tom Tromey  <tromey@cygnus.com>
14730         * init.c (build_java_class_ref): Use `build_static_name' with a
14731         suffix, not a prefix, to build the class object's name.
14733 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
14735         * cp-tree.h (access_kind): Fix comment typo.
14736         * decl2.c (grokfield): Fix diagnostic typo.
14737         * semantics.c (finish_template_type): Fix comment typo.
14738         (finish_qualified_object_call_expr): Likewise.
14740 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
14742         * pt.c (tsubst_expr, DECL_STMT case): Don't process if
14743         tsubsting fails.
14745 2000-10-05  Nathan Sidwell  <nathan@codesourcery.com>
14747         * spew.c (frob_id): New static function.
14748         (frob_opname): Use it.
14749         (yylex): Use it.
14751 2000-10-01  Mark Mitchell  <mark@codesourcery.com>
14753         * decl.c (lang_mark_false_label_stack): Remove.
14754         * lex.c (cp_mang_lang_type): Use ggc_alloc_cleared.
14756 2000-09-30  Joseph S. Myers  <jsm28@cam.ac.uk>
14758         * gxxint.texi: Use @email for formatting email addresses.
14760 2000-09-29  Gabriel Dos Reis  <gdr@codesourcery.com>
14762         * error.c: Remove direct obstack manipulation.  Replace with
14763         output_buffer-based formatting.  Adjust calls to removed macros.
14764         (obstack_chunk_alloc, obstack_chunk_free): Remove.
14765         (OB_INIT, OB_PUTC, OB_PUTC2, OB_PUTS, OB_PUTID, OB_PUTCP,
14766         OB_FINISH, OB_PUTI, OB_END_TEMPLATE): Likewise.
14768 2000-09-24  Mark Mitchell  <mark@codesourcery.com>
14770         * ir.texi: Move to ../c-tree.texi.
14772 2000-09-20  Jason Merrill  <jason@redhat.com>
14774         * decl2.c (get_guard): Check DECL_FUNCTION_SCOPE_P.
14776 2000-09-21  Andreas Jaeger  <aj@suse.de>
14778         * errfn.c: Move declaration of cp_printer and cp_printers to ...
14779         * cp-tree.h: ... here.
14781         * error.c: Remove declaration of cp_printer.
14783 2000-09-20  Mark Mitchell  <mark@codesourcery.com>
14785         * tree.c (mark_local_for_remap_r): Handle CASE_LABELs.
14787 2000-09-20  Hans-Peter Nilsson  <hp@axis.com>
14789         * except.c: Delete #if 0:d EXCEPTION_SECTION_ASM_OP-default and
14790         users.
14792 2000-09-18  Mark Mitchell  <mark@codesourcery.com>
14794         * decl.c (start_function): Robustify.
14796 2000-09-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
14798         * cp-tree.h (check_function_format): Accept a `status' parameter.
14800         * call.c, typeck.c: Updates calls to `check_function_format'.
14802 2000-09-17  Geoffrey Keating  <geoffk@cygnus.com>
14804         * decl2.c (handle_class_head): Always push some scope even
14805         in the error case.
14807 2000-09-16  Mark Mitchell  <mark@codesourcery.com>
14809         * cp-tree.h (struct cp_language_function): Remove
14810         x_scope_stmt_stack and name_declared.
14811         (current_scope_stmt_stack): Remove.
14812         (function_name_declared_p): New macro.
14813         (struct lang_decl_flags): Use c_lang_decl as a base class.
14814         (context): Remove.
14815         (struct lang_decl): Replace saved_tree with context.
14816         (DECL_FRIEND_CONTEXT): Adjust accordingly.
14817         (SET_DECL_FRIEND_CONTEXT): Likewise.
14818         (DECL_VIRTUAL_CONTEXT): Likewise.
14819         (DECL_SAVED_TREE): Remove.
14820         (C_DECLARED_LABEL_FLAG): Likewise.
14821         (cplus_expand_expr_stmt): Don't declare.
14822         (add_decl_stmt): Likewise.
14823         (add_scope_stmt): Likewise.
14824         * decl.c (mark_stmt_tree): Remove.
14825         (case_compare): Likewise.
14826         (finish_case_label): Use c_add_case_label.
14827         (init_decl_processing): Set more language-specific hooks.
14828         (build_enumerator): Fix typo in comment.
14829         (cplus_expand_expr_stmt): Remove.
14830         (mark_lang_function): Use mark_c_language_function.
14831         (lang_mark_tree): Use c_mark_lang_decl.
14832         * decl2.c: Change order of inclusion.
14833         * except.c: Likewise.
14834         * expr.c (cplus_expand_expr): Remove handling of STMT_EXPR.  Fall
14835         back on c_expand_expr.
14836         * friend.c: Include expr.h.
14837         * init.c: Change order of inclusion.
14838         * Makefile.in: Update dependencies.
14839         * lex.h (free_lang_decl_chain): Remove.
14840         * optimize.c (maybe_clone_body): Use function_name_declared_p.
14841         * pt.c (build_template_decl): Don't copy DECL_VIRTUAL_CONTEXT if
14842         it doesn't exist.
14843         (instantiate_decl): Use function_name_declared_p.
14844         * semantics.c (lang_expand_expr_stmt): Remove.
14845         (set_current_function_name_declared): Likewise.
14846         (current_function_name_declared): Likewise.
14847         (begin_compound_stmt): Use function_name_declared_p.
14848         (add_decl_stmt): Remove.
14849         (setup_vtbl_ptr): Use function_name_declared_p.
14850         (add_scope_stmt): Remove.
14851         (current_scope_stmt_stack): New function.
14852         (cp_expand_stmt): Don't handle SCOPE_STMTs.
14853         (expand_body): Use function_name_declared_p.
14854         * tree.c (cp_statement_code_p): Don't include SCOPE_STMT.
14855         * typeck.c: Change order of includes.
14856         (convert_sequence): Remove.
14858 2000-09-14  Joseph S. Myers  <jsm28@cam.ac.uk>
14860         * lex.c (reswords): Add _Complex.
14862 2000-09-14  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14864         * Make-lang.in (cplib2.txt): Depend on cp/Makefile.
14866 2000-09-13  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
14868         * init.c (begin_init_stmts): Don't use // comments.
14870 2000-09-12  Jason Merrill  <jason@redhat.com>
14872         * decl.c (maybe_deduce_size_from_array_init): Set do_default for
14873         all non-extern arrays.
14875         * decl.c (grokdeclarator): Complain about 'friend T' for implicit
14876         typenames, too.  Downgrade complaint to pedwarn.
14877         (xref_tag): Warn about surprising behavior of 'friend struct T'.
14878         * decl2.c (handle_class_head): Generate a TYPENAME_TYPE for
14879         'class This::Inherited'.
14881 2000-09-12  Mark Mitchell  <mark@codesourcery.com>
14883         * decl.c (finish_case_label): Given the LABEL_DECL a
14884         DECL_CONTEXT.
14886 2000-09-12  Gabriel Dos Reis  <gdr@codesourcery.com>
14888         * error.c (TFF_PLAIN_IDENTIFIER, TFF_NAMESPACE_SCOPE,
14889         TFF_CLASS_SCOPE, TFF_CHASE_NAMESPACE_ALIAS, TFF_CHASE_TYPDEF,
14890         TFF_DECL_SPECIFIERS, TFF_CLASS_KEY_OR_ENUM, TFF_RETURN_TYPE,
14891         TFF_FUNCTION_DEFAULT_ARGUMENTS, TFF_EXCEPTION_SPECIFICATION,
14892         TFF_TEMPLATE_HEADER, TFF_TEMPLATE_DEFAULT_ARGUMENTS, TFF_SCOPE):
14893         New macros.
14894         (sorry_for_unsupported_tree, print_scope_operator,
14895         print_left_paren, print_right_paren, print_left_bracket,
14896         print_right_bracket, print_whitespace): Likewise.
14897         (aggr_variety): Rename to class_key_or_enum.
14898         (print_type): Rename to print_type_id.
14899         (print_type_specifier_seq, print_simple_type_specifier,
14900         print_elaborated_type_specifier,
14901         print_rest_of_abstract_declarator,
14902         print_parameter_declaration_clause, print_exception_specification,
14903         print_nested_name_specifier, print_template_id,
14904         typedef_original_name,  print_template_argument_list_start,
14905         print_template_argument_list_end): New functions.
14907 2000-09-11  Gabriel Dos Reis  <gdr@codesourcery.com>
14909         * ir.texi: Add more documentation.
14911 2000-09-11  Mark Mitchell  <mark@codesourcery.com>
14913         * cp-tree.h (struct saved_scope): Remove x_function_parms.
14914         (current_function_parms): Don't define.
14915         (struct cp_language_function): Remove parms_stored.
14916         (current_function_just_assigned_this): Don't define.
14917         (current_function_parms_stored): Likewise.
14918         (static_ctors): Declare.
14919         (static_dtors): Likewise.
14920         (SF_EXPAND): Don't define.
14921         (expand_start_early_try_stmts): Remove declaration.
14922         (store_parm_decls): Likewise.
14923         * decl.c (static_ctors): Don't declare.
14924         (static_dtors): Likewise.
14925         (struct binding_level): Remove this_block.
14926         (poplevel): Remove dead code.
14927         (set_block): Likewise.
14928         (mark_binding_level): Don't mark this_block.
14929         (mark_saved_scope): Don't mark x_function_parms.
14930         (init_decl_processing): Don't add current_function_parms as a GC
14931         root.
14932         (check_function_type): Change prototype.
14933         (start_function): Remove RTL-generation code.
14934         (expand_start_early_try_stmts): Remove.
14935         (store_parm_decls): Give it internal linkage.  Remove
14936         RTL-generation code.
14937         (finish_function): Remove RTL-generation code.
14938         * decl2.c (static_ctors): Fix formatting.
14939         (static_dtors): Likewise.
14940         * method.c (use_thunk): Don't call store_parm_decls.
14941         (synthesize_method): Likewise.
14942         * optimize.c (maybe_clone_body): Likewise.
14943         * parse.y (fn.def2): Likewise.
14944         (.set_base_init): Likewise.
14945         (nodecls): Likewise.
14946         * pt.c (instantiate_decl): Likewise.
14947         * rtti.c (synthesize_tinfo_fn): Likewise.
14948         * semantics.c (genrtl_try_block): Simplify.
14949         (expand_body): Use genrtl_start_function and
14950         genrtl_finish_function.
14951         (genrtl_start_function): New function.
14952         (genrtl_finish_function): Likewise.
14954 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
14956         * error.c (cp_tree_printer, case 'P'): Append break.
14958 2000-09-11  Nathan Sidwell  <nathan@codesourcery.com>
14960         * cp-tree.h (frob_opname): Declare.
14961         * parse.y (saved_scopes): New static variable.
14962         (cp_parse_init): Adjust.
14963         (do_id): If lastiddecl is NULL, do do_identifier.
14964         (operator): Save scope information.
14965         (unoperator): New reduction. Restore scope information.
14966         (operator_name): Append unoperator. Call frob_opname.
14967         * spew.c (frob_opname): Define.
14969 2000-09-10  Zack Weinberg  <zack@wolery.cumb.org>
14971         * decl.c, rtti.c: Include defaults.h if not already included.
14972         Don't define the *_TYPE_SIZE macros.
14974 2000-09-09  Mark Mitchell  <mark@codesourcery.com>
14976         * cp-tree.h (push_switch): Change prototype.
14977         (check_cp_case_value): Remove declaration.
14978         (decl_constant_value): Likewise.
14979         * decl.c (struct cp_switch): Add switch_stmt and cases.
14980         (case_compare): New function.
14981         (push_switch): Set switch_stmt.  Initialize cases.
14982         (pop_switch): Clean up cases.
14983         (define_case_label): Rename to ...
14984         (finish_case_label): ... this.  Do semantic analysis for case
14985         labels here.
14986         (start_function): Correct comment.
14987         * decl2.c (check_cp_case_value): Remove.
14988         * expr.c (do_case): Remove.
14989         * pt.c (tsubst_expr): Adjust call to finish_case_label.
14990         * semantics.c (genrtl_do_poplevel): Remove declaration.
14991         (RECHAIN_STMTS): Remove.
14992         (finish_break_stmt): Use build_break_stmt.
14993         (finish_continue_stmt): Use build_continue_stmt.
14994         (finish_switch_cond): Adjust condition here, rater than in
14995         c_expand_start_case.
14996         (finish_case_label): Remove.
14997         * typeck.c (c_expand_return): Remove.
14998         (c_expand_start_case): Likewise.
15000 2000-09-07  Gabriel Dos Reis  <gdr@codesourcery.com>
15002         * ir.texi: Document type nodes.
15004 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
15006         * cp-tree.h (init_cp_semantics): Declare.
15007         (genrtl_try_block): Don't declare.
15008         (genrtl_handler): Likewise.
15009         (genrtl_catch_block): Likewise.
15010         (genrtl_ctor_stmt): Likewise.
15011         (genrtl_subobject): Likewise.
15012         (genrtl_do_poplevel): Likewise.
15013         (genrtl_named_return_value): Likewise.
15014         * lex.c (init_parse): Call init_cp_semantics.
15015         * semantics.c (genrtl_try_block): Give it internal linkage.
15016         (genrtl_handler): Likewise.
15017         (genrtl_catch_block): Likewise.
15018         (genrtl_ctor_stmt): Likewise.
15019         (genrtl_subobject): Likewise.
15020         (genrtl_do_poplevel): Likewise.
15021         (genrtl_named_return_value): Likewise.
15022         (lang_expand_stmt): Rename to ...
15023         (cp_expand_stmt): ... this.  Only handle C++-specific nodes.
15024         (init_cp_semantics): Define.
15026         * decl.c (initialize_local_var): Remove RTL-generating code.
15027         * semantics.c (genrtl_try_block): Fix formatting.
15029         Move statement-tree facilities from C++ to C front-end.
15030         * cp-tree.h (cp_tree_index): Remove CPTI_VOID_ZERO.
15031         (void_zero_node): Remove.
15032         (stmt_tree): Likewise.
15033         (scope_chain): Adjust.
15034         (language_function): Rename to cp_language_function.
15035         (cp_function_chain): Adjust.
15036         (current_stmt_tree): Remove.
15037         (last_tree): Likewise.
15038         (last_expr_type): Likewise.
15039         (struct lang_decl): Adjust.
15040         (STMT_IS_FULL_EXPR_P): Remove.
15041         (add_tree): Remove.
15042         (begin_stmt_tree): Likewise.
15043         (finish_stmt_tree): Likewise.
15044         (walk_tree_fn): Likewise.
15045         (walk_stmt_tree): Likewise.
15046         * class.c (finish_struct): Replace use of add_tree with add_stmt.
15047         * decl.c (mark_stmt_tree): Adjust type.
15048         (init_decl_processing): Don't build void_zero_node.
15049         (initialize_local_var): Adjust usage of current_stmt_tree.
15050         (finish_enum): Use add_stmt, not add_tree.
15051         (save_function_data): Adjust use of language_function.
15052         (finish_constructor_body): Use add_stmt, not add_tree.
15053         (finish_destructor_body): Likewise.
15054         (push_cp_function_context): Adjust use of language_function.
15055         (pop_cp_function_context): Likewise.
15056         (mark_lang_function): Likewise.
15057         (mark_cp_function_context): Likewise.
15058         * init.c (build_aggr_init): Adjust use of current_stmt_tree.
15059         (build_vec_init): Likewise.
15060         * semantics.c (SET_LAST_STMT): Remove.
15061         (RECHAIN_STMTS): Don't use it.
15062         (stmts_are_full_exprs_p): Adjust use of current_stmt_tree.
15063         (current_stmt_tree): Define.
15064         (add_tree): Remove.
15065         (finish_goto_stmt): Use add_stmt, not add_tree.
15066         (finish_expr_stmt): Likewise.
15067         (begin_if_stmt): Likewise.
15068         (finish_then_clause): Likewise.
15069         (begin_while_stmt): Likewise.
15070         (begin_do_stmt): Likewise.
15071         (finish_return_stmt): Likewise.
15072         (begin_for_stmt): Likewise.
15073         (finish_break_stmt): Likewise.
15074         (finish_continue_stmt): Likewise.
15075         (begin_switch_stmt): Likewise.
15076         (finish_case_label): Likewise.
15077         (begin_try_block): Likewise.
15078         (begin_function_try_block): Likewise.
15079         (begin_handler): Likewise.
15080         (begin_catch_block): Likewise.
15081         (begin_compound_stmt): Likewise.
15082         (begin_asm_stmt): Likewise.
15083         (finish_asm_stmt): Likewise.
15084         (finish_label_stmt): Likewise.
15085         (add_decl_stmt): Likewise.
15086         (finish_subobject): Likewise.
15087         (finish_decl_cleanup): Likewise.
15088         (finish_named_return_value): Likewise.
15089         (setup_vtbl_ptr): Likewise.
15090         (add_scope_stmt): Likewise.
15091         (finish_stmt_expr): Likewise.
15092         (prune_unused_decls): Remove.
15093         (begin_stmt_tree): Likewise.
15094         (finish_stmt_tree): Likewise.
15095         (prep_stmt): Adjust use of current_stmt_tree.
15096         (lang_expand_stmt): Likewise.
15097         * tree.c (statement_code_p): Remove.
15098         (cp_statement_code_p): New function.
15099         (walk_stmt_tree): Remove.
15100         (init_tree): Set lang_statement_code_p.
15102 2000-09-06  Zack Weinberg  <zack@wolery.cumb.org>
15104         Integrated preprocessor.
15106         * Make-lang.in, Makefile.in: Remove all references to input.c,
15107         gxx.gperf, and hash.h.  Add ../c-lex.o to C_OBJS.
15108         * gxx.gperf, hash.h, input.c: Delete.
15109         * lang-specs.h: Pass -lang-c++ to cc1plus so cpplib is
15110         initialized properly.
15112         * class.c (fixup_pending_inline): Take a tree, not a
15113         struct pending_inline *.  All callers changed.
15114         (init_class_processing): Set RID_PUBLIC, RID_PRIVATE,
15115         RID_PROTECTED entries in ridpointers[] array here.
15116         * decl.c (duplicate_decls): Do not refer to struct
15117         pending_inline.
15118         (record_builtin_type, init_decl_processing): Use RID_MAX not
15119         CP_RID_MAX.
15120         (grokdeclarator): Use C_IS_RESERVED_WORD.
15121         * decl2.c (lang_decode_option): Ignore -lang-c++ for sake of
15122         cpplib.
15123         (grok_x_components): Do not inspect pending_inlines chain.
15125         * cp-tree.h (struct lang_identifier): Add rid_code entry.
15126         (C_IS_RESERVED_WORD, C_RID_CODE, C_RID_YYCODE): New.
15127         (flag_no_gnu_keywords, flag_operator_names, rid_to_yy): Declare.
15128         (DEFARG_LENGTH, struct pending_inline, TIME_IDENTIFIER_TIME,
15129         TIME_IDENTIFIER_FILEINFO): Kill.
15130         Update prototypes.
15131         * lex.h: Expunge cp_rid.  Rewrite RIDBIT macros to use just a
15132         single 32-bit word.
15133         * parse.y: Call do_pending_inlines unconditionally.
15134         reinit_parse_for_method is now snarf_method.  fn.defpen is no
15135         longer necessary.  Remove unnecessary <itype> annotation on
15136         SCOPE.  Do not refer to end_of_file or struct pending_inline.
15137         * semantics.c (begin_inline_definitions): Call
15138         do_pending_inlines unconditionally.
15140         * lex.c: Remove all code now shared with C front end.
15141         Initialize cpplib properly if USE_CPPLIB.  Put reserved words
15142         into the get_identifier table.  Rewrite pragma handling to
15143         work with the registry.  Move code to save tokens for later
15144         processing to spew.c.
15146         * spew.c: Rewrite everything in terms of token streams instead
15147         of text.  Move routines here from lex.c / input.c as
15148         appropriate.  GC-mark trees hanging off the pending inlines
15149         chain.
15151 2000-09-06  Mark Mitchell  <mark@codesourcery.com>
15153         * NEWS: Mention that the named return value extension has been
15154         deprecated.
15155         * cp-tree.h (original_result_rtx): Define.
15156         (TREE_REFERENCE_EXPR): Remove.
15157         (DECL_VPARENT): Likewise.
15158         (pushdecl_nonclass_level): Likewise.
15159         (store_return_init): Likewise.
15160         (reinit_lang_specific): Likewise.
15161         (genrtl_named_return_value): Change prototype.
15162         * decl.c (original_result_rtx): Remove.
15163         (cp_finish_decl): Don't build DECL_STMTs for RESULT_DECLs.
15164         Do not generate RTL for local variables here.
15165         (store_return_init): Remove.
15166         * semantics.c (genrtl_named_return_value): Simplify.  Fold in
15167         store_return_init.
15168         (finish_named_return_value): Adjust accordingly.  Warn that this
15169         extension is deprecated.
15170         (lang_expand_stmt): Adjust call to genrtl_named_return_value.
15172 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
15174         * pt.c (type_unification_real): Replace switch with if.
15175         (unify): Tsubst non-type parms before comparing.
15177 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
15179         * error.c (dump_typename): New function, broken out of ...
15180         (dump_type): ... here. Use it.
15181         * typeck.c (same_type_p): Use cp_tree_equal for TYPENAME_TYPE.
15183 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
15185         * init.c (build_offset_ref): Deal with namespace scoped
15186         TEMPLATE_ID_EXPRs.
15188 2000-09-06  Nathan Sidwell  <nathan@codesourcery.com>
15190         * class.c (resolve_address_of_overloaded_function): Add
15191         explanation message.
15192         * decl.c (define_case_label): Reformat explanation.
15193         * decl2.c (finish_static_data_member_decl): Likewise.
15194         (grokfield): Likewise.
15195         * friend.c (do_friend): Likewise.
15197 2000-09-05  Zack Weinberg  <zack@wolery.cumb.org>
15199         * tree.c (walk_tree): Expose tail recursion.
15200         (walk_stmt_tree): New function.
15201         * cp-tree.h: Prototype walk_stmt_tree.
15202         * semantics.c (prune_unused_decls): Operate on SCOPE_STMTs not
15203         the BLOCKs directly.  If a BLOCK has no variables after
15204         pruning, discard it.
15205         (finish_stmt_tree): Use walk_stmt_tree.  No need to save and
15206         restore the line number.
15208 2000-09-05  Mark Mitchell  <mark@codesourcery.com>
15210         * Makefile.in (CXX_TREE_H): Add dependency on HTAB_H.
15211         (pt.o): Remove dependency on HTAB_H.
15212         * cp-tree.h: Include hashtab.h.
15213         (walk_tree): Change prototype.
15214         (walk_tree_without_duplicates): New function.
15215         * decl.c (check_default_argument): Use it.
15216         * optimize.c (remap_decl): Adjust calls to walk_tree.
15217         (copy_body): Likewise.
15218         (expand_calls_inline): Likewise.
15219         (calls_setjmp_p): Use walk_tree_without_duplicates.
15220         * pt.c: Don't include hashtab.h.
15221         (for_each_template_parm): Use walk_tree_without_duplicates.
15222         * semantics.c (finish-stmt_tree): Likewise.
15223         (expand_body): Likewise.
15224         * tree.c (walk_tree): Add additional parameter.
15225         (walk_tree_without_duplicates): New function.
15226         (count_trees): Use it.
15227         (verify_stmt_tree): Adjust call to walk_tree.
15228         (find_tree): Use walk_tree_without_duplicates.
15229         (no_linkage_check): Likewise.
15230         (break_out_target_exprs): Adjust call to walk_tree.
15231         (cp_unsave): Likewise.
15233 2000-09-04  Kriang Lerdsuwanakij  <lerdsuwa@users.sourceforge.net>
15235         * cp-tree.def (BOUND_TEMPLATE_TEMPLATE_PARM): New tree code.
15236         (TEMPLATE_TEMPLATE_PARM): Adjust comment.
15237         * cp-tree.h (TYPE_BINFO): Adjust comment.
15238         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO): Likewise.
15239         (TEMPLATE_TYPE_PARM_INDEX): Likewise.
15240         (IS_AGGR_TYPE): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
15241         (TYPE_TEMPLATE_INFO): Likewise.
15242         (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): Likewise.
15243         * class.c (push_nested_class): Likewise.
15244         * decl.c (lookup_name_real): Likewise.
15245         (grokdeclarator): Likewise.
15246         (grok_op_properties): Likewise.
15247         (xref_tag): Likewise.
15248         (xref_basetypes): Likewise.
15249         * decl2.c (constructor_name_full): Likewise.
15250         (arg_assoc_template_arg): Add TEMPLATE_TEMPLATE_PARM case.
15251         (arg_assoc_type): Use BOUND_TEMPLATE_TEMPLATE_PARM instead.
15252         * error.c (dump_type): Split TEMPLATE_TEMPLATE_PARM case.
15253         (dump_type_prefix): Add BOUND_TEMPLATE_TEMPLATE_PARM.
15254         (dump_type_suffix): Likewise.
15255         * init.c (is_aggr_type): Use BOUND_TEMPLATE_TEMPLATE_PARM
15256         instead.
15257         (get_aggr_from_typedef): Likewise.
15258         * mangle.c (write_type): Split TEMPLATE_TEMPLATE_PARM case.
15259         (write_expression): Add BOUND_TEMPLATE_TEMPLATE_PARM.
15260         (write_template_parm): Likewise.
15261         (write_template_template_parm): Check tree code instead of
15262         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
15263         * method.c (build_overload_nested_name): Add
15264         BOUND_TEMPLATE_TEMPLATE_PARM.
15265         (process_overload_item): Split TEMPLATE_TEMPLATE_PARM case.
15266         * parse.y (bad_parm): Add BOUND_TEMPLATE_TEMPLATE_PARM.
15267         * pt.c (convert_template_argument): Check tree code instead of
15268         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
15269         (for_each_template_parm_r): Split TEMPLATE_TEMPLATE_PARM case.
15270         (for_each_template_parm): Adjust comment.
15271         (tsubst): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.
15272         (tsubst_copy): Add BOUND_TEMPLATE_TEMPLATE_PARM.
15273         (unify): Add BOUND_TEMPLATE_TEMPLATE_PARM.  Reorganize.  Use
15274         template_args_equal to compare template template parameter cases.
15275         * ptree.c (print_lang_type): Add BOUND_TEMPLATE_TEMPLATE_PARM.
15276         * search.c (lookup_field_1): Use BOUND_TEMPLATE_TEMPLATE_PARM
15277         instead.
15278         * tree.c (copy_template_template_parm): Decide whether to create
15279         a TEMPLATE_TEMPLATE_PARM or BOUND_TEMPLATE_TEMPLATE_PARM node.
15280         (walk_tree): Add BOUND_TEMPLATE_TEMPLATE_PARM.
15281         (copy_tree_r): Likewise.
15282         * typeck.c (comptypes): Likewise.  Check tree code instead of
15283         using TEMPLATE_TEMPLATE_PARM_TEMPLATE_INFO.
15285 2000-09-04  Mark Elbrecht  <snowball3@bigfoot.com>
15287         * decl.c (finish_function): Move the code for handling functions
15288         marked with the constructor and destructor attributes inside the
15289         expand_p block.
15291 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
15293         * init.c (resolve_offset_ref): Deal with TEMPLATE_ID_EXPR.
15295 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
15297         * pt.c (lookup_template_class): Remove abort.
15298         * tree.c (get_type_decl): Allow error_mark_node.
15300 2000-09-04  Nathan Sidwell  <nathan@codesourcery.com>
15302         * decl2.c (arg_assoc): Deal with COMPONENT_REFs inside
15303         TEMPLATE_ID_EXPRs.
15305 2000-09-03  Mark Mitchell  <mark@codesourcery.com>
15307         * operators.def (ALIGNOF_EXPR, MAX_EXPR, MIN_EXPR): Change
15308         new ABI mangling.
15310 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
15312         * parse.y (named_class_head): Check for TYPENAME_TYPE. Simplify
15313         union tag mismatch error reporting.
15315 2000-09-01  Nathan Sidwell  <nathan@codesourcery.com>
15317         * call.c (build_scoped_method_call): Check it is not a namespace.
15319 2000-08-30  Jason Merrill  <jason@redhat.com>
15321         * cp-tree.h (LOCAL_CLASS_P): Use decl_function_context.
15323         * tree.c (bot_manip): Check TREE_CONSTANT rather than
15324         !TREE_SIDE_EFFECTS.  Call break_out_target_exprs and
15325         build_target_expr_with_type for the non-AGGR_INIT_EXPR case.
15327         * decl.c (start_function): Always call make_function_rtl.
15329 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
15331         * semantics.c (prune_unused_decls): New function.
15332         (finish_stmt_tree): Call it via walk_tree.
15334 2000-08-29  Zack Weinberg  <zack@wolery.cumb.org>
15336         * class.c (build_secondary_vtable): Constify a char *.
15337         * decl.c (init_decl_processing): Initialize function_id_node,
15338         pretty_function_id_node, and func_id_node.
15339         * input.c (struct input_source): Constify 'str'.
15340         (feed_input): Constify first argument.
15341         * mangle.c (write_identifier): Constify argument.
15342         * pt.c (mangle_class_name_for_template): Constify argument.
15344 2000-08-29  Mark Mitchell  <mark@codesourcery.com>
15346         * typeck.c (mark_addressable): Remove code that pokes around in
15347         RTL.
15349 2000-08-28  Jason Merrill  <jason@redhat.com>
15351         * lex.c (file_name_nondirectory): Move to toplev.c.
15353         * cp-tree.h (LOCAL_CLASS_P): New macro.
15354         * class.c (finish_struct_1): Use it.
15356 2000-08-27  Alex Samuel  <samuel@codesourcery.com>
15358         * mangle.c (CLASSTYPE_TEMPLATE_ID_P): Remove unexplained voodoo.
15359         (write_encoding): Pass another argument to write_name.
15360         (write_name): Add ignore_local_scope parameter.  Fix handling of
15361         local names.
15362         (write_nested_name): Use write_unqualified_name.
15363         (write_prefix): Likewise.  Skip out on FUNCTION_DECLs.
15364         (write_template_prefix): Use write_unqualified_name.
15365         (write_component): Remove.
15366         (write_local_name): Add parameter.  Use direct local entity to
15367         discriminator calculation.
15368         (write_class_enum_type): Pass another argument to write_name.
15369         (write_template_template_arg): Likewise.
15370         (make_guard_variable): Likewise.
15372 2000-08-27  Jason Merrill  <jason@redhat.com>
15374         * decl.c (pushdecl): Matching decls for local externs are found in
15375         the current level.  Propagate linkage information from previous
15376         declarations.
15378 2000-08-26  Gabriel Dos Reis  <gdr@codesourcery.com>
15380         * ir.texi (Expressions): Fix typo.
15382 2000-08-25  Greg McGary  <greg@mcgary.org>
15384         * tree.c (init_tree): Use ARRAY_SIZE.
15386 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
15388         * error.c (cp_tree_printer): Rework.
15390 2000-08-25  Mark Mitchell  <mark@codesourcery.com>
15392         * Make-lang.in (CXX_LIB2FUNCS): Remove cp-demangle.o and
15393         dyn-string.o.
15394         (CXX_LIB2SRCS): Remove cp-demangle.c and dyn-string.c.
15395         (cp-demangle.o): Remove target.
15396         (dyn-string.o): Likewise.
15398         * decl.c (grokfndecl): Require that `main' return an `int'.
15399         * mangle.c (write_encoding): Don't mangle return types for
15400         conversion functions.
15402 2000-08-25  Gabriel Dos Reis  <gdr@codesourcery.com>
15404         * error.c (tree_formatting_info): New data type.
15405         (tree_being_formatted): New macro.
15406         (tree_formatting_flags): Likewise.
15407         (put_whitespace): Likewise.
15408         (print_tree_identifier): Likewise.
15409         (print_identifier): Likewise.
15410         (cp_tree_printer, print_function_argument_list, print_declaration,
15411         print_expression, print_function_declaration,
15412         print_function_parameter, print_type, print_cv_qualifier): New
15413         functions.
15414         (init_error): Initialize lang_printer.
15416 2000-08-24  Jason Merrill  <jason@redhat.com>
15418         * typeck.c (build_ptrmemfunc): Just reinterpret if there's no
15419         adjustment necessary.
15421 2000-08-24  Greg McGary  <greg@mcgary.org>
15423         * cp-tree.h (MAIN_NAME_P): Remove macro.
15425 2000-08-24  Gabriel Dos Reis  <gdr@codesourcery.com>
15427         * error.c (print_instantiation_context): Don't forget to flush the
15428         buffer.
15430 2000-08-23  Jason Merrill  <jason@redhat.com>
15432         * typeck.c (build_ptrmemfunc): Save the input pmf.
15434         * method.c (process_modifiers): Use same_type_p.
15436 2000-08-23  Mark Mitchell  <mark@codesourcery.com>
15438         * cp-tree.h (DECL_CLONED_FUNCTION_P): Check DECL_LANG_SPECIFIC.
15439         * mangle.c (write_function_type): Change prototype.
15440         (write_encoding): Don't mangle return types for
15441         constructors or destructors.
15442         (write_type): Adjust call to write_function_type.
15443         * pt.c (instantiate_template): Instantiate alternate entry points
15444         when instantiating the main function.
15446 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
15448         * error.c (cp_print_error_function): Don't use embedded '\n' in
15449         output_printf.
15451 2000-08-23  Gabriel Dos Reis  <gdr@codesourcery.com>
15453         * decl.c (init_decl_processing): Remove bogus initialization.
15454         * error.c (lang_print_error_function): Restore here.
15455         (init_error): Initialize print_error_function.
15457 2000-08-22  Theodore Papadopoulo  <Theodore.Papadopoulo@sophia.inria.fr>
15459         * decl2.c (arg_assoc): Revert my 2000-08-11 change.
15461 2000-08-22  Gabriel Dos Reis  <gdr@codesourcery.com>
15463         * Makefile.in (error.o): Depends on diagnostic.h
15465         * cp-tree.h (problematic_instantiation_changed,
15466         record_last_problematic_instantiation, current_instantiation,
15467         print_instantiation_context): Declare.
15468         (maybe_print_template_context): Remove.
15470         * decl.c (init_decl_processing): Set print_error_function to NULL.
15471         (lang_print_error_function): Remove, since we're using a new
15472         machinery.
15474         * error.c: #include diagnostic.h
15475         (function_category): New function.
15476         (cp_diagnostic_starter): Likewise.
15477         (cp_diagnostic_finalizer): Likewise.
15478         (cp_print_error_function): Likewise.
15479         (maybe_print_instantiation_context): Likewise.
15480         (print_instantiation_full_context): Likewise.
15481         (print_instantiation_partial_context): Likewise.
15482         (print_instantiation_context): Define.
15483         (init_error): Initialize diagnostic pager and finalizer.
15485         * pt.c (problematic_instantiation_changed): Define.
15486         (record_last_problematic_instantiation): Likewise.
15487         (current_instantiation): Likewise.
15488         (maybe_print_template_context): Remove.
15489         (print_template_context): Likewise.
15490         (current_tinst_level): Make static to reflect Brendan Kehoe's
15491         change of 1995-04-13.
15492         (push_tinst_level): Call print_instantiation_context.
15494 2000-08-21  Nix  <nix@esperi.demon.co.uk>
15496         * lang-specs.h: Do not process -o or run the assembler if
15497         -fsyntax-only.
15499 2000-08-21  Joseph S. Myers  <jsm28@cam.ac.uk>
15501         * decl.c (flag_hosted, flag_noniso_default_format_attributes): New
15502         variables.
15503         * decl2.c (lang_decode_option): Disable gettext attributes for
15504         -ansi.
15506 2000-08-21  Gabriel Dos Reis  <gdr@codesourcery.com>
15508         * lex.c (lang_init_options): Default diagnostic message maximum
15509         length to 80, when line-wrapping.
15511 2000-08-20  Mark Mitchell  <mark@codesourcery.com>
15513         * class.c (build_vtbl_initializer): Clear the entire
15514         vtbl_init_data.  Start keeping track of the functions for which we
15515         have created vcall offsets here.
15516         (dfs_build_vcall_offset_vtbl_entries): Remove.
15517         (build_vcall_offset_vtbl_entries): Reimplement.
15518         (add_vcall_offset_vtbl_entries_r): New function.
15519         (add_vcall_offset_vtbl_entries_1): Likewise.  Tweak logic for
15520         computing when vcall offsets are necessary.
15522 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
15524         * decl.c (member_function_or_else): Use cp_error ... %T.
15525         (grokdeclarator): Likewise.
15526         (start_method): Likewise.
15527         * friend.c (make_friend_class): Use cp_pedwarn ... %T.
15529 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
15531         * decl2.c (grokfield): Set CLASSTYPE_GOT_SEMICOLON on class
15532         TYPE_DECLs.
15534 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
15536         * cp-tree.h (PTRMEM_OK_P): New macro.
15537         (itf_ptrmem_ok): New enumeration value.
15538         * class.c (resolve_address_of_overloaded_function): Add PTRMEM
15539         argument. Diagnose implicit pointer to member.
15540         (instantiate_type): Don't diagnose implicit pointer to member
15541         here. Pass itf_ptrmem_ok if ok. Adjust calls to
15542         resolve_address_of_overloaded_function.
15543         * init.c (build_offset_ref): Set PTRMEM_OK_P.
15544         (resolve_offset_ref): Don't diagnose implicit pointer to member here.
15545         * semantics.c (finish_parenthesized_expr): Clear OFFSET_REFs here.
15546         * typeck.c (build_x_unary_op): Calculate PTRMEM_OK_P.
15547         (build_unary_op): Deal with single non-static member in
15548         microsoft-land.
15550 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
15552         * decl2.c (arg_assoc_type): Cope with TYPENAME_TYPE.
15554 2000-08-18  Nathan Sidwell  <nathan@codesourcery.com>
15556         * cp-tree.h (enum_name_string): Remove prototype.
15557         (report_case_error): Remove prototype.
15558         * cp/typeck2.c (enum_name_string): Remove.
15559         (report_case_error): Remove.
15560         * error.c (dump_expr): Deal with enum values directly.
15561         Correctly negate integer constant.
15563 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
15565         * inc/cxxabi.h (__cxa_vec_new2, __cxa_vec_new3): Declare.
15566         (__cxa_vec_delete2, __cxa_vec_delete3): Declare.
15567         * vec.cc (__cxa_vec_new2, __cxa_vec_new3): Implement.
15568         (__cxa_vec_delete2, __cxa_vec_delete3): Implement.
15569         (__cxa_vec_new): Use __cxa_vec_new2.
15570         (__cxa_vec_delete): Use __cxa_vec_delete2.
15572 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
15574         * vec.cc (__cxa_vec_new): Set "C" linkage.
15575         (__cxa_vec_ctor): Likewise.
15576         (__cxa_vec_cctor): Likewise.
15577         (__cxa_vec_dtor): Likewise.
15578         (__cxa_vec_delete): Likewise.
15579         * inc/cxxabi.h (__cxa_vec_new): Set "C" linkage.
15580         (__cxa_vec_ctor): Likewise.
15581         (__cxa_vec_cctor): Likewise.
15582         (__cxa_vec_dtor): Likewise.
15583         (__cxa_vec_delete): Likewise.
15585 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
15587         * class.c (instantiate_type): Reinstate local variable
15588         deleted in previous change.
15590         * cvt.c (cp_convert_to_pointer): Pass itf_complain, not
15591         itf_no_attributes.
15593 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
15595         * cp-tree.h (instantiate_type_flags): New enumeration.
15596         (instantiate_type): Change parameter.
15597         * class.c (instantiate_type): Adjust prototype. Adjust.
15598         * call.c (standard_conversion): Adjust instantiate_type call.
15599         (reference_binding): Likewise.
15600         (build_op_delete_call): Likewise.
15601         (convert_like_real): Likewise.
15602         * cvt.c (cp_convert_to_pointer): Likewise.
15603         (convert_to_reference): Likewise.
15604         * pt.c (convert_nontype_argument): Likewise.
15605         * typeck.c (build_binary_op): Likewise.
15606         (build_ptrmemfunc): Likewise.
15607         (convert_for_assignment): Likewise.
15609 2000-08-17  Nathan Sidwell  <nathan@codesourcery.com>
15611         * cp-tree.h (CPTR_AGGR_TAG): New global tree node.
15612         (current_aggr): Define.
15613         * decl.c (grokdeclarator): Make sure a friend class is an
15614         elaborated type specifier.
15615         * parse.y (current_aggr): Remove static definition.
15616         (cp_parse_init): Adjust.
15617         (structsp): Clear and restore current_aggr.
15618         (component_decl_list): Clear current_aggr.
15620         * error.c (dump_type, case TYPENAME_TYPE): Don't emit the
15621         aggregate tag on the typename's context.
15623         * pt.c (tsubst_friend_class): Return error_mark_node, if
15624         parms becomes NULL.
15625         (instantiate_class_template): Ignore error_mark_node friend types.
15627 2000-08-14  Nathan Sidwell  <nathan@codesourcery.com>
15629         * cvt.c (warn_ref_binding): New static function, broken out of ...
15630         (convert_to_reference): ... here. Use it.
15632 2000-08-11  Kriang Lerdsuwanakij <lerdsuwa@scf-fs.usc.edu>
15634         * parse.y (template_arg): Add rule for template qualified with
15635         global scope.
15637 2000-08-11  Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
15639         * decl2.c (add_function): Reorganize.
15640         (arg_assoc): Do not consider function template decls.
15642 2000-08-11  Jason Merrill  <jason@redhat.com>
15644         * decl.c (lookup_name_real): Don't forget the TYPENAME_TYPE we're
15645         looking inside.
15647 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
15649         * cp-tree.h (resolve_scope_to_name): Remove unused prototype.
15650         (lookup_nested_tag): Likewise.
15652         * decl2.c (grokfield): Fix comment to reflect many types of _DECLs
15653         can be produced.
15655 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
15657         * parse.y (named_complex_class_head_sans_basetype): Remove
15658         always true if.
15660 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
15662         * decl2.c (build_expr_from_tree, case METHOD_CALL_EXPR): Build
15663         explicit TEMPLATE_ID_EXPR args.
15664         (build_expr_from_tree, case CALL_EXPR): Likewise.
15666 2000-08-11  Nathan Sidwell  <nathan@codesourcery.com>
15668         * decl.c (check_tag_decl): Diagnose typename's which don't
15669         declare anything.
15671 2000-08-10  Nathan Sidwell  <nathan@codesourcery.com>
15673         * init.c (build_aggr_init): Reject bogus array initializers
15674         early.
15676 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
15678         * rtti.c (build_dynamic_cast_1): Set "C" linkage for new abi
15679         runtime.
15680         * cp/tinfo.cc (__dynamic_cast): Likewise.
15681         * cp/inc/cxxabi.h (__dynamic_cast): Likewise.
15683 2000-08-09  Nathan Sidwell  <nathan@codesourcery.com>
15685         * cvt.c (convert_to_pointer_force): Fix error message when
15686         attempting to cast from ambiguous base.
15688 2000-08-08  Jason Merrill  <jason@redhat.com>
15690         * pt.c (tsubst_aggr_type): Bail if creating the argvec fails.
15691         (tsubst_template_arg_vector): Likewise.
15693         * decl2.c (build_anon_union_vars): Choose the largest field; don't
15694         assume that one will be as large as the union.
15696 2000-08-07  Kazu Hirata  <kazu@hxi.com>
15698         * cp-tree.h (CLASSTYPE_HAS_PRIMARY_BASE_P): Fix a comment typo.
15699         * decl.c (pop_labels): Likewise.
15701 2000-08-04  Jeffrey Oldham  <oldham@codesourcery.com>
15703         * inc/cxxabi.h (__pbase_type_info): Changed member names to match
15704         specifications.
15705         (__pointer_to_member_type_info): Likewise.
15706         (__base_class_info): Likewise.
15707         (__class_type_info): Likewise.
15708         (__si_class_type_info): Likewise.
15709         (__vmi_class_type_info): Likewise.
15710         * tinfo.cc (__si_class_type_info::__do_find_public_src):
15711         Changed member names to match specifications.
15712         (__vmi_class_type_info::__do_find_public_src): Likewise.
15713         (__si_class_type_info::__do_dyncast): Likewise.
15714         (__vmi_class_type_info::__do_dyncast): Likewise.
15715         (__si_class_type_info::__do_upcast): Likewise.
15716         (__vmi_class_type_info::__do_upcast): Likewise.
15717         * tinfo2.cc (__pbase_type_info::__do_catch): Likewise.
15718         (__pbase_type_info::__pointer_catch): Likewise.
15719         (__pointer_type_info::__pointer_catch): Likewise.
15720         (__pointer_to_member_type_info::__pointer_catch): Likewise.
15722 2000-08-04  Zack Weinberg  <zack@wolery.cumb.org>
15724         * Make-lang.in (cc1plus): Depend on $(BACKEND), not stamp-objlist.
15725         * Makefile.in: Add C_OBJS, BACKEND; delete OBJS, OBJDEPS.
15726         (cc1plus): Link with $(BACKEND) and $(C_OBJS).
15728 2000-08-04  Mark Mitchell  <mark@codesourcery.com>
15730         * cp-tree.h (add_method): Change prototype.
15731         * class.c (add_method): Remove FIELDS parameter.  Add ERROR_P.
15732         Don't double the size of the method vector in the error case.
15733         (handle_using_decl): Adjust call to add_method.
15734         (add_implicitly_declared_members): Likewise.
15735         (clone_function_decl): Likewise.
15736         * decl2.c (check_classfn): Likewise.
15737         * semantics.c (finish_member_declaration): Likewise.
15739 2000-08-04  Joseph S. Myers  <jsm28@cam.ac.uk>
15741         * decl.c (flag_isoc94): New variable.
15743 2000-08-02  Jason Merrill  <jason@redhat.com>
15745         * pt.c (do_type_instantiation): Add complain parm; don't complain
15746         if called recursively.
15747         * cp-tree.h, parse.y: Adjust.
15749 2000-08-02  Zack Weinberg  <zack@wolery.cumb.org>
15751         * decl2.c: Silently ignore -Wstrict-prototypes; warn about
15752         -Wno-strict-prototypes.
15754         * g++spec.c: Adjust type of second argument to
15755         lang_specific_driver, and update code as necessary.
15757         * cp-tree.h: Don't prototype min_precision here.
15758         (my_friendly_assert): Cast expression to void.
15759         * semantics.c (do_poplevel): Initialize scope_stmts.
15761 2000-08-02  Mark Mitchell  <mark@codesourcery.com>
15763         * cp-tree.h (DECL_NEEDED_P): Tweak.
15765 2000-07-28  Jason Merrill  <jason@redhat.com>
15767         * lang-specs.h: Use %i in rule for .ii files.
15769 2000-07-31  Zack Weinberg  <zack@wolery.cumb.org>
15771         * lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
15773 2000-07-30  Mark Mitchell  <mark@codesourcery.com>
15775         Allow indirect primary bases.
15776         * cp-tree.h (struct lang_type): Remove vfield_parent.  Add
15777         primary_base.
15778         (CLASSTYPE_VFIELD_PARENT): Remove.
15779         (CLASSTYPE_PRIMARY_BINFO): Reimplement.
15780         (BINFO_PRIMARY_BINFO): Remove.
15781         (CLASSTYPE_HAS_PRIMARY_BASE_P): Reimplement.
15782         (BINFO_VBASE_PRIMARY_P): Likewise.
15783         (BINFO_PRIMARY_BASE_OF): New macro.
15784         (BINFO_INDIRECT_PRIMARY_P): Likewise.
15785         (get_primary_binfo): New function.
15786         * decl.c (lang_mark_tree): Make lang_type::primary_base.
15787         * class.c (vcall_offset_data_s): Rename to ...
15788         (vtbl_init_data_s): ... this.  Rename primary_p to primary_vtbl_p,
15789         and add ctor_vtbl_p.
15790         (get_derived_offset): Use get_primary_binfo.
15791         (dfs_mark_primary_bases): Adjust handling of virtual primary
15792         bases.
15793         (mark_primary_bases): Likewise.
15794         (set_primary_base): Take a binfo, not an integer, as a
15795         representation of the primary base.
15796         (indirect_primary_base_p): Remove.
15797         (determine_primary_base): Adjust for indirect primary bases.
15798         (dfs_find_final_overrider): Fix typo in coment.
15799         (update_vtable_entry_for_fn): Use get_primary_binfo.
15800         (layout_nonempty_base_or_field): Tweak.
15801         (build_base_fields): Adjust for new primary base semantics.
15802         (dfs_propagate_binfo_offsets): Remove.
15803         (propagate_binfo_offsets): Rewrite.
15804         (dfs_set_offset_for_shared_vbases): Remove.
15805         (layout_virtual_bases): Don't use it.
15806         (layout_class_type): Set CLASSTYPE_SIZE correctly under the new
15807         ABI.
15808         (finish_struct_1): Set CLASSTYPE_PRIMARY_BINFO, not
15809         CLASSTYPE_VFIELD_PARENT.
15810         (dfs_get_primary_binfo): New function.
15811         (get_primary_binfo): Likewise.
15812         (dump_class_hierarchy_r): Tweak printing of primary bases.
15813         (build_vtbl_initializer): Fix typo in comments.  Use
15814         vtbl_init_data.
15815         (build_vcall_and_vbase_vtbl_entries): Likewise.
15816         (build_vbaes_offset_vtbl_entries): Likewise.
15817         (dfs_build_vcall_offset_vtbl_entries): Adjust setting of
15818         BV_VCALL_INDEX to handle indirect primary bases.
15819         (build_vcall_offset_vtbl_entries): Use vtbl_init_data.
15820         (build_rtti_vtbl_entries): Likewise.
15821         * search.c (get_shared_vbase_if_not_primary): Tweak.
15822         (find_vbase_instance): Likewise.
15823         (binfo_for_vtable): Simplify.
15824         * tree.c (unshare_base_binfos): Clear BINFO_PRIMARY_BASE_OF.
15825         (make_binfo): Make it have 11 entries.
15827 2000-07-30  Alex Samuel  <samuel@codesourcery.com>
15829         * mangle.c (DECL_TEMPLATE_ID_P): Remove.
15830         (CLASSTYEP_TEMPLATE_ID_P): Check template info, and context when
15831         ascertaining primaryness.
15832         (G): Remove template_args.
15833         (decl_is_template_id): New function.
15834         (write_encoding): Use decl_is_template_id.
15835         (write_name): Likewise.  Handle type_decls.  Get main variant of
15836         type decls.
15837         (write_nested_name): Likewise.
15838         (write_prefix): Likewise.
15839         (write_template_prefix): Likewise.
15840         (write_special_name_constructor): Remove defunct production from
15841         comment.
15842         (write_bare_function_type): Remove comment about absent parameter.
15843         (write_template_template_arg): Add missing grammar production to
15844         comment.
15846 2000-07-27  Jason Merrill  <jason@redhat.com>
15848         * decl.c (duplicate_decls): If common_type produces a non-typedef
15849         type for a typedef, just use the old type.
15851 2000-07-27  Mark Mitchell  <mark@codesourcery.com>
15853         * cp-tree.h (function_depth): Declare.
15854         (verify_stmt_tree): Likewise.
15855         (find_tree): Likewise.
15856         * decl.c (function_depth): Give it external linkage.
15857         * optimize.c (optimize_function): Increment and decrement it.
15858         * tree.c (verify_stmt_tree_r): New function.
15859         (verify_stmt_tree): Likewise.
15860         (find_tree_r): Likewise.
15861         (find_tree): Likewise.
15863 2000-07-27  Jason Merrill  <jason@redhat.com>
15865         * pt.c (for_each_template_parm_r, case RECORD_TYPE): Use
15866         TYPE_PTRMEMFUNC_P.
15867         * cp-tree.h (TYPE_TEMPLATE_INFO): Check for TYPE_LANG_SPECIFIC.
15869 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
15871         * decl.c (start_cleanup_fn): Mark the function as `inline'.
15872         * decl2.c (get_guard): Call cp_finish_decl, not
15873         rest_of_decl_compilation, for local guards.
15874         * lex.c (do_identifier): Remove unused variable.
15876 2000-07-26      Marc Espie <espie@cvs.openbsd.org>
15878         * parse.y:  Add missing ';'.
15880 2000-07-26  Mark Mitchell  <mark@codesourcery.com>
15882         * parse.y (empty_parms): Use `()', not `(...)', when in the scope
15883         of `extern "C++"'.
15885 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
15887         Kill strict_prototype. Backwards compatibility only for
15888         non NO_IMPLICIT_EXTERN_C systems.
15889         * cp-tree.h (flag_strict_prototype): Remove.
15890         (strict_prototype): Remove.
15891         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
15892         * decl.c (maybe_push_to_top_level): Adjust.
15893         (pop_from_top_level): Adjust.
15894         (decls_match): Only allow sloppy parm matching for ancient
15895         system headers.
15896         (init_decl_processing): Adjust.
15897         (grokdeclarator): Adjust.
15898         * decl2.c (flag_strict_prototype): Remove.
15899         (strict_prototype): Remove.
15900         (strict_prototypes_lang_c, strict_prototypes_lang_cplusplus): Remove.
15901         (lang_f_options): Remove "strict-prototype".
15902         (unsupported-options): Add "strict-prototype".
15903         * lex.c (do_identifier): Adjust.
15904         (do_scoped_id): Adjust.
15905         * parse.y (empty_parms): Adjust.
15906         * class.c (push_lang_context): Adjust.
15907         (pop_lang_context): Adjust.
15908         * typeck.c (comp_target_parms): Adjust.
15910 2000-07-25  Nathan Sidwell  <nathan@codesourcery.com>
15912         * decl.c (poplevel): Deal with anonymous variables at for scope.
15913         (maybe_inject_for_scope_var): Likewise.
15915 2000-07-25  Zack Weinberg  <zack@wolery.cumb.org>
15917         * decl.c: Remove all signal handling code, now done in toplev.c.
15919 2000-07-23  Mark Mitchell  <mark@codesourcery.com>
15921         * decl.c (make_rtl_for_nonlocal_decl): Rework.
15923         * pt.c (lookup_template_class): Ensure that TYPE_CONTEXT is set
15924         correctly.
15926 2000-07-20  Zack Weinberg  <zack@wolery.cumb.org>
15928         * cp-tree.h: Use __FUNCTION__ not __PRETTY_FUNCTION__.
15929         Define my_friendly_assert and my_friendly_abort as macros
15930         which may call friendly_abort.  Prototype friendly abort, not
15931         my_friendly_abort or my_friendly_assert.
15932         * decl.c (signal_catch): Report the signal caught in the error
15933         message.  Call fatal directly.
15934         * typeck2.c (ack, my_friendly_assert): Delete.
15935         (my_friendly_abort): Rename to friendly_abort.  Expect file,
15936         line, and function parameters.  Report the abort code, then
15937         call fancy_abort.  Do not mask an abort if errors have
15938         already occurred.
15940 2000-07-18  Nathan Sidwell  <nathan@codesourcery.com>
15942         * typeck.c (comp_target_parms): Remove obsolete parameter.
15943         (comp_target_types): Adjust.
15945 2000-07-17  Jason Merrill  <jason@redhat.com>
15947         * typeck.c (mark_addressable): Never set TREE_USED.
15948         * call.c (build_call): Don't abort on calls to library functions
15949         that have been declared normally.
15951         * typeck.c (build_binary_op): Fix grammar in warning.
15953         * exception.cc (__eh_free): Fix prototype.
15955         * decl2.c (finish_decl_parsing): Handle TEMPLATE_ID_EXPR.
15957         * decl.c (pushdecl): Handle seeing an OVERLOAD in
15958         IDENTIFIER_NAMESPACE_VALUE.
15960 2000-07-16  Mark Mitchell  <mark@codesourcery.com>
15962         * cp-tree.h (THUNK_VCALL_OFFSET): Update documentation.
15963         * method.c (use_thunk): Correct handling of vcall offsets.
15965 2000-07-14  Zack Weinberg  <zack@wolery.cumb.org>
15967         * .cvsignore: parse.h and parse.c have no cp- prefix.
15969 2000-07-13  Mark Mitchell  <mark@codesourcery.com>
15971         * .cvsignore: New file.
15973 2000-07-13  Zack Weinberg  <zack@wolery.cumb.org>
15975         * lang-specs.h: Use the new named specs.  Remove unnecessary braces.
15977 2000-07-12  Mark Mitchell  <mark@codesourcery.com>
15979         * Makefile.in ($(PARSE_H)): Depend directly on parse.y.
15980         * parse.c: Remove.
15981         * parse.h: Likewise.
15983 2000-07-11  Mark Mitchell  <mark@codesourcery.com>
15985         * class.c (layout_class_type): Add pointers to virtual bases after
15986         base classes under the old ABI.
15988 2000-07-10  Benjamin Chelf  <chelf@codesourcery.com>
15990         * semantics.c (finish_for_stmt): Remove call to emit_line_note.
15991         (finish_continue_stmt): Likewise.
15992         (begin_for_stmt): Remove call to note_level_for_for.
15993         (finish_goto_stmt): Change call from build_min_nt
15994         to build_stmt.
15995         (finish_expr_stmt): Likewise.
15996         (begin_if_stmt): Likewise.
15997         (begin_while_stmt): Likewise.
15998         (finish_while_stmt): Likewise.
15999         (finish_return_stmt): Likewise.
16000         (begin_for_stmt): Likewise.
16001         (finish_for_stmt): Likewise.
16002         (finish_break_stmt): Likewise.
16003         (begin_switch_stmt): Likewise.
16004         (finish_case_label): Likewise.
16005         (genrtl_try_block): Likewise.
16006         (begin_try_block): Likewise.
16007         (begin_handler): Likewise.
16008         (begin_compound_stmt): Likewise.
16009         (finish_asm_stmt): Likewise.
16010         (finish_label_stmt): Likewise.
16011         (add_decl_stmt): Likewise.
16012         (finish_subobject): Likewise.
16013         (finish_decl_cleanup): Likewise.
16014         (finish_named_return_value): Likewise.
16015         (setup_vtbl_ptr): Likewise.
16016         (add_scope_stmt): Likewise.
16017         * decl.c (finish_constructor_body): Likewise.
16018         (finish_destructor_body): Likewise.
16019         * optimize.c (copy_body_r): Likewise.
16020         (initialize_inlined_parameters): Likewise.
16021         (declare_return_variable): Likewise.
16022         (expand_call_inline): Likewise.
16024 2000-07-10  Jakub Jelinek  <jakub@redhat.com>
16026         * semantics.c (expand_body): Sync interface information
16027         at the end of function body expansion.
16029 2000-07-09  Jason Merrill  <jason@redhat.com>
16031         * init.c (build_new_1): Bail early if the call to new fails.
16033         * decl.c (compute_array_index_type): Check specifically for
16034         an INTEGER_CST, not just TREE_CONSTANT.
16036         * decl.c (duplicate_decls): Don't call duplicate_decls on
16037         the DECL_TEMPLATE_RESULT.
16038         (decls_match): Return 0 if the DECL_TEMPLATE_RESULTs have different
16039         codes.
16041         * error.c (dump_template_bindings): Don't crash if we had an
16042         invalid argument list.
16044         * typeck.c (c_expand_start_case): Do narrowing here.
16045         * semantics.c (finish_switch_cond): Not here.
16047 2000-07-09  Hidvegi Zoli  <hzoli@austin.ibm.com>
16049         * parse.y (asm_clobbers): Do string concatenation.
16051 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
16053         * decl.c (pushtag): Don't put local classes in template functions
16054         on the local_classes list.
16056 2000-07-04  Scott Snyder  <snyder@fnal.gov>
16058         * decl2.c (get_guard): Add missing return for old ABI local
16059         variable case.
16061 2000-07-09  Mark Mitchell  <mark@codesourcery.com>
16063         * cp-tree.h (char_type_p): New function.
16064         * decl.c (init_decl_processing): Don't initialize
16065         signed_wchar_type_node or unsigned_wchar_type_node.
16066         (complete_array_type): Handle brace-enclosed string-constants.
16067         * rtti.c (emit_support_tinfos): Remove #if 0'd code.
16068         * tree.c (char_type_p): New function.
16069         * typeck2.c (digest_init): Use char_type_p.
16071 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
16073         * pt.c (tsubst): Don't layout type, if it's error_mark.
16075 2000-07-06  Nathan Sidwell  <nathan@codesourcery.com>
16077         * pt.c (instantiate_pending_templates): Reset template level.
16079 2000-07-05  Jason Merrill  <jason@redhat.com>
16081         * call.c (joust): Don't complain about `operator char *()' beating
16082         `operator const char *() const'.
16084 2000-07-04  scott snyder  <snyder@fnal.gov>
16085             Jason Merrill  <jason@redhat.com>
16087         * repo.c (repo_get_id): Handle the case where a class with virtual
16088         bases has a null TYPE_BINFO_VTABLE.
16090 2000-07-04  Kevin Buhr  <buhr@stat.wisc.edu>
16091             Jason Merrill  <jason@redhat.com>
16093         * parse.y (member_init): Just pass in the type.
16094         * init.c (expand_member_init): Handle getting a type.
16096 2000-07-04  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
16097             Jason Merrill  <jason@redhat.com>
16099         * decl.c (finish_function): Warn if a function has no return
16100         statement.
16101         Suggested by Andrew Koenig.
16102         * typeck.c (check_return_expr): Do set current_function_returns_value
16103         if we got an error_mark_node.
16105 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
16107         * decl2.c (push_decl_namespace): Push the original namespace.
16109 2000-07-03  Nathan Sidwell  <nathan@codesourcery.com>
16111         * pt.c (instantiate_class_template): Set CLASSTYPE_VBASECLASSES.
16112         * semantics.c (begin_class_definition): Clear it.
16114 2000-07-02  Benjamin Chelf  <chelf@codesourcery.com>
16116         * cp-tree.h (genrtl_goto_stmt): Remove declaration.
16117         (genrtl_expr_stmt): Likewise.
16118         (genrtl_decl_stmt): Likewise.
16119         (genrtl_if_stmt): Likewise.
16120         (genrtl_while_stmt): Likewise.
16121         (genrtl_do_stmt): Likewise.
16122         (genrtl_return_stmt): Likewise.
16123         (genrtl_for_stmt): Likewise.
16124         (genrtl_break_stmt): Likewise.
16125         (genrtl_continue_stmt): Likewise.
16126         (genrtl_scope_stmt): Likewise.
16127         (genrtl_switch_stmt): Likewise.
16128         (genrtl_case_label): Likewise.
16129         (genrtl_begin_compound_stmt): Likewise.
16130         (genrtl_finish_compound_stmt): Likewise.
16131         (genrtl_compound_stmt): Likewise.
16132         (genrtl_asm_stmt): Likewise.
16134         * init.c (begin_init_stmts): Remove call to
16135         genrtl_begin_compound_stmt.
16136         (finish_init_stmts): Remove call to genrtl_finish_compound_stmt.
16138         * semantics.c (lang_expand_stmt): Changed call to
16139         genrtl_compound_stmt to ignore return value.
16141 2000-07-02  Mark Mitchell  <mark@codesourcery.com>
16143         * mangle.c (canonicalize_for_substitution): Return the canonical
16144         variant of a type.
16146         * decl.c (duplicate_decls): Preserve DECL_ORIGINAL_TYPE for a
16147         TYPE_DECL.
16148         * typeck.c (commonparms): Remove obstack manipulations.
16150 2000-07-01  Benjamin Chelf  <chelf@codesourcery.com>
16152         * Make-lang.in (cc1plus$(exeext)): Added c-semantics.o.
16154         * Makefile.in (OBJS): Added ../c-semantics.o.
16155         (OBJDEPS): Likewise.
16157         * cp-tree.h (TREE_LANG_FLAG_?): Moved common documentation to
16158         ../c-common.h.
16159         (struct stmt_tree): Added comment.
16160         (current_function_name_declared): Removed.
16161         (stmts_are_full_exprs_p): Likewise.
16162         (genrtl_do_pushlevel): Likewise.
16163         (genrtl_clear_out_block): Likewise.
16164         (COMPOUND_STMT_NO_SCOPE): Moved to ../c-common.h.
16165         (DECL_ANON_UNION_ELEMS): Likewise.
16166         (emit_local_var): Likewise.
16167         (make_rtl_for_local_static): Likewise.
16168         (do_case): Likewise.
16169         (expand_stmt): Likewise.
16170         (genrtl_decl_cleanup): Likewise.
16171         (c_expand_asm_operands): Likewise.
16172         (c_expand_return): Likewise.
16173         (c_expand_start_case): Likewise.
16175         * decl.c (make_rtl_for_local_static): Moved to c-semantics.c.
16176         (emit_local_var): Likewise.
16177         (initialize_local_var): Change reference to
16178         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
16179         Change reference to stmts_are_full_exprs_p to
16180         current_stmt_tree->stmts_are_full_exprs_p.
16181         (push_cp_function_context): Likewise.
16183         * expect.c (expand_throw): Change reference to
16184         stmts_are_full_exprs_p.
16186         * init.c (build_aggr_init): Change reference to
16187         stmts_are_full_exprs_p.
16188         (build_vec_init): Likewise.
16190         * optimize.c (maybe_clone_body): Change reference to
16191         current_function_name_declared to
16192         cp_function_chain->name_declared.
16194         * pt.c (instantiate_decl): Change reference to
16195         current_function_name_declared to
16196         cp_function_chain->name_declared.
16198         * semantics.c (expand_cond): Moved declaration to c-common.h.
16199         (genrtl_do_pushlevel): Moved to c-semantics.c.
16200         (genrtl_clear_out_block): Likewise.
16201         (genrtl_goto_stmt): Likewise.
16202         (genrtl_expr_stmt): Likewise.
16203         (genrtl_decl_stmt): Likewise.
16204         (gerntl_if_stmt): Likewise.
16205         (genrtl_while_stmt): Likewise.
16206         (genrtl_do_stmt): Likewise.
16207         (genrtl_return_stmt): Likewise.
16208         (genrtl_for_stmt): Likewise.
16209         (genrtl_break_stmt): Likewise.
16210         (genrtl_continue_stmt): Likewise.
16211         (genrtl_scope_stmt): Likewise.
16212         (genrtl_switch_stmt): Likewise.
16213         (genrtl_case_label): Likewise.
16214         (genrtl_begin_compound_stmt): Likewise.
16215         (genrtl_finish_compound_stmt): Likewise.
16216         (genrtl_compound_stmt): Likewise.
16217         (genrtl_asm_stmt): Likewise.
16218         (genrtl_decl_cleanup): Likewise.
16219         (expand_cond): Likewise.
16220         (expand_stmt): Renamed to ...
16221         (lang_expand_stmt): ... this.
16222         (lang_expand_expr_stmt): Initialize.
16223         (set_current_function_name_declared): Likewise.
16224         (stmts_are_full_exprs_p): Likewise.
16225         (current_function_name_declared): Likewise.
16226         (anon_aggr_type_p): Likewise.
16227         (do_poplevel): Change reference to
16228         stmts_are_full_exprs_p to call to stmts_are_full_exprs_p().
16229         Change reference to stmts_are_full_exprs_p to
16230         current_stmt_tree->stmts_are_full_exprs_p.
16231         (add_tree): Likewise.
16232         (finish_expr_stmt): Likewise.
16233         (prep_stmt): Likewise.
16234         (lang_expand_stmt): Likewise.
16235         (begin_compound_stmt): Change reference to
16236         current_function_name_declared to
16237         cp_function_chain->name_declared and call to
16238         current_function_name_declared().
16239         (setup_vtbl_ptr): Likewise.
16240         (genrtl_do_poplevel): Removed.
16242 2000-06-30  Jason Merrill  <jason@redhat.com>
16244         * init.c (init_init_processing): Go back to aligning like
16245         double_type_node for old ABI.
16246         (get_cookie_size): Make cookie larger if we get a type that needs
16247         more alignment.
16248         (build_vec_delete): Call it.
16250         * typeck.c (qualify_type_recursive): New fn.
16251         (composite_pointer_type): Use it.
16252         (build_binary_op): Use composite_pointer_type.
16254 2000-06-24  Carlos O'Ryan  <coryan@cs.wustl.edu>
16255             Jason Merrill  <jason@redhat.com>
16257         * typeck.c (check_return_expr): Don't complain about returning
16258         NULL from operator new if -fcheck-new.
16259         * cp-tree.h: Declare flag_check_new here.
16260         * init.c: Not here.
16262 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
16264         * mangle.c (find_substitution): Use same_type_p.
16265         (write_encoding): Don't check for substitutions.
16267 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
16269         * parse.y (expr_no_comma_rangle): New non-terminal.
16270         (template_parm): Use it for default parameter case.
16271         (template_arg): Use it.
16272         (expr_no_commas): Remove commented out undefined extensions.
16273         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
16274         * parse.h, parse.c: Rebuilt.
16276 2000-06-30  Mark Mitchell  <mark@codesourcery.com>
16278         * semantics.c (genrtl_asm_stmt): Don't decay input operands here.
16279         (finish_asm_stmt): Do it here, instead.
16281         * cp-tree.h (ridpointers): Don't declare.
16282         * decl.c (record_builtin_type): Use CP_RID_MAX instead of RID_MAX.
16283         (record_builtin_java_type): Likewise.
16284         (init_decl_processing): Likewise.
16285         * lex.c: Move inclusion of lex.h.
16286         (ridpointers): Don't define.
16287         (init_parse): Initialize ripdointers.  Use CP_RID_MAX instead of
16288         RID_MAX.
16289         * lex.h (enum rid): Rename to ...
16290         (enum cp_rid): ... this.
16291         (ridpointers): Don't declare.
16292         * parse.y: Move inclusion of lex.h.
16293         * parse.c: Regenerated.
16294         * spew.c: Move inclusion of lex.h.
16296         * cp-tree.h (struct language_function): Remove temp_name_counter.
16297         (temp_name_counter): Remove.
16298         (get_temp_name): Change prototype.
16299         (get_guard): New function.
16300         (get_guard_cond): Likewise.
16301         (set_guard): Likewise.
16302         * cvt.c (build_up_reference): Adjust call to get_temp_name.
16303         * decl.c (expand_static_init): Use get_guard and friends to
16304         implement guard variables.
16305         * decl2.c (get_temp_name): Assume that the variables created are
16306         always static.
16307         (get_sentry): Rename to ...
16308         (get_guard): ... this.  Implement new ABI guard variables.
16309         (get_guard_bits): New function.
16310         (get_guard_cond): Likewise.
16311         (set_guard): Likewise.
16312         (start_static_initialization_or_destruction): Use them.
16313         (do_static_initialization): Replace sentry with guard throughout.
16314         (do_static_destruction): Likewise.
16315         * init.c (create_temporary_var): Add comment.
16317 2000-06-28  Alex Samuel  <samuel@codesourcery.com>
16319         * mangle.c (find_substitution): Use same_type_p.
16320         (write_encoding): Don't check for substitutions.
16322 2000-06-30  Nathan Sidwell  <nathan@codesourcery.com>
16324         * parse.y (expr_no_comma_rangle): New non-terminal.
16325         (template_parm): Use it for default parameter case.
16326         (template_arg): Use it.
16327         (expr_no_commas): Remove commented out undefined extensions.
16328         * Makefile.in (CONFLICTS): Adjust to 33 s/r & 48 r/r.
16329         * parse.h, parse.c: Rebuilt.
16331 2000-06-29  Mark Mitchell  <mark@codesourcery.com>
16333         * cp-tree.h (flag_const_strings): Remove.
16334         (warn_parentheses): Likewise.
16335         (warn_format): Likewise.
16336         (common_type): Likewise.
16337         (default_conversion): Likewise.
16338         (build_binary_op): Likewise.
16339         (cp_build_binary_op): New macro.
16340         * call.c (build_new_op): Use cp_build_binary_op instead of
16341         build_binary_op.
16342         * class.c (build_vtable_entry_ref): Likewise.
16343         * decl.c (expand_static_init): Likewise.
16344         (compute_array_index_type): Likewise.
16345         (build_enumerator): Likewise.
16346         * decl2.c (delete_sanity): Likewise.
16347         (start_static_initialization_or_destruction): Likewise.
16348         * error.c (dump_type_suffix): Likewise.
16349         * init.c (resolve_offset_ref): Likewise.
16350         (build_new): Likewise.
16351         (build_new_1): Likewise.
16352         (build_vec_delete_1): Likewise.
16353         (build_vec_init): Likewise.
16354         (build_delete): Likewise.
16355         * rtti.c (synthesize_tinfo_fn): Likewise.
16356         (synthesize_tinfo_var): Likewise.
16357         * search.c (expand_upcast_fixups): Likewise.
16358         (fixup_all_virtual_upcast_offsets): Likewise.
16359         * typeck.c (build_array_ref): Likewise.
16360         (get_member_function_from_ptrfunc): Likewise.
16361         (build_binary_op): Add parameter.
16362         (pointer_int_sum): Use cp_build_binary_op.
16363         (pointer_diff): Likewise.
16364         (build_modify_expr): Likewise.
16365         (get_delta_difference): Likewise.
16366         (build_ptrmemfunc): Likewise.
16368 2000-06-29  Nathan Sidwell  <nathan@codesourcery.com>
16370         * cp-tree.h (SET_DECL_ARTIFICIAL): Remove.
16371         * decl.c (create_implicit_typedef): Adjust.
16372         * decl2.c (build_artificial_parm): Adjust.
16373         * method.c (implicitly_declare_fn): Adjust.
16374         * pt.c (push_inline_template_parms_recursive): Adjust.
16375         (process_template_parm): Adjust.
16376         (overloaded_template_name): Adjust.
16377         * semantics.c (finish_template_template_parm): Adjust.
16379 2000-06-28  Mark Mitchell  <mark@codesourcery.com>
16381         * cp-tree.h (CLEAR_BINFO_NEW_VTABLE_MARKED): Remove.
16382         * class.c (update_vtable_entry_for_fn): Correct logic for deciding
16383         where to emit thunks.
16384         (build_vtt): Adjust call to build_vtt_inits.
16385         (build_vtt_inits): Add parameter to indicate whether or not
16386         sub-VTTs for virtual bases should be included.  Adjust handling of
16387         construction vtables.
16388         (get_matching_base): New function.
16389         (dfs_build_vtt_inits): Rename to ...
16390         (dfs_build_secondary_vptr_vtt_inits): Adjust handling of
16391         construction vtables.
16392         (dfs_fixup_binfo_vtbls): Likewise.
16393         (build_ctor_vtbl_groups): Build construction vtables for virtual
16394         bases, too.
16395         (accumulate_vtbl_inits): Tweak logic for deciding whether or not
16396         to build construction vtbls.
16397         (dfs_accumulate_vtbl_inits): Adjust handling of
16398         construction vtables.
16400         * pt.c (tsubst, case TEMPLATE_TEMPLATE_PARM): Handle cv-qualified
16401         types correctly.
16403 2000-06-27  Mark Mitchell  <mark@codesourcery.com>
16405         * decl.c (grokfndecl): Set DECL_CONTEXT for static functions too.
16407 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
16409         * search.c (hides): Remove.
16410         (is_subobject_of_p): Add most_derived parameter. Use
16411         CANONICAL_BINFO.
16412         (lookup_field_queue_p): Adjust.
16413         (lookup_field_r): Adjust.
16415 2000-06-26  Nathan Sidwell  <nathan@codesourcery.com>
16417         * decl2.c (handle_class_head): Bash typedefs to the type's main
16418         decl.
16420 2000-06-25  Mark Mitchell  <mark@codesourcery.com>
16422         * cp-tree.h (genrtl_begin_stmt_expr): Rename to ...
16423         (begin_global_stmt_expr): ... this.
16424         (genrtl_finish_stmt_expr): Rename to ...
16425         (finish_global_stmt_expr): ... this.
16426         * init.c (begin_init_stmts): Adjust calls.
16427         (finish_init_stmts): Likewise.
16428         * semantics.c (genrtl_begin_stmt_expr): Rename to ...
16429         (begin_global_stmt_expr): ... this.
16430         (genrtl_finish_stmt_expr): Rename to ...
16431         (finish_global_stmt_expr): ... this.
16433 2000-06-25 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
16435         * search.c (lookup_member): Fix typo in comment.
16437 2000-06-24  Jason Merrill  <jason@redhat.com>
16439         * decl.c (pushdecl): Don't set DECL_CONTEXT from current_namespace.
16440         (push_namespace): Set DECL_CONTEXT for a new NAMESPACE_DECL.
16442 2000-06-24  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
16444         * parse.y (complex_direct_notype_declarator): Support global_scope.
16445         * Makefile.in: Adjust conflict count.
16447 2000-06-23  Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
16449         * parse.y (template_arg): Convert TEMPLATE_DECL
16450         that is a template template parameter to
16451         TEMPLATE_TEMPLATE_PARM here.
16453         * cp-tree.def (TEMPLATE_TEMPLATE_PARM): Adjust comment.
16454         * cp-tree.h (TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL): New macro.
16455         (copy_template_template_parm): Adjust prototype.
16456         * decl.c (grokdeclarator): Remove dead code.
16457         * pt.c (process_template_parm): Tidy.
16458         (lookup_template_class): Construct nodes in
16459         copy_template_template_parm.
16460         (tsubst): Pass TEMPLATE_DECL rather than IDENTIFIER_NODE to
16461         lookup_template_class.  Use TYPE_TI_TEMPLATE.
16462         * tree.c (copy_template_template_parm): Add NEWARGS
16463         parameter.
16464         (mapcar): Adjust call to copy_template_template_parm.
16465         * typeck.c (comptypes): Use TEMPLATE_TEMPLATE_PARM_TEMPLATE_DECL.
16466         * method.c (build_template_template_parm_names): Change error
16467         code to avoid compilation warning.
16469         * gxxint.texi: Document template template parameter
16470         name mangling.
16472 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
16474         * Make-lang.in (CXX_LIB2FUNCS): Add cp-demangle.o and dyn-string.o.
16475         (CXX_LIB2SRCS): Add cp-demangle.c and dyn-string.c.
16476         (cp-demangle.o): New rule.
16477         (dyn-string.o): Likewise.
16478         * inc/cxxabi.h (__cxa_demangle): New declaration.
16480 2000-06-22  Mark Mitchell  <mark@codesourcery.com>
16482         * cp-tree.h (BV_USE_VCALL_INDEX_P): New macro.
16483         (BV_GENERATE_THUNK_WITH_VTABLE_P): Likewise.
16484         (lang_decl_flags): Add generate_with_vtable_p.  Make vcall_offset
16485         a tree, not an int.
16486         (THUNK_GENERATE_WITH_VTABLE_P): New macro.
16487         (make_thunk): Change prototype.
16488         (emit_thunk): Rename to use_thunk.
16489         (mangle_thunk): Change prototype.
16490         * class.c (get_derived_offset): Simplify.
16491         (copy_virtuals): Clear BV_USE_VCALL_INDEX_P and
16492         BV_GENERATE_THUNK_WITH_VTABLE_P.
16493         (build_primary_vtable): Simplify.
16494         (add_virtual_function): Use BV_FN, rather than TREE_VALUE.
16495         (dfs_find_base): Remove.
16496         (update_vtable_entry_for_fn): Correct bug in finding the base
16497         where a virtual function was first declared.  Figure out whether
16498         or not to emit a vcall-thunk with the vtables in which it appears.
16499         Correct logic for deciding whether to use an ordinary thunk, or a
16500         vcall thunk.
16501         (finish_struct_1): Remove unnecssary code.
16502         (build_vtbl_initializer): Use ssize_int for the running counter of
16503         negative indices.
16504         (build_vtbl_initializer): Only use vcall thunks where necessary.
16505         Mark thunks as needing to be emitted with their vtables, or not.
16506         (build_vbase_offset_vtbl_entries): Adjust for use of ssize_int in
16507         indices.  Use size_binop.
16508         (dfs_build_vcall_offset_vtbl_entries): Don't rely on
16509         BINFO_PRIMARY_MARKED_P here.  Use BV_FN consistently.  Use
16510         size_binop.
16511         (build_rtti_vtbl_entries): Adjust call to build_vtable_entry.
16512         (build_vtable_entry): Mark thunks as needing to be emitted with
16513         their vtables, or not.
16514         * decl.c (lang_mark_tree): Mark the vcall_offset in a thunk.
16515         * decl2.c (mark_vtable_entries): Use use_thunk instead of
16516         emit_thunk.
16517         * dump.c (dequeue_and_dump): Remove dead code.  Dump new thunk
16518         information.
16519         * error.c (dump_expr): Use BV_FN.
16520         * mangle.c (mangle_thunk): Adjust now that vcall_offset is a tree,
16521         not an int.
16522         * method.c (make_thunk): Likewise.
16523         (emit_thunk): Rename to use_thunk.  Allow callers to decide
16524         whether or not to actually emit the thunk.  Adjust for changes in
16525         representation of vcall offsets.
16526         * search.c (dfs_get_pure_virtuals): Use BV_FN.
16527         * semantics.c (emit_associated_thunks): New function.
16528         (expand_body): Use it.
16529         * ir.texi: Adjust decriptions of thunks.
16531 2000-06-22  Jason Merrill  <jason@redhat.com>
16533         * pt.c (tsubst_decl, case FUNCTION_DECL): Clear DECL_SAVED_TREE.
16534         (tsubst_friend_function): Copy it here.
16536         * decl.c (grok_op_properties): Fix typo.
16538         * decl2.c (delete_sanity): Clarify warning, avoid failure on
16539         deleting void*.
16541         * pt.c (check_explicit_specialization): Clarify error.
16543         * decl.c (pushdecl): Also pull out one of the FUNCTION_DECLs from
16544         an old OVERLOAD when we're declaring a non-function.
16545         (pushdecl, destroy_local_var): Check for error_mark_node.
16546         (warn_extern_redeclared_static): Also bail early if
16547         we're a CONST_DECL.
16548         (push_overloaded_decl): Ignore an old error_mark_node.
16550 2000-06-22  Nathan Sidwell  <nathan@codesourcery.com>
16552         * call.c (build_x_va_arg): Check if in a template decl.
16553         * pt.c (tsubst_copy, case VA_ARG_EXPR): Use build_x_va_arg.
16555 2000-06-20  Alexandre Petit-Bianco  <apbianco@cygnus.com>
16557         * class.c (push_lang_context): TYPE_NAME gets you to the Java
16558         types DECLs.
16559         * decl.c (check_goto): Computed gotos assumed OK.
16561 2000-06-20  Jason Merrill  <jason@redhat.com>
16563         * pt.c (tsubst_decl, case TYPE_DECL): Fix test for TYPE_DECLs
16564         for which we don't need to look for instantiations.
16566 2000-06-21  Nathan Sidwell  <nathan@codesourcery.com>
16568         * parse.y (program): Always call finish_translation_unit.
16569         * parse.c, parse.h: Rebuilt.
16571 2000-06-20  Zack Weinberg  <zack@wolery.cumb.org>
16573         * method.c: Don't include hard-reg-set.h.
16575 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
16577         * rtti.c (get_base_offset): Cope when vbase field is in a base.
16579 2000-06-20  Nathan Sidwell  <nathan@codesourcery.com>
16581         * call.c (build_conditional_expr): Use VOID_TYPE_P.
16582         * cvt.c (cp_convert_to_pointer): Likewise.
16583         (convert_to_void): Likewise.
16584         * error.c (dump_expr): Likewise.
16585         * except.c (complete_ptr_ref_or_void_ptr_p): Likewise.
16586         * init.c (build_delete): Likewise.
16587         * method.c (emit_thunk): Likewise.
16588         * optmize.c (declare_return_variable): Likewise.
16589         * rtti.c (get_tinfo_decl_dynamic): Likewise.
16590         (get_typeid): Likewise.
16591         (build_dynamic_cast_1): Likewise.
16592         * typeck.c (composite_pointer_type): Likewise.
16593         (common_type): Likewise.
16594         (build_indirect_ref): Likewise.
16595         (build_binary_op): Likewise.
16596         (build_x_compound_expr): Likewise.
16597         (check_return_expr): Likewise.
16598         * typeck2.c (add_exception_specifier): Likewise.
16600         * mangle.c (write_method_parms): Use direct comparison for end
16601         of parmlist.
16603 2000-06-19  Benjamin Chelf  <chelf@codesourcery.com>
16605         * cp-tree.h (genrtl_try_block): Declare function.
16606         (genrtl_handler): Likewise.
16607         (genrtl_catch_block): Likewise.
16608         (genrtl_ctor_stmt): Likewise.
16609         (genrtl_subobject): Likewise.
16610         (genrtl_decl_cleanup): Likewise.
16611         (genrtl_do_poplevel): Likewise.
16612         (genrtl_do_pushlevel): Likewise.
16613         (genrtl_clear_out_block): Likewise.
16614         (genrtl_goto_stmt): Likewise.
16615         (genrtl_expr_stmt): Likewise.
16616         (genrtl_decl_stmt): Likewise.
16617         (genrtl_if_stmt): Likewise.
16618         (genrtl_while_stmt): Likewise.
16619         (genrtl_do_stmt): Likewise.
16620         (genrtl_return_stmt): Likewise.
16621         (genrtl_for_stmt): Likewise.
16622         (genrtl_break_stmt): Likewise.
16623         (genrtl_continue_stmt): Likewise.
16624         (genrtl_scope_stmt): Likewise.
16625         (genrtl_switch_stmt): Likewise.
16626         (genrtl_case_label): Likewise.
16627         (genrtl_begin_compound_stmt): Likewise.
16628         (genrtl_finish_compound_stmt): Likewise.
16629         (genrtl_compound_stmt): Likewise.
16630         (genrtl_asm_stmt): Likewise.
16631         (genrtl_named_return_value): Likewise.
16632         (genrtl_begin_stmt_expr): Likewise.
16633         (genrtl_finish_stmt_expr): Likewise.
16634         (finish_for_stmt): Removed first argument.
16635         (finish_switch_stmt): Likewise.
16637         * semantics.c (genrtl_try_block): Define function.
16638         (genrtl_handler): Likewise.
16639         (genrtl_catch_block): Likewise.
16640         (genrtl_ctor_stmt): Likewise.
16641         (genrtl_subobject): Likewise.
16642         (genrtl_decl_cleanup): Likewise.
16643         (genrtl_do_poplevel): Likewise.
16644         (genrtl_do_pushlevel): Likewise.
16645         (genrtl_clear_out_block): Likewise.
16646         (genrtl_goto_stmt): Likewise.
16647         (genrtl_expr_stmt): Likewise.
16648         (genrtl_decl_stmt): Likewise.
16649         (genrtl_if_stmt): Likewise.
16650         (genrtl_while_stmt): Likewise.
16651         (genrtl_do_stmt): Likewise.
16652         (genrtl_return_stmt): Likewise.
16653         (genrtl_for_stmt): Likewise.
16654         (genrtl_break_stmt): Likewise.
16655         (genrtl_continue_stmt): Likewise.
16656         (genrtl_scope_stmt): Likewise.
16657         (genrtl_switch_stmt): Likewise.
16658         (genrtl_case_label): Likewise.
16659         (genrtl_begin_compound_stmt): Likewise.
16660         (genrtl_finish_compound_stmt): Likewise.
16661         (genrtl_compound_stmt): Likewise.
16662         (genrtl_asm_stmt): Likewise.
16663         (genrtl_named_return_value): Likewise.
16664         (genrtl_begin_stmt_expr): Likewise.
16665         (genrtl_finish_stmt_expr): Likewise.
16666         (finish_for_stmt): Removed first argument and generate rtl
16667         specific code.
16668         (finish_switch_stmt): Likewise.
16669         (do_poplevel): Removed generate rtl specific code.
16670         (do_pushlevel): Likewise.
16671         (add_tree): Likewise.
16672         (finish_goto_stmt): Likewise.
16673         (finish_expr_stmt): Likewise.
16674         (begin_if_stmt): Likewise.
16675         (finish_if_stmt_cond): Likewise.
16676         (finish_then_clause): Likewise.
16677         (begin_else_clause): Likewise.
16678         (finish_else_clause): Likewise.
16679         (finish_if_stmt): Likewise.
16680         (clear_out_block): Likewise.
16681         (begin_while_stmt): Likewise.
16682         (finish_while_stmt_cond): Likewise.
16683         (finish_while_stmt): Likewise.
16684         (begin_do_stmt): Likewise.
16685         (finish_do_body): Likewise.
16686         (finish_do_stmt): Likewise.
16687         (finish_return_stmt): Likewise.
16688         (begin_for_stmt): Likewise.
16689         (finish_for_init_stmt): Likewise.
16690         (finish_for_cond): Likewise.
16691         (finish_for_expr): Likewise.
16692         (finish_break_stmt): Likewise.
16693         (finish_continue_stmt): Likewise.
16694         (begin_switch_stmt): Likewise.
16695         (finish_switch_cond): Likewise.
16696         (finish_case_label): Likewise.
16697         (begin_try_block): Likewise.
16698         (begin_function_try_block): Likewise.
16699         (finish_try_block): Likewise.
16700         (finish_cleanup_try_block): Likewise.
16701         (finish_cleanup): Likewise.
16702         (finish_function_try_block): Likewise.
16703         (finish_handler_sequence): Likewise.
16704         (finish_function_handler_sequence): Likewise.
16705         (begin_handler): Likewise.
16706         (finish_handler_parms): Likewise.
16707         (begin_catch_block): Likewise.
16708         (finish_handler): Likewise.
16709         (begin_compound_stmt): Likewise.
16710         (finish_compound_stmt): Likewise.
16711         (finish_asm_stmt): Likewise.
16712         (finish_label_stmt): Likewise.
16713         (finish_label_decl): Likewise.
16714         (finish_subobject): Likewise.
16715         (finish_decl_cleanup): Likewise.
16716         (finish_named_return_value): Likewise.
16717         (begin_stmt_expr): Likewise.
16718         (finish_stmt_expr): Likewise.
16720         * decl.c (initialize_local_var): Changed call to finish_expr_stmt
16721         to call genrtl_expr_stmt when appropriate.
16723         * init.c (begin_init_stmts): Changed calls to begin_stmt_expr and
16724         begin_compound_expr to call genrtl_begin_stmt_expr and
16725         genrtl_begin_compound_expr when appropriate.
16726         (finish_init_stmts): Changed calls to finish_compound_expr and
16727         finish_stmt_expr to call genrtl_finish_compound_expr and
16728         genrtl_finish_stmt_expr when appropriate.
16729         (expand_default_init): Changed call to finish_expr_stmt to call
16730         genrtl_expr_stmt when appropriate.
16731         (build_vec_init): Likewise.
16733         * parse.y (simple_stmt): Removed first argument from call to
16734         finish_for_stmt. Removed first argument from call to
16735         finish_switch_stmt.
16737         * parse.c: Regenerated.
16739         * pt.c (tsubst_expr): Removed first argument from call to
16740         finish_for_stmt. Removed first argument from call to
16741         finish_switch_stmt.
16743 2000-06-16  Benjamin Chelf  <chelf@codesourcery.com>
16745         * cp-tree.h (enum cplus_tree_code): Changed __DUMMY to
16746         CP_DUMMY_TREE_CODE. Remove #include "c-common.def".
16748         * lex.c (cplus_tree_code_type[]): Removed #include "c-common.def".
16749         (cplus_tree_code_length[]): Likewise.
16750         (cplus_tree_code_name[]): Likewise.
16751         (init_parse): Added call to add_c_tree_codes. Changed
16752         LAST_AND_UNUSED_TREE_CODE to LAST_C_TREE_CODE.
16754 2000-06-16  Mark Mitchell  <mark@codesourcery.com>
16756         * cp-tree.h (finish_mem_initializers): Declare.
16757         (count_trees): Likewise.
16758         * parse.y (base_init): Use finish_mem_initializers.
16759         * semantics.c (finish_mem_initializers): New function.
16761         * tree.c (count_trees_r): Prototype.  Use DATA parameter to store
16762         the number of trees.
16763         (n_trees): Remove.
16764         (count_trees): Don't use it.
16766 2000-06-15  Jason Merrill  <jason@redhat.com>
16768         * tree.c (count_trees): New debugging function.
16770         * typeck.c (build_x_function_call): Use DECL_FUNCTION_TEMPLATE_P.
16771         * init.c (build_member_call): Pull out the name of a DECL.
16773         * Makefile.in (semantics.o, pt.o): Depend on TIMEVAR_H.
16774         * semantics.c (expand_body): Push to TV_INTEGRATION here.
16775         * optimize.c (optimize_function): Not here.
16776         * pt.c (instantiate_decl): Push to TV_PARSE.
16778 2000-06-15  Mark Mitchell  <mark@codesourcery.com>
16780         * cp-tree.h (struct language_function): Remove x_base_init_list
16781         and x_member_init_list.
16782         (current_base_init_list): Remove.
16783         (current_member_init_list): Likewise.
16784         (setup_vtbl_ptr): Change prototype.
16785         (emit_base_init): Likewise.
16786         (expand_member_init): Likewise.
16787         (reinit_parse_for_function): Remove.
16788         * decl.c (save_function_data): Don't clear x_base_init_list and
16789         x_member_init_list.
16790         (mark_language_function): Don't mark them.
16791         * init.c (perform_member_init): Tweak comment.
16792         (sort_member_init): Take the list of initializers as an argument.
16793         (sort_base_init): Likewise.
16794         (emit_base_init): Likewise.
16795         (expand_member_init): Return the initializer.  Don't use global
16796         variables.
16797         * lex.c (reinit_parse_for_function): Remove.
16798         * method.c (build_template_parm_names): Correct substitution.
16799         (do_build_copy_constructor): Don't use current_member_init_list
16800         and current_base_init_list.
16801         (synthesize_method): Likewise.
16802         * parse.y (base_init): Split mem-initializers into
16803         base-initializers and field-initializers.
16804         (member_init_list): Build up the list here.
16805         (member_init): Return the initializer.
16806         (fn.depfn): Don't use reinit_parse_for_function.
16807         * parse.c: Regenerated.
16808         * pt.c (convert_nontype_argument): Don't make an ADDR_EXPR of the
16809         ERROR_MARK.
16810         (tsubst_expr): Don't use current_member_init_list
16811         and current_base_init_list.
16812         (tsubst_expr_values): Rename to ...
16813         (tsubst_initializer_list): ... this.  Use convert_from_reference.
16814         * semantics.c (setup_vtbl_ptr): Don't use current_member_init_list
16815         and current_base_init_list.
16816         (begin_function_definition): Don't call reinit_parse_for_function.
16818         * dump.c (dequeue_and_dump): Use TREE_VEC_LENGTH with vectors.
16820         * error.c (dump_expr): Handle ADDR_EXPRs with REFERENCE_TYPE
16821         correctly.
16823         * cp-tree.h (DECL_PENDING_INLINE_P): Relax checking.
16825 2000-06-14  Benjamin Chelf  <chelf@codesourcery.com>
16827         * cp-tree.h (IF_COND): Move to c-common.h.
16828         (THEN_CLAUSE): Likewise.
16829         (ELSE_CLAUSE): Likewise.
16830         (WHILE_COND): Likewise.
16831         (WHILE_BODY): Likewise.
16832         (DO_COND): Likewise.
16833         (DO_BODY): Likewise.
16834         (RETURN_EXPR): Likewise.
16835         (EXPR_STMT_EXPR): Likewise.
16836         (FOR_INIT_STMT): Likewise.
16837         (FOR_COND): Likewise.
16838         (FOR_EXPR): Likewise.
16839         (FOR_BODY): Likewise.
16840         (SWITCH_COND): Likewise.
16841         (SWITCH_BODY): Likewise.
16842         (CASE_LOW): Likewise.
16843         (CASE_HIGH): Likewise.
16844         (GOTO_DESTINATION): Likewise.
16845         (COMPOUND_BODY): Likewise.
16846         (ASM_CV_QUAL): Likewise.
16847         (ASM_STRING): Likewise.
16848         (ASM_OUTPUTS): Likewise.
16849         (ASM_INPUTS): Likewise.
16850         (ASM_CLOBBERS): Likewise.
16851         (DECL_STMT_DECL): Likewise.
16852         (STMT_EXPR_STMT): Likewise.
16853         (LABEL_STMT_LABEL): Likewise.
16854         (SCOPE_BEGIN_P): Likewise.
16855         (SCOPE_END_P): Likewise.
16856         (SCOPE_STMT_BLOCK): Likewise.
16857         (SCOPE_NULLIFIED_P): Likewise.
16858         (SCOPE_NO_CLEANUPS_P): Likewise.
16859         (SCOPE_PARTIAL_P): Likewise.
16860         (ASM_VOLATILE_P): Likewise.
16861         (STMT_LINENO): Likewise.
16862         (STMT_LINENO_FOR_FN_P): Likewise.
16864         * cp-tree.def: Removed SRCLOC, SIZEOF_EXPR, ARROW_EXPR,
16865         ALIGNOF_EXPR, EXPR_STMT, COMPOUND_STMT, DECL_STMT, IF_STMT,
16866         FOR_STMT, WHILE_STMT, DO_STMT, RETURN_STMT, BREAK_STMT,
16867         CONTINUE_STMT, SWITCH_STMT, GOTO_STMT, LABEL_STMT, ASM_STMT,
16868         SCOPE_STMT, CASE_LABEL, STMT_EXPR.
16870         * Makefile.in (CXX_TREE_H): Added $(srcdir)/../c-common.def.
16872         * Make-lang.in (CXX_SRCS): Added $(srcdir)/c-common.def.
16873         (cc1plus$(exeext)): Added $(srcdir)/c-common.def.
16875         * lex.c (cplus_tree_code_type[]): Added '#include "c-common.def"'.
16876         (cplus_tree_code_length[]): Added '#include "c-common.def"'.
16877         (cplus_tree_code_name[]): Added '#include "c-common.def"'.
16879 2000-06-14  Mark Mitchell  <mark@codesourcery.com>
16881         * cp-tree.h (BINFO_OVERRIDE_ALONG_VIRTUAL_PATH): New macro.
16882         * class.c (dfs_find_final_overrider): Set it appropriately.
16883         (dfs_built_vtt_inits): Check BINFO_OVERRIDE_ALONG_VIRTUAL_PATH to
16884         avoid unneeded secondary vptrs.
16886 2000-06-13  Jakub Jelinek  <jakub@redhat.com>
16888         * class.c (build_secondary_vtable): Set DECL_USER_ALIGN.
16889         (check_bitfield_decl, check_field_decl): Likewise.
16890         (build_vtbl_or_vbase_field, build_base_field): Likewise.
16891         (layout_class_type): Set DECL_USER_ALIGN resp. CLASSTYPE_USER_ALIGN.
16892         * decl.c (record_unknown_type): Set TYPE_USER_ALIGN.
16893         (xfer_tag, finish_enum): Likewise.
16894         * decl2.c (finish_builtin_type): Likewise.
16895         * init.c (init_init_processing): Likewise.
16896         * pt.c (instantiate_class_template): Likewise.
16897         * rtti.c (get_tinfo_decl, synthesize_tinfo_fn): Set DECL_USER_ALIGN.
16898         * cp-tree.h (struct lang_type): Add user_align member.
16899         (CLASSTYPE_USER_ALIGN): Define.
16901 2000-06-13  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
16903         * Make-lang.in (c++.install-common): Install g++-cross in
16904         $(gcc_tooldir)/bin as g++ and c++; g++ in $(bindir) as
16905         $(target_alias)-g++ and $(target_alias)-c++.
16907 2000-06-12  Mark Mitchell  <mark@codesourcery.com>
16909         * class.c (vcall_offset_data_s): Add last_init and fns.
16910         (overrides): Rename to same_signature_p.
16911         (dfs_find_final_overrider): Adjust accordingly.
16912         (mark_overriders): Likewise.
16913         (warn_hidden): Likewise.
16914         (build_vtbl_initializer): Reorganize machinery for building things
16915         at negative offsets.
16916         (build_vcall_and_vbase_vtbl_entries): Likewise.
16917         (build_vbase_offset_vtbl_entries): Likewise.
16918         (dfs_build_vcall_offset_vtbl_entries): Correct order of vcall
16919         offset entries.  Do not create two entries for functions with the
16920         same signature.
16921         (build_vcall_offset_vtbl_entries): Initialize vod->fns.
16922         (build_rtti_vtbl_entries): Reorganize machinery for building things
16923         at negative offsets.
16925         * optimize.c (expand_call_inline): Don't recurse into the code
16926         used to initialize the parameters more than once.
16928 2000-06-11  Mark Mitchell <mark@codesourcery.com>
16930         * mangle.c (NESTED_TEMPLATE_MATCH): Fix typo in comment.
16931         (is_std_substitution): Don't check CLASSTYPE_USE_TEMPLATE here.
16932         (find_substitution): Only use the `Sa' substitution for
16933         std::allocator, not instantiations of it.
16934         (write_template_prefix): Move comment.  Only use a TREE_LIST to
16935         represent substitutions for a member template.
16936         (write_array_type): Mangle array dimensions correctly.
16937         * optimize.c (maybe_clone_body): Copy more information from the
16938         cloned function.
16939         * pt.c (regenerate_decl_from_template): Preserve DECL_USE_TEMPLATE
16940         on the regenerated declaration.
16942 2000-06-11  Chip Salzenberg  <chip@valinux.com>
16943             Mark Mitchell <mark@codesourcery.com>
16945         * class.c (build_vtable): Clarify comment.
16946         (build_ctor_vtbl_group): Pass the most derived type to
16947         build_vtable.
16949 2000-06-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16951         * decl2.c (compare_options): Don't needlessly cast away const-ness.
16953 2000-06-10  Mark Mitchell  <mark@codesourcery.com>
16955         * decl.c (add_binding): Handle duplicate declarations of external
16956         variables.
16958 2000-06-09  Chip Salzenberg  <chip@valinux.com>
16959             Mark Mitchell <mark@codesourcery.com>
16961         * mangle.c (write_number): Take an unsigned HOST_WIDE_INT as an
16962         argument.
16963         (write_signed_number): New macro.
16964         (write_unsigned_number): Likewise.
16965         (write_source_name): Use them.
16966         (write_number): Handle signed and unsigned values.
16967         (write_integer_cst): Use tree_int_cst_sgn, and use
16968         write_unsigned_number or write_signed_number as appropriate.
16969         (write_discriminator): Use write_unsigned_number or
16970         write_signed_number as appropriate.
16971         (write_template_arg_literal): Likewise.
16972         (write_array_type): Use tree_low_cst.
16973         (write_template_parm):  Use write_unsigned_number or
16974         write_signed_number as appropriate.
16975         (write_substitution): Adjust call to write_number.
16976         (write_type): Get the TYPE_MAIN_VARIANT before mangling it.
16977         (write_expression): Handle non-type template arguments of
16978         reference type correctly.
16979         (mangle_thunk): Use write_signed_number.
16981 2000-06-09  Chip Salzenberg  <chip@valinux.com>
16983         * mangle.c (find_substition): Don't mangle objects with typename
16984         substitutions (e.g. "cin" as "Si").
16986 2000-06-09  Zack Weinberg  <zack@wolery.cumb.org>
16988         * call.c (add_candidate): Use ggc_alloc_cleared.
16989         * decl.c (lookup_label): Likewise.
16990         * lex.c (retrofit_lang_decl): Likewise.
16992 2000-06-09  Jason Merrill  <jason@casey.soma.redhat.com>
16994         * semantics.c (expand_body): Push to TV_EXPAND.
16995         * optimize.c (optimize_function): Push to TV_INTEGRATION.
16996         * decl.c (start_function): Always call announce_function.
16998         * tinfo2.cc: Just declare abort.
17000 2000-06-09  Gabriel Dos Reis  <gdr@codesourcery.com>
17002         * lex.c (DEF_OPERATOR): Say `operator@' -not- `operator @'
17003         whenever @ is a symbolic name.
17005 2000-06-08  Jakub Jelinek  <jakub@redhat.com>
17007         * method.c (make_thunk): Clear DECL_VTT_PARM in thunk.
17009 2000-06-07  Mark Mitchell  <mark@codesourcery.com>
17011         * decl.c (pushdecl): Look up functions by DECL_NAME, not
17012         DECL_ASSEMBLER_NAME.
17014 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
17016         * decl2.c (c_language): Define.
17018 2000-06-06  Gabriel Dos Reis  <gdr@codesourcery.com>
17020         * lex.c (lang_init_options): Tweak.
17022         * decl2.c: Remove #inclusion of diagnostic.h
17023         (lang_decode_option): Move diagnostic formatting options to
17024         toplevel.
17026         * lang-options.h: Remove documentation for diagnostic options.
17028         * Makefile.in (lex.o): Depends upon diagnostic.h
17030 2000-06-06  Mark Mitchell  <mark@codesourcery.com>
17032         * decl.c (redeclaration_error_message): If two TEMPLATE_DECLs have
17033         the same DECL_RESULT, it's not a redefinition.
17034         * pt.c (tsubst_decl): Remove code to handle illegal
17035         specializations.
17037 2000-06-06  Nathan Sidwell  <nathan@codesourcery.com>
17039         * exception.cc: (__eh_alloc, __eh_free): Moved to libgcc2.c
17041 2000-06-05  Jason Merrill  <jason@casey.soma.redhat.com>
17043         * search.c (maybe_suppress_debug_info): Don't check
17044         CLASSTYPE_INTERFACE_ONLY if CLASSTYPE_INTERFACE_KNOWN isn't set.
17046         * pt.c (mark_decl_instantiated): Do SET_DECL_EXPLICIT_INSTANTIATION
17047         here if extern_p.
17049         Remember instantiation context in deferred instantiations.
17050         * cp-tree.h (struct tinst_level): Remove.
17051         (TINST_DECL, TINST_LINE, TINST_FILE): New macros.
17052         * pt.c (current_tinst_level): Now a tree.
17053         (print_template_context, push_tinst_level, pop_tinst_level,
17054         tinst_for_decl): Adjust.
17055         (reopen_tinst_level): New fn.
17056         (init_pt): Register current_tinst_level as a root.
17057         (add_pending_template): Put current_tinst_level in TREE_PURPOSE
17058         of the pending templates list.
17059         (instantiate_pending_templates): Adjust.  Call reopen_tinst_level.
17060         * lex.c (extract_interface_info): Adjust.
17061         * decl2.c (warn_if_unknown_interface): Adjust.
17063 2000-06-05  Mark Mitchell  <mark@codesourcery.com>
17065         * class.c (indirect_primary_base_p): New function.
17066         (determine_primary_base): Use it.
17068 2000-06-05  Nathan Sidwell  <nathan@codesourcery.com>
17070         Update new-abi dynamic cast algorithm.
17071         * tinfo.cc (__class_type_info::__dyncast_result): Add
17072         whole_details. Adjust constructor.
17073         (__vmi_class_type_info::__do_dyncast): Adjust for vmi_flags.
17074         Avoid unnecessary searching.
17075         (__dynamic_cast): Adjust for __dyncast_result::whole_details.
17077 2000-06-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17079         * decl.c (init_decl_processing): Don't call record_component_aliases.
17080         * tree.c (build_cplus_array_type_1): Likewise.
17082 2000-06-04  Mark Mitchell  <mark@codesourcery.com>
17084         * ir.texi: Correct typo.
17085         * mangle.c (write_expression): Handle non-type template arguments
17086         with reference type.
17087         * method.c (build_overload_value): Likewise.
17088         * pt.c (convert_nontype_argument): Explicitly represent conversion
17089         to a reference with an ADDR_EXPR.
17090         (unify): Always unify arguments in left-to-right order.
17092 2000-06-03  Alex Samuel    <samuel@codesourcery.com>
17093             Mark Mitchell  <mark@codesourcery.com>
17095         * Make-lang.in (CXX_SRCS): Add mangle.c.
17096         * Makefile.in (CXX_OBJS): Add mangle.o.
17097         (mangle.o): New rule.
17099         * class.c (local_classes): New variable.
17100         * class.c (get_vtable_name): Use mangle_vtable_for_type for new ABI.
17101         (get_vtt_name): Use mangle_vtt_name for new ABI.
17102         (init_class_processing): Initialize local_classes.
17103         (build_ctor_vtbl_group): Use mangle_ctor_vtbl_for_type for new ABI.
17104         * cp-tree.h (cp_tree_index): Add CPTI_STD_IDENTIFIER.
17105         (std_identifier): New macro.
17106         (DECL_VOLATILE_MEMFUNC_P): New macro.
17107         (DECL_NAMESPACE_STD_P): Likewise.
17108         (local_classes): Declare.
17109         (get_mostly_instantiated_function_type): Declare.
17110         (init_mangle): Declare.
17111         (mangle_decl): Likewise.
17112         (mangle_type_string): Likewise.
17113         (mangle_type): Likewise.
17114         (mangle_typeinfo_for_type): Likewise.
17115         (mangle_typeinfo_string_for_type): Likewise.
17116         (mangle_vtbl_for_type): Likewise.
17117         (mangle_vtt_for_type): Likewise.
17118         (mangle_ctor_vtbl_for_type): Likewise.
17119         (mangle_thunk): Likewise.
17120         (mangle_conv_op_name_for_type): Likewise.
17121         (mangle_guard_variable): Likewise.
17122         * decl.c (pushtag): Keep track of local classes.
17123         (initialize_predefined_identifiers): Initialize std_identifier.
17124         (init_decl_processing): Use std_identifier.
17125         (start_decl): Don't treat instantiations as specializations.
17126         (grokdeclarator): Likewise.
17127         (grokvardecl): Call mangle_decl for new ABI.  Only set mangled
17128         name for fully-instantiated templates.
17129         * decl2.c (grokclassfn): Use set_mangled_name_for_decl for
17130         destructors with the new ABI.
17131         (finish_static_data_member_decl): Use mangle_decl under the new ABI.
17132         (grokfield): Use mangle_type for new ABI.
17133         (grokoptypename): Use mangle_conv_op_for_type for new ABI.
17134         (get_sentry): Use mangle_guard_variable for new ABI.
17135         (start_static_initialization_or_destruction): Likewise.
17136         * expr.c (extract_aggr_init): Remove.
17137         (extract_scalar_init): Likewise.
17138         (extract_init): Remove #if 0'd code.
17139         * mangle.c: New function.
17140         * method.c (build_mangled_name): Assert not flag_new_abi.
17141         (build_static_name): Likewise.
17142         (build_decl_overload_real): Likewise.
17143         (build_typename_overload): Likewise.
17144         (build_overload_with_type): Likewise.
17145         (build_overload_name): Likewise.
17146         (get_ctor_vtbl_name): Likewise.
17147         (start_squangling): Likewise.
17148         (get_id_2): Likewise.
17149         (set_mangled_name_for_decl): Call mangle_decl for new ABI.
17150         (init_method): Call init_mangle for new ABI.
17151         (make_thunk): Call mangle_thunk for new ABI.
17152         * operators.def: Correct new ABI manglings for the `%' operator.
17153         Add `::' operator.
17154         * pt.c (build_template_decl): Copy DECL_OVERLOADED_OPERATOR_P and
17155         DECL_ASSIGNMENT_OPERATOR_P to the TEMPLATE_DECL.
17156         (lookup_template_class): Call mangle_decl for new ABI.
17157         (get_mostly_instantiated_function_type): New function.
17158         (set_mangled_name_for_template_decl): Use it.
17159         (tsubst_decl): Use set_mangled_name_for_decl for destructors with
17160         the new ABI.  Use mangle_conv_op_name_for_type for instantiated
17161         conversion op names.
17162         * rtti.c (tinfo_name): Call mangle_type_string for new ABI.
17163         (get_tinfo_decl): Call mangle_typeinfo_for_type for new ABI.
17164         (tinfo_base_init):  Likewise.  Mangle typeinfo string name with
17165         mangle_typeinfo_string_for_type.
17167 2000-06-03  Mark Mitchell  <mark@codesourcery.com>
17169         * cp-tree.h (TMPL_ARGS_LEVEL): Clarify comment.
17170         (INNERMOST_TEMPLATE_ARGS): New macro.
17171         (innermost_args): Remove.
17172         (get_innermost_template_args): New function.
17173         * decl2.c (arg_assoc_class): Use INNERMOST_TEMPLATE_ARGS.
17174         * error.c (dump_function_decl): Be caution when using
17175         most_general_template.
17176         * method.c (build_template_parm_names):  Use
17177         INNERMOST_TEMPLATE_ARGS.
17178         * pt.c (add_to_template_args): Tidy comment
17179         (get_innermost_template_args): New function.
17180         (check_explicit_specialization): Clear DECL_INITIAL for a new
17181         specialization.
17182         (process_partial_specialization): Use INNERMOST_TEMPLATE_ARGS.
17183         Tidy.
17184         (push_template_decl): Always register specializations of the most
17185         general template.
17186         (convert_template_argument): Use INNERMOST_TEMPLATE_ARGS.
17187         (coerce_template_parms): Likewise.
17188         (lookup_template_class): Likewise.
17189         (innermost_args): Remove.
17190         (tsubst_decl): Use INNERMOST_TEMPLATE_ARGS.
17191         (tsubst_decl): Handle tricky specializations.  Use
17192         get_innermost_template_args.
17193         (instantiate_template): Simplify handling of partial
17194         instantiations.
17195         (get_class_bindings): Use INNERMOST_TEMPLATE_ARGS.
17196         (most_general_template): Reimplement, in a more straightforward
17197         manner.
17198         (regenerate_decl_from_template): Tweak formatting.  Use
17199         TMPL_ARGS_DEPTH for clarity.
17200         (set_mangled_name_for_template_decl): Use INNERMOST_ARGS.
17202         * dump.c (dequeue_and_dump): Dump information about thunks.
17204 2000-06-01  Richard Henderson  <rth@cygnus.com>
17206         * decl.c (init_decl_processing): Set lang_get_alias_set first thing.
17208 2000-06-01  Richard Henderson  <rth@cygnus.com>
17210         * decl2.c (unsupported_options): Fix typo, make const.
17211         (lang_decode_option): Fix bsearch argument order.
17213 2000-06-01  Mark Mitchell  <mark@codesourcery.com>
17215         * init.c (resolve_offset_ref): Remove check for TREE_ADDRESSABLE
17216         on FIELD_DECLs.
17218 2000-05-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17220         * cp-tree.h (c_get_alias_set): Deleted.
17221         * Makefile.in (decl.o): Include ../expr.h.
17222         * decl.c (expr.h): Include.
17223         (init_decl_processing): Call record_component_aliases for arrays.
17224         (grokdeclarator): Likewise.
17225         Set TREE_ADDRESSABLE for fields that aren't bitfields.
17226         * tree.c (build_cplus_array_type_1): Call record_component_aliases.
17228 2000-05-31  Mark Mitchell  <mark@codesourcery.com>
17230         Remove guiding declaration support.
17231         * cp/cp-tree.h (flag_dump_translation_unit): Make it const.
17232         (flag_guiding_decls): Remove.
17233         * call.c (build_user_type_conversion_1): Remove support for
17234         guiding decls.
17235         (build_new_function_call): Likewise.
17236         (build_new_op): Likewise.
17237         (build_new_method_call): Likewise.
17238         * decl.c (start_function): Likewise.
17239         * friend.c (is_friend): Likewise.
17240         (do_friend): Likewise.
17241         * decl2.c ((flag_dump_translation_unit): Make it const.
17242         (flag_guiding_decls): Remove.
17243         (unsupported_options): New variable
17244         (compare_options): New function.
17245         (lang_decode_option): Use them.
17247         * decl.c (build_cp_library_fn): Set DECL_CONTEXT.
17249         * method.c (mangle_expression): Adjust test for legal expression
17250         operators.
17252         * pt.c (instantiate_decl): Save and restore the local
17253         specializations list.
17255 2000-05-30  Jason Merrill  <jason@decepticon.cygnus.com>
17257         * decl.c (grok_reference_init): Pass LOOKUP_ONLYCONVERTING.
17259 2000-05-30  Mark Mitchell  <mark@codesourcery.com>
17261         * call.c (add_template_candidate_real): Handle member template
17262         constructors for classes with virtual bases.
17263         (build_user_type_conversion_1): Use in_charge_arg_for_name.
17264         (build_new_method_call): Use DECL_NONSTATIC_MEMBER_FUNCTION_P.
17266         * ir.texi: Update thunk documentation.
17268         * call.c (joust): Fix handling of overloaded builtin operators.
17270 2000-05-30  Zack Weinberg  <zack@wolery.cumb.org>
17272         * cp-tree.h (DECL_ANTICIPATED): New macro.
17273         Document new use of DECL_LANG_FLAG_7.
17274         * decl.c (builtin_function): Set DECL_ANTICIPATED on builtins
17275         in the user namespace.
17276         * lex.c (do_identifier): If the identifier's declaration has
17277         DECL_ANTICIPATED on, it has not yet been declared.  But do not
17278         replace it with an ordinary implicit declaration.
17280         * tinfo2.cc: Include stdlib.h.
17282 2000-05-29  Mark Mitchell  <mark@codesourcery.com>
17284         * cp-tree.h (CLASSTYPE_ALIGN_UNIT): New macro.
17285         * class.c (layout_empty_base): Use CLASSTYPE_ALIGN_UNIT, not
17286         CLASSTYPE_ALIGN.
17288 2000-05-28  Gabriel Dos Reis  <gdr@codesourcery.com>
17290         * decl2.c (lang_decode_option): Use skip_leading_substring instead
17291         of plain strncmp.
17293 2000-05-28  Alexandre Oliva  <aoliva@cygnus.com>
17295         * operators.def (<?): Duplicated, should have been...
17296         (>?): this.  Fixed.
17298 2000-05-27  Alex Samuel    <samuel@codesourcery.com>
17299             Mark Mitchell  <mark@codesourcery.com>
17301         * cp-tree.h (ansi_opname): Make it a macro.
17302         (ansi_assopname): Likewise.
17303         (struct lang_decl_flags): Add assignment_operator_p.
17304         (struct lang_decl): Add operator_code.
17305         (DECL_VTT_PARM): Adjust.
17306         (DECL_OVERLOADED_OPERATOR_P): Return the operator_code for an
17307         overloaded operator.
17308         (SET_OVERLOADED_OPERATOR_CODE): New macro.
17309         (DECL_ASSIGNMENT_OPERATOR_P): New macro.
17310         (DECL_ARRAY_DELETE_OPERATOR_P): Adjust.
17311         (opname_tab): Remove.
17312         (assignop_tab): Likewise.
17313         (operator_name_info_t): New type.
17314         (operator_name_info): New variable.
17315         (assignment_operator_name_info): Likewise.
17316         (build_cp_library_fn): Remove declaration.
17317         (push_cp_library_fn): Likewise.
17318         (operator_name_string): Likewise.
17319         (build_decl_overload): Likewise.
17320         * call.c (print_z_candidates): Simplify.
17321         (build_object_call): Adjust usage of ansi_opname.  Use
17322         DECL_OVERLOADED_OPERATOR_P.
17323         (op_error): Adjust operator name lookup.
17324         (build_conditional_expr): Adjust usage of ansi_opname.
17325         (build_new_op): Likewise.
17326         (build_op_delete_call): Likewise.
17327         (build_over_call): Likewise.
17328         (joust): Use DECL_OVERLOADED_OPERATOR_P.
17329         * decl.c (duplicate_decls): Copy operator_code.
17330         (init_decl_processing): Adjust parameters to push_cp_library_fn.
17331         (builtin_function): Adjust parameters to build_library_fn_1.
17332         (build_library_fn_1): Accept an overloaded operator code.
17333         (build_library_fn): Pass ERROR_MARK.
17334         (build_cp_library_fn): Accept an overloaded operator code.
17335         (push_cp_library_fn): Likewise.
17336         (grokfndecl): Tweak.
17337         (grokdeclarator): Simplify code to compute names of overloaded
17338         operators.  Adjust use of ansi_opname.
17339         (ambi_op_p): Work on tree_codes, not identifiers.
17340         (unary_op_p): Likewise.
17341         (grok_op_properties): Likewise.
17342         (start_function): Use DECL_OVERLOADED_OPERATOR_P.
17343         (lang_mark_tree): Don't try to mark the operator_code.
17344         * decl2.c (grok_function_init): Use DECL_OVERLOADED_OPERATOR_P.
17345         * error.c (dump_decl): Remove special handling for operator
17346         names.
17347         (dump_function_name): Likewise.
17348         (dump_expr): Adjust name lookup of operators.
17349         (op_to_string): Simplify.
17350         (assop_to_string): Likewise.
17351         * init.c (build_new_1): Adjust use of ansi_opname.
17352         * lex.c (opname_tab): Remove.
17353         (assignop_tab): Likewise.
17354         (ansi_opname): Likewise.
17355         (ansi_assopname): Likewise.
17356         (operator_name_string): Likewise.
17357         (reinit_lang_specific): Likewise.
17358         (operator_name_info): New variable.
17359         (assignment_operator_name_info): Likewise.
17360         (init_operators): New function.
17361         (init_parse): Use it.
17362         (do_identifier): Adjust use of ansi_opname.
17363         * method.c (mangle_expression): Don't use ansi_opname for
17364         mangling.
17365         (build_decl_overload_real): Use DECL_OVERLOADED_OPERATOR_P.
17366         (build_decl_overload): Remove.
17367         (build_typename_overload): Use OPERATOR_TYPENAME_FORMAT directly.
17368         (do_build_assign_ref): Adjust use of ansi_opname.
17369         (synthesize_method): Likewise.
17370         (implicitly_declare_fn): Likewise.
17371         * operators.def: New file.
17372         * parse.y (operator): Adjust use of ansi_opname.
17373         * pt.c (tsubst_decl): Use IDENTIFIER_OPNAME_P.
17374         (set_mangled_name_for_template_decl): Don't play games with
17375         current_namespace.
17376         (special_function_p): Adjust use of ansi_opname.
17377         * typeck.c (check_return_expr): Likewise.
17378         * Make-lang.in (cc1plus): Depend on operators.def.
17379         * Makefile.in (lex.o): Likewise.
17380         (decl.o): Likewise.
17382 2000-05-27  Zack Weinberg  <zack@wolery.cumb.org>
17384         * Make-lang.in (cplib2.ready): Eradicate.
17386 2000-05-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17388         * method.c (mangle_expression): Use TREE_CODE_LENGTH.
17389         * tree.c (break_out_calls, build_min_nt): Use TREE_CODE_LENGTH.
17390         (built_min, cp_tree_equal): Likewise.
17392 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
17394         * class.c (layout_nonempty_base_or_field): Replace
17395         `record_layout_info' with `record_layout_info_s'.
17397 2000-05-26  Jason Merrill  <jason@casey.soma.redhat.com>
17399         Fix goto checking.
17400         * cp-tree.h (struct language_function): x_named_labels is now
17401         a struct named_label_list*.
17402         * decl.c (struct named_label_use_list): Renamed from...
17403         (struct named_label_list): ...this.  New struct.
17404         (push_binding_level): Don't set eh_region.
17405         (note_level_for_eh): New fn.
17406         (pop_label): Take label and old value directly.
17407         (pop_labels): Adjust for new named_labels format.
17408         (lookup_label): Likewise.
17409         (poplevel): Note characteristics of a binding level containing a
17410         named label.  Mess with named label lists earlier.
17411         (mark_named_label_lists): New fn.
17412         (mark_lang_function): Call it.
17413         (use_label): New fn, split out from...
17414         (make_label_decl): ...here.  Don't call it.
17415         (decl_jump_unsafe, check_previous_goto, check_previous_goto_1,
17416         check_previous_gotos): New fns, split out from...
17417         (define_label): ...here.
17418         (check_switch_goto): New fn.
17419         (define_case_label): Call it.
17420         (check_goto): New fn.
17421         * semantics.c (finish_goto_stmt): Call it and use_label.
17422         (begin_compound_stmt): If we're a try block, call note_level_for_eh.
17423         (expand_stmt): Never pass 1 as DONT_JUMP_IN to expand_end_bindings.
17425 2000-05-26  Mark Mitchell  <mark@codesourcery.com>
17427         * class.c (build_vtable_entry_ref): Correct usage of
17428         get_vtbl_decl_for_binfo.
17430         * decl2.c (grokclassfn): Set DECL_LANGUAGE here.
17431         * method.c (implicitly_declare_fn): Not here.
17433 2000-05-26  Nathan Sidwell  <nathan@codesourcery.com>
17435         * cp-tree.h (CPTI_PTMD_DESC_TYPE): Rename to ...
17436         (CPTI_PTMD_DESC_TYPE): ... here.
17437         (ptmd_desc_type_node): Rename to ...
17438         (ptm_desc_type_node): ... here.
17439         * decl.c: Likewise.
17440         * rtti.c (ptmd_initializer): Rename to ...
17441         (ptm_initializer): ... here.
17442         (sythesize_tinfo_var): Adjust. Deal with pointer to member
17443         function.
17444         (create_tinfo_types): Adjust.
17446 2000-05-25  Mark Mitchell  <mark@codesourcery.com>
17448         Finish implementation of VTTs.
17449         * cp-tree.h (cp_tree_index): Add CPTI_VTT_PARM_TYPE and
17450         CPTI_VTT_PARM_IDENTIFIER.
17451         (vtt_parm_identifier): New macro.
17452         (vtt_parm_type): Likewise.
17453         (BINFO_SUBVTT_INDEX): Likewise.
17454         (BINFO_VPTR_INDEX): Likewise.
17455         (struct lang_decl): Add vtt_parm.
17456         (DECL_VTT_PARM): New macro.
17457         (DECL_USE_VTT_PARM): Likewise.
17458         (DECL_NEEDS_VTT_PARM_P): Likewise.
17459         (get_vtt_name): Declare.
17460         (build_artificial_parm): Likewise.
17461         (fixup_all_virtual_upcast_offsets): Likewise.
17462         (expand_indirect_vtbls_init): Remove.
17463         * call.c (build_new_method_call): Pass the vtt to subobject
17464         constructors and destructors.
17465         * class.c (get_vtt_name): Give it external linkage.
17466         (build_clone): Handle the magic VTT parameters for clones.
17467         (clone_function_decl): Fix typo in comment.
17468         (build_vtt): Keep track of the indices in the VTTs where various
17469         entities are stored.
17470         (build_vtt_inits): Likewise.
17471         (dfs_build_vtt_inits): Likewise.
17472         (build_ctor_vtbl_group): Tweak type of construction vtables.
17473         (dfs_accumulate_vtbl_inits): Build vtables for all bases, even
17474         primary bases, when building construction vtables.
17475         * decl.c (duplicate_decls): Handle DECL_VTT_PARM.
17476         (initialize_predefined_identifiers): Add vtt_parm_identifier.
17477         (init_decl_processing): Initialize vtt_parm_type.
17478         (grokfndecl): Use DECL_OVERLOADED_OPERATOR_P.
17479         (lang_mark_tree): Make vtt_parm.
17480         * decl2.c (build_artificial_parm): New function.
17481         (maybe_retrofit_in_chrg): Use it.  Add VTT parameters.
17482         (grokclassfn): Use build_artificial_parm.
17483         * init.c (initialize_vtbl_ptrs): Call
17484         fixup_all_virtual_upcast_offsets directly.
17485         (perform_member_init): Use the complete subobject destructor for
17486         member cleanups.
17487         (build_vtbl_address): New function.
17488         (expand_virtual_init): Handle VTTs.
17489         * optimize (maybe_clone_body): Likewise.
17490         * search.c (fixup_all_virtual_upcast_offsets): Give it external
17491         linkage.
17492         (expand_indirect_vtbls_init): Remove.
17493         * semantics.c (setup_vtbl_ptr): Fix typos in comment.
17494         * tree.c (make_binfo): Make them bigger.
17496 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
17498         * inc/cxxabi.h (__pbase_type_info): Define, based on
17499         __pointer_type_info.
17500         (__pointer_type_info): Derive from __pbase_type_info. Adjust.
17501         (__pointer_to_member_type_info): Likewise.
17502         * tinfo2.cc (__pbase_type_info::~__pbase_type_info): Implement.
17503         (__pointer_to_member_type_info::__is_pointer_p): Remove.
17504         (__pointer_type_info::__do_catch): Rename to ...
17505         (__pbase_type_info::__do_catch): ... here. Adjust.
17506         (__pbase_type_info::__pointer_catch): Implement.
17507         (__pointer_type_info::__pointer_catch): Adjust.
17508         (__pointer_to_member_type_info::__pointer_catch): Adjust.
17510 2000-05-25  Nathan Sidwell  <nathan@codesourcery.com>
17512         * tinfo.h (__user_type_info::contained_virtual_p): New
17513         predicate.
17514         * tinfo.cc (__user_type_info::do_upcast): Fix bug with diamond
17515         shaped hierarchy.
17516         (__vmi_class_type_info::__do_upcast): Fix bug with NULL pointer to
17517         diamond shaped hierarchy. Add early out for mixed diamond and
17518         duplicate shaped hierarchy.
17520 2000-05-24  Mark Mitchell  <mark@codesourcery.com>
17522         * cp-tree.h (build_delete): Change prototype.
17523         (build_vec_delete): Likewise.
17524         * call.c (build_scoped_method_call): Use special_function_kind
17525         values to indicate the kind of destruction to be done.
17526         (build_method_call): Likewise.
17527         * decl.c (finish_destructor_body): Likewise.
17528         (maybe_build_cleanup_1): Likewise.  Rename to ...
17529         (maybe_build_cleanup): ... this.
17530         * decl2.c (delete_sanity): Use special_function_kind
17531         values to indicate the kind of destruction to be done.
17532         (build_cleanup): Likewise.
17533         * init.c (perform_member_init): Likewise.
17534         (build_vec_delete_1): Likewise.
17535         (build_dtor_call): Simplify.
17536         (build_delete): Use special_function_kind
17537         values to indicate the kind of destruction to be done.
17538         (build_vbase_delete): Likewise.
17539         (build_vec_delete): Likewise.
17541         * init.c (sort_member_init): Fix typo in error message generation
17542         code.
17544 2000-05-15  Donald Lindsay  <dlindsay@cygnus.com>
17546         * semantics.c (begin_class_definition): make the packed
17547         attribute be sensitive to the "-fpack-struct" command line flag
17549 2000-05-24  Nathan Sidwell  <nathan@codesourcery.com>
17551         Update new-abi upcast algorithm.
17552         * inc/cxxabi.h (__class_type_info::__do_upcast): Change
17553         prototype and meaning of return value.
17554         (__si_class_type_info::__do_upcast): Likewise.
17555         (__vmi_class_type_info::__do_upcast): Likewise.
17556         * tinfo.cc (__class_type_info::__upcast_result): Replace
17557         whole2dst with part2dst. Adjust ctor.
17558         (__class_type_info::__do_upcast): Adjust call of worker function.
17559         (__class_type_info::__do_upcast): Adjust.
17560         (__si_class_type_info::__do_upcast): Adjust. Use parent's
17561         __do_upcast.
17562         (__vmi_class_type_info::__do_upcast): Likewise. Fix private
17563         virtual base in diamond hierarchy bug.
17565 2000-05-23  Mark Mitchell  <mark@codesourcery.com>
17567         * cp-tree.h (lang_decl_flags): Rename mutable_flag to uninlinable
17568         and bitfield to tinfo_fn_p.
17569         (DECL_TINFO_FN_P): Adjust.
17570         (SET_DECL_TINFO_FN_P): Likewise.
17571         (DECL_MUTABLE_P): Likewise.
17572         (DECL_C_BIT_FIELD): Likewise.
17573         (SET_DECL_C_BIT_FIELD): Likewise.
17574         (CLEAR_DECL_C_BIT_FIELD): Likewise.
17575         (DECL_UNINLINABLE): Likewise.
17576         * class.c (alter_access): Call retrofit_lang_decl if ncessary.
17577         (handle_using_decl): Remove assertion.
17578         (build_vtbl_or_vbase_field): Use build_decl, not build_lang_decl,
17579         to build FIELD_DECLs.
17580         (build_base_field): Likewise.
17581         (layout_class_type): Likewise.
17582         * decl.c (init_decl_processing): Likewise.
17583         (build_ptrmemfunc_type): Likewise.
17584         (grokdeclarator): Likewise.
17585         * decl2.c (grok_x_components): Likewise.
17586         * except.c (call_eh_info): Likewise.
17587         * init.c (init_init_processing): Likewise.
17588         * rtti.c (expand_class_desc): Likewise.
17589         (create_pseudo_type_info): Likewise.
17590         (get_vmi_pseudo_type_info): Likewise.
17591         (create_tinfo_types): Likewise.
17592         * ptree.c (print_lang_decl): Adjust.
17593         * typeck.c (build_component_ref): Don't check DECL_LANG_SPECIFIC
17594         before checking DECL_MUTABLE_P.
17596         * decl2.c (maybe_retrofit_in_chrg): Don't create in-charge
17597         parameters for template functions.
17598         * pt.c (tsubst_decl): Make sure we call maybe_retrofit_in_chrg for
17599         destructors as well as constructors.
17601 2000-05-22  Mark Mitchell  <mark@codesourcery.com>
17603         * class.c (build_ctor_vtbl_group): Set inits.
17604         * optimize.c (maybe_clone_body): Set DECL_INLINE and
17605         DECL_THIS_INLINE appropriately for clones.
17607         * cp-tree.h (IDENTIFIER_TYPENAME_P): Use a flag, not strncmp.
17608         (DECL_CONV_FN_P): Simplify.
17609         (DECL_OPERATOR): Remove.
17610         (language_to_string): Declare.
17611         * decl.c (duplicate_decls): Fix typo in comment.
17612         (grokdeclarator): Adjust use of IDENTIFIER_TYPENAME_P.
17613         (grok_op_properties): Use DECL_CONV_FN_P instead of
17614         IDENTIFIER_TYPENAME_P.
17615         * dump.c (dequeue_and_dump): Dump the language linkage of
17616         declarations.
17617         * error.c (language_to_string): Give it external linkage.
17618         * method.c (build_typename_overload): Set IDENTIFIER_TYPENAME_P.
17619         (implicitly_declare_fn): Set DECL_LANGUAGE.
17620         * pt.c (check_explicit_specialization): Use DECL_CONV_FN_P, not
17621         IDENTIFIER_TYPENAME_P.
17622         (tsubst_decl): Likewise.
17623         (tsubst_copy): Adjust use of IDENTIFIER_TYPENAME_P.
17624         * semantics.c (finish_member_declaration): Don't mark members of
17625         classes declared in an extern "C" region as extern "C".
17627 2000-05-22  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
17629         * decl2.c (qualified_lookup_using_namespace): Look through
17630         namespace aliases.
17632         * decl.c (push_using_decl): Return the old decl on namespace level.
17634 2000-05-21  Mark Mitchell  <mark@codesourcery.com>
17636         * cp-tree.h (SET_BINFO_NEW_VTABLE_MARKED): Add sanity checks.
17637         (VTT_NAME_PREFIX): New macro.
17638         (CTOR_VTBL_NAME_PREFIX): Likewise.
17639         (get_ctor_vtbl_name): New function.
17640         * class.c (get_vtable_name): Simplify.
17641         (get_vtt_name): New function.
17642         (get_vtable_decl): Don't set IDENTIFIER_GLOBAL_VALUE.
17643         (dfs_mark_primary_bases): Update the CLASSTYPE_VBASECLASSES list
17644         when a virtual base becomes primary.
17645         (finish_struct_1): Set CLASSTYPE_VFIELDS a little earlier.  Build
17646         VTTs.
17647         (finish_vtbls): Adjust calls to accumulate_vtbl_inits to pass in
17648         additional parameters.
17649         (dfs_finish_vtbls): Don't clear BINFO_NEW_VTABLE_MARKED.
17650         (initialize_array): New function.
17651         (build_vtt): Likewise.
17652         (build_vtt_inits): Likewise.
17653         (dfs_build_vtt_inits): Likewise.
17654         (dfs_fixup_binfo_vtbls): Likewise.
17655         (build_ctor_vtbl_group): Likewise.
17656         (initialize_vtable): Use initialize_array.
17657         (accumulate_vtbl_inits): Reimplement to handle construction
17658         vtables.
17659         (dfs_accumulate_vtbl_inits): Likewise.
17660         (bulid_vtbl_initializer): Adjust parameter name.
17661         * method.c (build_typename_overload): Remove #if 0'd code.
17662         (get_ctor_vtbl_name): New function.
17663         * search.c (dfs_walk_real): Use BINFO_N_BASETYPES.
17664         (init_vbase_pointers): Don't mess with the TREE_CHAIN of a binfo.
17666         * cp-tree.h (struct lang_type): Remove search_slot.
17667         (CLASSTYPE_SEARCH_SLOT): Remove.
17668         (emit_base_init): Change prototype.
17669         (initialize_vtbl_ptrs): Likewise.
17670         (expand_indirect_vtbls_init): Likewise.
17671         (clear_search_slots): Remove.
17672         * decl.c (lang_mark_tree): Don't mark search_slot.
17673         * init.c (initialize_vtbl_ptrs): Simplify.
17674         (emit_base_init): Likewise.
17675         * search.c (struct vbase_info): Document decl_ptr.
17676         (convert_pointer_to_single_level): Remove.
17677         (dfs_find_vbases): Remove.
17678         (dfs_init_base_pointers): Simplify.
17679         (dfs_clear_vbase_slots): Remove.
17680         (dfs_vtable_path_unmark): New function.
17681         (init_vbase_pointers): Simplify.
17682         (expand_upcast_fixups): Don't rely on CLASSTYPE_SEARCH_SLOT.
17683         (expand_indirect_vtbls_init): Simplify.  Don't call
17684         mark_all_temps_used.
17685         * semantics.c (setup_vtbl_ptr): Adjust calls to emit_base_init and
17686         initialize_vtbl_ptrs.
17688 2000-05-20  Zack Weinberg  <zack@wolery.cumb.org>
17690         * except.c: Add static prototypes.
17692 2000-05-20  H.J. Lu  <hjl@gnu.org>
17694         * Make-lang.in (cplib2.ready): Also depend on cc1plus$(exeext).
17696 2000-05-19  Mark Mitchell  <mark@codesourcery.com>
17698         Don't create a separate copy of virtual bases for the
17699         CLASSTYPE_VBASECLASSES list.
17700         * cp-tree.h (CLASSTYPE_VBASECLASSES): Change documentation.
17701         (BINFO_FOR_VBASE): Remove.
17702         (CANONICAL_BINFO): Adjust.
17703         (binfo_for_vbase): New function.
17704         * class.c (build_vbase_pointer_fields): Use binfo_for_vbase
17705         instead of BINFO_FOR_VBASE.
17706         (build_vbase_pointer): Likewise.
17707         (build_secondary_vtable): Likewise.
17708         (dfs_mark_primary_bases): Likewise.
17709         (mark_primary_bases): Likewise.
17710         (layout_nonempty_base_or_field): Likewise.
17711         (dfs_set_offset_for_shared_vbases): Likewise.
17712         (dfs_set_offset_for_unshared_vbases): Likewise.
17713         (layout_virtual_bases): Likewise.  Adjust for changes to the
17714         CLASSTYPE_VBASECLASSES list.
17715         (dump_class_hierarchy_r): Use binfo_for_vbase
17716         instead of BINFO_FOR_VBASE.
17717         (dump_class_hierarchy): Likewise.
17718         (finish_vtbls): Likewise.
17719         (build_vtbl_initializer): Adjust for changes to the
17720         CLASSTYPE_VBASECLASSES list.
17721         (build_vbase_offset_vtbl_entries): Use binfo_for_vbase.
17722         * decl.c (finish_destructor_body): Adjust for changes to the
17723         CLASSTYPE_VBASECLASSES list.
17724         * init.c (sort_base_init): Use binfo_for_vbase.
17725         (construct_virtual_bases): Adjust for changes to the
17726         CLASSTYPE_VBASECLASSES list.
17727         (expand_member_init): Use binfo_for_vbase.
17728         (build_vbase_delete):  Adjust for changes to the
17729         CLASSTYPE_VBASECLASSES list.
17730         * method.c (do_build_copy_constructor): Likewise.
17731         * rtti.c (get_base_offset): Use binfo_for_vbase.
17732         (expand_class_desc): Remove #if 0'd code.
17733         * search.c (struct vbase_info): Remove vbase_types.
17734         (get_base_distance):  Use binfo_for_vbase.
17735         (lookup_field_queue_p): Use CANONICAL_BINFO.
17736         (get_shared_vbase_if_not_primary): Use binfo_for_vbase.
17737         (get_pure_virtuals): Adjust for changes to the
17738         CLASSTYPE_VBASECLASSES list.
17739         (dfs_find_vbases): Use binfo_for_vbase.
17740         (dfs_init_vbase_pointers): Likewise.
17741         (init_vbase_pointers): Don't initialize vi.vbase_types.
17742         (virtual_context): Use binfo_for_vbase.
17743         (fixup_all_virtual_upcast_offsets): Adjust for changes to the
17744         CLASSTYPE_VBASECLASSES list.
17745         (expand_indirect_vtbls_init): Simplify.
17746         (dfs_get_vbase_types): Don't replicate virtual bases.
17747         (find_vbase_instance): Use binfo_for_vbase.
17748         (binfo_for_vbase): New function.
17749         * typeck.c (get_delta_difference): Use binfo_for_vbase.
17751 2000-05-17  Mark Mitchell  <mark@codesourcery.com>
17753         * decl2.c (finish_anon_union): Generalize error messages to handle
17754         anonymous structures.
17755         * init.c (perform_member_init): Remove `name' parameter.
17756         (build_field_list): New function.
17757         (sort_member_init): Handle anonymous union initialization order
17758         correctly.  Check for multiple initializations of the same union.
17759         (emit_base_init): Don't look up fields by name here.
17760         (expand_member_init): Record the result of name lookup for future
17761         reference.
17762         * typeck.c (build_component_ref): Fix formatting.
17764 2000-05-17  Andrew Cagney  <cagney@b1.cygnus.com>
17766         * decl.c (pop_label): Replace warn_unused with warn_unused_label.
17767         * typeck.c (build_x_compound_expr): Replace warn_unused with
17768         warn_unused_value.
17770         * decl2.c (lang_decode_option): Update -Wall unused flags by
17771         calling set_Wunused.
17773 2000-05-16  Mark Mitchell  <mark@codesourcery.com>
17775         * cp-treeh (BINFO_NEW_VTABLE_MARKED): Update documentation.
17776         * init.c (dfs_vtable_path_unmark): Remove.
17777         * search.c (marked_new_vtable_p): Likewise.
17778         (unmarked_new_vtable_p): Likewise.
17779         (dfs_search_slot_nonempty_p): Likewise.
17780         (dfs_mark): Likewise.
17781         (dfs_vtable_path_unmark): Likewise.
17782         (dfs_find_vbases): Don't set BINFO_NEW_VTABLE_MARKED.
17783         (dfs_int_vbase_pointers): Don't clear BINFO_VTABLE_PATH_MARKED.
17784         (dfs_init_vbase_pointers): Remove special-case new ABI code.
17785         (dfs_clear_vbase_slots): Don't clear BINFO_NEW_VTABLE_MARKED.
17786         (init_vbase_pointers): Simplify.
17787         (expand_indirect_vtbls_init): Likewise.
17789         * class.c (copy_virtuals): New function.
17790         (build_primary_table): Use it.
17791         (build_secondary_vtable): Likewise.
17792         (modify_vtable_entry): Use NULL_TREE, not integer_zero_node, to
17793         indicate that no vcall offset is required.
17794         (add_virtual_function): Likewise.
17795         (modify_all_vtables): Likewise.
17796         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
17797         (dfs_accumulate_vtbl_inits): Likewise.
17798         (build_vtbl_initializer): Make changes to handle construction
17799         vtables.
17800         (dfs_build_vcall_offset_vtbl_entries): Likewise.
17801         (build_rtti_vtbl_entries): Likewise.
17802         (build_vtable_entries): Handle a NULL vcall_index.
17804 2000-05-15  Gabriel Dos Reis  <gdr@codesourcery.com>
17806         * decl2.c (lang_decode_option): Fix thinko.
17808 2000-05-14  Jason Merrill  <jason@casey.cygnus.com>
17810         * except.c (check_handlers): New fn.
17811         * cp-tree.h: Declare it.
17812         * semantics.c (finish_handler_sequence): Call it.
17813         (finish_function_handler_sequence): Likewise.
17814         (finish_handler_parms): Set TREE_TYPE on the handler.
17815         * cp-tree.h (PUBLICLY_UNIQUELY_DERIVED_P): New macro.
17816         * search.c (get_base_distance_recursive): If protect>1, ignore
17817         special access.
17818         (get_base_distance): Don't reduce watch_access.
17820 2000-05-13  Gabriel Dos Reis <gdr@codesourcery.com>
17822         * lex.c: #include diagnostic.h.
17823         (lang_init_options): Set default prefixing rules.
17825         * lang-options.h: Add -fdiagnostics-show-location=.
17827         * decl2.c: #include diagnostic.h.
17828         (lang_decode_option): Handle -fdiagnostics-show-location=.
17830 2000-05-12  Nathan Sidwell  <nathan@codesourcery.com>
17832         * tinfo.cc: Revert my 2000-05-08 and 2000-05-07 changes.
17833         * vec.cc: Revert my 2000-05-07 change.
17835 2000-05-11  Jason Merrill  <jason@casey.cygnus.com>
17837         * class.c (check_field_decls): Complain about non-static data
17838         members with same name as class in class with constructor.
17840 2000-05-10  Jason Merrill  <jason@casey.cygnus.com>
17842         * decl.c (grokdeclarator): Allow non-static data members with
17843         same name as class.
17845 2000-05-09  Zack Weinberg  <zack@wolery.cumb.org>
17847         * cp-tree.h: Constify tree_srcloc.filename, tinst_level.file,
17848         and pending_inline.filename.  Update prototypes.
17849         * decl.c (define_label): Constify filename parameter.
17850         * decl2.c (warn_if_unknown_interface): Constify local char *.
17851         * input.c Constify input_source.filename. Don't declare
17852         input_filename or lineno.  Constify filename parameter to feed_input.
17853         * lex.c (init_parse): Constify parameter and return value.
17854         (cp_pragma_interface, cp_pragma_implementation): Constify
17855         filename argument.
17856         (reinit_parse_for_method, reinit_parse_for_block,
17857         reinit_parse_for_expr, feed_defarg, handle_cp_pragma):
17858         Constify local char *.
17859         * pt.c: Don't declare lineno or input_filename.
17860         (print_template_context, tsubst_friend_function, tsubst_decl,
17861         tsubst, instantiate_decl): Constify local char *.
17862         * semantics.c (expand_body): Constify local char *.
17863         * tree.c (build_srcloc): Constify filename parameter.
17864         * typeck.c (c_expand_asm_operands): Constify filename
17865         parameter.
17867 2000-05-08  Nathan Sidwell  <nathan@codesourcery.com>
17869         * tinfo.cc (__dynamic_cast): Use a reinterpret_cast. Fix
17870         offsetof expansion.
17872 2000-05-08  Branko Cibej  <branko.cibej@hermes.si>
17874         * inc/cxxabi.h:  Fix typos in comment.
17875         (__base_class_info::__offset): Use a static_cast.
17877 2000-05-07  Nathan Sidwell  <nathan@codesourcery.com>
17879         * inc/cxxabi.h: Use __SIZE_TYPE_ and __PTRDIFF_TYPE__ in place
17880         of std::size_t and std::ptrdiff_t respectively.
17881         * tinfo.cc: Likewise.
17882         * vec.cc: Likewise.
17884 2000-05-06  Richard Henderson  <rth@cygnus.com>
17886         * typeck.c (build_c_cast): Don't warn integer->pointer size
17887         mismatch for constants.
17889 2000-05-06  Nathan Sidwell  <nathan@codesourcery.com>
17891         * rtti.c (ptmd_initializer): Set non-public, if class is
17892         incomplete.
17894         * inc/cxxabi.h (__dynamic_cast): Explicitly say extern "C++".
17895         (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
17896         __cxa_vec_delete): Likewise.
17897         * tinfo.cc (__dynamic_cast): Likewise.
17898         * vec.cc (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
17899         __cxa_vec_delete): Likewise.
17901 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
17903         * cp-tree.h (DELTA_FROM_VTABLE_ENTRY): Remove.
17904         (SET_FNADDR_FROM_VTABLE_ENTRY): Likewise.
17905         (lang_decl_flags): Add vcall_offset.
17906         (THUNK_VCALL_OFFSET): Use it.
17907         * decl.c (lang_mark_tree): Don't mark DECL_ACCESS for a thunk.
17908         * method.c (make_thunk): Create the lang_decl here, not in
17909         emit_thunk.
17910         (emit_thunk): Make generic thunks into ordinary functions once
17911         they have been fed to expand_body.
17912         * semantics.c (expand_body): Set current_function_is_thunk here.
17914 2000-05-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
17916         * class.c (update_vtable_entry_for_fn): Prototype.
17918         * pt.c (tsubst_decl): Initialize variables `argvec', `gen_tmpl'
17919         and `tmpl'.
17921         * search.c (dfs_build_inheritance_graph_order): Prototype.
17923 2000-05-04  Mark Mitchell  <mark@codesourcery.com>
17925         * cp-tree.h (special_function_kind): Add various kinds of
17926         destructors.
17927         (special_function_p): New function.
17928         * class.c (overrides): Don't let one kind of destructor override
17929         another.
17930         * decl2.c (mark_used): Use DECL_NON_THUNK_FUNCTION_P when deciding
17931         whether or not to instantiate a template.
17932         * tree.c (special_function_p): Define.
17934 2000-05-03  Mark Mitchell  <mark@codesourcery.com>
17936         * cp-tree.def (THUNK_DECL): Remove.
17937         * cp-tree.h (DECL_THUNK_P): New macro.
17938         (DECL_NON_THUNK_FUNCTION_P): Likewise.
17939         (DECL_EXTERN_C_FUNCTION_P): Likewise.
17940         (SET_DECL_THUNK_P): Likewise.
17941         (DELTA_FROM_VTABLE_ENTRY): Use DECL_THUNK_P.
17942         (FNADDR_FROM_VTABLE_ENTRY): Likewise.
17943         (DECL_MAIN_P): Use DECL_EXTERN_C_FUNCTION_P.
17944         * decl.c (decls_match): Use DECL_EXTERN_C_P.
17945         (duplicate_decls): Likewise.
17946         (pushdecl): Likewise.  Adjust thunk handling.
17947         (grokfndecl): Use DECL_EXTERN_C_P.
17948         * decl2.c (mark_vtable_entries): Use DECL_THUNK_P.
17949         * dump.c (dequeue_and_dump): Remove THUNK_DECL handling.
17950         * except.c (nothrow_libfn_p): Use DECL_EXTERN_C_P.
17951         * expr.c (cplus_expand_expr): Remove THUNK_DECL handling.
17952         * method.c (make_thunk): Use SET_DECL_THUNK_P.  Set
17953         DECL_NO_STATIC_CHAIN.
17954         (emit_thunk): Don't play games with TREE_CODE on thunks.  Don't
17955         set DECL_DESTRUCTOR_P or DECL_CONSTRUCTOR_P on a thunk.
17956         * search.c (covariant_return_p): Remove THUNK_DECL handling.
17957         * ir.texi: Update.
17959 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
17961         * tree.c (walk_tree): Set lineno.
17963 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
17965         * exception.cc: Update license notice.
17966         * new.cc: Likewise.
17967         * new1.cc: Likewise.
17968         * new2.cc: Likewise.
17969         * tinfo.cc: Likewise.
17970         * tinfo2.cc: Likewise.
17971         * vec.cc: Likewise.
17972         * inc/cxxabi.h: Likewise.
17973         * inc/exception: Likewise.
17974         * inc/new: Likewise.
17975         * inc/new.h: Likewise.
17976         * inc/typeinfo: Likewise.
17978 2000-05-01  Jason Merrill  <jason@casey.cygnus.com>
17980         * tree.c (build_target_expr_with_type): If we already have a
17981         TARGET_EXPR, just return it.
17983         * optimize.c (initialize_inlined_parameters): Don't generate an
17984         EXPR_STMT if we can just use DECL_INITIAL.
17985         * decl.c (emit_local_var): Only make the initialization a
17986         full-expression if stmts_are_full_exprs_p.
17988 2000-05-01  Mark Mitchell  <mark@codesourcery.com>
17990         * cp-tree.h (same_type_ignoring_top_level_qualifiers_p): New
17991         macro.
17992         * call.c (standard_conversion): Use it.
17993         (direct_reference_binding): Likewise.
17994         (build_over_call): Likewise.
17995         (is_properly_derived_from): Likewise.
17996         (compare_ics): Likewise.
17997         * class.c (resolves_to_fixed_type_p): Likewise.
17998         * optimize.c (declare_return_variable): Likewise.
17999         * pt.c (is_specialization_of): Likewise.
18000         (unify): Likewise.
18001         * typeck.c (comp_target_parms): Likeiwse.
18002         (build_static_cast): Likewise.
18003         (build_reinterpret_cast): Likewise.
18004         (build_const_cast): Likewise.
18005         (comp_ptr_ttypes_real): Likewise.
18006         (comp_ptr_ttypes_const): Likewise.
18007         * typeck2.c (process_init_constructor): Likewise.
18009 2000-04-30  Scott Snyder <snyder@fnal.gov>
18011         * decl.c (finish_destructor_body): Use the base destructor when
18012         destroying virtual bases.
18014 2000-04-30  Mark Mitchell  <mark@codesourcery.com>
18016         * expr.c (cplus_expand_expr): Preserve temporaries when expanding
18017         STMT_EXPRs.
18018         * optimize.c (struct inline_data): Add target_exprs field.
18019         (declare_return_variable): When a function returns an aggregate,
18020         use the variable declared in the TARGET_EXPR as the remapped
18021         DECL_RESULT.
18022         (expand_call_inline): Update the pending target_exprs stack.
18023         (optimize_function): Initialize the stack.
18025         * decl2.c (finish_file): Fix typo in comment.
18027         * method.c (emit_thunk): Don't try to return a `void' value.
18029         * optimize.c (initialize_inlined_parameters): If the parameter is
18030         addressable, we need to make a new VAR_DECL, even if the
18031         initializer is constant.
18033 2000-04-28  Cosmin Truta  <cosmint@cs.ubbcluj.ro>
18035         * decl.c (grok_op_properties): Add an extra check of argtypes.
18037 2000-04-27  Mark Mitchell  <mark@codesourcery.com>
18039         * optimize.c (copy_body_r): Use STRIP_TYPE_NOPS when copying
18040         variables.
18041         (initialize_inlined_parameters): Try to avoid creating new
18042         VAR_DECLs.
18044 2000-04-27  Alex Samuel  <samuel@codesourcery.com>
18046         * lex.c (my_get_run_time): Remove.
18047         (init_filename_times): Use get_run_time instead of my_get_run_time.
18048         (check_newline): Likewise.
18049         (dump_time_statistics): Likewise.
18050         * decl2.c (finish_file): Push and pop timevar TV_VARCONST instead
18051         of computing elapsed time explicitly.
18053 2000-04-26  Mark Mitchell  <mark@codesourcery.com>
18055         * cp-tree.h (TREE_READONLY_DECL_P): Use DECL_P.
18056         * init.c (decl_constant_value): Check TREE_READONLY_DECL_P.
18057         * call.c (convert_like_real): Don't test TREE_READONLY_DECL_P
18058         before calling decl_constant_value.
18059         * class.c (check_bitfield_decl): Likewise.
18060         * cvt.c (ocp_convert): Likewise.
18061         (convert): Likewise.
18062         * decl.c (compute_array_index_type): Likewise.
18063         (build_enumerator): Likewise.
18064         * decl2.c (check_cp_case_value): Likewise.
18065         * pt.c (convert_nontype_argument): Likewise.
18066         (tsubst): Likewise.
18067         * typeck.c (decay_conversion): Likewise.
18068         (build_compound_expr): Likewise.
18069         (build_reinterpret_cast): Likewise.
18070         (build_c_cast): Likewise.
18071         (convert_for_assignment): Likewise.
18073 2000-04-26  Jason Merrill  <jason@casey.cygnus.com>
18075         * decl.c (finish_function): Don't play games with DECL_INLINE.
18077 2000-04-25  Gabriel Dos Reis  <dosreis@cmla.ens-cachan.fr>
18079         * ir.texi: Correct typo.
18081 2000-04-25  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
18083         * decl.c (grokdeclarator): Reject VLAs as members.
18085 2000-04-24  Gabriel Dos Reis  <gdr@codesourcery.com>
18087         * call.c (standard_conversion): Accept conversion between
18088         COMPLEX_TYPEs.
18090         * cvt.c (ocp_convert): Handle conversion to COMPLEX_TYPE.
18092 2000-04-24  Zack Weinberg  <zack@wolery.cumb.org>
18094         * decl2.c (finish_file): Remove double setup for accounting
18095         compile time.
18097 2000-04-24  Robert Lipe <robertlipe@usa.net>
18099         * cp-tree.h (lang_type): Member `language' now ENUM_BITFIELD.
18101 2000-04-23  Benjamin Kosnik  <bkoz@cygnus.com>
18103         * new.cc (set_new_handler): Needs to be in std::.
18105 2000-04-23  Mark Mitchell  <mark@codesourcery.com>
18107         * cp-tree.h (lang_decl): Remove pretty_function_p.
18108         (DECL_PRETTY_FUNCTION_P): Use TREE_LANG_FLAG_0, not a bit in the
18109         language-specific node.
18110         * decl.c (cp_make_fname_decl): Use build_decl, not
18111         build_lang_decl, to build the variables.
18112         (grokvardecl): Don't call build_lang_decl for local variables in
18113         templates.
18114         (grokdeclarator): Don't call build_lang_decl for local type
18115         declarations in templates.
18116         * lex.c (retrofit_lang_decl): Use ggc_alloc_obj to allocated
18117         zero'd memory, rather than calling memset.
18118         * pt.c: Include hashtab.h.
18119         (local_specializations): New variable.
18120         (retrieve_local_specialization): Use it.
18121         (register_local_specialization): Likewise.
18122         (tsubst_decl): Don't assume local variables have
18123         DECL_LANG_SPECIFIC.
18124         (instantiate_decl): Set up local_specializations.
18125         * Makefile.in (HTAB_H): New variable.
18127 2000-04-23  Richard Henderson  <rth@cygnus.com>
18129         * typeck.c (c_expand_asm_operands): Restore the original
18130         contents of the output list.
18132 2000-04-22  Gabriel Dos Reis <gdr@codesourcery.com>
18134         * ir.texi:  Document complex number representation.
18136 2000-04-20  Nathan Sidwell  <nathan@codesourcery.com>
18138         * rtti.c (init_rtti_processing): Set tinfo_var_id in new-abi.
18139         (target_incomplete_p): New function.
18140         (tinfo_base_init): Create comdat NTBS name variable.
18141         (ptr_initializer): Add non_public parameter. Calculate it.
18142         (ptmd_initializer): Likewise.
18143         (synthesize_tinfo_var): Adjust. Emit incomplete class tinfo.
18144         (create_real_tinfo_var): Add non_public parameter. Use it.
18145         Push proxy into global namespace.
18146         * inc/cxxabi.h (__pointer_type_info::incomplete_class_mask):
18147         New enumeration.
18148         * inc/typeinfo (type_info::before, type_info::operator==):
18149         Compare __name addresses.
18151         * tinfo2.cc: Remove new-abi builtins comment.
18153 2000-04-20  Jason Merrill  <jason@casey.cygnus.com>
18155         * typeck.c (build_x_function_call): Resolve an OFFSET_REF.
18157         * call.c (joust): Exit early if we get the same function, too.
18159         * decl2.c (key_method): Return NULL_TREE for template classes.
18160         (import_export_class): Don't need to check for template classes.
18162 2000-04-18  Zack Weinberg  <zack@wolery.cumb.org>
18164         * lex.c: Remove references to cccp.c.
18166 2000-04-18  Mark Mitchell  <mark@codesourcery.com>
18168         * cp-tree.h (lang_decl_flags): Remove const_memfunc and
18169         volatile_memfunc.  Add destructor_attr.  Adjust dummy.
18170         (DECL_DESTRUCTOR_P): Use destructor_attr.
18171         (DECL_CONST_MEMFUNC_P): Reimplement.
18172         (DECL_VOLATILE_MEMFUNC_P): Remove.
18173         * class.c (finish_struct_methods): Use CLASSTYPE_DESTRUCTORS.
18174         (overrides): Use DECL_DESTRUCTOR_P.
18175         (check_for_override): Likewise.
18176         * decl.c (start_function): Likewise.
18177         * decl2.c (grokfclassfn): Likewise.
18178         (check_classfn): Likewise.
18179         (grok_function_init): Likewise.
18181 2000-04-17  Mark Mitchell  <mark@codesourcery.com>
18183         * decl2.c (grokfield): Issue error on illegal data member
18184         declaration.
18186 2000-04-17  Mark P Mitchell  <mark@codesourcery.com>
18188         * method.c (make_thunk): Set DECL_CONTEXT for a THUNK_DECL.
18190 2000-04-16  Mark Mitchell  <mark@codesourcery.com>
18192         * class.c (build_vtable_entry): Don't build thunks for type-info
18193         functions.
18195 2000-04-16  Jason Merrill  <jason@casey.cygnus.com>
18197         * decl.c (decls_match): Allow a redeclaration of a builtin to
18198         specify args while the builtin did not.
18200 2000-04-15  Mark Mitchell  <mark@codesourcery.com>
18202         * cp-tree.def (THUNK_DECL): Add to documentation.
18203         * cp-tree.h (flag_huge_objects): Declare.
18204         * class.c (modify_vtable_entry): Tidy.
18205         (update_vtable_entry_for_fn): Split out from dfs_modify_vtables.
18206         Calculate delta appropriately for the new ABI.
18207         (dfs_modify_vtables): Use it.
18208         (modify_all_vtables): Fix thinko in code to add overriding copies
18209         of functions to primary vtables.
18210         (build_clone): Fix typo in comment.
18211         (clone_function_decl): Correct order of destructors in vtable.
18212         (build_vbase_offset_vtbl_entries): Adjust comment.
18213         (dfs_vcall_offset_queue_p): Remove.
18214         (dfs_build_vcall_offset_vtbl_entries): Update BV_VCALL_INDEX.
18215         (build_vcall_offset_vtbl_entries): Juse use dfs_skip_vbases.
18216         (build_vtable_entry): Correct check for pure virtual functions.
18217         Don't declare flag_huge_objects.
18218         * decl.c (flag_huge_objects): Remove declaration.
18219         * method.c (make_thunk): Tweak mangling for vcall offset thunks.
18220         Use int_size_in_bytes.
18221         (emit_thunk): Handle vcall offset thunks.
18223 2000-04-15  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18225         * decl2.c (parse_time, varconst_time): Delete declarations.
18226         (finish_file): Delete LINENO declaration.
18227         START_TIME and THIS_TIME now long.
18229 2000-04-13  Nathan Sidwell  <nathan@codesourcery.com>
18231         * class.c (build_base_field): Reformat comment.
18233         * inc/cxxabi.h (stddef.h): Comment inclusion.
18234         (__base_class_info::__offset): Comment shift.
18236 2000-04-12  Mark Mitchell  <mark@codesourcery.com>
18238         * cp-tree.h (IDENTIFIER_CTOR_OR_DTOR_P): New macro.
18239         (cp_tree_index): Add CPTI_PUSH_EXCEPTION_IDENTIFIER.
18240         (cp_push_exception_identifier): New macro.
18241         (DECL_COMPLETE_DESTRUCTOR_P): New macro.
18242         (DECL_BASE_DESTRUCTOR_P): Likewise.
18243         (DECL_DELETING_DESTRUCTOR_P): Likewise.
18244         (get_vtbl_decl_for_binfo): Fix formatting.
18245         (in_charge_arg_for_name): New macro.
18246         (maybe_build_cleanup_and_delete): Remove declaration.
18247         * call.c (build_field_call): Use IDENTIFIER_CTOR_OR_DTOR_P.
18248         (in_charge_arg_for_name): New function.
18249         (build_new_method_call): Use it.  Handle cloned destructors.
18250         (build_clone): Don't make the base constructor virtual.
18251         Automatically defer generated functions.
18252         (clone_function_decl): Handle destructors, too.
18253         (clone_constructors_and_destructors): Likewise.
18254         (create_vtable_ptr): Don't create a vtable entry for a cloned
18255         function.
18256         * decl.c (predefined_identifier): Add ctor_or_dtor_p.
18257         (initialize_predefined_identifiers): Update appropriately.
18258         (finish_destructor_body): Simplify.
18259         (maybe_build_cleanup_and_delete): Remove.
18260         * except.c (expand_throw): Handle new-ABI destructors.
18261         * init.c (expand_cleanup_for_base): Use base_dtor_identifier.
18262         (build_dtor_call): New function.
18263         (build_delete): Use it.  Simplify.
18264         * optimize.c (maybe_clone_body): Handle destructors.
18265         * search.c (lookup_field_queue_p): Use IDENTIFIER_CTOR_OR_DTOR_P.
18267         * exception.cc (cleanup_fn): New typedef.
18268         (CALL_CLEANUP): New macro.
18269         (cp_eh_info): Use them.
18270         (__cp_push_exception): Likewise.
18271         (__cp_pop_exception): Likewise.
18273 2000-04-11  Mark Mitchell  <mark@codesourcery.com>
18275         * cp-tree.h (cp_tree_index): Add CPTI_DTOR_IDENTIFIER.
18276         (complete_dtor_identifier): New macro.
18277         (CLASSTYPE_FIRST_CONVERSION): Remove.
18278         (CLASSTYPE_CONSTRUCTOR_SLOT): New macro.
18279         (CLASSTYPE_DESTRUCTOR_SLOT): Likewise.
18280         (CLASSTYPE_FIRST_CONVERSION_SLOT): Likewise.
18281         (CLASSTYPE_CONSTRUCTORS): Likewise.
18282         (CLASSTYPE_DESTRUCTORS): Likewise.
18283         (lang_decl): Add cloned_function.
18284         (DECL_COMPLETE_CONSTRUCTOR_P): New macro.
18285         (DECL_BASE_CONSTRUCTOR_P): Likewise.
18286         (DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P): Likewise.
18287         (DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P): Likewise.
18288         (DECL_CLONED_FUNCTION_P): Likewise.
18289         (DECL_CLONED_FUNCTION): Likewise.
18290         (clone_function_decl): Declare.
18291         (maybe_clone_body): Likewise.
18292         * call.c (build_user_type_conversion_1): Call complete object
18293         constructors in the new ABI.
18294         (build_new_method_call): Don't add in-charge parameters under the
18295         new ABI.
18296         * class.c (add_method): Use DECL_MAYBE_IN_CHARGE_CONSTRUCTOR_P,
18297         DECL_MAYBE_IN_CHARGE_DESTRUCTOR_P, CLASSTYPE_CONSTRUCTOR_SLOT, and
18298         CLASSTYPE_DESTRUCTOR_SLOT.
18299         (build_clone): New function.
18300         (clone_function_decl): Likewise.
18301         (clone_constructors_and_destructors): Likewise.
18302         (check_bases_and_members): Use it.
18303         * decl.c (iniitialize_predefined_identifiers): Initialize
18304         complete_dtor_identifier.
18305         (finish_function): Don't add extra code to a clone.
18306         (lang_mark_tree): Mark cloned_function.
18307         * decl2.c (mark_used): Don't bother trying to instantiate things
18308         we synthesized.
18309         * dump.c (dequeue_and_dump): Don't dump CP_DECL_CONTEXT twice.
18310         * method.c (set_mangled_name_for_decl): Don't treat clones as
18311         constructors.
18312         (synthesize_method): Sythesize cloned functions, not the clones.
18313         * optimize.c (inline_data): Update comment on ret_label.
18314         (remap_block): Don't assume DECL_INITIAL exists.
18315         (copy_body_r): Allow ret_label to be NULL.
18316         (maybe_clone_body): Define.
18317         * pt.c (tsubst_decl): Handle clones.
18318         (instantiate_clone): New function.
18319         (instantiate_template): Use it.
18320         (set_mangled_name_for_template_decl): Don't treat clones as
18321         constructors.
18322         * search.c (lookup_fnfields_1): Use CLASSTYPE_CONSTRUCTOR_SLOT,
18323         CLASSTYPE_DESTRUCTOR_SLOT, and CLASSTYPE_FIRST_CONVERSION_SLOT.
18324         * semantics.c (expand_body): Clone function bodies as necessary.
18326         * optimize.c (remap_decl): Avoid sharing structure for arrays
18327         whose size is only known at run-time.
18328         * tree.c (copy_tree_r): Don't copy PARM_DECLs.
18330         * cp-tree.h (lang_decl_flags): Rename constructor_for_vbase_attr
18331         to has_in_charge_parm_p.
18332         (DECL_CONSTRUCTOR_FOR_VBASE_P): Rename to ...
18333         (DECL_HAS_IN_CHARGE_PARM_P): ... this.
18334         (DECL_COPY_CONSTRUCTOR_P): New macro.
18335         * call.c (add_function_candidate): Use DECL_HAS_IN_CHARGE_PARM_P.
18336         (build_user_type_conversion_1): Likewise.
18337         (convert_like_real): Likewise.
18338         (build_over_call): Likeiwse.  Use DECL_COPY_CONSTRUCTOR_P.
18339         * decl.c (grokdeclarator): Use DECL_HAS_IN_CHARGE_PARM_P.
18340         (copy_args_p): Likewise.
18341         (grok_ctor_properties): Likewise.
18342         (start_function): Likewise.
18343         * decl2.c (maybe_retrofit_in_charge): Likewise.  Set it.
18344         * error.c (dump_function_decl): Use DECL_HAS_IN_CHARGE_PARM_P.
18345         * init.c (emit_base_init): Use DECL_COPY_CONSTRUCTOR_P.
18346         * method.c (do_build_copy_constructor): Use
18347         DECL_HAS_IN_CHARGE_PARM_P.
18348         (synthesize_method): Likewise.
18349         * pt.c (instantiate_template): Remove goto.
18350         * tree.c (build_cplus_method_type): Remove mention of obstacks in
18351         comment.
18353         * cp-tre.h (finish_function): Change prototype.
18354         * decl.c (end_cleanup_fn): Adjust caller.
18355         (finish_function): Take only one parameter.
18356         * decl2.c (finish_objects): Adjust caller.
18357         (finish_static_storage_duration_function): Likewise.
18358         * method.c (emit_thunk): Likewise.
18359         * parse.y: Likewise.
18360         * parse.c: Regenerated.
18361         * pt.c (instantiate_decl): Likewise.
18362         * rtti.c (synthesize_tinfo_fn): Likewise.
18363         * semantics.c (expand_body): Likewise.
18365         * cp-tree.h (copy_decl): New function.
18366         * class.c (finish_struct_1): Use it.
18367         * lex.c (copy_decl): Define it.
18368         * pt.c (tsubst_decl): Likewise.
18369         * tree.c (copy_template_template_parm): Likewise.
18371         * cp-tree.h (lang_type): Remove has_nonpublic_ctor and
18372         has_nonpublic_assign_ref.
18373         (TYPE_HAS_NONPUBLIC_CTOR): Don't declare.
18374         (TYPE_HAS_NONPUBLIC_ASSIGN_REF): Likewise.
18375         * class.c (finish_struct_methods): Don't set
18376         TYPE_HAS_NONPUBLIC_CTOR or TYPE_HAS_NONPUBLIC_ASSIGN_REF.
18377         (interface_only): Don't declare.
18378         (interface_unknown): Likewise.
18380 2000-04-11  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
18382         * tree.h (HAVE_TEMPLATES): Remove definition.
18383         * lang-options.h (-fthis-is-variable): Remove documentation.
18385 2000-04-10  Jason Merrill  <jason@casey.cygnus.com>
18387         * class.c (instantiate_type): Handle object-relative template-id.
18389         * semantics.c (finish_expr_stmt): Call convert_to_void here.
18390         * decl.c (cplus_expand_expr_stmt): Not here.
18392         * rtti.c (build_dynamic_cast_1): Call non_lvalue.
18393         Initialize exprtype earlier.
18395         * parse.y (fn.def1): Check for defining types in return types.
18397         * decl.c (check_tag_decl): Notice extra fundamental types.
18398         Diagnose empty decls in classes, too.
18400         * decl.c (grokdeclarator): Don't override an anonymous name if no
18401         declarator was given.
18403         * cvt.c (convert_to_void): Call resolve_offset_ref.
18405         * typeck.c (build_x_function_call): Abort if we get an OFFSET_REF.
18407         * decl2.c (decl_namespace): Handle getting a type.
18409         * typeck.c (build_c_cast): Re-enable warning for cast between
18410         pointer and integer of different size.
18412 2000-04-10  Nathan Sidwell  <nathan@codesourcery.com>
18414         * inc/cxxabi.h (__pointer_type_info): Add restrict and
18415         incomplete flags.
18416         (__pointer_type_info::__pointer_catch): New virtual function.
18417         (__pointer_to_member_type_info): Derive from
18418         __pointer_type_info. Adjust.
18419         (__pointer_to_member_type_info::__do_catch): Remove.
18420         (__pointer_to_member_type_info::__is_pointer_p): Declare.
18421         (__pointer_to_member_type_info::__pointer_catch): Declare.
18422         * rtti.c (qualifier_flags): Add restrict flag.
18423         (ptmd_initializer): Reorder members.
18424         (create_tinfo_types): Expand comments. Reorder
18425         ptmd_desc_type_node members.
18426         * tinfo2.cc (__pointer_to_member_type_info::__is_pointer_p):
18427         Implement.
18428         (__pointer_type_info::__do_catch): Move specific code into
18429         __pointer_catch. Call it.
18430         (__pointer_type_info::__pointer_catch): Non-pointer-to-member
18431         specific catch checking. Fix void conversion check.
18432         (__pointer_to_member_type_info::__do_catch): Remove.
18433         (__pointer_to_member_type_info::__pointer_catch): Implement.
18435 2000-04-10  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
18437         * lex.c (init_parse): Remove traces of classof and headof.
18438         * decl2.c (flag_operator_names): Default to 1.
18439         (lang_decode_option): Do not set it for -ansi.
18441 2000-04-09  Mark Mitchell  <mark@codesourcery.com>
18443         * cp-tree.h (struct lang_decl): Remove main_decl_variant.
18444         (DECL_MAIN_VARIANT): Remove.
18445         * decl.c (duplicate_decls): Don't set it.
18446         (start_function): Likewise.
18447         (lang_mark_tree): Don't mark it.
18448         * decl2.c (defer_fn): Don't use it.
18449         * lex.c (retrofit_lang_decl): Don't set it.
18450         * pt.c (tsubst_decl): Likewise.
18451         * ptree.c (print_lang_decl): Don't print it.
18452         * typeck.c (mark_addressable): Don't use it.
18454 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
18456         * vec.cc: Include <new> and <exception>.
18457         (__cxa_vec_ctor): Use __cxa_vec_dtor for cleanup.
18458         (__cxa_vec_dtor): Catch dtor exceptions, and rethrow or
18459         terminate.
18460         (__cxa_vec_delete): Catch dtor exceptions.
18462 2000-04-09  Nathan Sidwell  <nathan@codesourcery.com>
18464         Prepend __ to implementation defined names.
18465         * inc/typeinfo (type_info): Rename _name to __name.
18466         (type_info::type_info): Rename parameter.
18467         (type_info::operator==, type_info::operator!=,
18468         type_info::before): Likewise.
18469         (type_info::is_pointer_p, type_info::is_function_p,
18470         type_info::do_catch, type_info::do_upcast): Prepend __. Rename
18471         parameters.
18472         * inc/cxxabi.h
18473         (__fundamental_type_info::__fundamental_type_info) Rename parameters.
18474         (__pointer_type_info::__pointer_type_info): Likewise.
18475         (__pointer_type_info::is_pointer_p,
18476         __pointer_type_info::do_catch): Prepend __. Rename parameters.
18477         (__array_type_info::__array_type_info): Rename parameters.
18478         (__function_type_info::__function_type_info): Likewise.
18479         (__function_type_info::is_function_p): Prepend __.
18480         (__enum_type_info::__enum_type_info): Rename parameters.
18481         (__pointer_to_member_type_info::__pointer_to_member_type_info):
18482         Likewise.
18483         (__pointer_to_member_type_info::do_catch): Prepend __. Rename
18484         parameters.
18485         (__base_class_info::is_virtual_p, is_public_p, offset): Prepend __.
18486         (__class_type_info::__class_type_info): Rename parameters.
18487         (__class_type_info::sub_kind): Prepend __. Adjust member names.
18488         (__class_type_info::upcast_result,
18489         __class_type_info::dyncast_result): Prepend __. Move definition
18490         into tinfo.cc.
18491         (__class_type_info::do_upcast, __class_type_info::do_catch,
18492         __class_type_info::find_public_src,
18493         __class_type_info::do_dyncast,
18494         __class_type_info::do_find_public_src): Prepend __. Rename
18495         parameters.
18496         (__si_class_type_info::__si_class_type_info): Rename parameters.
18497         (__si_class_type_info::do_upcast, __si_class_type_info::do_dyncast,
18498         __si_class_type_info::do_find_public_src): Prepent __. Rename
18499         parameters.
18500         (__vmi_class_type_info::__vmi_class_type_info): Rename parameters.
18501         (__vmi_class_type_info::do_upcast, __vmi_class_type_info::do_dyncast,
18502         __vmi_class_type_info::do_find_public_src): Prepent __. Rename
18503         parameters.
18504         (__dynamic_cast): Rename parameters.
18505         * tinfo.cc (type_info::is_pointer_p, type_info::is_function_p,
18506         type_info::do_catch, type_info::do_upcast): Prepend __.
18507         (contained_p, public_p, virtual_p, contained_public_p,
18508         contained_nonpublic_p, contained_nonvirtual_p): Adjust.
18509         (__class_type_info::do_catch,
18510         __class_type_info::do_upcast): Prepend __. Adjust.
18511         (__class_type_info::__upcast_result,
18512         __class_type_info::__dyncast_result): Move from inc/cxxabi.h.
18513         Adjust.
18514         (__class_type_info::find_public_src): Prepend __. Adjust.
18515         (__class_type_info::do_find_public_src,
18516         __si_class_type_info::do_find_public_src,
18517         __vmi_class_type_info::do_find_public_src): Likewise.
18518         (__class_type_info::do_dyncast,
18519         __si_class_type_info::do_dyncast,
18520         __vmi_class_type_info::do_dyncast): Likewise.
18521         (__class_type_info::do_upcast,
18522         __si_class_type_info::do_upcast,
18523         __vmi_class_type_info::do_upcast): Likewise.
18524         (__dynamic_cast): Adjust.
18525         * tinfo2.cc (__pointer_type_info::is_pointer_p): Prepend __.
18526         (__function_type_info::is_function_p): Likewise.
18527         (__pointer_type_info::do_catch): Likewise. Adjust.
18528         (__pointer_to_member_type_info::do_catch): Likewise. Adjust.
18529         (__throw_type_match_rtti_2): Adjust.
18530         (__is_pointer): Adjust.
18532 2000-04-08  Mark Mitchell  <mark@codesourcery.com>
18534         * cp-tree.h (cp_tree_index): Add CPTI_COMPLETE_CTOR_IDENTIFIER.
18535         (complete_ctor_identifier): New macro.
18536         (special_function_kind): Add sfk_copy_constructor and
18537         sfk_assignment_operator.
18538         (LOOKUP_HAS_IN_CHARGE): Remove.
18539         (cons_up_default_function): Rename to ...
18540         (implicitly_declare_fn): ... this.
18541         * call.c (build_new_method_call): Add in-charge parameters for
18542         constructors here.
18543         * class.c (add_implicitly_declared_members): Change parameter name
18544         from cant_have_assignment to cant_have_const_assignment.
18545         Replace calls to cons_up_default_function to implicitly_declare_fn.
18546         * cvt.c (ocp_convert): Use complete_ctor_identifier.
18547         * decl.c (initialize_predefined_identifiers): Initialize it.
18548         (start_function): Use DECL_CONSTRUCTOR_FOR_VBASE_P instead of
18549         complex expression.
18550         * init.c (expand_default_init): Don't calculate the in-charge
18551         parameter here.
18552         (build_new_1): Likewise.
18553         * lex.c (cons_up_default_function): Move to method.c.
18554         * method.c (synthesize_method): Use DECL_DESTRUCTOR_P.
18555         (implicitly_declare_fn): New function.
18556         * typeck.c (build_static_cast): Use complete_ctor_identifier.
18557         (build_modify_expr): Likewise.
18558         * typeck2.c (build_functional_cast): Likewise.
18560         Under the new ABI, constructors don't return `this'.
18561         * cp-tree.h (warn_reorder): Declare.
18562         (special_function_kind): New enum.
18563         (global_base_init_list): Remove declaration.
18564         (emit_base_init): Don't return a value.
18565         (check_base_init): Don't declare.
18566         (is_aggr_typedef): Likewise.
18567         * decl.c (check_special_function_return_type): New function.
18568         (return_types): Remove.
18569         (grokdeclarator): Use check_special_function_return_type.
18570         (start_function): Don't initialize ctor_label under the new ABI.
18571         (finish_construtor_body): Don't create a corresponding LABEL_STMT.
18572         * init.c (begin_init_stmts): Move to top of file.
18573         (finish_init_stmts): Likewise.
18574         (warn_reorder): Don't declare.
18575         (emit_base_init): Don't create a STMT_EXPR here.  Don't return a
18576         value.
18577         (check_base_init): Remove.
18578         (is_aggr_typedef): Likewise.
18579         (build_new_1): Don't use the return value of a constructor.
18580         * semantics.c (setup_vtbl_ptr): Don't use the return value
18581         of emit_base_init.
18582         * typeck.c (check_return_expr): Don't magically convert return
18583         statements into `return this' in constructors under the new ABI.
18585         * cp-tree.h (cp_tree_index): Add CPTI_BASE_CTOR_IDENTIFIER,
18586         CPTI_BASE_DTOR_IDENTIFIER, and CPTI_DELETING_DTOR_IDENTIFIER.
18587         (base_ctor_identifier): New macro.
18588         (base_dtor_identifier): Likewise.
18589         (deleting_dtor_identifier): Likewise.
18590         * decl.c: Don't include obstack.h.
18591         (obstack_chunk_alloc): Don't define.
18592         (obstack_chunk_free): Likewise.
18593         (struct predefined_identifier): New type.
18594         (initialize_predefined_identifiers): New function.
18595         (init_decl_processing): Use it.
18596         (debug_temp_inits): Remove.
18597         (start_method): Don't call preserve_data.
18598         (hack_incomplete_structures): Update comment.
18599         * init.c (init_init_processing): Don't initialize
18600         nelts_identifier.
18601         (build_offset_rf): Remove dead code.
18602         (build_delete): Use CLASSTYPE_N_BASECLASSES.
18603         * search.c (init_search_processing): Don't initialize
18604         vptr_identifier.
18606 2000-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18608         * typeck.c (build_binary_op): Call `tree_expr_nonnegative_p' to elide
18609         some sign_compare warnings.
18611 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
18613         Rename abi::__vmi_class_type_info members.
18614         * inc/cxxabi.h (__vmi_class_type_info): Rename details, n_bases,
18615         base_list, detail_masks members to vmi_flags, vmi_base_count,
18616         vmi_bases and vmi_flags_masks respectively.
18617         (__vmi_class_type_info::vmi_flags_masks): Rename
18618         details_unknown_mask to flags_unknown_mask.
18619         * tinfo.cc (__class_type_info::do_upcast): Adjust.
18620         (__vmi_class_type_info::do_find_public_src): Adjust.
18621         (__vmi_class_type_info::do_dyncast): Adjust.
18622         (__vmi_class_type_info::do_upcast): Adjust.
18624 2000-04-07  Nathan Sidwell  <nathan@codesourcery.com>
18626         * tinfo.cc (convert_to_base): New function.
18627         (get_vbase_offset): Remove. Move into convert_to_base.
18628         (__vmi_class_type_info::do_find_public_src): Adjust.
18629         (__vmi_class_type_info::do_dyncast): Adjust.
18630         (__vmi_class_type_info::do_upcast): Adjust.
18632 2000-04-06  Jason Merrill  <jason@yorick.cygnus.com>
18634         * tinfo.cc (operator=): Use __builtin_strcmp.
18635         * tinfo2.cc (before): Likewise.
18637 2000-04-06  Mark Mitchell  <mark@codesourcery.com>
18639         * cp-tree.h (lang_decl_flags): Rename saved_inline to deferred.
18640         (DECL_SAVED_INLINE): Rename to ...
18641         (DECL_DEFERRED_FN): ... this.
18642         (in_function_p): Remove declaration.
18643         (mark_inline_for_output): Rename to ...
18644         (defer_fn): ... this.
18645         * decl.c (finish_function): Adjust call to mark_inline_for_output.
18646         (in_function_p): Remove definition.
18647         * decl2.c (saved_inlines): Rename to ...
18648         (deferred_fns): ... this.
18649         (saved_inlines_used): Rename to ...
18650         (deferred_fns_used): ... this.
18651         (mark_inline_for_output): Rename to ...
18652         (defer_fn): ... this.
18653         (finish_file): Adjust accordingly.
18654         (init_decl2): Likewise.
18655         * lex.c (cons_up_default_function): Likewise.
18656         * pt.c (mark_decl_instantiated): Likewise.
18657         (instantiate_decl): Don't set DECL_DEFER_OUTPUT under any
18658         circumstances.
18659         * rtti.c (get_tinfo_decl): Adjust call to mark_inline_for_output.
18660         * semantics.c (expand_body): Defer more functions.
18662 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
18664         * vec.cc: New file.
18665         * Make-lang.in (CXX_LIB2FUNCS): Add it.
18666         (vec.o): Build it.
18667         * inc/cxxabi.h (__cxa_vec_new, __cxa_vec_ctor, __cxa_vec_dtor,
18668         __cxa_vec_delete): Declare.
18670 2000-04-06  Nathan Sidwell  <nathan@codesourcery.com>
18672         * rtti.c (dfs_class_hint_mark): New static function.
18673         (dfs_class_hint_unmark): New static function.
18674         (class_hint_flags): Use them.
18676 2000-04-05  Benjamin Kosnik  <bkoz@cygnus.com>
18678         * decl2.c: Make flag_honor_std dependent on ENABLE_STD_NAMESPACE.
18680 2000-04-05  Mark Mitchell  <mark@codesourcery.com>
18682         * cp-tree.h (instantiate_decl): Change prototype.
18683         * decl2.c (mark_used): Adjust call.
18684         * optimize.c (inlinable_function_p): Adjust handling of templates.
18685         * pt.c (do_decl_instantiation): Adjust call to instantiate_decl.
18686         (do_type_instantiation): Likewise.
18687         (instantiate_decl): Defer more templates.
18688         (instantiate_pending_templates): Adjust logic to handle inline
18689         friend functions.
18691         * Makefile.in (GGC_H): New variable.  Use it throughout in place
18692         of ggc.h.
18694         * call.c: Don't include obstack.h.  Include ggc.h.
18695         (obstack_chunk_alloc): Don't define.
18696         (obstack_chunk_free): Likewise.
18697         (add_candidate): Allocate the z_candidate with ggc_alloc_obj.
18698         * decl.c (push_switch): Use xmalloc to allocate the cp_switch.
18699         (pop_switch): Free it.
18701         * decl2.c (grokclassfn): Set TREE_READONLY for PARM_DECLs.
18703         * dump.c (dequeue_and_dump): Don't try to print the bit_position
18704         if we don't have a DECL_FIELD_OFFSET.
18706 Wed Apr  5 15:12:18 MET DST 2000  Jan Hubicka  <jh@suse.cz>
18708         * optimize.c (calls_setjmp_r): Use setjmp_call_p instead of
18709         special_function_p.
18711 2000-04-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18713         * cfns.gperf (hash, libc_name_p): Prototype.
18715         * rtti.c (build_dynamic_cast_1): Constification.
18717         * search.c (dfs_debug_unmarkedp, dfs_debug_mark): Unhide prototypes.
18719         * semantics.c (deferred_type_access_control): Prototype.
18721 2000-04-04  Mark Mitchell  <mark@codesourcery.com>
18723         Correct many new ABI issues regarding vbase and vcall offset
18724         layout.
18725         * cp-tree.h (BINFO_VTABLE): Document.
18726         (struct lang_type): Tweak formatting.
18727         (BINFO_PRIMARY_BINFO): Add to documentation.
18728         (CLASSTYPE_VSIZE): Fix typo in comment.
18729         (CLASSTYPE_VBASECLASSES): Update documentation.
18730         (BINFO_VBASE_MARKED): Remove.
18731         (SET_BINFO_VBASE_MARKED): Likewise.
18732         (CLEAR_BINFO_VBASE_MARKED): Likewise.
18733         (BINFO_FIELDS_MARKED): Remove.
18734         (SET_BINFO_FIELDS_MARKED): Likewise.
18735         (CLEAR_BINFO_FIELDS_MARKED): Likewise.
18736         (enum access_kind): New enumeration.
18737         (num_extra_vtbl_entries): Remove declaration.
18738         (size_extra_vtbl_entries): Likewise.
18739         (get_vtbl_decl_for_binfo): New function.
18740         (dfs_vbase_unmark): Remove declaration.
18741         (mark_primary_bases): Likewise.
18742         * class.c (SAME_FN): Remove.
18743         (struct vcall_offset_data_s): Move definition.
18744         (build_vbase_pointer): Use `build', not `build_binary_op', to
18745         access the vbase pointer under the new ABI.
18746         (build_vtable_entry_ref): Use get_vtbl_decl_for_binfo.
18747         (build_primary_vtable): Likewise.
18748         (dfs_mark_primary_bases): Move here from search.c.
18749         (mark_primary_bases): Likewise.
18750         (determine_primary_bases): Under the new ABI, don't make a base
18751         class a primary base just because we don't yet have any virtual
18752         functions.
18753         (layout_vtable_decl): Use get_vtbl_decl_for_binfo.
18754         (num_vfun_entries): Remove.
18755         (dfs_count_virtuals): Likewise.
18756         (num_extra_vtbl_entries): Likewise.
18757         (size_extra_vtbl_entries): Likewise.
18758         (layout_virtual_bases): Iterate in inheritance graph order under
18759         the new ABI.
18760         (finish_struct_1): Use TYPE_VFIELD, not CLASSTYPE_VSIZE, to
18761         indicate that a vfield is present.
18762         (init_class_processing): Initialize access_public_node, etc., from
18763         ak_public, etc.
18764         (get_vtbl_decl_for_binfo): New function.
18765         (dump_class_hierarchy_r): Likewise.
18766         (dump_class_hierarchy): Use it.
18767         (finish_vtbls): Build the vtbls in inheritance graph order.
18768         (dfs_finish_vtbls): Adjust call to build_vtbl_initializer.
18769         (initialize_vtable): Use get_vtbl_decl_for_binfo.
18770         (accumulate_vtbl_inits): Add comments explaining why a pre-order
18771         walk is required.
18772         (dfs_accumulate_vtbl_inits): Set BINFO_VTABLE to the location
18773         where the vptr points, even for primary vtables.
18774         (build_vtbl_initializer): Adjust handling of vbase and vcall
18775         offsets.
18776         (build_vcall_and_vbase_vtable_entries): New function.
18777         (dfs_build_vbase_offset_vtbl_entries): Remove.
18778         (build_vbase_offset_vtbl_entries): Reimplement.
18779         (dfs_build_vcall_offset_vtbl_entries): Don't include virtuals that
18780         were already handled in a primary base class vtable.
18781         (build_vcall_offset_vtbl_entries): Adjust.
18782         (build_rtti_vtbl_entries): Adjust.
18783         * decl2.c (output_vtable_inherit): Use get_vtbl_decl_for_binfo.
18784         * init.c (expand_virtual_init): Simplify.
18785         * repo.c (repo_get_id): Use get_vtbl_decl_for_binfo.
18786         * rtti.c (create_pseudo_type_info): Adjust calculation of vptr.
18787         * search.c (BINFO_ACCESS): New macro.
18788         (SET_BINFO_ACCESS): Likewise.
18789         (dfs_access_in_type): Manipulate access_kinds, not access nodes.
18790         (access_in_type): Likewise.
18791         (dfs_accessible_p): Likewise.
18792         (protected_accessible_p): Likewise.
18793         (lookup_fnfields_1): Adjust documentation.
18794         (dfs_mark_primary_bases): Move to class.c
18795         (mark_primary_bases): Likewise.
18796         (dfs_vbase_unmark): Remove.
18797         (virtual_context): Use BINFO_FOR_VBASE.
18798         (dfs_get_vbase_types): Simplify.
18799         (dfs_build_inheritance_graph_order): New function.
18800         (get_vbase_types): Use it.
18801         * tree.c (debug_binfo): Use get_vtbl_decl_for_binfo.
18803         * tinfo.cc (get_vbase_offset): New function.
18804         (__vmi_class_type_info::do_find_public_src): Use it.
18805         (__vmi_class_type_info::do_dyncast): Likewise.
18806         (__vmi_class_type_info::do_upcast): Likewise.
18808 2000-04-03  Zack Weinberg  <zack@wolery.cumb.org>
18810         * lang-specs.h: Pass -fno-show-column to the preprocessor.
18812 2000-03-30  Nathan Sidwell  <nathan@codesourcery.com>
18814         * rtti.c (class_hint_flags): Rename flags.
18815         (class_initializer): Remove flags.
18816         (synthesize_tinfo_var): Combine offset and flags. Add flags
18817         for __vmi_class_type_info.
18818         (create_tinfo_types): Remove flags from __class_type_info and
18819         __si_class_type_info. Merge flags and offset from
18820         base_class_type_info.
18821         * inc/cxxabi.h (__base_class_info): Merge offset and vmi_flags.
18822         (__base_class_info::is_virtual_p): Adjust.
18823         (__base_class_info::is_public_p): Adjust.
18824         (__base_class_info::offset): New accessor.
18825         (__class_type_info::details): Remove member.
18826         (__class_type_info::__class_type_info): Lose details.
18827         (__class_type_info::detail_masks): Remove.
18828         (__si_class_type_info::__si_class_type_info): Lose details.
18829         (__vmi_class_type_info::details): New member.
18830         (__vmi_class_type_info::__vmi_class_type_info): Adjust.
18831         (__vmi_class_type_info::detail_masks): New member.
18832         * tinfo.cc (__class_type_info::do_upcast): Initialize result
18833         with unknown_details_mask.
18834         (__vmi_class_type_info::do_find_public_src): Adjust
18835         (__vmi_class_type_info::do_dyncast): Adjust.
18836         (__vmi_class_type_info::do_upcast): Set result details, if
18837         needed. Adjust.
18838         (__dynamic_cast): Temporarily #if out optimization.
18840 2000-03-29  Nathan Sidwell  <nathan@codesourcery.com>
18842         * rtti.c (get_tinfo_decl): Mark used.
18843         (emit_tinfo_decl): Don't optimize polymorphic type_info. Only
18844         mark as dealt with, if we output it.
18846 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
18848         * class.c: Reorganize to put virtual function table initialization
18849         machinery at the end of the file.
18851 2000-03-28  Jason Merrill  <jason@casey.cygnus.com>
18853         * class.c (finish_struct): Use bitsize_zero_node.
18854         * pt.c (instantiate_class_template): Likewise.
18856 2000-03-28  Mark Mitchell  <mark@codesourcery.com>
18858         Put RTTI entries at negative offsets in new ABI.
18859         * class.c (dfs_build_vbase_offset_vtbl_entries): Put the first
18860         vbase offset at index -3, not -1.
18861         (build_vtabe_offset_vtbl_entries): Use unmarked_vtable_pathp, not
18862         dfs_vtable_path_unmarked_real_bases_queue_p to walk bases.
18863         (dfs_build_vcall_offset_vtbl_entries): Don't use skip_rtti_stuff.
18864         (build_rtti_vtbl_entries): New function.
18865         (set_rtti_entry): Remove.
18866         (build_primary_vtable): Don't use it.
18867         (build_secondary_vtable): Likewise.
18868         (start_vtable): Remove.
18869         (first_vfun_index): New function.
18870         (set_vindex): Likewise.
18871         (add_virtual_function): Don't call start_vtable.  Do call
18872         set_vindex.
18873         (set_primary_base): Rename parameter.
18874         (determine_primary_base): Likewise.
18875         (num_vfun_entries): Don't use skip_rtti_stuff.
18876         (num_extra_vtbl_entries): Include RTTI information.
18877         (build_vtbl_initializer): Use build_rtti_vtbl_entries.
18878         (skip_rtti_stuff): Remove.
18879         (dfs_modify_vtables): Don't use it.
18880         (modify_all_vtables): Don't use start_vtable.  Do use set_vindex.
18881         (layout_nonempty_base_or_field): Update size handling.
18882         (create_vtable_ptr): Tweak.
18883         (layout_class_type): Adjust parameter names.
18884         (finish_struct_1): Simplify.
18885         * cp-tree.h (CLASSTYPE_VSIZE): Tweak documentation.
18886         (skip_rtti_stuff): Remove.
18887         (first_vfun_index): New function.
18888         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
18889         (dfs_vtable_path_marked_real_bases_queue_p): Remove.
18890         (marked_vtable_pathp): Declare.
18891         (unmarked_vtable_pathp): Likewise.
18892         * error.c (dump_expr): Use first_vfun_index to calculate vtable
18893         offsets.
18894         * rtti.c (build_headof): Look for RTTI at negative offsets.
18895         (get_tinfo_decl_dynamic): Likewise.
18896         (tinfo_base_init): Don't take the address of the TINFO_VTABLE_DECL
18897         here.
18898         (create_pseudo_type_info): Do it here instead.  Adjust so that
18899         vptr points at first virtual function.
18900         * search.c (marked_vtable_pathp): Make it global.
18901         (unmarked_vtable_pathp): Likewise.
18902         (dfs_vtable_path_unmarked_real_bases_queue_p): Remove.
18903         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
18904         (dfs_get_pure_virtuals): Don't use skip_rtti_stuff.
18905         (get_pure_virtuals): Likewise.
18906         (expand_upcast_fixups): Likewise.
18907         * tree.c (debug_binfo): Likewise.
18908         * tinfo.cc (__dynamic_cast): Look for vtable_prefix at appropriate
18909         negative offset.
18911 2000-03-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18913         * class.c (check_field_decl): Fix typo.
18914         (build_vtbl_or_vbase_field): Don't clear DECL_SAVED_INSNS.
18915         (check_methods): Likewise.
18916         (check_field_decls): Likewise.
18917         Use DECL_CONTEXT, not DECL_FIELD_CONTEXT.
18918         * cp-tree.h (DECL_SHADOWED_FOR_VAR, DECL_TEMPLATE_RESULT):
18919         Use DECL_RESULT_FLD, not DECL_RESULT.
18920         * decl.c (xref_tag): Use DECL_TEMPLATE_RESULT.
18921         * lex.c (identifier_type): Likewise.
18922         * pt.c (determine_specialization, lookup_template_class): Likewise.
18923         (tsubst_friend_function, tsubst_decl, instantiate_template): Likewise.
18924         (resolve_overloaded_unification, more_specialized): Likewise.
18925         * semantics.c (finish_member_declaration): Likewise.
18926         * typeck.c (build_x_function_call): Likewise.
18928 2000-03-26  Mark Mitchell  <mark@codesourcery.com>
18930         * class.c (layout_empty_base): Handle empty bases with non-byte
18931         alignment.
18932         (build_base_field): Likewise.
18933         (layout_virtual_bases): Likewise.
18935         * class.c (finish_struct_1): Fix typo in this change:
18937         Sat Mar 25 09:12:10 2000  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18939 2000-03-25  Mark Mitchell  <mark@codesourcery.com>
18941         * decl.c (grokdeclarator): Count partial specializations when
18942         keeping track of how many template classes have been seen.
18944         * dump.c (dequeue_and_dump): Dump DECL_TEMPLATE_RESULT.
18946 2000-03-25  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
18948         * class.c (build_vbase_pointer_fields): layout_field now place_field.
18949         (get_vfield_offset): Use byte_position.
18950         (set_rtti_entry): Set OFFSET to ssizetype zero.
18951         (get_binfo_offset_as_int): Deleted.
18952         (dfs_record_base_offsets): Use tree_low_cst.
18953         (dfs_search_base_offsets): Likewise.
18954         (layout_nonempty_base_or_field): Reflect changes in RLI format
18955         and call byte_position.
18956         (layout_empty_base): Convert offset to ssizetype.
18957         (build_base_field): use rli_size_unit_so_far.
18958         (dfs_propagate_binfo_offsets): Do computation in proper type.
18959         (layout_virtual_bases): Pass ssizetype to propagate_binfo_offsets.
18960         (layout_class_type): Reflect changes in RLI names and fields.
18961         (finish_struct_1): Set DECL_FIELD_OFFSET.
18962         * dump.c (dequeue_and_dump): Call bit_position.
18963         * expr.c (cplus_expand_constant): Use byte_position.
18964         * rtti.c (expand_class_desc): Use bitsize_one_node.
18965         * typeck.c (build_component_addr): Use byte_position and don't
18966         special case for zero offset.
18968 2000-03-24  Nathan Sidwell  <nathan@codesourcery.com>
18970         * decl.c (vtype_decl_p): Use TYPE_POLYMORPHIC_P.
18972         * rtti.c (get_tinfo_decl): Set comdat linkage on new-abi
18973         tinfo object.
18974         (emit_tinfo_decl): Only emit polymorphic tinfo's when emitting
18975         vtable.
18977 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
18979         * call.c (check_dtor_name, build_new_method_call): Use TYPE_P and
18980         DECL_P macros.
18981         * decl.c (push_class_binding, poplevel, pushtag, lookup_namespace_name,
18982         make_typename_type, check_initializer, cp_finish_decl,
18983         xref_tag): Likewise.
18984         * decl2.c (grokfield, build_expr_from_tree, build_expr_from_tree,
18985         decl_namespace, arg_assoc_template_arg, arg_assoc,
18986         validate_nonmember_using_decl, do_class_using_decl): Likewise.
18987         * error.c (dump_template_argument, dump_expr, cp_file_of, cp_line_of,
18988         args_to_string): Likewise.
18989         * friend.c (is_friend): Likewise.
18990         * lex.c (note_got_semicolon, note_list_got_semicolon,
18991         is_global): Likewise.
18992         * method.c (build_overload_nested_name, build_overload_value,
18993         build_qualified_name, build_qualified_name, hack_identifier): Likewise.
18994         * parse.y (typename_sub, typename_sub1): Likewise.
18995         * pt.c (push_inline_template_parms_recursive, check_template_shadow,
18996         process_partial_specialization, convert_template_argument,
18997         template_args_equal, add_pending_template, lookup_template_class,
18998         for_each_template_parm_r, maybe_fold_nontype_arg,
18999         tsubst, instantiate_template, type_unification_real, unify,
19000         instantiate_pending_templates, set_mangled_name_for_template_decl):
19001         Likewise.
19002         * repo.c (repo_get_id, repo_template_used): Likewise.
19003         * search.c (lookup_field_1): Likewise.
19004         * tree.c (walk_tree, get_type_decl, cp_tree_equal, member_p): Likewise.
19005         * xref.c (classname): Likewise.
19007 2000-03-22  Mark Mitchell  <mark@codesourcery.com>
19009         * cp-tree.h (BINFO_FOR_VBASE): Adjust documentation.
19010         (CANONICAL_BINFO): New macro.
19011         (BINFO_NEW_VTABLE_MARKED): Use it.
19012         (SET_BINFO_NEW_VTABLE_MARKED): Likewise.
19013         (CLEAR_BINFO_NEW_VTABLE_MARKED): Likewise.
19014         * class.c (dfs_build_vbase_offset_vtbl_entries): Use BINFO_TYPE,
19015         not TREE_TYPE.
19016         (build_primary_vtable): Adjust usage of BINFO_NEW_VTABLE_MARKED.
19017         (build_secondary_vtable): Likewise.
19018         (dfs_finish_vtbls): Likewise.
19019         (dfs_accumulate_vtbl_inits): Likewise.
19020         (accumulate_vtbl_inits): New function.
19021         (finish_vtbls): Make sure that virtual bases come after
19022         non-virtual bases in the vtable group.
19023         (record_base_offsets): Don't save and restore TREE_VIA_VIRTUAL.
19024         (finish_struct_1): Adjust usage of BINFO_NEW_VTABLE_MARKED.
19025         * search.c (struct vbase_info): Move definition.
19026         (marked_new_vtable_p): Adjust usage of BINFO_NEW_VTABLE_MARKED.
19027         (unmarked_new_vtable_p): Likewise.
19028         (dfs_mark_vtable_path): Remove.
19029         (dfs_mark_new_vtable): Remove.
19030         (dfs_unmark_new_vtable): Likewise.
19031         (dfs_clear_search_slot): Likewise.
19032         (dfs_find_vbases):  Adjust usage of BINFO_NEW_VTABLE_MARKED.
19033         (dfs_clear_vbase_slots): Likewise.
19034         (init_vbase_pointers): LIkewise.
19036 2000-03-22  Jason Merrill  <jason@casey.cygnus.com>
19038         * typeck.c (type_after_usual_arithmetic_conversions): Prefer a
19039         SIZETYPE to a non-SIZETYPE.
19041 2000-03-21  Mark Mitchell  <mark@codesourcery.com>
19043         * class.c (layout_virtual_bases): Adjust names in conditionally
19044         compiled code.
19046         * class.c (record_base_offsets): New function.
19047         (layout_conflict_p): Likewise.
19048         (layout_nonempty_base_or_field): Use it.
19049         (layout_empty_base): New function.
19050         (build_base_field): Use it.
19051         (build_base_fields): Update comment.
19052         (layout_virtual_bases): Fold in a little code form
19053         layout_basetypes.  Use layout_empty_base.
19054         (layout_basetypes): Remove.
19055         (end_of_class): New function.
19056         (layout_class_type): Use it.  Adjust.
19058         * cp-tree.h (CLASSTYPE_VBASECLASSES): Fix typo in comment.
19059         (fntype_p): Remove.
19060         * search.c (dfs_skip_nonprimary_vbases_unmarkedp): Fix typo in
19061         comment.
19062         (dfs_skip_nonprimary_vbases_markedp): Likewise.
19063         * typeck.c (fntype_p): Remove.
19065         * cp-tree.h (TI_SPEC_INFO): Remove.
19066         (CLASSTYPE_TI_SPEC_INFO): Likewise.
19067         * pt.c (process_partial_specialization): Likewise.
19069         * class.c (build_base_field): Fix thinko in computation of binfo
19070         offsets.
19072         * tree.c (mark_local_for_remap_p): Mark variables declared in
19073         TARGET_EXPRs as well.
19075 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
19077         * typeck.c (require_complete_type, complete_type,
19078         complete_type_or_else, c_sizeof, c_sizeof_nowarn,
19079         build_array_ref, convert_arguments, pointer_diff,
19080         build_x_unary_op, build_unary_op, build_c_cast,
19081         build_modify_expr): Use COMPLETE_TYPE_P etc.
19082         * call.c (is_complete, convert_like_real,
19083         build_new_method_call): Likewise.
19084         * class.c (build_vbase_pointer_fields, check_bases,
19085         build_base_field, finish_struct_1, pushclass): Likewise.
19086         * cvt.c (cp_convert_to_pointer, convert_to_void): Likewise.
19087         * decl.c (maybe_process_template_type_declaration, pushtag,
19088         pushdecl, redeclaration_error_message, start_decl, start_decl_1,
19089         layout_var_decl, check_initializer, cp_finish_decl,
19090         grokdeclarator, require_complete_types_for_parms,
19091         grok_op_properties, xref_tag, xref_basetypes,
19092         check_function_type): Likewise.
19093         * decl2.c (check_classfn, reparse_absdcl_as_casts): Likewise.
19094         * friend.c (do_friend): Likewise.
19095         * init.c (build_offset_ref): Likewise.
19096         * parse.y (structsp): Likewise.
19097         * pt.c (maybe_process_partial_specialization,
19098         tsubst_friend_function, instantiate_class_template, tsubst,
19099         do_type_instantiation, instantiate_pending_templates): Likewise.
19100         * repo.c (repo_get_id): Likewise.
19101         * rtti.c (build_typeid, get_typeid, build_dynamic_cast_1,
19102         synthesize_tinfo_var, emit_support_tinfos): Likewise.
19103         * search.c (lookup_fnfields_1, lookup_conversions): Likewise.
19104         * semantics.c (begin_class_definition): Likewise.
19105         * tree.c (build_cplus_method_type): Likewise.
19106         * typeck2.c (digest_init, build_functional_cast,
19107         add_exception_specifier): Likewise.
19108         * parse.h, parse.c: Regenerated.
19110 2000-03-21  Nathan Sidwell  <nathan@codesourcery.com>
19112         * inc/cxxabi.h: New header file. Define new-abi entry points.
19113         (__pointer_type_info::target): Rename member to ...
19114         (__pointer_type_info::type): ... here.
19115         (__base_class_info::type): Rename member to ...
19116         (__base_class_info::base): ... here.
19117         * Make-lang.in (CXX_EXTRA_HEADERS): Add cxxabi.h
19118         * cp-tree.h (CPTI_ABI): New global tree enumeration.
19119         (abi_node): New global tree node.
19120         * decl.c (abi_node): Document.
19121         (init_decl_processing): Initialize abi_node.
19122         * rtti.c (build_dynamic_cast_1): Use abi_node for new-abi.
19123         (get_vmi_pseudo_type_info): Likewise.
19124         (create_tinfo_types): Likewise.
19125         (emit_support_tinfos): Likewise.
19126         * tinfo.h (cxxabi.h): Include for new-abi.
19127         Move rtti class definitions to new header file.
19128         * tinfo.cc (abi): Use the namespace.
19129         (std): Move new abi rtti classes from here ...
19130         (__cxxabiv1): ... to here.
19131         * tinfo2.cc (cxxabi.h): Include for new-abi.
19132         Move rtti class definitions to new header file.
19133         (std): Move new abi rtti classes from here ...
19134         (__cxxabiv1): ... to here.
19135         * inc/typeinfo (__class_type_info): Move into __cxxabiv1
19136         namespace.
19138 2000-03-20  Jed Wing <jedwin@zloty.ugcs.caltech.edu>
19139             Jason Merrill  <jason@casey.cygnus.com>
19141         * method.c (build_overload_int): Use host_integerp.
19143 2000-03-20 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
19145         * init.c (build_offset_ref): Handle the case of a templated member
19146         function.
19148 2000-03-19  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19150         * except.c (expand_exception_blocks): Clear catch_clauses_last.
19152 2000-03-18  Mark Mitchell  <mark@codesourcery.com>
19154         * cp-tree.h (CLEAR_DECL_C_BIT_FIELD): New macro.
19155         * class.c (check_bitfield_decl): Turn illegal bitfields into
19156         non-bitfields.
19157         (dfs_propagate_binfo_offsets): Adjust for new size_binop
19158         semantics.
19159         (dfs_offset_for_unshared_vbases): Likewise.
19160         * cvt.c (cp_convert_to_pointer): Convert NULL to a
19161         pointer-to-member correctly under the new ABI.
19162         * expr.c (cplus_expand_constant): Don't use cp_convert when
19163         turning an offset into a pointer-to-member.
19164         * init.c (resolve_offset_ref): Don't adjust pointers-to-members
19165         when dereferencing them under the new ABI.
19166         * typeck.c (get_member_function_from_ptrfunc): Tweak calculation
19167         of pointers-to-members under the new ABI.
19169         * class.c (check_bitfield_decl): Remove restriction on really long
19170         bitfields.
19171         (layout_class_type): Implement new ABI handling of bitfields
19172         longer than their types.
19174 2000-03-18  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19176         * parse.y (extdefs): Call ggc_collect.
19177         * parse.c: Regenerated.
19179 2000-03-18  Nathan Sidwell  <nathan@codesourcery.com>
19181         * class.c (build_base_field): Use TYPE_ALIGN to examine a type.
19182         (note_name_declared_in_class): Use OVL_CURRENT to get at a
19183         potential overload.
19185 2000-03-17  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19187         * class.c (build_vbase_path): Use integer_zerop.
19188         (build_vtable_entry): Use tree_low_cst.
19189         (get_vfield_offset): Use bit_position.
19190         (dfs_modify_vtables): New variable vindex_val; `i' is HOST_WIDE_INT.
19191         Use tree_low_cst.
19192         (check_bitfield_decl): Set DECL_SIZE using convert.
19193         (build_base_field): Set DECL_SIZE and DECL_SIZE_UNIT using size_binop.
19194         (layout_virtual_bases): DSIZE is unsigned HOST_WIDE_INT.
19195         Use tree_low_cst.
19196         (finish_struct_1): Use bit_position.
19197         (dump_class_hierarchy): Use tree_low_cst.
19198         * cp-tree.h (min_precision): Add declaration.
19199         * decl.c (xref_tag, xref_basetypes): Use tree_low_cst.
19200         * error.c (dump_type_suffix): Use host_integerp and tree_low_cst.
19201         (dump_expr): Use integer_zerop, host_integerp, and tree_low_cst.
19202         * expr.c (cplus_expand_constant): Use bit_position.
19203         * init.c (build_vec_init): Use host_integerp and tree_low_cst.
19204         * rtti.c (get_base_offset): Use bit_position.
19205         * typeck.c (build_binary_op): Use integer_zerop, compare_tree_int,
19206         host_integerp, and tree_low_cst.
19207         (pointer_int_sum): Use integer_zerop.
19208         (build_component_addr): Use bit_position.
19210 2000-03-17  Nathan Sidwell  <nathan@codesourcery.com>
19212         * typeck.c (require_complete_type): Don't assume size_zero_node.
19213         (complete_type_or_else): Likewise.
19215 2000-03-16  Steven Grady <grady@digitaldeck.com>
19216             Jason Merrill  <jason@casey.cygnus.com>
19218         * rtti.c (build_dynamic_cast_1): Improve diagnostics.
19220 2000-03-16  Nathan Sidwell  <nathan@codesourcery.com>
19222         * decl2.c (grokfield): Bail out if type is error_mark_node.
19224 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
19226         * tinfo2.cc (__ptr_to_member_data): Rename to ...
19227         (__pointer_to_member_data): ... here. Adjust.
19228         * rtti.c (create_tinfo_types): Adjust.
19230 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
19232         * cp-tree.h (CPTI_REF_DESC_TYPE, ref_desc_type_node): Remove.
19233         * decl.c (ref_desc_type_node): Undocument.
19234         * rtti.c (ptr_ref_initializer): Rename to ...
19235         (ptr_initializer): ... here. Adjust comments.
19236         (ptmd_initializer): Fix comment thinko.
19237         (synthesize_tinfo_var): Remove REFERENCE_TYPE case.
19238         (create_tinfo_types): Remove ref_desc_type_node init.
19239         * tinfo2.cc (__reference_type_info): Remove.
19241 2000-03-15  Nathan Sidwell  <nathan@codesourcery.com>
19243         * decl.c (cp_finish_decl): Remove obsolete comment.
19245         * typeck.c (build_ptrmemfunc1): Kill uninitialized warning.
19247 2000-03-14  Mark Mitchell  <mark@codesourcery.com>
19249         * cp-tree.h: Tweak documentation.
19250         * class.c (build_vbase_pointer_fields): Layout the fields, too.
19251         (avoid_overlap): Remove.
19252         (get_binfo_offset_as_int): New function.
19253         (dfs_serach_base_offsets): Likewise.
19254         (layout_nonempty_base_or_field): Likewise.
19255         (build_base_field): Layout fields here.  Avoid placing two objects
19256         of the same type at the same address, under the new ABI.
19257         (build_base_fields): Adjust accordingly.
19258         (create_vtable_ptr): Return the new field, but don't attach it to
19259         TYPE_FIELDS.
19260         (remove_base_field): Remove.
19261         (remove_base_fields): Remove.
19262         (layout_basetypes): Adjust accordingly.
19263         (layout_class_type): Call layout_field for each field, rather than
19264         just making a wholesale call to layout_type.
19266 2000-03-14  Jeff Sturm  <jsturm@sigma6.com>
19268         * except.c (expand_throw): Fix typo in _Jv_Sjlj_Throw.
19270 2000-03-13  Jason Merrill  <jason@casey.cygnus.com>
19272         * decl.c (grokfndecl): Set TREE_NOTHROW if TYPE_NOTHROW_P.
19274         * except.c (dtor_nothrow): New fn.
19275         (do_pop_exception): Use it.  Take type parm.
19276         (push_eh_cleanup): Take type parm.
19277         (expand_start_catch_block): Pass it.
19278         (build_eh_type_type_ref): Accept null type.
19280 2000-03-12  Mark Mitchell  <mark@codesourcery.com>
19282         * cp-tree.h (revert_static_member_fn): Change prototype.
19283         * decl.c (grokfndecl): Adjust call to revert_static_member_fn.
19284         (grok_op_properties): Likewise.
19285         (start_function): Likewise.
19286         (revert_static_member_fn): Simplify.
19287         * pt.c (check_explicit_specialization): Adjust call to
19288         revert_static_member_fn.
19290 2000-03-11  Mark Mitchell  <mark@codesourcery.com>
19292         * cp-tree.h (scope_kind): New type.
19293         (tmpl_spec_kind): Likewise.
19294         (declare_pseudo_global_level): Remove.
19295         (pseudo_global_level_p): Rename to template_parm_scope_p.
19296         (pushlevel): Remove declaration.
19297         (begin_scope): New function.
19298         (finish_scope): Likewise.
19299         (current_tmpl_spec_kind): Likewise.
19300         * decl.c (struct binding_level): Shorten parm_flag to 2 bits.
19301         Shorten keep to 2 bits.  Rename pseudo_global to template_parms_p.
19302         Add template_spec_p.
19303         (toplevel_bindings_p): Adjust.
19304         (declare_pseudo_global_level): Remove.
19305         (pseudo_global_level_p): Rename to template_parm_scope_p.
19306         (current_tmpl_spec_kind): New function.
19307         (begin_scope): Likewise.
19308         (finish_scope): Likewise.
19309         (maybe_push_to_top_level): Adjust.
19310         (maybe_process_template_type_declaration): Likewise.
19311         (pushtag): Likewise.
19312         (pushdecl_nonclass_level): Likewise.
19313         (lookup_tag): Likewise.
19314         (grokfndecl): Handle member template specializations.  Share
19315         constructor and non-constructor code.
19316         * decl2.c (check_classfn): Handle member template specializations.
19317         * pt.c (begin_template_parm_list): Use begin_scope.
19318         (begin_specialization): Likewise.
19319         (end_specialization): Likewise.
19320         (check_explicit_specialization): Use current_tmpl_spec_kind.
19321         Handle member template specializations.
19322         (end_template_decl): Use finish_scope.  Remove call to
19323         get_pending_sizes.
19324         (push_template_decl_real): Remove bogus error message.
19325         (tsubst_decl): Fix typo in code contained in comment.
19326         (instantiate_template): Handle member template specializations.
19327         (most_general_template): Likewise.
19329 2000-03-11  Gabriel Dos Reis  <gdr@codesourcery.com>
19331         * lex.c (whitespace_cr): Compress consecutive calls to warning().
19332         (do_identifier): Ditto for error().
19334         * pt.c (convert_nontype_argument): Ditto for cp_error().
19335         (convert_template_argument): Ditto for cp_pedwarn().
19337 2000-03-11  Jason Merrill  <jason@casey.cygnus.com>
19339         * exception.cc (__check_null_eh_spec): New fn.
19340         * except.c (expand_end_eh_spec): Call it if the spec is throw().
19342 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
19344         * decl.c (push_throw_library_fn): Take the FUNCTION_TYPE.
19345         * except.c (expand_end_eh_spec): Add the return type.
19346         * rtti.c (throw_bad_cast): Add the parmtypes.
19347         (throw_bad_typeid): Likewise.
19349         * semantics.c (expand_stmt): Only leave out rtl for unused
19350         artificials, and set DECL_IGNORED_P on them as well.
19351         * decl.c (wrapup_globals_for_namespace): Likewise.
19353 2000-03-09  Nathan Sidwell  <nathan@codesourcery.com>
19355         * decl.c (maybe_commonize_var): Skip all artificial decls.
19356         * pt.c (tsubst_decl): Don't copy TREE_ASM_WRITTEN.
19358 2000-03-10  Jason Merrill  <jason@casey.cygnus.com>
19360         * lang-options.h, decl2.c: Add -fno-enforce-eh-specs.
19361         * cp-tree.h: Declare flag_enforce_eh_specs.
19362         * decl.c (store_parm_decls, finish_function): Check it.
19364         C library functions don't throw.
19365         * Makefile.in (cfns.h): New target.
19366         (except.o): Depend on it.
19367         * Make-lang.in (cc1plus): Depend on cfns.gperf.
19368         * cfns.gperf: New file.
19369         * cfns.h: Generated.
19370         * except.c: Include it.
19371         (nothrow_libfn_p): New fn.
19372         * decl.c (grokfndecl): Use it.
19373         * cp-tree.h: Declare it.
19375         * decl.c (push_overloaded_decl_1, auto_function,
19376         define_function): Lose.
19377         (build_library_fn_1): New static fn.
19378         (builtin_function): Use it.
19379         (get_atexit_node): Use build_library_fn_ptr.
19380         (build_library_fn, build_cp_library_fn, build_library_fn_ptr,
19381         build_cp_library_fn_ptr, push_library_fn, push_cp_library_fn,
19382         push_void_library_fn, push_throw_library_fn): New fns.
19383         * cp-tree.h: Declare them.
19384         (cp_tree_index): Remove CPTI_BAD_CAST, CPTI_BAD_TYPEID.
19385         (throw_bad_cast_node, throw_bad_typeid_node): Lose.
19386         * except.c (init_exception_processing, call_eh_info, do_pop_exception,
19387         (expand_end_eh_spec, alloc_eh_object, expand_throw): Use above fns.
19388         * rtti.c (build_runtime_decl): Lose.
19389         (throw_bad_cast, throw_bad_typeid, get_tinfo_decl,
19390         build_dynamic_cast_1, expand_si_desc, expand_class_desc,
19391         expand_ptr_desc, expand_attr_desc, expand_generic_desc): Use above fns.
19393         * call.c (build_call): Remove result_type parm.
19394         Call mark_used on unused artificial fns.
19395         * init.c, method.c, typeck.c, except.c, rtti.c: Adjust.
19397 2000-03-09  Jason Merrill  <jason@casey.cygnus.com>
19399         * call.c (build_call): Set TREE_NOTHROW on the CALL_EXPR as
19400         appropriate.
19401         * decl.c (define_function): Set TREE_NOTHROW on the FUNCTION_DECL.
19402         * except.c (call_eh_info, alloc_eh_object, expand_throw): Set
19403         TREE_NOTHROW or TREE_THIS_VOLATILE on the function as appropriate.
19404         * rtti.c (build_runtime_decl, get_tinfo_decl, build_dynamic_cast_1,
19405         expand_si_desc, expand_class_desc, expand_ptr_desc, expand_attr_desc,
19406         expand_generic_desc): Likewise.
19408 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
19410         * exception.cc (__cp_pop_exception): Cleanup the original object.
19412 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
19414         * decl.c (grok_op_properties): Merge conversion to void warning
19415         with other silly op warnings.
19417 2000-03-08  Jason Merrill  <jason@casey.cygnus.com>
19419         * typeck2.c (process_init_constructor): Set TREE_PURPOSE of
19420         array CONSTRUCTOR elements.  Don't use expr_tree_cons.
19422 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
19424         * decl.c (cp_make_fname_decl): New function.
19425         (wrapup_globals_for_namespace): Don't emit unused static vars.
19426         (init_decl_processing): Remove comment about use of
19427         array_domain_type. Set make_fname_decl.
19428         (cp_finish_decl): Remove __FUNCTION__ nadgering.
19429         * semantics.c (begin_compound_stmt): Remove
19430         current_function_name_declared flagging.
19431         (expand_stmt): Don't emit unused local statics.
19432         * typeck.c (decay_conversion): Don't treat __FUNCTION__ decls
19433         specially.
19435 2000-03-08  Nathan Sidwell  <nathan@codesourcery.com>
19437         * typeck.c (convert_for_assignment): Don't look at array
19438         initializer.
19439         * call.c (convert_like_real): Likewise.
19441 2000-03-07  Jason Merrill  <jason@casey.cygnus.com>
19443         Add initial support for '\uNNNN' specifier.
19444         * lex.c (read_ucs): New fn.
19445         (readescape, skip_white_space): Call it.
19446         (is_extended_char, is_extended_char_1): New fns.
19447         (utf8_extend_token): New fn, #if 0'd out.
19448         (real_yylex): Treat extended chars like letters.
19450         * search.c (note_debug_info_needed): Walk the bases even if we
19451         weren't deferring the type itself.
19453 2000-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
19455         * decl2.c (finish_objects): Constify a char*.
19457         * method.c (emit_thunk): Likewise.
19459 2000-03-06  Nathan Sidwell  <nathan@codesourcery.com>
19461         * typeck.c (dubious_conversion_warnings): Look through
19462         REFERENCE_TYPE.
19464 2000-03-06  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19466         * class.c (dfs_modify_vtables): I is now unsigned.
19467         (check_bitfield_decl): Use tree_int_cst_sgn and compare_tree_int.
19468         (build_base_field): Add casts of TREE_INT_CST_LOW to HOST_WIDE_INT.
19469         * error.c (dump_expr): Cast TREE_INT_CST_HIGH to unsigned.
19470         * init.c (build_vec_init): Cast TREE_INT_CST_LOW to HOST_WIDE_INT.
19471         * method.c (build_overload_int): Cast TREE_INT_CST_HIGH to unsigned.
19472         * typeck.c (build_binary_op, case TRUNC_DIV_EXPR):
19473         Call integer_all_onesp.
19474         * typeck2.c (process_init_constructor): Use compare_tree_int.
19476         * lang-specs.h (as): Don't call if -syntax-only.
19478 2000-03-06  Mark Mitchell  <mark@codesourcery.com>
19480         * expr.c (cplus_expand_expr, case STMT_EXPR): Don't set
19481         RTL_EXPR_HAS_NO_SCOPE after all.
19483 2000-03-05  Mark Mitchell  <mark@codesourcery.com>
19485         * expr.c (cplus_expand_expr, case STMT_EXPR): Use
19486         expand_start_stmt_expr and expand_end_stmt_expr directly.  Set
19487         RTL_EXPR_HAS_NO_SCOPE.
19489         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG a little
19490         later.
19492         * dump.c (dequeue_and_dump): Dump SCOPE_NO_CLEANUPS_P.
19494 2000-03-05  Nathan Sidwell  <nathan@codesourcery.com>
19496         * call.c (convert_like): Macrofy.
19497         (convert_like_with_context): New macro.
19498         (convert_like_real): Renamed from convert_like.  Add calling
19499         context parameters, for diagnostics. Add recursive flag.  Call
19500         dubious_conversion_warnings for outer conversion.
19501         (build_user_type_conversion): Use convert_like_with_context.
19502         (build_over_call): Likewise. Don't warn about dubious
19503         conversions here. Adjust convert_default_arg calls.
19504         (convert_default_arg): Add context parameters for diagnostics.
19505         Pass through to convert_like_with_context.
19506         * cp-tree.h (convert_default_arg): Add context parameters.
19507         (dubious_conversion_warnings): Prototype new function.
19508         * typeck.c (convert_arguments): Adjust convert_default_arg call.
19509         (dubious_conversion_warnings): New function, broken
19510         out of convert_for_assignment.
19511         (convert_for_assignment): Adjust.
19513 2000-03-03  Jason Merrill  <jason@casey.cygnus.com>
19515         * decl2.c (key_method): Break out from...
19516         (import_export_vtable, import_export_class): ...here.
19518         * decl.c (finish_function): Don't mess with flag_keep_inline_functions.
19519         * decl2.c (finish_vtable_vardecl): Don't check decl_function_context.
19521         * search.c (note_debug_info_needed, dfs_debug_mark,
19522         dfs_debug_unmarkedp): Uncomment.  Adjust for new scheme.
19523         * decl2.c (finish_vtable_vardecl): Call note_debug_info_needed.
19525 2000-03-03  Nathan Sidwell  <nathan@codesourcery.com>
19527         * decl.c (cp_finish_decl): Remove obsolete obstack comments, fix
19528         typos.
19530 2000-03-02  Mark Mitchell  <mark@codesourcery.com>
19532         * cp-tree.h (TYPE_NEEDS_DESTRUCTOR): Rename to ...
19533         (TYPE_HAS_NONTRIVIAL_DESTRUCTOR): ... this.
19534         (TYPE_HAS_TRIVIAL_DESTRUCTOR): New macro.
19535         (lang_type): Split gets_new into has_new and has_array_new.
19536         (TYPE_VEC_NEW_USES_COOKIE): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
19537         (TYPE_GETS_NEW): Split into ...
19538         (TYPE_HAS_NEW_OPERATOR): ... this, and ...
19539         (TYPE_HAS_ARRAY_NEW_OPERATOR): ... this.
19540         (DECL_ARRAY_DELETE_OPERATOR_P): New macro
19541         (build_op_new_call): Don't declare.
19542         (build_new_1): Likewise.
19543         * call.c (build_op_new_call): Remove.
19544         * class.c (check_bases): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
19545         instead of TYPE_NEEDS_DESTRUCTOR.
19546         (finish_struct_bits): Likewise.
19547         (add_implicitly_declared_members): Likewise.
19548         (check_field_decl): Likewise.
19549         (check_methods): Set TYPE_VEC_DELETE_TAKES_SIZE here, and set it
19550         correctly under the new ABI.
19551         * decl.c (start_decl_1): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR
19552         instead of TYPE_NEEDS_DESTRUCTOR.
19553         (initialize_local_var): Likewise.
19554         (destroy_local_var): Likewise.
19555         (cp_finish_decl): Likewise.
19556         (register_dtor_fn): Likewise.
19557         (grok_op_properties): Set TYPE_HAS_NEW_OPERATOR and
19558         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.  Don't set
19559         TYPE_VEC_DELETE_TAKES_SIZE here.
19560         (xref_basetypes): Set TYPE_HAS_NEW_OPERATOR and
19561         TYPE_HAS_ARRAY_NEW_OPERATOR, not TYPE_HAS_NEW.
19562         (store_parm_decls):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
19563         (finish_destructor_body): Likewise.
19564         (maybe_build_cleanup_1): Likewise.
19565         * decl2.c (do_static_destruction): Likewise.
19566         * init.c (build_new_1): Make it static.
19567         (perform_member_init): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
19568         (expand_cleanup_for_base): Likewise.
19569         (get_cookie_size): New function.
19570         (build_new_1): Handle array-new cookies correctly under the new
19571         ABI.
19572         (build_vec_delete_1): Likewise.
19573         (build_vec_init):  Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
19574         (build_delete): Likewise.
19575         (build_vec_delete): Handle array-new cookies correctly under the new
19576         ABI.
19577         * lex.c (do_identifier): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
19578         * pt.c (instantiate_class_template): Set TYPE_HAS_NEW_OPERATOR and
19579         TYPE_HAS_ARRAY_NEW_OPERATOR.
19580         * ptree.c (print_lang_type): Check them.
19581         * search.c (context_for_name_lookup): Fix typo in comment.
19582         (tree_has_any_destructor_p): Use TYPE_HAS_NONTRIVIAL_DESTRUCTOR.
19583         * tree.c (break_out_cleanups): Likewise.
19584         (build_cplus_array_test_1): Likewise.
19585         (cp_build_qualified_type_real): Likewise.
19586         * typeck.c (complete_type): Likewise.
19588         * g++spec.c (lang_specific_driver): Add -fnew-abi at the start of
19589         the command-line, not the end.
19591 2000-03-01  Jason Merrill  <jason@casey.cygnus.com>
19593         * pt.c (instantiate_decl): Clear TI_PENDING_TEMPLATE_FLAG.
19595 2000-03-02  Tom Tromey  <tromey@cygnus.com>
19597         * cp-tree.h (build_java_class_ref): Declare.
19598         * init.c (build_java_class_ref): No longer static.
19599         * except.c (expand_throw): Generate a Java-style `throw' if the
19600         thrown object is a "Java" object.
19601         (initialize_handler_parm): Generate a Java-style lookup of
19602         exception info if the caught object is a "Java" object.
19603         (catch_language, catch_language_init): New globals.
19604         (decl_is_java_type): New function.
19605         (expand_start_catch_block): Don't call push_eh_info() or
19606         push_eh_cleanup() when handling a Java-style "catch".  Pass Java
19607         class reference to build_catch_block.
19609 2000-03-02  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19611         * typeck.c (comptypes): Treat sizetype like its language equivalent.
19613 2000-03-01  Bernd Schmidt  <bernds@cygnus.co.uk>
19615         * typeck.c (maybe_warn_about_returning_address_of_local): Reorganize
19616         to merge reference/pointer code and fix incorrect warnings.
19618 2000-02-29  Jason Merrill  <jason@casey.cygnus.com>
19620         * search.c (protected_accessible_p): Use context_for_name_lookup.
19622         * init.c (construct_virtual_bases): Fix thinko.
19623         * typeck.c (expand_ptrmemfunc_cst): Fix thinko.
19625 2000-03-01  Martin von Loewis  <loewis@informatik.hu-berlin.de>
19627         * decl.c (current_function_decl): Move to toplev.c.
19629 2000-02-29  Nathan Sidwell  <nathan@codesourcery.com>
19631         * pt.c (fn_type_unification): Unify return type, whenever
19632         provided.
19633         (get_bindings_real): Only pass return type when necessary.
19634         Remove explicit return type check.
19635         * class.c (resolve_address_of_overloaded_function): Pass desired
19636         return type to fn_type_unification.
19638 2000-02-28  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19640         * class.c (build_vtbl_or_vbase_field, check_methods): Don't clear
19641         DECL_FIELD_SIZE.
19642         (check_bitfield_decl, check_field_decls): Set DECL_SIZE, not
19643         DECL_FIELD_SIZE.
19644         * rtti.c (expand_class_desc): Likewise.
19645         * cp-tree.h (DECL_INIT_PRIORITY): Use underlying union name.
19646         (THUNK_VCALL_OFFSET): Likewise.
19647         (THUNK_DELTA): Reflect changes in ../tree.h.
19649 2000-02-28  Jason Merrill  <jason@casey.cygnus.com>
19651         * search.c (protected_accessible_p): Also allow the access if
19652         the member is public in DERIVED.  Lose TYPE parm.
19653         (friend_accessible_p): Lose TYPE parm.
19654         (accessible_p): Adjust.
19656 2000-02-27  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19658         * class.c (dfs_build_vtable_offset_vtbl_entries): Don't use size_binop
19659         on things that are not sizes; ssize_binop deleted.
19660         Call size_diffop when appropriate.
19661         (dfs_build_vcall_offset_vtbl_entries): Likewise.
19662         (build_primary_vtable, build_secondary_vtable): Likewise.
19663         (dfs_set_offset_for_unshared_vbases, dfs_modify_vtables): Likewise.
19664         Variable I is HOST_WIDE_INT.
19665         (get_vfield_offset): Pass proper types to size_binop.
19666         (size_extra_vtbl_entries, layout_virtual_bases): Likewise.
19667         (finish_struct_1): Likewise.
19668         (skip_rtti_stuff): Arg N is now pointer to signed.
19669         (layout_class_type): Use size_zero_node.
19670         * cp-tree.h (skip_rtti_stuff): Arg N is pointer to signed.
19671         * cvt.c (cp_convert_to_pointer): Pass proper types to size_binop.
19672         * decl.c (complete_arry_type): Pass proper types to size_binop.
19673         (xref_basetypes): BINFO_OFFSET is sizetype.
19674         * error.c (dump_expr): Don't use size_binop non-sizes.
19675         * expr.c (cplus_expand_constant): Pass proper types to size_binop.
19676         * init.c (construct_virtual_bases): Fix type error.
19677         (build_vec_delete_1): Pass proper type to size_binop and don't
19678         fold result.
19679         * lex.c (cp_make_lang_type): BINFO_OFFSET is sizetype.
19680         * rtti.c (get_base_offset): Pass proper type to size_binop.
19681         * search.c (dfs_find_vbases): Fix type error.
19682         (expand_upcast_fixups): Arg to skip_rtti_stuff is pointer to signed.
19683         (dfs_get_vbase_types): BINFO_OFFSET is sizetype.
19684         * tree.c (debug_binfo): Variable N is signed.
19685         Use HOST_WIDE_INT_PRINT_DEC.
19686         * typeck.c (comptypes): sizetype is same as equivalent integer type.
19687         (c_sizeof, c_sizeof_nowarn, expr_sizeof): Use TYPE_SIZE_UNIT,
19688         size_one_node and size_zero_node.
19689         (c_alignof): Use size_one_node.
19690         (build_component_addr): Pass proper types to size_binop.
19691         (expand_ptrmemfunc_cst): Don't use size_binop on non-sizes.
19693 2000-02-26  Jason Merrill  <jason@casey.cygnus.com>
19695         Implement class scope using-declarations for functions.
19696         * class.c (handle_using_decl): Call add_method for used functions.
19697         Use IDENTIFIER_CLASS_VALUE to check for conflicts.
19698         (add_method): Used functions are hidden by local functions.
19699         (check_bases_and_members): Handle using-decls before finalizing
19700         CLASSTYPE_METHOD_VEC.
19701         * call.c (add_function_candidate): Add ctype parm; if nonzero,
19702         override the type of 'this' accordingly.
19703         (add_template_candidate, add_template_candidate_real): Add ctype parm.
19704         (convert_class_to_reference, build_user_type_conversion_1,
19705         build_new_function_call, build_object_call, build_new_op,
19706         build_new_method_call): Pass ctype parm.
19708         * search.c (lookup_member): Put rval_binfo, not basetype_path, in
19709         the baselink.
19710         * call.c (convert_class_to_reference, build_user_type_conversion_1,
19711         build_new_function_call, build_object_call, build_new_op,
19712         build_new_method_call, build_op_delete_call): Don't get basetype_path
19713         from a baselink.
19714         * typeck.c (build_component_ref): Likewise.
19715         * init.c (build_offset_ref): Likewise.
19716         (resolve_offset_ref): Don't call enforce_access.
19717         Call build_scoped_ref.
19718         * typeck2.c (build_scoped_ref): Simplify.  Do nothing if it
19719         would cause an error or if -pedantic.
19720         * class.c (alter_access): Lose binfo parm.
19722 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
19724         * semantics.c (simplify_aggr_init_exprs_p): Don't walk into
19725         types.
19727 2000-02-25  Alfred Minarik <a8601248@unet.univie.ac.at>
19729         * rtti.c (get_vmi_pseudo_type_info): Move __vmi_class_type_info
19730         pseudo_type_info creation into the std namespace
19732 2000-02-26  Mark Mitchell  <mark@codesourcery.com>
19734         * cp-tree.h (DECL_NEEDED_P): Tweak to correct usage before EOF.
19735         (import_export_class): Remove declaration.
19736         * decl2.c (import_export_class): Make it static.
19737         * dump.c (dequeue_and_dump): Handle PREDECREMENT_EXPR,
19738         PREINCREMENT_EXPR, POSTDECREMENT_EXPR, POSTINCREMENT_EXPR,
19739         EXPR_WITH_FILE_LOCATION.
19740         * lex.c (check_newline): Tweak filename/lineno setting.
19741         * semantics.c (begin_while_stmt): Fix typo in comment.
19743 2000-02-26  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19745         * lang-options.h (-fmessage-length=): Add missing option.
19747         * Make-lang.in (CXX_SRCS): Add .h files and sort list.
19749 2000-02-26  Zack Weinberg  <zack@wolery.cumb.org>
19751         * Make-lang.in: Delete refs to LIBGCC2_DEPS.
19753 2000-02-25  Jim Wilson  <wilson@cygnus.com>
19755         * optimize.c (expand_call_inline): Emit the return label before
19756         evaluating the return value.
19758 2000-02-24  Mark Mitchell  <mark@codesourcery.com>
19760         * lex.c (check_newline): Use push_srcloc and pop_srcloc, rather
19761         than duplicating functionality here.
19762         * optimize.c: Include input.h.
19763         (expand_call_inline): Use push_srcloc and pop_srcloc.
19764         * parse.y (maybe_cv_qualifier): Remove calls to emit_line_note.
19765         * parse.c: Regenerated.
19766         * Makefile.in (lex.o): Depend on input.h.
19767         (optimize.o): Likewise.
19769 2000-02-24  Nathan Sidwell  <nathan@codesourcery.com>
19771         * decl.c (grokdeclarator): Diagnose qualifiers on non-member
19772         function type, rather than ICE.
19774 2000-02-23  Jason Merrill  <jason@casey.cygnus.com>
19776         * decl.c (grokdeclarator): Call decl_type_access_control.
19777         * parse.y (parse_end_decl): Don't call decl_type_access_control if
19778         decl is null.
19780 2000-02-23  Nathan Sidwell  <nathan@codesourcery.com>
19782         * decl.c (decls_match): Remove obsolete static member nadgering.
19784 2000-02-21  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
19786         * decl.c (grokdeclarator): Change ANSI to ISO.
19787         * lex.c (consume_string, readescape, do_identifier): Likewise.
19788         (parse_float, real_yylex): Likewise.
19789         * parse.y (paren_expr_or_null, paren_cond_or_null): Likewise.
19790         (unary_expr, new_initializer, cast_expr, primary, primary_no_id,
19791         new_type_id, maybe_label_decls, simple_stmt,
19792         for.init.statement): Likewise.
19793         * pt.c (do_decl_instantiation, do_type_instantiation): Likewise.
19794         * semantics.c (finish_named_return_value): Likewise.
19795         * parse.c: Regenerate.
19797 2000-02-21  Mark Mitchell  <mark@codesourcery.com>
19799         * cp-tree.h (CPTI_VTABLE_INDEX_TYPE): New macro.
19800         (CPTI_CLASS_STAR_TYPE): Remove.
19801         (vtable_index_type): Likewise.
19802         (class_star_type_node): Remove.
19803         (TYPE_PTRMEMFUNC_FN_TYPE): Adjust for the new ABI.
19804         (build_binary_op_nodefault): Remove.
19805         * call.c (build_new_op): Use build_binary_op instead of
19806         build_binary_op_nodefault.
19807         * decl.c (init_decl_processing): Remove class_star_type_node
19808         initialization.  Make delta_type_node ptrdiff_type_node under the
19809         new ABI.  Initialize vtable_index_type.
19810         (build_ptrmemfunc_type): Build different structures for the new
19811         ABI.
19812         (build_enumerator): Use build_binary_op instead of
19813         build_binary_op_nodefault.
19814         * method.c (build_overload_value): Mangle pointers-to-members
19815         appropriately under the new ABI.
19816         * typeck.c (build_array_ref): Use build_binary_op instead of
19817         build_binary_op_nodefault.
19818         (get_member_function_from_ptrfunc): Adjust for the new ABI.
19819         (build_binary_op_nodefault): Rename to ...
19820         (build_binary_op): ... this.  Remove old version.  Adjust for
19821         pointer-to-member comparisons under the new ABI.
19822         (build_ptrmemfunc1): Remove dead code.  Adjust for the new ABI.
19823         (build_ptrmemfunc): Adjust for the new ABI.
19824         (expand_ptrmemfunc_cst): Likewise.
19825         (delta2_from_ptrmemfunc): Assert that we're not using the new ABI.
19826         (pfn_from_ptrmemfunc): Adjust for the new ABI.
19828 2000-02-21  Gabriel Dos Reis  <gdr@codesourcery.com>
19830         * call.c (build_object_call): Compress consecutive calls to
19831         cp_error.
19832         (build_conditional_expr): Say 'ISO C++' not 'ANSI C++'.
19833         (build_op_delete_call): Adjust message formatting.
19835         * class.c (check_bases): Compress consecutive calls to
19836         cp_pedwarn.
19837         (finish_struct_anon): Say 'ISO C++'.
19839         * decl.c (start_decl): Same here.
19840         (grok_reference_init): Likewise.
19841         (grokfndecl): Correct message formatting.
19842         (grokfndecl): Improve diagnostic.
19843         (check_static_variable_definition): Likewise. Say 'ISO C++'
19844         (compute_array_index_type): Say 'ISO C++'
19845         (create_array_type_for_decl): Compress consecutive calls to
19846         cp_error.
19847         (grokdeclarator): Say 'ISO C++'
19848         (grok_op_properties): Likewise.
19850         * decl2.c (delete_sanity): Clairify diagnostic.
19851         (check_member_template): Same here.
19852         (grok_function_init): Use consistent terminology.
19854         * expr.c (do_case): Say 'ISO C++'
19856         * friend.c (do_friend): Compress consecutive calls to warning.
19858 2000-02-20  Mark Mitchell  <mark@codesourcery.com>
19860         * cp-tree.h (merge_primary_and_secondary_vtables_p): New macro.
19861         * class.c (build_secondary_vtable): Reorganize.  Don't create a
19862         new vtable under the new ABI.
19863         (layout_vtable_decl): Don't add num_extra_vtbl_entries when
19864         computing the size.
19865         (build_vtbl_initializer): Don't return a CONSTRUCTOR; just return
19866         the initializing elements.
19867         (initialize_vtable): New function.
19868         (dfs_finish_vtbls): Use it.
19869         (dfs_accumulate_vtbl_inits): New function.
19870         (finish_vtbls): Merge primary and secondary vtables under the new
19871         ABI.
19872         (finish_struct_1): Remove redundant call to layout_vtable_decl.
19873         * init.c (expand_virtual_init): Deal with BINFO_VTABLEs that
19874         aren't VAR_DECLs.
19876         * class.c (build_vtable): New function, split out from ...
19877         (get_vtable_decl): ... here, and ...
19878         (build_secondary_vtable): ... here.
19880         * pt.c (tsubst_decl): Fix formatting.
19882 2000-02-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19884         * class.c (build_primary_vtable, layout_vtable_decl): Likewise.
19885         (avoid_overlap, build_base_field): Likewise.
19886         (build_base_field, build_base_fields, is_empty_class):
19887         Test DECL_SIZE with integer_zero.
19888         (layout_class_type): Set CLASSTYPE_SIZE_UNIT.
19889         * cp-tree.h (struct lang_type): New field size_unit.
19890         (CLASSTYPE_SIZE_UNIT): New macro.
19891         * decl.c (init_decl_processing): Set DECL_SIZE_UNIT.
19892         (cp_finish_decl): Delete -Wlarger-than processing.
19893         * optimize.c (remap_decl): Walk DECL_SIZE_UNIT.
19894         * pt.c (tsubst_decl): Set DECL_SIZE_UNIT.
19895         * tree.c (make_binfo): binfo vector is one entry longer.
19896         (walk_tree): Walk DECL_SIZE_UNIT.
19898 2000-02-19  Mark Mitchell  <mark@codesourcery.com>
19900         * class.c (dfs_build_vcall_offset_vtbl_entries): Fix typo in
19901         comment.
19902         (build_vtable_entry): Don't assume all vtable entries are
19903         functions.
19904         (build_vtbl_initializer): Adjust accordingly.
19905         (get_vtable_decl): Fix formatting.
19907 2000-02-18  Jason Merrill  <jason@casey.cygnus.com>
19909         * semantics.c (deferred_type_access_control): Walk the entire
19910         type_lookups list.
19911         (save_type_access_control): Rename from
19912         initial_deferred_type_access_control.  Just remember the value.
19913         (decl_type_access_control): New fn.
19914         (begin_function_definition): Use deferred_type_access_control, after
19915         we've started the function.  Set type_lookups to error_mark_node.
19916         * parse.y (frob_specs, fn.def1): Adjust.
19917         (parse_decl0, parse_field, parse_field0, parse_bitfield): New fns.
19918         (parse_end_decl, parse_bitfield0, parse_method): New fns.
19919         (fn.def2, initdcl, initdcl0_innards, nomods_initdcl0): Use them.
19920         (after_type_component_declarator0): Likewise.
19921         (after_type_component_declarator): Likewise.
19922         (notype_component_declarator): Likewise.
19923         * cp-tree.h: Adjust.
19925         * decl.c (redeclaration_error_message): Allow redeclaration of
19926         namespace-scope decls.
19928 2000-02-18  Martin von Loewis  <loewis@informatik.hu-berlin.de>
19930         * typeck2.c (my_friendly_abort): Use GCCBUGURL.
19932 2000-02-17  Mark Mitchell  <mark@codesourcery.com>
19934         * class.c (add_method): Don't set DECL_VIRTUAL_CONTEXT.
19935         * decl2.c (grokclassfn): Likewise.
19937         * ir.texi: Document DECL_TEMPLATE_INSTANTIATIONS.
19939         * decl2.c (lang_decode_option): Don't set default message length
19940         here.
19941         * lex.c (lang_init_options): Set it here.
19943 2000-02-16  Mark Mitchell  <mark@codesourcery.com>
19945         Make DECL_CONTEXT mean the class in which a member function was
19946         declared, even for a virtual function.
19947         * cp-tree.h (DECL_CLASS_CONTEXT): Adjust.
19948         (DECL_FRIEND_CONTEXT): New macro.
19949         (DECL_REAL_CONTEXT): Remove.
19950         (SET_DECL_FRIEND_CONTEXT): Likewise.
19951         (DECL_VIRTUAL_CONTEXT): Adjust.
19952         (DECL_CLASS_SCOPE_P): Use TYPE_P.
19953         (add_friends): Remove.
19954         (hack_decl_function_context): Likewise.
19955         * call.c (build_new_function_call): Replace DECL_REAL_CONTEXT with
19956         CP_DECL_CONTEXT.
19957         (build_over_call): Fix indentation.  Use DECL_CONTEXT
19958         instead of DECL_CLASS_CONTEXT.
19959         * class.c (dfs_build_vcall_offset_vtbl_entries): Likewise.
19960         (add_method): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
19961         (strictly_overrides): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
19962         (build_vtbl_or_vbase_field): Don't set DECL_CLASS_CONTEXT.
19963         (build_base_field): Likewise.
19964         (finish_struct_1): Likewise.
19965         (build_self_reference): Likewise.
19966         * decl.c (push_class_binding): Use CP_DECL_CONTEXT, not
19967         DECL_REAL_CONTEXT.
19968         (pushtag): Use decl_function_context, not
19969         hack_decl_function_context.
19970         (decls_match): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
19971         (duplicate_decls): Use DECL_VIRTUAL_CONTEXT.
19972         (pushdecl): Remove bogus code.
19973         (start_decl): Use DECL_CONTEXT rather than DECL_CLASS_CONTEXT.
19974         (cp_finish_decl): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
19975         (grokfndecl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
19976         Use decl_function_context, nothack_decl_function_context.
19977         (grokvardecl): Don't set DECL_CLASS_CONTEXT.
19978         (grokdeclarator): Likewise.  Use decl_function_context, not
19979         hack_decl_function_context.
19980         (copy_args_p): Document.  Don't use DECL_CLASS_CONTEXT.
19981         (start_function): Use DECL_FRIEND_CONTEXT, not
19982         DECL_CLASS_CONTEXT.  Use decl_function_context, not
19983         hack_decl_function_context.
19984         (finish_function): Use decl_function_context, not
19985         hack_decl_function_context.
19986         (maybe_retrofit_in_chrg): Use DECL_CONTEXT, not
19987         DECL_CLASS_CONTEXT.
19988         (grokclassfn): Set DECL_VIRTUAL_CONTEXT, not DECL_CONTEXT.
19989         (finish_static_data_member_decl): Don't set DECL_CLASS_CONTEXT.
19990         (grokfield): Likewise.
19991         (finish_builtin_type): Likewise.
19992         (finish_vtable_vardec): Use decl_function_context, not
19993         hack_decl_function_context.
19994         (import_export_decl): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
19995         (start_static_initialization_or_destruction): Likewise.
19996         (finish_static_initialization_or_destruction): Likewise.
19997         (mark_used): Adjust logic for deciding when to synthesize methods.
19998         * dump.c (dequeue_and_dump): Use CP_DECL_CONTEXT, not
19999         DECL_REAL_CONTEXT.
20000         * error.c (dump_function_decl): Use DECL_CONTEXT, not
20001         DECL_CLASS_CONTEXT.
20002         * friend.c (is_friend): Likewise.
20003         (add_friends): Remove.
20004         (do_friend): Use SET_DECL_FRIEND_CONTEXT.
20005         * lex.c (begin_definition_of_inclass_inline): Use
20006         decl_function_context, not hack_decl_function_context.
20007         (process_next_inline): Likewise.
20008         (do_identifier): Use CP_DECL_CONTEXT, not DECL_REAL_CONTEXT.
20009         * method.c (set_mangled_name_for_decl): Use DECL_CONTEXT, not
20010         DECL_CLASSS_CONTEXT.
20011         (hack_identifier): Likewise.
20012         (synthesize_method):  Use decl_function_context, not
20013         hack_decl_function_context.
20014         * pt.c (template_class_depth_real): Use CP_DECL_CONTEXT, not
20015         DECL_REAL_CONTEXT.
20016         (is_member_template): Use decl_function_context, not
20017         hack_decl_function_context.  Use DECL_CONTEXT, not
20018         DECL_CLASS_CONTEXT.
20019         (build_template_decl): Set DECL_VIRTUAL_CONTEXT, not
20020         DECL_CLASS_CONTEXT.
20021         (check_default_tmpl_args): Use CP_DECL_CONTEXT, not
20022         DECL_REAL_CONTEXT.
20023         (push_template_decl_real): Likewise.
20024         (instantiate_class_template): Don't call add_friends.
20025         (tsubst_default_argument): Use DECL_CONTEXT, not
20026         DECL_REAL_CONTEXT.
20027         (tsubst_decl): Set DECL_VIRTUAL_CONTEXT, not DECL_CLASS_CONTEXT.
20028         Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
20029         (set_meangled_name_for_template_decl): Use DECL_CONTEXT, not
20030         DECL_CLASS_CONTEXT.
20031         * repo.c (repo_inline_used): Likewise.
20032         * search.c (current_scope): Adjust for new _CONTEXT macros.
20033         (context_for_name_lookup): Use CP_DECL_CONTEXT, not
20034         DECL_REAL_CONTEXT.
20035         (friend_accessible_p): Use DECL_CONTEXT, not DECL_CLASS_CONTEXT.
20036         (lookup_fnfields_here):Likewise.
20037         (check_final_overrider): Likewise.
20038         (init_vbase_pointers): Likewise.
20039         (virtual_context): Likewise.
20040         * semantics.c (finish_member_declaration): Just set DECL_CONTEXT.
20041         (expand_body): Use decl_function_context, not
20042         hack_decl_function_context.
20043         * tree.c (hack_decl_function_context): Remove.
20044         * typeck.c (build_x_function_call): Use DECL_CONTEXT, not
20045         DECL_CLASS_CONTEXT.
20046         * typeck2.c (error_not_base_type): Likewise.
20048 2000-02-15  Jason Merrill  <jason@casey.cygnus.com>
20050         * decl.c (xref_tag): Don't SET_IDENTIFIER_NAMESPACE_VALUE.
20052 2000-02-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20054         * Make-lang.in (g++spec.o): Depend on $(GCC_H), not gcc.h.
20056 2000-02-15  Jonathan Larmour  <jlarmour@redhat.co.uk>
20058         * lang-specs.h: Add new __GNUC_PATCHLEVEL__ define to default spec.
20060 2000-01-16  Gabriel Dos Reis  <gdr@codesourcery.com>
20062         * decl2.c (lang_decode_option): Enable automatic line wrapping.
20064 2000-02-13  Jason Merrill  <jason@casey.cygnus.com>
20066         * parse.y (frob_specs): Split out...
20067         (parse_decl): From here.
20068         (fn.def2): Call initial_deferred_type_access_control.
20069         (after_type_component_declarator0): Call frob_specs.
20070         (notype_component_declarator0): Likewise.
20071         * search.c (friend_accessible_p): Nested classes are friends of their
20072         enclosing classes.
20074 2000-02-10  Mark Mitchell  <mark@codesourcery.com>
20076         * ir.texi (ADDR_EXPR): Document the fact that an ADDR_EXPR can be
20077         used to create an implicit temporary.
20079         * class.c (dfs_modify_vtables): Tweak calculation of functions to
20080         override.
20082 2000-02-08  Nathan Sidwell  <nathan@acm.org>
20084         * typeck.c (strip_all_pointer_quals): Use TYPE_MAIN_VARIANT, to
20085         strip array element qualifiers too.
20087 2000-02-07  Mark Mitchell  <mark@codesourcery.com>
20089         * decl.c (store_parm_decls): Don't build cleanups for parameters
20090         while processing_template_decl.
20092 2000-02-07  Jason Merrill  <jason@casey.cygnus.com>
20094         * cp-tree.h (struct saved_scope): Add incomplete field.
20095         (namespace_scope_incomplete): New macro.
20096         * decl.c (pushdecl): Use it.
20097         (hack_incomplete_structures): Use it.  See through artificial
20098         binding levels.
20099         (mark_saved_scope): Mark it.
20101         Implement access control for nested types.
20102         * search.c (type_access_control): New fn.
20103         (accessible_p): Now we do perform access control for types.
20104         * semantics.c (deferred_type_access_control): New fn.
20105         (initial_deferred_type_access_control): New fn.
20106         (begin_function_definition): Call it.  Add lookups parm.
20107         * decl.c (struct binding_level): Add this_class field.
20108         (pushlevel_class): Set it.
20109         (mark_binding_level): Mark it.
20110         (lookup_name_real): Use it.  Call type_access_control.
20111         (mark_saved_scope): Mark lookups field.
20112         * cp-tree.h (flagged_type_tree): Add lookups field.
20113         (struct saved_scope): Add lookups field.
20114         (type_lookups): New macro.
20115         * parse.y (declmods): Now <ftype>.
20116         (parse_decl): Add lookups parm.  Call
20117         initial_deferred_type_access_control.
20118         (lang_extdef): Clear type_lookups.
20119         (typed_declspecs, declmods, typespec): Set lookups field.
20120         (initdcl): Call deferred_type_access_control.
20121         (fn.def1, fn.def2, typed_declspecs1, initdcl0_innards, nomods_initdcl0,
20122         component_decl_1, named_parm): Adjust.
20123         * friend.c (is_friend): Nested classes are friends of their
20124         enclosing classes.
20126         * class.c (currently_open_derived_class): New fn.
20127         * method.c (hack_identifier): Use it.
20129         * lex.c (do_identifier): Remove obsolete code.
20131         * parse.y (typed_typespecs): Propagate new_type_flag properly.
20133 2000-02-05  Zack Weinberg  <zack@wolery.cumb.org>
20135         * tinfo.h: Remove apostrophes from C++ comment (xgettext
20136         thinks this file is plain C).
20138 2000-02-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20140         * Makefile.in (call.o): Depend on $(EXPR_H).
20142         * call.c: Include "expr.h".
20144         * class.c (dump_class_hierarchy): Add prototype.
20146         * search.c (dfs_get_pure_virtuals): Likewise.
20148 2000-02-1  Ulrich Drepper  <drepper@redhat.com>
20150         * parse.y (simple_stmt): Allow :: token in asm parameter list.
20151         * parse.c: Rebuilt.
20153 2000-01-31  Jim Wilson  <wilson@cygnus.com>
20155         * class.c (build_vtbl_or_vbase_field): New parameter fcontext.
20156         Store it in DECL_FCONTEXT.
20157         (build_vbase_pointer_fields, create_vtable_ptr): Fix callers.
20159 2000-01-31  Jason Merrill  <jason@casey.cygnus.com>
20161         * tinfo.h (old abi): #include "tconfig.h".
20162         * tinfo.cc (convert_to_base): Move into old abi section.
20164 2000-01-31  Mark Mitchell  <mark@codesourcery.com>
20166         * cp-tree.h (BINFO_VIRTUALS): Tweak documentation.
20167         (CLASSTYPE_PRIMARY_BINFO): Use BINFO_PRIMARY_BINFO.
20168         (BINFO_PRIMARY_BINFO): New macro.
20169         (BF_DELTA): Rename to ...
20170         (BV_DELTA): ... this.
20171         (BF_VCALL_INDEX): Rename to ...
20172         (BV_VCALL_INDEX): ... this.
20173         (BF_FN): Rename to ...
20174         (BV_FN): ... this.
20175         * class.c (build_vbase_path): Adjust for changes to reverse_path.
20176         (set_rtti_entry): Rename BF_ macros to BV_ variants.
20177         (modify_vtable_entry): Simplify.
20178         (add_virtual_function): Rename BF_ macros to BV_ variants.
20179         (build_vtable_initializer): Likewise.
20180         (get_class_offset_1): Remove.
20181         (dfs_get_class_offset): Likewise.
20182         (get_class_offset): Likewise.
20183         (dfs_find_final_overrider): New function.
20184         (find_final_overrider): Likewise.
20185         (modify_one_vtable): Remove.
20186         (dfs_find_base): New function.
20187         (dfs_modify_vtables): Fold modify_one_vtable in here.  Use
20188         find_final_overrider.
20189         (modify_all_vtables): Adjust.  Set BV_VCALL_INDEX on new
20190         virtuals.
20191         (dfs_fixup_vtable_deltas): Remove.
20192         (override_one_vtable): Remove.
20193         (merge_overrides): Likewise.
20194         (layout_virtual_bases): Make sure BINFO_OFFSET is set right for
20195         unreal chilren of virtual bases.
20196         (finish_struct_1): Don't use merge_overrides.  Don't use
20197         dfs_fixup_vtable_deltas.
20198         * tree.c (reverse_path): Return a TREE_LIST, not a chain of
20199         BINFOs.
20201 2000-01-31  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
20202             Jason Merrill  <jason@yorick.cygnus.com>
20204         * tinfo.h: Rename USItype to myint32, depend on BITS_PER_UNIT.
20206 2000-01-31  Alfred Minarik <a8601248@unet.univie.ac.at>
20208         * exception.cc (__throw_bad_typeid): Add missing std::.
20210 2000-01-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20212         * cp-tree.h (make_thunk): PROTO -> PARAMS.
20214 2000-01-31  Nathan Sidwell  <sidwell@codesourcery.com>
20216         * cp-tree.h (new_abi_rtti_p): Use flag_new_abi.
20218         Runtime support for new-abi rtti.
20219         * inc/typeinfo (type_info::operator!=): Define in class.
20220         (type_info::before, type_info::name, type_info::operator==,
20221         type_info::operator!=): Define new ABI implementations.
20222         (type_info::is_pointer_p, type_info::is_function_p): Declare
20223         new virtual functions.
20224         (type_info::do_catch, type_info::do_upcast): Likewise.
20226         * tinfo.h (__base_class_info): Define new class.
20227         (__class_type_info): Likewise.
20228         (__si_class_type_info): Likewise.
20229         (__vmi_class_type_info): Likewise.
20230         (__dynamic_cast): Prototype.
20232         * tinfo.cc: Conditionalize old and new rtti mechanisms.
20233         (type_info::is_pointer_p): Define new function.
20234         (type_info::is_function_p): Likewise.
20235         (type_info::do_catch): Likewise.
20236         (type_info::do_upcast): Likewise.
20237         (vtable_prefix): New structure for vtable access.
20238         (adjust_pointer): Define new template function.
20239         (contained_p, public_p, virtual_p, contained_public_p,
20240         contained_nonpublic_p, contained_nonvirtual_p): Define new
20241         functions.
20242         (nonvirtual_base_type): New local variable.
20243         (__class_type_info::~__class_type_info): Define.
20244         (__si_class_type_info::~__si_class_type_info): Likewise.
20245         (__vmi_class_type_info::~__vmi_class_type_info): Likewise.
20246         (__class_type_info::do_catch): Define new function.
20247         (__class_type_info::do_upcast): Likewise.
20248         (__class_type_info::find_public_src): Likewise.
20249         (__class_type_info::do_find_public_src): Likewise.
20250         (__si_class_type_info::do_find_public_src): Likewise.
20251         (__vmi_class_type_info::do_find_public_src): Likewise.
20252         (__class_type_info::do_dyncast): Likewise.
20253         (__si_class_type_info::do_dyncast): Likewise.
20254         (__vmi_class_type_info::do_dyncast): Likewise.
20255         (__class_type_info::do_upcast): Likewise.
20256         (__si_class_type_info::do_upcast): Likewise.
20257         (__vmi_class_type_info::do_upcast): Likewise.
20258         (__dynamic_cast): Likewise.
20260         * tinfo2.cc (__fundamental_type_info): Define new class.
20261         (__pointer_type_info): Likewise.
20262         (__reference_type_info): Likewise.
20263         (__array_type_info): Likewise.
20264         (__function_type_info): Likewise.
20265         (__enum_type_info): Likewise.
20266         (__ptr_to_member_type_info): Likewise.
20267         (__fundamental_type_info::~__fundamental_type_info): Define.
20268         (__pointer_type_info::~__pointer_type_info): Likewise.
20269         (__reference_type_info::~__reference_type_info): Likewise.
20270         (__array_type_info::~__array_type_info): Likewise.
20271         (__function_type_info::~__function_type_info): Likewise.
20272         (__enum_type_info::~__enum_type_info): Likewise.
20273         (__ptr_to_member_type_info::~__ptr_to_member_type_info): Likewise.
20274         (__pointer_type_info::do_catch): Define new function.
20275         (__ptr_to_member_type_info::do_catch): Define new function.
20277         (__throw_type_match_rtti_2): Use new ABI interface, if enabled.
20278         (__is_pointer): Likewise.
20280         * exception.cc (__cplus_type_matcher): Deal with new-abi rtti.
20282 2000-01-30  Mark Mitchell  <mark@codesourcery.com>
20284         * cp/class.c (build_vtable): Rename to build_primary_vtable.
20285         (prepare_fresh_vtable): Rename to build_secondary_vtable.
20286         (make_new_vtable): New function.
20287         (modify_vtable_entry): Handle generation of new vtables correctly.
20288         (modify_one_vtable): Remove unused parameter.
20289         (dfs_fixup_vtable_deltas): Likewise.
20290         (override_one_vtable): Use build_secondary_vtable.
20291         (finish_struct_1): Use build_primary_vtable and
20292         build_secondary_vtable.
20294 2000-01-28  Ulrich Drepper  <drepper@redhat.com>
20296         * cp/decl.c: Adjust variable names, comments, help strings.
20298 2000-01-29  Nathan Sidwell  <nathan@acm.org>
20300         * new2.cc (operator delete[]): Use operator delete, don't assume
20301         implementation.
20303 2000-01-29  Nathan Sidwell  <sidwell@codesourcery.com>
20305         * class.c (build_vtbl_initializer): Add argument to
20306         build_vtable_entry call.
20308 2000-01-27  Mark Mitchell  <mark@codesourcery.com>
20310         * cp-tree.def (THUNK_DECL): Discuss vcall indices.
20311         * cp-tree.h (BINFO_VIRTUALS): Update documentation.
20312         (BF_DELTA): New macro.
20313         (BF_VCALL_INDEX): Likewise.
20314         (BF_FN): Likewise.
20315         (THUNK_VCALL_OFFSET): Likewise.
20316         (make_thunk): Change prototype.
20317         * class.c (build_vtable_entry): Integrate
20318         build_vtable_entry_for_fn.  Handle vcall indices.
20319         (build_vtable_entry_for_fn): Remove.
20320         (set_rtti_entry): Handle vcall indices.  Use BF_DELTA,
20321         BF_VCALL_INDEX, BF_FN.
20322         (modify_vtable_entry): Integrate common code from
20323         modify_one_vtable and dfs_fixup_vtable_deltas.
20324         (add_virtual_function): Set BF_VCALL_INDEX.
20325         (build_vtbl_initializer): Simplify.  Use BF_DELTA, BF_VCALL_INDEX,
20326         and BF_FN.
20327         (modify_one_vtable): Simplify.
20328         (dfs_fixup_vtable_deltas): Likewise.
20329         (override_one_vtable): Use BF_DELTA, BF_VCALL_INDEX, BF_FN.
20330         * method.c (make_thunk): Handle vcall indices.
20332 2000-01-28  Nathan Sidwell  <sidwell@codesourcery.com>
20334         Compiler side new abi rtti (not enabled).
20335         * cp-tree.h (new_abi_rtti_p): New macro.
20336         (emit_support_tinfos): Prototype new function.
20337         (tinfo_decl_p): Likewise.
20338         (emit_tinfo_decl): Likwise.
20339         * rtti.c (TINFO_PSEUDO_TYPE, TINFO_VTABLE_DECL): New accessor
20340         macros.
20341         (doing_runtime): New local static.
20342         (init_rtti_processing): Add new-abi initializer.
20343         (get_tinfo_decl): Add new-abi logic.
20344         (tinfo_from_decl): Likewise.
20345         (build_dynamic_cast_1): Likewise.
20346         (qualifier_flags): New static function.
20347         (tinfo_base_init): Likewise.
20348         (generic_initializer): Likewise.
20349         (ptr_ref_initializer): Likewise.
20350         (ptmd_initializer): Likewise.
20351         (class_hint_flags): Likewise.
20352         (class_initializer): Likewise.
20353         (synthesize_tinfo_var): Likewise.
20354         (create_real_tinfo_var): Likewise.
20355         (create_pseudo_type_info): Likewise.
20356         (get_vmi_pseudo_type_info): Likewise.
20357         (create_tinfo_types): Likewise.
20358         (emit_support_tinfos): New global function.
20359         (tinfo_decl_p): New global predicate.
20360         (emit_tinfo_decl): New global function.
20361         * class.c (set_rtti_entry): Generalize for old and new rtti.
20362         (build_vtbl_initializer): Likewise.
20363         * decl2.c (finish_file): Likewise.
20365 2000-01-27  Jim Wilson  <wilson@cygnus.com>
20367         * optimize.c (remap_decl): Add walk_tree calls for DECL_SIZE (t)
20368         and TYPE_MAX_VALUE (TYPE_DOMAIN (TREE_TYPE (t))).
20370 2000-01-27  Mike Stump  <mrs@wrs.com>
20372         * decl.c (pushdecl): Fix up shadow warnings with respect to implicit
20373         for scopes.
20375 2000-01-26  Jason Merrill  <jason@casey.cygnus.com>
20377         * pt.c (unify): Use fold, not maybe_fold_nontype_arg.
20379 2000-01-26  J"orn Rennecke <amylaar@cygnus.co.uk>
20381         * optimize.c (calls_setjmp_r): Supply new argument
20382         to special_function_p.
20384 2000-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20386         * call.c: PROTO -> PARAMS.
20387         * class.c: Likewise.
20388         * cp-tree.h: Likewise.
20389         * cvt.c: Likewise.
20390         * decl.c: Likewise.
20391         * decl.h: Likewise.
20392         * decl2.c: Likewise.
20393         * dump.c: Likewise.
20394         * errfn.c: Likewise.
20395         * error.c: Likewise.
20396         * except.c: Likewise.
20397         * expr.c: Likewise.
20398         * init.c: Likewise.
20399         * input.c: Likewise.
20400         * lex.c: Likewise.
20401         * lex.h: Likewise.
20402         * method.c: Likewise.
20403         * optimize.c: Likewise.
20404         * parse.y: Likewise.
20405         * pt.c: Likewise.
20406         * repo.c: Likewise.
20407         * rtti.c: Likewise.
20408         * search.c: Likewise.
20409         * semantics.c: Likewise.
20410         * spew.c: Likewise.
20411         * tree.c: Likewise.
20412         * typeck.c: Likewise.
20413         * typeck2.c: Likewise.
20414         * xref.c: Likewise.
20416 2000-01-25  Richard Henderson  <rth@cygnus.com>
20418         * typeck.c (build_binary_op_nodefault): Remove UNNE_EXPR.
20420 2000-01-25  Mark Mitchell  <mark@codesourcery.com>
20422         * cp-tree.h (vcall_offset_in_vtable_p): New macro.
20423         * class.c (build_vbase_offset_vtbl_entries): Fix typo in commment.
20424         (struct vcall_offset_data_s): New type.
20425         (dfs_vcall_offset_queue_p): New function.
20426         (dfs_build_vcall_offset_vtbl_entries): Likewise.
20427         (build_vcall_offset_vtbl_entries): Likewise.
20428         (layout_vtable_decl): Likewise.
20429         (num_vfun_entries): Likewise.
20430         (num_extra_vtbl_entries): Add the entries for vcall offsets.
20431         (build_vtbl_initializer): Likewise.
20432         (dfs_finish_vtabls): Use layout_vtable_decl.
20433         (modify_one_vtables): Always duplicate vtables under the new ABI.
20434         (finish_struct_1): Use layout_vtable_decl.
20436 2000-01-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20438         * decl.c (member_function_or_else): Change third arg from a format
20439         specifier to an `enum overload_flags'.  Callers changed.
20441 2000-01-25  Gabriel Dos Reis  <gdr@codesourcery.com>
20443         * typeck.c (composite_pointer_type, c_sizeof, expr_sizeof,
20444         build_binary_op_nodefault, build_unary_op, build_reinterpret_cast,
20445         build_const_cast, get_delta_difference, check_return_expr): Avoid
20446         ANSI string concatenation usage.
20448 2000-01-24  Mark Mitchell  <mark@codesourcery.com>
20450         * class.c (layout_class_type): Put the fields required to make a
20451         class non-empty at the end, not the beginning, of the TYPE_FIELDs
20452         list.
20454 2000-01-24  Jason Merrill  <jason@casey.cygnus.com>
20456         * pt.c (maybe_fold_nontype_arg): Do nothing if we're not in a
20457         template.
20459         * decl2.c (mark_used): Do instantiate inlines that have been
20460         explicitly instantiated.
20462 2000-01-24  Richard Henderson  <rth@cygnus.com>
20464         * call.c (build_over_call): Use expand_tree_builtin.
20465         * typeck.c (build_function_call_real): Likewise.
20466         (build_binary_op_nodefault): Handle unordered compares.
20468 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
20470         * cp-tree.h (CPTI_BAD_CAST, CPTI_BAD_TYPEID, CPTI_DCAST): New
20471         cp_tree_index values.
20472         (throw_bad_cast_node, throw_bad_typeid_node, dynamic_cast_node):
20473         New global node #defines for them.
20474         * rtti.c (call_void_fn): Replace with ...
20475         (build_runtime_decl): ... new static function.
20476         (throw_bad_cast): Use throw_bad_cast_node and build_runtime_decl.
20477         (throw_bad_typeid): Use throw_bad_typeid_node and build_runtime_decl.
20478         (build_dynamic_cast_1): Always produce correctly typed result.
20479         Explicitly produce type_info addresses. Use dynamic_cast_node.
20480         * exception.cc (__throw_bad_cast): Return `void *'.
20481         (__throw_bad_typeid): Return `const type_info &'.
20483 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
20485         * cp-tree.h (get_vtable_decl): Prototype new function.
20486         * class.c (get_vtable_decl): New function. Broken out from ...
20487         (build_vtable): ... here. Use it.
20488         * decl2.c (finish_vtable_vardecl): Ignore dummy vtables created
20489         by get_vtable_decl.
20491 2000-01-24  Nathan Sidwell  <sidwell@codesourcery.com>
20493         * cp-tree.h (CPTI_TP_DESC_TYPE, CPTI_ACCESS_MODE_TYPE,
20494         CPTI_USER_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_ATTR_DESC_TYPE,
20495         CPTI_PTMF_DESC_TYPE): Remove cp_tree_index enumerations.
20496         (CPTI_TI_DESC_TYPE, CPTI_REF_DESC_TYPE, CPTI_ARY_DESC_TYPE,
20497         CPTI_ENUM_DESC_TYPE, CPTI_CLASS_DESC_TYPE, CPTI_SI_CLASS_DESC_TYPE,
20498         CPTI_VMI_CLASS_DESC_TYPE, CPTI_BASE_DESC_TYPE): New enumerations.
20499         (CPTI_TINFO_FN_ID, CPTI_TINFO_FN_TYPE): Rename to ...
20500         (CPTI_TINFO_DECL_ID, CPTI_TINFO_DECL_TYPE): ... here.
20501         (CPTI_TINFO_VAR_ID): New enumeration.
20502         (__tp_desc_type_node, __access_mode_type_node,
20503         __bltn_desc_type_node, __user_desc_type_node,
20504         __class_desc_type_node, __ptr_desc_type_node,
20505         __attr_desc_type_node, __func_desc_type_node,
20506         __ptmf_desc_type_node, __ptmd_desc_type_node): Remove #defines.
20507         (ti_desc_type_node, bltn_desc_type_node, ptr_desc_type_node,
20508         ref_desc_type_node, ary_desc_type_node, func_desc_type_node,
20509         enum_desc_type_node, class_desc_type_node,
20510         si_class_desc_type_node, vmi_class_desc_type_node,
20511         ptmd_desc_type_node, base_desc_type_node): New #defines.
20512         (tinfo_fn_id, tinfo_fn_type): Rename to ...
20513         (tinfo_decl_id, tinfo_decl_type): ... here. Adjust.
20514         (tinfo_var_id): New enumeration.
20515         (DECL_TINFO_FN_P): Augment comment.
20516         * decl.c (cp_global_trees): Adjust documentation.
20517         * rtti.c (init_rtti_processing): Adjust for tinfo_decl_id,
20518         tinfo_decl_type and tinfo_var_id.
20519         (get_tinfo_decl_dynamic): Adjust for tinfo_decl_type.
20520         (build_typeid): Remove unused variable.
20521         (get_tinfo_var): Use tinfo_var_id.
20522         (tinfo_name): New static function.
20523         (get_tinfo_decl): Adjust for tinfo_decl_id and tinfo_decl_type.
20524         (tinfo_from_decl): Likewise.
20525         (get_base_offset): New static function, broken out of
20526         expand_class_desc.
20527         (expand_si_desc): Use tinfo_name.
20528         (expand_class_desc): Likewise. Lose local static variable.
20529         Use base_desc_type_node. Use get_base_offset.
20530         (expand_ptr_desc): Use tinfo_name.
20531         (expand_attr_desc): Likewise.
20532         (expand_generic_desc): Likewise.
20534         * tinfo.cc (__GXX_ABI_VERSION): Test value and existence.
20535         * tinfo.h (__GXX_ABI_VERSION): Test value and existence.
20537 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
20539         * cp-tree.h (__eprintf): Remove declaration.
20540         * tree.c (__eprintf): Remove definition.
20542 2000-01-23  Zack Weinberg  <zack@rabi.columbia.edu>
20543             Mark Mitchell  <mark@codesourcery.com>
20545         * cp-tree.h (CLASSTYPE_MARKED_N, SET_CLASSTYPE_MARKED_N,
20546         CLEAR_CLASSTYPE_MARKED_N): Avoid signed vs. unsigned warnings.
20548 2000-01-23  Brad Lucier  <lucier@math.purdue.edu>
20550         * class.c (dump_class_hierarchy): Print HOST_WIDE_INT properly.
20552 2000-01-23  Mark Mitchell  <mark@codesourcery.com>
20554         * cp-tree.h (register_dtor_fn): New function.
20555         * decl.c (destroy_local_static): Rename to ...
20556         (register_dtor_fn): ... this.  Give it external linkage.
20557         (expand_static_init): Use it.
20558         * decl2.c (do_static_initialization): Likewise, if using
20559         __cxa_atexit.
20560         (do_static_destruction): Check that __cxa_atexit is not in use.
20561         (finish_file): Don't call do_static_destruction if using
20562         __cxa_atexit.
20564         * typeck.c (convert_arguments): Restore two-message error
20565         reporting.
20567 2000-01-20  Nathan Sidwell  <sidwell@codesourcery.com>
20569         Remap dynamic cast hint values to be consistent across ABIs.
20570         * search.c (dynamic_cast_base_recurse): Remap generated value.
20571         (get_dynamic_cast_base_type): Adjust documentation.
20572         * tinfo.h (__user_type_info::dyncast): Likewise.
20573         (__user_type_info::find_public_subobj): Remap BOFF meaning.
20574         * tinfo.cc (__si_type_info::do_dyncast): Remap BOFF meaning.
20575         (__class_type_info::do_dyncast): Likewise.
20576         (__class_type_info::do_find_public_subobj): Likewise.
20577         * tinfo2.cc (__dynamic_cast): Remap BOFF parameter.
20579 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
20581         * typeck.c (build_unary_op): Use cp_pedwarn, not pedwarn.
20583         * typeck2.c (incomplete_type_error): Restore previous
20584         cp_error and cp_error_at call sequence.
20586 2000-01-20  Brad Lucier  <lucier@math.purdue.edu>
20588         * class.c (dump_class_hierarchy): Make format agree with argument;
20589         cast pointer to unsigned long and print with %lx.
20591 2000-01-19  Gabriel Dos Reis  <gdr@codesourcery.com>
20593         * decl2.c (lang_decode_option): Set default line-wrap length to 72.
20595         * typeck.c (composite_pointer_type, common_type,
20596         comp_target_parms, c_sizeof, expr_sizeof, build_array_ref,
20597         build_function_call_real, convert_arguments,
20598         build_binary_op_nodefault, pointer_int_sum, pointer_diff,
20599         build_unary_op, mark_addressable, build_compound_expr,
20600         build_static_cast, build_reinterpret_cast, build_const_cast,
20601         build_c_cast, build_modify_expr, get_delta_difference,
20602         build_ptrmemfunc, check_return_expr): Replace 'ANSI C++' with
20603         'ISO C++'.  Fusion consecutive calls to diagnostic message routines
20604         into a single one.
20605         * typeck2.c (readonly_error, abstract_virtuals_error,
20606         process_init_constructor, check_for_new_type): Likewise.
20608 2000-01-19  Mark Mitchell  <mark@codesourcery.com>
20610         * tree.c (bot_manip): Set DECL_CONTEXT for newly created
20611         VAR_DECLs.
20613 2000-01-18  Nathan Sidwell  <sidwell@codesourcery.com>
20615         * cp-tree.h (get_tinfo_fn_dynamic): Remove prototype.
20616         (build_x_typeid): Likewise.
20617         (get_tinfo_fn): Likewise.
20618         (get_tinfo_fn_unused): Rename to ...
20619         (get_tinfo_decl): ... here.
20620         * rtti.c (build_headof): Replace logic error with assertion.
20621         (get_tinfo_fn_dynamic): Rename to ...
20622         (get_tinfo_decl_dynamic): ... here. Make static. Use
20623         complete_type_or_else.
20624         (build_x_typeid): Move into ...
20625         (build_typeid): ... here. Adjust call to
20626         get_tinfo_decl_dynamic. Use tinfo_from_decl. Simplify
20627         throw_bad_typeid expression.
20628         (get_tinfo_fn_unused): Rename to ...
20629         (get_tinfo_decl): ... here. Adjust comment.
20630         (get_tinfo_fn): Delete.
20631         (tinfo_from_decl): New static function.
20632         (get_typeid_1): Call get_tinfo_decl and tinfo_from_decl.
20633         (get_typeid): Use complete_type_or_else.
20634         (build_dynamic_cast_1): Adjust calls to
20635         get_tinfo_decl_dynamic. Simplify throw_bad_cast expression.
20636         * parse.y (primary): Adjust call to build_typeid.
20637         * except.c (build_eh_type_type_ref): Adjust call to
20638         get_tinfo_decl. Mark as used.
20639         * class.c (set_rtti_entry): Adjust call to get_tinfo_decl.
20640         * decl2.c (build_expr_from_tree): Adjust call to build_typeid.
20641         * parse.c: Regenerated.
20643 2000-01-17  Mark Mitchell  <mark@codesourcery.com>
20645         * class.c (fixed_type_or_null): Don't clear NONNULL.  Document
20646         calling convention.
20647         (resolves_to_fixed_type_p): Document calling convention.
20648         * rtti.c (build_x_typeid): Initialize NONNULL.
20650         * cp-tree.h (build_shared_int_cst): New function.
20651         * call.c (build_over_call): Use DECL_VIRTUAL_CONTEXT, for clarity.
20652         * class.c (modify_vtable_entry): Likewise.
20653         (add_virtual_function): Split out code to generated shared
20654         INTEGER_CSTs to build_share_int_cst.
20655         (modify_all_vtables): Handle all the overridden functions here.
20656         Add overridden functions from non-primary virtual bases to the
20657         primary vtable.
20658         (finish_struct_1): Adjust call to modify_all_vtables.  Add
20659         overridden functions from non-primary bases to the vtable.
20660         * tree.c (build_shared_int_cst): New function.
20662         * cp-tree.h (scratchalloc): Remove.
20663         (build_scratch_list): Likewise.
20664         * call.c (convert_class_to_reference): Replace build_scratch_list
20665         and build_expr_list with build_tree_list.
20666         (add_candidate): Replace scratchalloc with expralloc.  Note memory
20667         leak.
20668         (build_user_type_conversion_1):  Replace build_scratch_list
20669         and build_expr_list with build_tree_list.
20670         (build_new_op): Likewise.
20671         (build_op_delete_call): Likewise.
20672         (convert_like): Likewise.
20673         * cvt.c (ocp_convert): Likewise.
20674         * decl.c (start_decl): Likewise.
20675         (start_function): Likewise.
20676         (finish_destructor_body): Likewise.
20677         (maybe_build_cleanup_1): Likewise.
20678         * decl2.c (reparse_decl_as_expr): Likewise.
20679         * init.c (perform_member_init): Likewise.
20680         (expand_cleanup_for_base): Likewise.
20681         (build_builtin_delete_call): Likewise.
20682         (build_new_1): Likewise.
20683         (build_delete): Likewise.
20684         * method.c (do_build_assign_ref): Likewise.
20685         * parse.y (already_scoped_stmt): Likewise.
20686         (nontrivial_exprlist): Likewise.
20687         (net_initializer): Likewise.
20688         (initlist): Likewise.
20689         * parse.c: Regenerated.
20690         * rtti.c (build_x_typeid): Likewise.
20691         (build_dynamic_cast_1): Likewise.
20692         * typeck.c (build_x_compound_expr): Likewise.
20693         (build_static_cast): Likewise.
20694         (build_modify_expr): Likewise.
20696         * cp-tree.h (DECL_VINDEX): Add documentation.
20697         * class.c (build_vtable_entry): Likewise.
20698         (start_vtable): Add comment.
20699         (add_virtual_function): Replace pending_hard_virtuals with
20700         overridden_virtuals and pending_virtuals with new_virtuals.
20701         Replace redundant assignments with assertions.
20702         (check_for_override): Add comment.
20703         (check_bases_and_members): Replace pending_hard_virtuals with
20704         overridden_virtuals and pending_virtuals with new_virtuals.
20705         (create_vtbl_ptr): Likewise.
20706         (layout_class_type): Likewise.
20707         (finish_struct_1): Likewise.  Add comments.
20709 2000-01-16  Mark Mitchell  <mark@codesourcery.com>
20711         * class.c (finish_struct_1): Replace redundant code with
20712         assertions.
20714         * cp-tree.h (flag_new_abi): Move.
20715         (flag_use_cxa_atexit): Likewise.
20716         (flag_honor_std): Likewise.
20717         (flag_rtti): Likewise.
20718         (vbase_offsets_in_vtable_p): Define.
20719         (vptrs_present_everywhere_p): Likewise.
20720         (TYPE_CONTAINS_VPTR_P): Likewise.
20721         (dfs_walk_real): Declare.
20722         * class.c (build_vbase_pointer_fields): Check
20723         vbase_offsets_in_vtable_p.
20724         (dfs_build_vbase_offset_vtbl_entries): Record the vbase indices in
20725         BINFO_VPTR_FIELD.
20726         (build_vbase_offset_vtbl_entries): Simplify.
20727         (build_vbase_offset_vtbl_entries): Adjust.
20728         (build_vbase_pointer): Add ability to look up vbase offsets in
20729         vtable.
20730         (start_vtable): New function.
20731         (add_virtual_function): Use it.
20732         (determine_primary_base): Use TYPE_CONTAINS_VPTR_P.
20733         (num_extra_vtbl_entries): Use vbase_offsets_in_vtable_p.
20734         (build_vtbl_initializer): Take the type of the complete object as
20735         input.  Use it to correctly calculate vbase offsets.
20736         (dfs_finish_vtbls): Pass the complete type to
20737         build_vtbl_initializer.
20738         (check_bases_and_members): Use TYPE_CONTAINS_VPTR_P.
20739         (create_vtable_ptr): Create a vtable even if there are no
20740         new virtual functions, under the new ABI.
20741         (finish_struct_1): Likewise.
20742         (get_vfield_name): Use TYPE_CONTAINS_VPTR_P.
20743         * decl.c (exapnd_static_init): Remove call to
20744         preserve_initializer.
20745         * decl2.c (mark_vtable_entries): Tweak to handle vbase offsets in
20746         vtables.
20747         * init.c (initialize_vtbl_ptrs): Initialize them in pre-order.
20748         (expand_virtual_init): Use vbase_offsets_in_vtable_p.
20749         (construct_virtual_bases): Don't initialize virtual base pointers
20750         under the new ABI.
20751         (build_aggr_init): Clean up comment.
20752         (expand_aggr_init_1): Likewise.
20753         * rtti.c (expand_class_desc): Store the virtual function table
20754         index where the vbase offset lives in the offset field.
20755         * search.c (dfs_walk_real): Make it global.
20756         (dfs_debug_mark): Use TYPE_CONTAINS_VPTR_P.
20757         * tree.c (make_binfo): Don't clear BINFO_VPTR_FIELD.
20759         * tinfo.h (USItype): Make it signed under the new ABI.
20760         * tinfo.cc (convert_to_base): New function.  Encapsulate base
20761         conversion logic here.
20762         (__class_type_info::do_upcast): Use it.
20763         (__class_type_info::do_dyncast): Likewise.
20764         (__class_type_info::do_find_public_subobj): Likewise.
20766         * init.c (construct_virtual_bases): Don't look up the addresses of
20767         virtual bases at run-time.
20769         * class.c (build_vbase_pointer): Relocate.
20770         (build_vbase_pointer_fields): Likewise.
20771         (dfs_build_vbase_offset_vtbl_entries): Likewise.
20772         (build_vbase_offset_vtbl_entries): Likewise.
20774         * decl.c (init_decl_processing): Complain if -fnew-abi
20775         -fno-vtable-thunks is used.
20777         * decl2.c (lang_decode_option): Don't couple flag_honor_std to
20778         flag_new_abi.
20780 2000-01-15  Mark Mitchell  <mark@codesourcery.com>
20782         * cp-tree.h (num_extra_vtbl_entries): New function.
20783         (size_extra_vtbl_entries): Likewise.
20784         (dfs_vtable_path_unmark): Likewise.
20785         (dfs_vtable_path_unmarked_real_bases_queue_p): Likewise.
20786         (dfs_vtable_path_marked_real_bases_queue_p): Likewise.
20787         * class.c (num_extra_vtbl_entries): New function.
20788         (size_extra_vtbl_entries): Likewise.
20789         (dfs_build_vbase_offset_vtbl_entries): New function.
20790         (build_vbase_offset_vtbl_entries): Likewise.
20791         (build_vtbl_initializer): Use it.
20792         (finish_struct_1): Adjust vtable sizes (using
20793         num_extra_vtbl_entries).
20794         * expr.c (cplus_expand_expr): Assert that the DECL_RTL for a
20795         THUNK_DECL is non-NULL before expanding it.
20796         * init.c (expand_virtual_init): Adjust the vtable pointer by
20797         size_extra_vtbl_entries before storing it.
20798         * search.c (get_shared_vase_if_not_primary): Adjust prototype.
20799         Handle TREE_LIST parameters here, not in the dfs_* functions.
20800         (dfs_unmarked_real_bases_queue_p): Adjust.
20801         (dfs_marked_real_bases_queue_p): Likewise.
20802         (dfs_vtable_path_unmarked_real_bases_queue_p): New function.
20803         (dfs_vtable_path_marked_real_bases_queue_p): New function.
20804         (dfs_vtable_path_unmark): Likewise.
20806 2000-01-14  Mark Mitchell  <mark@codesourcery.com>
20808         * optimize.c (copy_body_r): Clear the operand three of a
20809         TARGET_EXPR when copying it.
20811 2000-01-14  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
20813         * method.c (build_decl_overload_real): Check whether we are in ::
20814         before returning __builtin_new/delete.
20816 2000-01-13  Mark Mitchell  <mark@codesourcery.com>
20818         * pt.c (tsubst_friend_function): Improve comment.
20819         (instantiate_decl): Avoid crashing when a "nested" function is
20820         instantiated from the top level.
20822         * dump.c (dqeueue_and_dump): Dump
20823         DECL_FRIEND_PSEUDO_TEMPLATE_INSTANTIATION.
20825 2000-01-13  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20827         * call.c: If GATHER_STATISTICS, declare `n_build_method_call'.
20829 2000-01-13  Nathan Sidwell  <sidwell@codesourcery.com>
20831         * g++spec.c (lang_specific_driver): Add -fnew-abi if
20832         ENABLE_NEW_GXX_ABI defined.
20833         * Make-lang.in (tinfo.o, tinfo2.o, exception.o, new.o,
20834         opnew.o, opnewnt.o, opvnew.o, opvnewnt.o, opdel.o, opdelnt.o,
20835         opvdel.o, opvdelnt.o): Use GXX_ABI_FLAG switch.
20837 2000-01-12  Mark Mitchell  <mark@codesourcery.com>
20839         * decl.c (start_cleanup_fn): Call pushdecl.
20841         * call.c (convert_class_to_reference): Fix typos.
20842         (build_conditional_expr): Handle errors gracefully.
20843         * class.c (push_nested_class): Likewise.
20844         * cp-tree.h (VAR_FUNCTION_OR_PARM_DECL_CHECK): New macro.
20845         (DECL_THIS_EXTERN): Use it.
20846         (DECL_THIS_STATIC): Likewise.
20847         * cvt.c (convert_to_void): Handle errors gracefully.
20848         (build_expr_type_conversion): Likewise.
20849         * decl.c (maybe_push_decl): Likewise.
20850         (start_decl_1): Likewise.
20851         (require_complete_types_for_parms): Likewise.
20852         * parse.y (structsp): Likewise.
20853         (base_class): Likewise.
20854         * parse.c: Regenerated.
20855         * pt.c (finish_member_template_decl): Likewise.
20856         * typeck.c (decay_conversion): Likewise.
20858         * cp-tree.h (dfs_skip_vbases): New function.
20859         (find_vbase_instance): Likewise.
20860         * class.c (determine_primary_base): Allow a nearly empty base to
20861         serve as a primary base class under the new ABI.
20862         (get_class_offset_1): Rename to ...
20863         (dfs_get_class_offset): ... this.  Simplify.  Don't issue error
20864         messages here.
20865         (get_class_offset): Use it.  Issue error messages here.
20866         (dfs_modify_vtables): Rely on dfs_unmarked_real_bases_queue_p to
20867         find the right copies of virtual bases.
20868         (fixup_vtable_deltas1): Rename to ...
20869         (dfs_fixup_vtable_deltas): ... this.  Adjust to handle virtual
20870         bases as primary bases.
20871         (fixup_vtable_deltas): Remove.
20872         (override_one_vtable): Handle virtual bases as primary bases.
20873         (merge_overrides): Likewise.
20874         (finish_struct_1): Likewise.
20875         (dump_class_hierarchy): Dump primary-ness of bases as well.
20876         * search.c (mark_primary_bases): Use a pre-order traversal to
20877         handle primary virtual bases.
20878         (dfs_skip_vbases): New fiunction.
20879         (expand_upcast_fixups): Adjust to handle primary virtual bases.
20880         (fixup_virtual_upcast_offsets): Likewise.
20881         (fixup_all_virtual_upcast_offsets): Likewise.
20882         (dfs_find_vbase_instances): New function.
20883         (find_vbase_instance): Likewise.
20885 2000-01-11  Mumit Khan  <khan@xraylith.wisc.edu>
20887         * lex.c (DIR_SEPARATOR): Delete macro.
20889 2000-01-12  Gabriel Dos Reis  <gdr@codesourcery.com>
20891        * decl2.c (lang_decode_option): Handle automatic line wrapping
20892        option.
20894 2000-01-11  Mark Mitchell  <mark@codesourcery.com>
20896         * friend.c (do_friend): Don't resolve scopes when processing
20897         template declarations, even if the qualifying scope doesn't
20898         involve template parameters.
20900 2000-01-10  Mark Mitchell  <mitchell@dumbledore.codesourcery.com>
20902         * class.c (dfs_modify_vtables_queue_p): Remove.
20903         (modify_all_vtables): Use dfs_unmarked_real_bases_queue_p
20904         and dfs_marked_real_bases_queue_p instead of
20905         dfs_modify_vtables_queue_p.
20907         * class.c (build_vbase_path): Simplify.
20908         (dfs_propagate_binfo_offsets): New function.
20909         (propagate_binfo_offsets): Use it.
20910         (remove_base_field): Simplify.
20911         (dfs_set_offset_for_vbases): Remove.
20912         (dfs_set_offset_for_shared_vbases): New function.
20913         (dfs_set_offset_for_unshared_vbases): Likewise.
20914         (layout_virtual_bases): Use them.
20915         (layout_basetypes): Don't call propagate_binfo_offsets.
20916         * search.c (dfs_get_vbase_types): Clone completely fresh binfos
20917         for the vbases.
20919         * class.c (build_base_field): New function, split out from ...
20920         (build_base_fields): ... here.  Use it.  Allocate primary bases
20921         first, under the new ABI.
20922         (get_vtable_entry): Remove.
20923         (remove_base_field): New function, split out from ...
20924         (remove_base_fields): ... here.  Adjust since primary bases come
20925         first under the new ABI.
20927         * cp-tree.h (expand_direct_vtbls_init): Remove declaration.
20928         (initialize_vtbl_ptrs): New function.
20929         (expand_indirect_vtbls_init): Change prototype.
20930         (convert_pointer_to_vbase): Declare.
20931         * init.c (expand_direct_vtbls_init): Remove.
20932         (dfs_initialize_vtbl_ptrs): New function.
20933         (initialize_vtbl_ptrs): Likewise.
20934         (emit_base_init): Use initialize_vtbl_ptrs.
20935         * search.c (convert_pointer_to_vbase): Make it global.
20936         (expand_indirect_vtbls_init): Remove vtable initialization code.
20937         * semantics.c (setup_vtbl_ptr): Use initialize_vtbl_ptrs.
20939         * class.c (dfs_finish_vtbls): New function.
20940         (finish_vtbls): Use it.
20941         (dump_class_hierarchy): New function.
20943         * cp-tree.h (BINFO_PRIMARY_MARKED_P): Change definition.
20944         (BINFO_VBASE_PRIMARY_P): New macro.
20945         (BINFO_VIRTUALS): Add to documentation.
20946         (SET_BINFO_PRIMARY_MARKED_P): Remove.
20947         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
20948         (dfs_mark_primary_bases_queue_p): Likewise.
20949         (dfs_unmarked_real_bases_queue_p): New function.
20950         (dfs_marked_real_bases_queue_p): Likewise.
20951         * search.c (dfs_mark_primary_bases): Adjust.
20952         (mark_primary_bases): Likewise.
20953         (get_shared_vbase_if_not_primary): New function.
20954         (dfs_unmarked_real_bases_queue_p): Likewise.
20955         (dfs_marked_real_bases_queue_p): Likewise.
20956         (dfs_get_pure_virtuals): Simplify.
20957         (get_pure_virtuals): Likewise.
20959 2000-01-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20961         * lex.c: Include tm_p.h.
20963 2000-01-07  Nathan Sidwell  <sidwell@codesourcery.com>
20965         * lang-specs.h (__GXX_ABI_VERSION): New preprocessor macro.
20967 2000-01-06  Jason Merrill  <jason@casey.cygnus.com>
20969         * decl2.c (comdat_linkage): Don't set DECL_DEFER_OUTPUT.
20970         * pt.c (instantiate_decl): Defer comdat templates that might not be
20971         needed.
20973         * cp-tree.h (DECL_NEEDED_P): Also true if !DECL_COMDAT.
20974         * decl2.c (finish_vtable_vardecl): Don't check !DECL_COMDAT.
20975         (finish_file): Likewise.
20977         * decl2.c (import_export_class): Undo 12/14 change.
20979         * error.c (dump_decl): operator new, not operatornew.
20981         * class.c (field_decl_cmp): A nontype is "greater" than a type.
20982         * search.c (lookup_field_1): Look for the last field with the
20983         desired name.
20985 2000-01-05  Nathan Sidwell  <nathan@acm.org>
20987         * decl2.c (lookup_arg_dependent): Deal with FNS not being a
20988         FUNCTION_DECL.
20990 2000-01-05  Nathan Sidwell  <nathan@acm.org>
20992         * typeck.c (build_static_cast): Don't strip target qualifiers
20993         when casting from a class.
20995 2000-01-04  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
20997         * class.c (warn_hidden): Initialize variable `fndecl'.
20999 2000-01-03  Ulrich Drepper  <drepper@cygnus.com>
21001         * decl.c (flag_isoc9x): New variable to be able to use code in
21002         c-common.c.  For now always zero.
21004 2000-01-03  Mark Mitchell  <mark@codesourcery.com>
21006         * cp-tree.h (CLASSTYPE_VBASECLASSES): Improve documentation.
21007         * class.c (layout_basetypes): Don't set BINFO_INHERITANCE_CHAIN
21008         or unshare_base_binfos for virtual bases here.
21009         * search.c (dfs_get_vbase_types): Do it here.
21010         (get_vbase_types): Adjust.
21012 2000-01-02  Mark Mitchell  <mark@codesourcery.com>
21014         * cp-tree.h (CLASSTYPE_VFIELDS): Move definition.
21015         (BINFO_PRIMARY_MARKED_P): Use flag 5.
21016         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
21017         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
21018         (unmark_primary_bases): Remove declaration.
21019         (unmarkedp): Declare.
21020         (dfs_vbase_unmark): Likewise.
21021         * class.c (determine_primary_base): Return immediately if there
21022         are no base classes.  Call mark_primary_bases here.
21023         (modify_all_direct_vtables): Remove.
21024         (modify_all_indirect_vtables): Remove.
21025         (dfs_modify_vtables_queue_p): New function.
21026         (dfs_modify_vtables): New function.
21027         (modify_all_vtables): Use them.
21028         (build_base_fields): Build FIELD_DECLs for primary virtual base
21029         classes.
21030         (create_vtable_ptr): Don't call determine_primary_base here.
21031         (dfs_mark_primary_bases_and_set_vbase_offsets): Rename to ...
21032         (dfs_set_offset_for_vbases): ... this.
21033         (layout_virtual_bases): Use it.
21034         (layout_class_type): Call determine_primary_base here.
21035         * search.c (unmarkedp): Make it global.
21036         (shared_marked_p): Simplify.
21037         (shared_unmarked_p): Likewise.
21038         (dfs_primary_bases_queue_p): Remove.
21039         (dfs_unmark_primary_bases): Likewise.
21040         (unmark_primary_bases): Likewise.
21041         (mark_primary_bases): Simplify.
21042         (get_pure_virtuals): Don't call mark_primary_bases here.
21043         (dfs_vbase_unmark): New function.
21044         (get_vbase_types): Simplify.
21046         * class.c (struct base_info): Remove.
21047         (determine_primary_base): Take has_virtual_p rather than a
21048         base_info as input.  Don't calculate max_has_virtual.
21049         (finish_struct_bits): Remove max_has_virtual argument.
21050         (create_vtable_ptr): Remove max_has_virtual_p argument.
21051         (layout_virtual_bases): Remove max argument.
21052         (layout_basetypes): Likewise.
21053         (layout_class_type): Remove max_has_virtual_p argument.
21054         (finish_struct_1): Remove max_has_virtual.
21056         * cp-tree.h (dfs_mark_primary_bases_queue_p): New function.
21057         (layout_basetypes): Remove.
21058         * class.c (propagate_binfo_offsets): Moved here from tree.c.
21059         Update to handle primary virtual bases.
21060         (remove_base_fields): New function, split out from
21061         layout_basetypes.
21062         (dfs_mark_primary_bases_and_set_vbase_offsets): New function.
21063         (layout_virtual_bases): New function, split out from
21064         layout_basetypes.  Update to handle primary virtual bases.
21065         (layout_basetypes): Moved here from tree.c.  Use
21066         remove_base_fields and layout_virtual_bases.
21067         * search.c (dfs_mark_primary_bases_queue_p): New function.
21068         (mark_primary_bases): Use it.
21069         * tree.c (CEIL): Remove.
21070         (propagate_binfo_offsets): Remove.
21071         (layout_basetypes): Remove.
21073 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
21075         * cp-tree.h (CLASSTYPE_N_BASECLASSES): Use BINFO_N_BASETYPES.
21076         (BINFO_PRIMARY_MARKED_P): New macro.
21077         (SET_BINFO_PRIMARY_MARKED_P): Likewise.
21078         (CLEAR_BINFO_PRIMARY_MARKED_P): Likewise.
21079         (mark_primary_bases): New function.
21080         (unmark_primary_bases): Likewise.
21081         * search.c (get_abstract_virtuals_1): Remove.
21082         (dfs_mark_primary_bases): New function.
21083         (mark_primary_bases): Likewise.
21084         (dfs_unmark_primary_bases): Likewise.
21085         (unmark_primary_bases): Likewise.
21086         (dfs_get_pure_virtuals): Likewise.
21088 2000-01-01  Mark Mitchell  <mark@codesourcery.com>
21090         * cp-tree.h (skip_rtti_stuff): Adjust prototype.
21091         * class.c (skip_rtti_stuff): Reorganize parameters and return value.
21092         (modify_one_vtable): Adjust.
21093         (fixup_vtable_deltas1): Likewise.
21094         (override_one_vtable): Likewise.
21095         * search.c (get_abstract_virtuals_1): Likewise.
21096         (get_pure_virtuals): Likewise.
21097         (expand_upcast_fixups): Likewise.
21098         * tree.c (debug_binfo): Likewise.
21100         * class.c (build_vtable): Don't return a value.  Don't rebuild
21101         vtables for bases that have already been handled.
21102         (prepare_fresh_vtable): Don't rebuild vtables for bases that have
21103         already been handled.
21104         (modify_one_vtable): Adjust accordingly.
21105         (fixup_vtable_deltas1): Likewise.
21106         (finish_struct_1): Likewise.
21108 2000-01-01  Martin v. Löwis  <loewis@informatik.hu-berlin.de>
21110         * call.c (build_new_method_call): Also check destructors.